mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
Support for -iquote.
llvm-svn: 94545
This commit is contained in:
parent
f74d495859
commit
13cd7be07e
@ -61,6 +61,9 @@ def OptList : OptionList<[
|
||||
(hidden)),
|
||||
(parameter_list_option "include",
|
||||
(help "Include the named file prior to preprocessing")),
|
||||
(parameter_list_option "iquote",
|
||||
(help "Search dir only for files requested with #inlcude \"file\""),
|
||||
(hidden)),
|
||||
(parameter_list_option "framework",
|
||||
(help "Specifies a framework to link against")),
|
||||
(parameter_list_option "weak_framework",
|
||||
@ -129,6 +132,7 @@ class llvm_gcc_based <string cmd_prefix, string in_lang, string E_ext> : Tool<
|
||||
(switch_on ["emit-llvm", "c"]), (stop_compilation),
|
||||
(switch_on "fsyntax-only"), (stop_compilation),
|
||||
(not_empty "include"), (forward "include"),
|
||||
(not_empty "iquote"), (forward "iquote"),
|
||||
(not_empty "save-temps"), (append_cmd "-save-temps"),
|
||||
(not_empty "I"), (forward "I"),
|
||||
(not_empty "F"), (forward "F"),
|
||||
|
Loading…
Reference in New Issue
Block a user