|
@@ -228,12 +228,13 @@ cc-if-fullversion = $(shell [ $(cc-fullversion) $(1) $(2) ] && echo $(3) || echo
|
|
|
# cc-ldoption
|
|
|
# Usage: ldflags += $(call cc-ldoption, -Wl$(comma)--hash-style=both)
|
|
|
cc-ldoption = $(call try-run-cached,\
|
|
|
- $(CC) $(1) -nostdlib -x c /dev/null -o "$$TMP",$(1),$(2))
|
|
|
+ $(CC) $(1) $(KBUILD_CPPFLAGS) $(CC_OPTION_CFLAGS) -nostdlib -x c /dev/null -o "$$TMP",$(1),$(2))
|
|
|
|
|
|
# ld-option
|
|
|
# Usage: LDFLAGS += $(call ld-option, -X)
|
|
|
ld-option = $(call try-run-cached,\
|
|
|
- $(CC) -x c /dev/null -c -o "$$TMPO" ; $(LD) $(1) "$$TMPO" -o "$$TMP",$(1),$(2))
|
|
|
+ $(CC) $(KBUILD_CPPFLAGS) $(CC_OPTION_CFLAGS) -x c /dev/null -c -o "$$TMPO"; \
|
|
|
+ $(LD) $(LDFLAGS) $(1) "$$TMPO" -o "$$TMP",$(1),$(2))
|
|
|
|
|
|
# ar-option
|
|
|
# Usage: KBUILD_ARFLAGS := $(call ar-option,D)
|