summaryrefslogtreecommitdiff
path: root/util/xcompile
diff options
context:
space:
mode:
authorStefan Reinauer <reinauer@chromium.org>2011-10-25 12:28:40 -0700
committerPatrick Georgi <patrick@georgi-clan.de>2011-10-27 10:50:39 +0200
commit5e4e2290b653b068b1ca55205efd3fbfcc1fda34 (patch)
tree0a2c3743b87fdf3fa62ba25efcec112003a4631a /util/xcompile
parentbbfc9c449f61fc553bdea797b2f77af9d9420ccf (diff)
downloadcoreboot-5e4e2290b653b068b1ca55205efd3fbfcc1fda34.tar.xz
Add -Werror to xcompile's testcc
If -Werror is not specified, tests for certain compiler flags will emit a warning, which makes the build break since we compile with -Werror. Change-Id: I7be56530ff9f94e5500bad226c83e47145a808d7 Signed-off-by: Stefan Reinauer <reinauer@google.com> Reviewed-on: http://review.coreboot.org/336 Tested-by: build bot (Jenkins) Reviewed-by: Patrick Georgi <patrick@georgi-clan.de>
Diffstat (limited to 'util/xcompile')
-rw-r--r--util/xcompile/xcompile2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/xcompile/xcompile b/util/xcompile/xcompile
index 9a0a295c75..49263941df 100644
--- a/util/xcompile/xcompile
+++ b/util/xcompile/xcompile
@@ -21,7 +21,7 @@
testcc()
{
echo "_start(void) {}" > .$$$$.c
- $1 -nostdlib $2 .$$$$.c -o .$$$$.tmp 2>/dev/null >/dev/null
+ $1 -nostdlib -Werror $2 .$$$$.c -o .$$$$.tmp 2>/dev/null >/dev/null
ret=$?
rm -f .$$$$.c .$$$$.tmp
return $ret