[Patch #536769] Add -Xcompiler flag for adding arguments and switches for

the compiler
This commit is contained in:
Andrew M. Kuchling 2002-03-29 18:00:19 +00:00
parent 1142de3f5b
commit f4a4fb9a11
2 changed files with 3 additions and 0 deletions

View file

@ -188,6 +188,8 @@ def read_setup_file (filename):
append_next_word = ext.runtime_library_dirs
elif word == "-Xlinker":
append_next_word = ext.extra_link_args
elif word == "-Xcompiler":
append_next_word = ext.extra_compile_args
elif switch == "-u":
ext.extra_link_args.append(word)
if not value:

View file

@ -159,6 +159,7 @@ sed -e 's/[ ]*#.*//' -e '/^[ ]*$/d' |
# OSX/OSXS/Darwin framework link cmd
;;
-[IDUCfF]*) cpps="$cpps $arg";;
-Xcompiler) skip=cpps;;
-Xlinker) libs="$libs $arg"; skip=libs;;
-rpath) libs="$libs $arg"; skip=libs;;
--rpath) libs="$libs $arg"; skip=libs;;