Skip to content

Commit 02e9a22

Browse files
arndbmasahir0y
authored andcommitted
kbuild: hdrcheck: fix cross build with clang
The headercheck tries to call clang with a mix of compiler arguments that don't include the target architecture. When building e.g. x86 headers on arm64, this produces a warning like clang: warning: unknown platform, assuming -mfloat-abi=soft Add in the KBUILD_CPPFLAGS, which contain the target, in order to make it build properly. See also 1b71c2f ("kbuild: userprogs: fix bitsize and target detection on clang"). Reviewed-by: Nathan Chancellor <[email protected]> Fixes: feb843a ("kbuild: add $(CLANG_FLAGS) to KBUILD_CPPFLAGS") Signed-off-by: Arnd Bergmann <[email protected]>
1 parent dfc1b16 commit 02e9a22

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

usr/include/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ UAPI_CFLAGS := -std=c90 -Wall -Werror=implicit-function-declaration
1010

1111
# In theory, we do not care -m32 or -m64 for header compile tests.
1212
# It is here just because CONFIG_CC_CAN_LINK is tested with -m32 or -m64.
13-
UAPI_CFLAGS += $(filter -m32 -m64 --target=%, $(KBUILD_CFLAGS))
13+
UAPI_CFLAGS += $(filter -m32 -m64 --target=%, $(KBUILD_CPPFLAGS) $(KBUILD_CFLAGS))
1414

1515
# USERCFLAGS might contain sysroot location for CC.
1616
UAPI_CFLAGS += $(USERCFLAGS)

0 commit comments

Comments
 (0)