Makefile-x86_64 563 B

12345678910111213141516171819202122
  1. # Copyright 2003 - 2004 Pathscale, Inc
  2. # Released under the GPL
  3. core-y += arch/um/sys-x86_64/
  4. START := 0x60000000
  5. #We #undef __x86_64__ for kernelspace, not for userspace where
  6. #it's needed for headers to work!
  7. CFLAGS += -U__$(SUBARCH)__ -fno-builtin -m64
  8. USER_CFLAGS += -fno-builtin -m64
  9. CHECKFLAGS += -m64
  10. AFLAGS += -m64
  11. LDFLAGS += -m elf_x86_64
  12. CPPFLAGS += -m64
  13. ELF_ARCH := i386:x86-64
  14. ELF_FORMAT := elf64-x86-64
  15. # Not on all 64-bit distros /lib is a symlink to /lib64. PLD is an example.
  16. LINK-$(CONFIG_LD_SCRIPT_DYN) += -Wl,-rpath,/lib64
  17. LINK-y += -m64