Makefile_64 5.0 KB
Newer Older
L
Linus Torvalds 已提交
1
#
2
# x86_64 Makefile
L
Linus Torvalds 已提交
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
#
# This file is included by the global makefile so that you can add your own
# architecture-specific flags and dependencies. Remember to do have actions
# for "archclean" and "archdep" for cleaning up and making dependencies for
# this architecture
#
# This file is subject to the terms and conditions of the GNU General Public
# License.  See the file "COPYING" in the main directory of this archive
# for more details.
#
# Copyright (C) 1994 by Linus Torvalds
#
# 19990713  Artur Skawina <skawina@geocities.com>
#           Added '-march' and '-mpreferred-stack-boundary' support
# 20000913  Pavel Machek <pavel@suse.cz>
#	    Converted for x86_64 architecture
# 20010105  Andi Kleen, add IA32 compiler.
#           ....and later removed it again....
#
# $Id: Makefile,v 1.31 2002/03/22 15:56:07 ak Exp $

24 25 26 27 28 29
# BITS is used as extension for files which are available in a 32 bit
# and a 64 bit version to simplify shared Makefiles.
# e.g.: obj-y += foo_$(BITS).o
BITS := 64
export BITS

L
Linus Torvalds 已提交
30 31
LDFLAGS		:= -m elf_x86_64
OBJCOPYFLAGS	:= -O binary -R .note -R .comment -S
32
LDFLAGS_vmlinux :=
L
Linus Torvalds 已提交
33 34
CHECKFLAGS      += -D__x86_64__ -m64

35
cflags-y	:=
36
cflags-kernel-y	:=
L
Linus Torvalds 已提交
37 38
cflags-$(CONFIG_MK8) += $(call cc-option,-march=k8)
cflags-$(CONFIG_MPSC) += $(call cc-option,-march=nocona)
39 40 41 42
# gcc doesn't support -march=core2 yet as of gcc 4.3, but I hope it
# will eventually. Use -mtune=generic as fallback
cflags-$(CONFIG_MCORE2) += \
	$(call cc-option,-march=core2,$(call cc-option,-mtune=generic))
43
cflags-$(CONFIG_GENERIC_CPU) += $(call cc-option,-mtune=generic)
L
Linus Torvalds 已提交
44

45 46 47 48 49 50
cflags-y += -m64
cflags-y += -mno-red-zone
cflags-y += -mcmodel=kernel
cflags-y += -pipe
cflags-y += -Wno-sign-compare
cflags-y += -fno-asynchronous-unwind-tables
51
ifneq ($(CONFIG_DEBUG_INFO),y)
L
Linus Torvalds 已提交
52 53
# -fweb shrinks the kernel a bit, but the difference is very small
# it also messes up debugging, so don't use it for now.
54
#cflags-y += $(call cc-option,-fweb)
L
Linus Torvalds 已提交
55 56 57
endif
# -funit-at-a-time shrinks the kernel .text considerably
# unfortunately it makes reading oopses harder.
58
cflags-y += $(call cc-option,-funit-at-a-time)
L
Linus Torvalds 已提交
59
# prevent gcc from generating any FP code by mistake
60
cflags-y += $(call cc-option,-mno-sse -mno-mmx -mno-sse2 -mno-3dnow,)
61 62 63 64
# this works around some issues with generating unwind tables in older gccs
# newer gccs do it by default
cflags-y += -maccumulate-outgoing-args

65
# do binutils support CFI?
66
cflags-y += $(call as-instr,.cfi_startproc\n.cfi_rel_offset rsp${comma}0\n.cfi_endproc,-DCONFIG_AS_CFI=1,)
67
KBUILD_AFLAGS += $(call as-instr,.cfi_startproc\n.cfi_rel_offset rsp${comma}0\n.cfi_endproc,-DCONFIG_AS_CFI=1,)
L
Linus Torvalds 已提交
68

69 70
# is .cfi_signal_frame supported too?
cflags-y += $(call as-instr,.cfi_startproc\n.cfi_signal_frame\n.cfi_endproc,-DCONFIG_AS_CFI_SIGNAL_FRAME=1,)
71
KBUILD_AFLAGS += $(call as-instr,.cfi_startproc\n.cfi_signal_frame\n.cfi_endproc,-DCONFIG_AS_CFI_SIGNAL_FRAME=1,)
72

73 74
cflags-$(CONFIG_CC_STACKPROTECTOR) += $(shell $(CONFIG_SHELL) $(srctree)/scripts/gcc-x86_64-has-stack-protector.sh "$(CC)" -fstack-protector )
cflags-$(CONFIG_CC_STACKPROTECTOR_ALL) += $(shell $(CONFIG_SHELL) $(srctree)/scripts/gcc-x86_64-has-stack-protector.sh "$(CC)" -fstack-protector-all )
75

76
KBUILD_CFLAGS += $(cflags-y)
77
CFLAGS_KERNEL += $(cflags-kernel-y)
78
KBUILD_AFLAGS += -m64
79

H
Hiroshi Shimamoto 已提交
80
head-y := arch/x86/kernel/head_64.o arch/x86/kernel/head64.o arch/x86/kernel/init_task.o
L
Linus Torvalds 已提交
81

T
Thomas Gleixner 已提交
82
libs-y 					+= arch/x86/lib/
T
Thomas Gleixner 已提交
83
core-y					+= arch/x86/kernel/ \
T
Thomas Gleixner 已提交
84
					   arch/x86/mm/ \
T
Thomas Gleixner 已提交
85
					   arch/x86/crypto/ \
T
Thomas Gleixner 已提交
86
					   arch/x86/vdso/
T
Thomas Gleixner 已提交
87
core-$(CONFIG_IA32_EMULATION)		+= arch/x86/ia32/
T
Thomas Gleixner 已提交
88
drivers-$(CONFIG_PCI)			+= arch/x86/pci/
T
Thomas Gleixner 已提交
89
drivers-$(CONFIG_OPROFILE)		+= arch/x86/oprofile/
L
Linus Torvalds 已提交
90

T
Thomas Gleixner 已提交
91
boot := arch/x86/boot
L
Linus Torvalds 已提交
92

93
PHONY += bzImage bzlilo install archmrproper \
94
	 fdimage fdimage144 fdimage288 isoimage archclean
L
Linus Torvalds 已提交
95 96 97 98

#Default target when executing "make"
all: bzImage

T
Thomas Gleixner 已提交
99
BOOTIMAGE                     := arch/x86/boot/bzImage
L
Linus Torvalds 已提交
100 101 102 103
KBUILD_IMAGE                  := $(BOOTIMAGE)

bzImage: vmlinux
	$(Q)$(MAKE) $(build)=$(boot) $(BOOTIMAGE)
104 105
	$(Q)mkdir -p $(objtree)/arch/x86_64/boot
	$(Q)ln -fsn ../../x86/boot/bzImage $(objtree)/arch/x86_64/boot/bzImage
L
Linus Torvalds 已提交
106 107 108 109 110 111 112

bzlilo: vmlinux
	$(Q)$(MAKE) $(build)=$(boot) BOOTIMAGE=$(BOOTIMAGE) zlilo

bzdisk: vmlinux
	$(Q)$(MAKE) $(build)=$(boot) BOOTIMAGE=$(BOOTIMAGE) zdisk

113
fdimage fdimage144 fdimage288 isoimage: vmlinux
L
Linus Torvalds 已提交
114 115
	$(Q)$(MAKE) $(build)=$(boot) BOOTIMAGE=$(BOOTIMAGE) $@

116
install: vdso_install
117 118
	$(Q)$(MAKE) $(build)=$(boot) BOOTIMAGE=$(BOOTIMAGE) $@ 

119 120 121 122
vdso_install:
ifeq ($(CONFIG_IA32_EMULATION),y)
	$(Q)$(MAKE) $(build)=arch/x86/ia32 $@
endif
123
	$(Q)$(MAKE) $(build)=arch/x86/vdso $@
124

L
Linus Torvalds 已提交
125
archclean:
T
Thomas Gleixner 已提交
126
	$(Q)rm -rf $(objtree)/arch/x86_64/boot
L
Linus Torvalds 已提交
127 128 129
	$(Q)$(MAKE) $(clean)=$(boot)

define archhelp
130
  echo  '* bzImage	- Compressed kernel image (arch/x86/boot/bzImage)'
L
Linus Torvalds 已提交
131
  echo  '  install	- Install kernel using'
132 133 134 135 136 137
  echo  '		   (your) ~/bin/installkernel or'
  echo  '		   (distribution) /sbin/installkernel or'
  echo  '		   install to $$(INSTALL_PATH) and run lilo'
  echo  '  bzdisk       - Create a boot floppy in /dev/fd0'
  echo  '  fdimage      - Create a boot floppy image'
  echo  '  isoimage     - Create a boot CD-ROM image'
L
Linus Torvalds 已提交
138 139
endef

140 141 142
CLEAN_FILES += arch/x86/boot/fdimage \
	       arch/x86/boot/image.iso \
	       arch/x86/boot/mtools.conf
L
Linus Torvalds 已提交
143 144