summaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorNico Huber <nico.huber@secunet.com>2019-06-18 16:38:29 +0200
committerNico Huber <nico.h@gmx.de>2019-06-21 08:44:49 +0000
commit6d7564cdfebfd6bfab34eadc805b3f926acf0518 (patch)
tree0490f1c9a8f5e2f51d70e9c7ee160bcfe1608192 /util
parentc82d7e76d5583c89434a57553fefa6ba8f464c73 (diff)
downloadcoreboot-6d7564cdfebfd6bfab34eadc805b3f926acf0518.tar.gz
coreboot-6d7564cdfebfd6bfab34eadc805b3f926acf0518.tar.bz2
coreboot-6d7564cdfebfd6bfab34eadc805b3f926acf0518.zip
Move -Wlogical-op into xcompile
Clang doesn't know `-Wlogical-op`, so let's move it into xcompile where we can easily distinguish between the two. However, this requires us to split out `GCC_ADAFLAGS*` from `GCC_CFLAGS*`. Change-Id: I6a50de0bc5372f61337f237383d32645ba86b0fd Signed-off-by: Nico Huber <nico.huber@secunet.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/33579 Reviewed-by: Patrick Georgi <pgeorgi@google.com> Reviewed-by: HAOUAS Elyes <ehaouas@noos.fr> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'util')
-rwxr-xr-xutil/xcompile/xcompile3
1 files changed, 3 insertions, 0 deletions
diff --git a/util/xcompile/xcompile b/util/xcompile/xcompile
index 050cc598278d..e8d667799438 100755
--- a/util/xcompile/xcompile
+++ b/util/xcompile/xcompile
@@ -225,6 +225,9 @@ SUBARCH_SUPPORTED+=${TSUPP-${TARCH}}
# GCC
GCC_CC_${TARCH}:=${GCC}
GCC_CFLAGS_${TARCH}:=${CFLAGS_GCC}
+# Generally available for GCC's cc1:
+GCC_CFLAGS_${TARCH}+=-Wlogical-op
+GCC_ADAFLAGS_${TARCH}:=${CFLAGS_GCC}
GCC_COMPILER_RT_${TARCH}:=${CC_RT_GCC}
GCC_COMPILER_RT_FLAGS_${TARCH}:=${CC_RT_EXTRA_GCC}