]> Git Repo - linux.git/commitdiff
[PATCH] uml: use -mcmodel=kernel for x86_64
authorPaolo 'Blaisorblade' Giarrusso <[email protected]>
Wed, 27 Sep 2006 08:50:27 +0000 (01:50 -0700)
committerLinus Torvalds <[email protected]>
Wed, 27 Sep 2006 15:26:15 +0000 (08:26 -0700)
We have never used this flag and recently one user experienced a complaining
warning about this (there was a symbol in the positive half of the address space
IIRC). So fix it.

Signed-off-by: Paolo 'Blaisorblade' Giarrusso <[email protected]>
Cc: Jeff Dike <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
arch/um/Makefile-x86_64

index 9558a7cf34d599f8eda369838ffda69bba6ec646..11154b6773ec230302341d8889e79601677b47c1 100644 (file)
@@ -4,10 +4,13 @@
 core-y += arch/um/sys-x86_64/
 START := 0x60000000
 
+_extra_flags_ = -fno-builtin -m64 -mcmodel=kernel
+
 #We #undef __x86_64__ for kernelspace, not for userspace where
 #it's needed for headers to work!
-CFLAGS += -U__$(SUBARCH)__ -fno-builtin -m64
-USER_CFLAGS += -fno-builtin -m64
+CFLAGS += -U__$(SUBARCH)__ $(_extra_flags_)
+USER_CFLAGS += $(_extra_flags_)
+
 CHECKFLAGS  += -m64
 AFLAGS += -m64
 LDFLAGS += -m elf_x86_64
This page took 0.053212 seconds and 4 git commands to generate.