diff options
Diffstat (limited to 'arch/mips/Makefile')
-rw-r--r-- | arch/mips/Makefile | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/arch/mips/Makefile b/arch/mips/Makefile index 4337c492ed1b..ce7e02e613a7 100644 --- a/arch/mips/Makefile +++ b/arch/mips/Makefile | |||
@@ -577,19 +577,17 @@ endif | |||
577 | # Automatically detect the build format. By default we choose | 577 | # Automatically detect the build format. By default we choose |
578 | # the elf format according to the load address. | 578 | # the elf format according to the load address. |
579 | # We can always force a build with a 64-bits symbol format by | 579 | # We can always force a build with a 64-bits symbol format by |
580 | # passing 'BUILD_ELF32=no' option to the make's command line. | 580 | # passing 'KBUILD_SYM32=no' option to the make's command line. |
581 | # | 581 | # |
582 | ifdef CONFIG_64BIT | 582 | ifdef CONFIG_64BIT |
583 | ifndef BUILD_ELF32 | 583 | ifndef KBUILD_SYM32 |
584 | ifeq ($(shell expr $(load-y) \< 0xffffffff80000000), 0) | 584 | ifeq ($(shell expr $(load-y) \< 0xffffffff80000000), 0) |
585 | BUILD_ELF32 = y | 585 | KBUILD_SYM32 = y |
586 | endif | 586 | endif |
587 | endif | 587 | endif |
588 | 588 | ||
589 | ifeq ($(BUILD_ELF32), y) | 589 | ifeq ($(KBUILD_SYM32), y) |
590 | cflags-y += -msym32 | 590 | cflags-y += -msym32 -DKBUILD_64BIT_SYM32 |
591 | else | ||
592 | cflags-y += -DCONFIG_BUILD_ELF64 | ||
593 | endif | 591 | endif |
594 | endif | 592 | endif |
595 | 593 | ||