diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -382,6 +382,7 @@ export KBUILD_CFLAGS CFLAGS_KERNEL CFLAGS_MODULE CFLAGS_GCOV | |||
382 | export KBUILD_AFLAGS AFLAGS_KERNEL AFLAGS_MODULE | 382 | export KBUILD_AFLAGS AFLAGS_KERNEL AFLAGS_MODULE |
383 | export KBUILD_AFLAGS_MODULE KBUILD_CFLAGS_MODULE KBUILD_LDFLAGS_MODULE | 383 | export KBUILD_AFLAGS_MODULE KBUILD_CFLAGS_MODULE KBUILD_LDFLAGS_MODULE |
384 | export KBUILD_AFLAGS_KERNEL KBUILD_CFLAGS_KERNEL | 384 | export KBUILD_AFLAGS_KERNEL KBUILD_CFLAGS_KERNEL |
385 | export KBUILD_ARFLAGS | ||
385 | 386 | ||
386 | # When compiling out-of-tree modules, put MODVERDIR in the module | 387 | # When compiling out-of-tree modules, put MODVERDIR in the module |
387 | # tree rather than in the kernel tree. The kernel tree might | 388 | # tree rather than in the kernel tree. The kernel tree might |
@@ -612,6 +613,9 @@ KBUILD_CFLAGS += $(call cc-option,-fno-strict-overflow) | |||
612 | # conserve stack if available | 613 | # conserve stack if available |
613 | KBUILD_CFLAGS += $(call cc-option,-fconserve-stack) | 614 | KBUILD_CFLAGS += $(call cc-option,-fconserve-stack) |
614 | 615 | ||
616 | # use the deterministic mode of AR if available | ||
617 | KBUILD_ARFLAGS := $(call ar-option,D) | ||
618 | |||
615 | # check for 'asm goto' | 619 | # check for 'asm goto' |
616 | ifeq ($(shell $(CONFIG_SHELL) $(srctree)/scripts/gcc-goto.sh $(CC)), y) | 620 | ifeq ($(shell $(CONFIG_SHELL) $(srctree)/scripts/gcc-goto.sh $(CC)), y) |
617 | KBUILD_CFLAGS += -DCC_HAVE_ASM_GOTO | 621 | KBUILD_CFLAGS += -DCC_HAVE_ASM_GOTO |