mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
d45e44d4be
From: Jeff Dike <jdike@addtoit.com>, Paolo Giarrusso <blaisorblade@yahoo.it> Make sure that when compiling USER_OBJS the correct compilation options are passed; since they are compiled with USER_CFLAGS which is derived from CFLAGS, make sure it is a recursively evaluated variable, so that changes to CFLAGS done afterwards the inclusion of arch/$(ARCH)/Makefile are reflected in USER_CFLAGS. For instance, without this patch userspace objects are never compiled with debug info active. 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>
25 lines
607 B
Text
25 lines
607 B
Text
# Copyright 2003 - 2004 Pathscale, Inc
|
|
# Released under the GPL
|
|
|
|
core-y += arch/um/sys-x86_64/ arch/x86_64/crypto/
|
|
START := 0x60000000
|
|
|
|
_extra_flags_ = -fno-builtin -m64
|
|
|
|
#We #undef __x86_64__ for kernelspace, not for userspace where
|
|
#it's needed for headers to work!
|
|
ARCH_KERNEL_DEFINES = -U__$(SUBARCH)__
|
|
CFLAGS += $(_extra_flags_)
|
|
|
|
CHECKFLAGS += -m64
|
|
AFLAGS += -m64
|
|
LDFLAGS += -m elf_x86_64
|
|
CPPFLAGS += -m64
|
|
|
|
ELF_ARCH := i386:x86-64
|
|
ELF_FORMAT := elf64-x86-64
|
|
|
|
# Not on all 64-bit distros /lib is a symlink to /lib64. PLD is an example.
|
|
|
|
LINK-$(CONFIG_LD_SCRIPT_DYN) += -Wl,-rpath,/lib64
|
|
LINK-y += -m64
|