diff options
author | wilson <wilson@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-06-12 05:54:23 +0000 |
---|---|---|
committer | wilson <wilson@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-06-12 05:54:23 +0000 |
commit | 118a91b1e059cd90ba5b07ac80173a0a021d3332 (patch) | |
tree | 44165d60246e222c43b587d99c7a9ff71acf8de4 /gcc/testsuite/lib | |
parent | fb3b06a1b253c9df3ea23ef43cba3e8943f9063f (diff) | |
download | gcc-118a91b1e059cd90ba5b07ac80173a0a021d3332.tar.gz |
Patch from Kelley Cook.
* lib/gcc.exp (gcc_target_compile): Put TOOL_OPTIONS at front of
options instead of at the end.
* lib/objc.exp (objc_target_compile): Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@67822 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/testsuite/lib')
-rw-r--r-- | gcc/testsuite/lib/gcc.exp | 4 | ||||
-rw-r--r-- | gcc/testsuite/lib/objc.exp | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/gcc/testsuite/lib/gcc.exp b/gcc/testsuite/lib/gcc.exp index bec0e2e4258..29c687be2c9 100644 --- a/gcc/testsuite/lib/gcc.exp +++ b/gcc/testsuite/lib/gcc.exp @@ -146,8 +146,10 @@ proc gcc_target_compile { source dest type options } { if [target_info exists gcc,no_label_values] { lappend options "additional_flags=-DNO_LABEL_VALUES" } + # TOOL_OPTIONS must come first, so that it doesn't override testcase + # specific options. if [info exists TOOL_OPTIONS] { - lappend options "additional_flags=$TOOL_OPTIONS" + set options [concat "additional_flags=$TOOL_OPTIONS" $options]; } if [target_info exists gcc,timeout] { lappend options "timeout=[target_info gcc,timeout]" diff --git a/gcc/testsuite/lib/objc.exp b/gcc/testsuite/lib/objc.exp index 3ec19e336ff..9e7c445d3ce 100644 --- a/gcc/testsuite/lib/objc.exp +++ b/gcc/testsuite/lib/objc.exp @@ -162,8 +162,10 @@ proc objc_target_compile { source dest type options } { if [target_info exists objc,no_label_values] { lappend options "additional_flags=-DNO_LABEL_VALUES" } + # TOOL_OPTIONS must come first, so that it doesn't override testcase + # specific options. if [info exists TOOL_OPTIONS] { - lappend options "additional_flags=$TOOL_OPTIONS" + set options [concat "additional_flags=$TOOL_OPTIONS" $options]; } # Point to the ObjC headers in libobjc. |