From: Atsushi Nemoto Date: Tue, 10 Oct 2006 13:13:55 +0000 (+0900) Subject: [MIPS] Do not use -msym32 option for modules. X-Git-Tag: v3.12-rc1~31920^2~20^2~244^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=236d333c3c05c179e31f461285c09271256a1381;p=kernel%2Fkernel-generic.git [MIPS] Do not use -msym32 option for modules. On 64-bit kernel, modules are loaded into XKSEG for now. While XKSEG address is not a sign-extended 32-bit address, we can not use -msym32 option. Signed-off-by: Atsushi Nemoto Signed-off-by: Ralf Baechle --- diff --git a/arch/mips/Makefile b/arch/mips/Makefile index 641aa30..d580d46 100644 --- a/arch/mips/Makefile +++ b/arch/mips/Makefile @@ -63,7 +63,9 @@ cflags-y += -mabi=64 ifdef CONFIG_BUILD_ELF64 cflags-y += $(call cc-option,-mno-explicit-relocs) else -cflags-y += $(call cc-option,-msym32) +# -msym32 can not be used for modules since they are loaded into XKSEG +CFLAGS_MODULE += $(call cc-option,-mno-explicit-relocs) +CFLAGS_KERNEL += $(call cc-option,-msym32) endif endif