aboutsummaryrefslogtreecommitdiffstats
path: root/tools/test-gcc.sh
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2009-06-15 22:45:00 -0400
committerKevin O'Connor <kevin@koconnor.net>2009-06-15 22:45:00 -0400
commit4d863fe762bac06f77e1884741f1ab48b27c64bc (patch)
tree7426bef99c8d2ad998ab6892a6cb4f29868ffe33 /tools/test-gcc.sh
parent0942e7fbe48bfbdb87d9c7c5e0da1c96d68ccb93 (diff)
downloadseabios-4d863fe762bac06f77e1884741f1ab48b27c64bc.tar.gz
Minor - clarify disabling "-combine" warning.
Diffstat (limited to 'tools/test-gcc.sh')
-rwxr-xr-xtools/test-gcc.sh3
1 files changed, 1 insertions, 2 deletions
diff --git a/tools/test-gcc.sh b/tools/test-gcc.sh
index 5b2d4a91..5f55f37d 100755
--- a/tools/test-gcc.sh
+++ b/tools/test-gcc.sh
@@ -43,10 +43,9 @@ void t1(struct ts *r);
EOF
$CC -c -fwhole-program -combine $TMPFILE1 $TMPFILE1 -o $TMPFILE1o > /dev/null 2>&1
if [ $? -eq 0 ]; then
- #echo " Setting AVOIDCOMBINE=0" > /dev/fd/2
echo 0
else
- echo " Enabling AVOIDCOMBINE=1" > /dev/fd/2
+ echo " Working around non-functional -combine" > /dev/fd/2
echo 1
fi