Skip to content

Commit

Permalink
[PATCH] uml: use -mcmodel=kernel for x86_64
Browse files Browse the repository at this point in the history
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 <blaisorblade@yahoo.it>
Cc: Jeff Dike <jdike@addtoit.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
  • Loading branch information
Paolo 'Blaisorblade' Giarrusso authored and Linus Torvalds committed Sep 27, 2006
1 parent 85f6517 commit 0683750
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions arch/um/Makefile-x86_64
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 0683750

Please sign in to comment.