diff options
Diffstat (limited to 'arch/tile')
-rw-r--r-- | arch/tile/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/arch/tile/Makefile b/arch/tile/Makefile index 9520bc5a4b7f..e20b0a0b64a1 100644 --- a/arch/tile/Makefile +++ b/arch/tile/Makefile | |||
@@ -34,7 +34,12 @@ LIBGCC_PATH := \ | |||
34 | $(shell $(CC) $(KBUILD_CFLAGS) $(KCFLAGS) -print-libgcc-file-name) | 34 | $(shell $(CC) $(KBUILD_CFLAGS) $(KCFLAGS) -print-libgcc-file-name) |
35 | 35 | ||
36 | # Provide the path to use for "make defconfig". | 36 | # Provide the path to use for "make defconfig". |
37 | KBUILD_DEFCONFIG := $(ARCH)_defconfig | 37 | # We default to the newer TILE-Gx architecture if only "tile" is given. |
38 | ifeq ($(ARCH),tile) | ||
39 | KBUILD_DEFCONFIG := tilegx_defconfig | ||
40 | else | ||
41 | KBUILD_DEFCONFIG := $(ARCH)_defconfig | ||
42 | endif | ||
38 | 43 | ||
39 | # Used as a file extension when useful, e.g. head_$(BITS).o | 44 | # Used as a file extension when useful, e.g. head_$(BITS).o |
40 | # Not needed for (e.g.) "$(CC) -m32" since the compiler automatically | 45 | # Not needed for (e.g.) "$(CC) -m32" since the compiler automatically |