diff options
author | Chris Metcalf <cmetcalf@tilera.com> | 2012-03-29 15:30:19 -0400 |
---|---|---|
committer | Chris Metcalf <cmetcalf@tilera.com> | 2012-04-02 12:12:59 -0400 |
commit | 6731aa9eae3e94b094a44d2aea02387a39202fbc (patch) | |
tree | ce02d323a9c0fb2fb098f9fc9318bf29080fe1ff | |
parent | 51bcdf8879f7920946c90087e6160680812a44bd (diff) | |
download | linux-3.10-6731aa9eae3e94b094a44d2aea02387a39202fbc.tar.gz linux-3.10-6731aa9eae3e94b094a44d2aea02387a39202fbc.tar.bz2 linux-3.10-6731aa9eae3e94b094a44d2aea02387a39202fbc.zip |
arch/tile/Makefile: use KCFLAGS when figuring out the libgcc path.
Signed-off-by: Chris Metcalf <cmetcalf@tilera.com>
-rw-r--r-- | arch/tile/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/tile/Makefile b/arch/tile/Makefile index 17acce70569..5e4d3b98d71 100644 --- a/arch/tile/Makefile +++ b/arch/tile/Makefile @@ -30,7 +30,8 @@ ifneq ($(CONFIG_DEBUG_EXTRA_FLAGS),"") KBUILD_CFLAGS += $(CONFIG_DEBUG_EXTRA_FLAGS) endif -LIBGCC_PATH := $(shell $(CC) $(KBUILD_CFLAGS) -print-libgcc-file-name) +LIBGCC_PATH := \ + $(shell $(CC) $(KBUILD_CFLAGS) $(KCFLAGS) -print-libgcc-file-name) # Provide the path to use for "make defconfig". KBUILD_DEFCONFIG := $(ARCH)_defconfig |