1 # SPDX-License-Identifier: GPL-2.0
2 # Unified Makefile for i386 and x86_64
4 # select defconfig based on actual architecture
6 ifeq ($(shell uname -m),x86_64)
7 KBUILD_DEFCONFIG := x86_64_defconfig
9 KBUILD_DEFCONFIG := i386_defconfig
12 KBUILD_DEFCONFIG := $(ARCH)_defconfig
15 ifdef CONFIG_CC_IS_GCC
16 RETPOLINE_CFLAGS := $(call cc-option,-mindirect-branch=thunk-extern -mindirect-branch-register)
17 RETPOLINE_CFLAGS += $(call cc-option,-mindirect-branch-cs-prefix)
18 RETPOLINE_VDSO_CFLAGS := $(call cc-option,-mindirect-branch=thunk-inline -mindirect-branch-register)
20 ifdef CONFIG_CC_IS_CLANG
21 RETPOLINE_CFLAGS := -mretpoline-external-thunk
22 RETPOLINE_VDSO_CFLAGS := -mretpoline
26 RETHUNK_CFLAGS := -mfunction-return=thunk-extern
27 RETPOLINE_CFLAGS += $(RETHUNK_CFLAGS)
31 export RETPOLINE_CFLAGS
32 export RETPOLINE_VDSO_CFLAGS
34 # For gcc stack alignment is specified with -mpreferred-stack-boundary,
35 # clang has the option -mstack-alignment for that purpose.
36 ifneq ($(call cc-option, -mpreferred-stack-boundary=4),)
37 cc_stack_align4 := -mpreferred-stack-boundary=2
38 cc_stack_align8 := -mpreferred-stack-boundary=3
39 else ifneq ($(call cc-option, -mstack-alignment=16),)
40 cc_stack_align4 := -mstack-alignment=4
41 cc_stack_align8 := -mstack-alignment=8
44 # How to compile the 16-bit code. Note we always compile for -march=i386;
45 # that way we can complain to the user if the CPU is insufficient.
46 REALMODE_CFLAGS := -m16 -g -Os -DDISABLE_BRANCH_PROFILING -D__DISABLE_EXPORTS \
47 -Wall -Wstrict-prototypes -march=i386 -mregparm=3 \
48 -fno-strict-aliasing -fomit-frame-pointer -fno-pic \
49 -mno-mmx -mno-sse $(call cc-option,-fcf-protection=none)
51 REALMODE_CFLAGS += -ffreestanding
52 REALMODE_CFLAGS += -fno-stack-protector
53 REALMODE_CFLAGS += -Wno-address-of-packed-member
54 REALMODE_CFLAGS += $(cc_stack_align4)
55 REALMODE_CFLAGS += $(CLANG_FLAGS)
56 export REALMODE_CFLAGS
58 # BITS is used as extension for files which are available in a 32 bit
59 # and a 64 bit version to simplify shared Makefiles.
60 # e.g.: obj-y += foo_$(BITS).o
64 # Prevent GCC from generating any FP code by mistake.
66 # This must happen before we try the -mpreferred-stack-boundary, see:
68 # https://gcc.gnu.org/bugzilla/show_bug.cgi?id=53383
70 KBUILD_CFLAGS += -mno-sse -mno-mmx -mno-sse2 -mno-3dnow -mno-avx
72 ifeq ($(CONFIG_X86_KERNEL_IBT),y)
74 # Kernel IBT has S_CET.NOTRACK_EN=0, as such the compilers must not generate
75 # NOTRACK prefixes. Current generation compilers unconditionally employ NOTRACK
76 # for jump-tables, as such, disable jump-tables for now.
78 # (jump-tables are implicitly disabled by RETPOLINE)
80 # https://gcc.gnu.org/bugzilla/show_bug.cgi?id=104816
82 KBUILD_CFLAGS += $(call cc-option,-fcf-protection=branch -fno-jump-tables)
84 KBUILD_CFLAGS += $(call cc-option,-fcf-protection=none)
87 ifeq ($(CONFIG_X86_32),y)
90 CHECKFLAGS += -D__i386__
95 KBUILD_CFLAGS += -msoft-float -mregparm=3 -freg-struct-return
97 # Never want PIC in a 32-bit kernel, prevent breakage with GCC built
98 # with nonstandard options
99 KBUILD_CFLAGS += -fno-pic
101 # Align the stack to the register width instead of using the default
102 # alignment of 16 bytes. This reduces stack usage and the number of
103 # alignment instructions.
104 KBUILD_CFLAGS += $(cc_stack_align4)
106 # CPU-specific tuning. Anything which can be shared with UML should go here.
107 include $(srctree)/arch/x86/Makefile_32.cpu
108 KBUILD_CFLAGS += $(cflags-y)
110 # temporary until string.h is fixed
111 KBUILD_CFLAGS += -ffreestanding
113 ifeq ($(CONFIG_STACKPROTECTOR),y)
114 ifeq ($(CONFIG_SMP),y)
115 KBUILD_CFLAGS += -mstack-protector-guard-reg=fs -mstack-protector-guard-symbol=__stack_chk_guard
117 KBUILD_CFLAGS += -mstack-protector-guard=global
122 UTS_MACHINE := x86_64
123 CHECKFLAGS += -D__x86_64__
125 KBUILD_AFLAGS += -m64
126 KBUILD_CFLAGS += -m64
128 # Align jump targets to 1 byte, not the default 16 bytes:
129 KBUILD_CFLAGS += $(call cc-option,-falign-jumps=1)
131 # Pack loops tightly as well:
132 KBUILD_CFLAGS += $(call cc-option,-falign-loops=1)
134 # Don't autogenerate traditional x87 instructions
135 KBUILD_CFLAGS += -mno-80387
136 KBUILD_CFLAGS += $(call cc-option,-mno-fp-ret-in-387)
138 # By default gcc and clang use a stack alignment of 16 bytes for x86.
139 # However the standard kernel entry on x86-64 leaves the stack on an
140 # 8-byte boundary. If the compiler isn't informed about the actual
141 # alignment it will generate extra alignment instructions for the
142 # default alignment which keep the stack *mis*aligned.
143 # Furthermore an alignment to the register width reduces stack usage
144 # and the number of alignment instructions.
145 KBUILD_CFLAGS += $(cc_stack_align8)
147 # Use -mskip-rax-setup if supported.
148 KBUILD_CFLAGS += $(call cc-option,-mskip-rax-setup)
150 # FIXME - should be integrated in Makefile.cpu (Makefile_32.cpu)
151 cflags-$(CONFIG_MK8) += -march=k8
152 cflags-$(CONFIG_MPSC) += -march=nocona
153 cflags-$(CONFIG_MCORE2) += -march=core2
154 cflags-$(CONFIG_MATOM) += -march=atom
155 cflags-$(CONFIG_GENERIC_CPU) += -mtune=generic
156 KBUILD_CFLAGS += $(cflags-y)
158 KBUILD_CFLAGS += -mno-red-zone
159 KBUILD_CFLAGS += -mcmodel=kernel
163 # If the function graph tracer is used with mcount instead of fentry,
164 # '-maccumulate-outgoing-args' is needed to prevent a GCC bug
165 # (https://gcc.gnu.org/bugzilla/show_bug.cgi?id=42109)
167 ifdef CONFIG_FUNCTION_GRAPH_TRACER
168 ifndef CONFIG_HAVE_FENTRY
169 ACCUMULATE_OUTGOING_ARGS := 1
173 ifeq ($(ACCUMULATE_OUTGOING_ARGS), 1)
174 # This compiler flag is not supported by Clang:
175 KBUILD_CFLAGS += $(call cc-option,-maccumulate-outgoing-args,)
178 # Workaround for a gcc prelease that unfortunately was shipped in a suse release
179 KBUILD_CFLAGS += -Wno-sign-compare
181 KBUILD_CFLAGS += -fno-asynchronous-unwind-tables
183 # Avoid indirect branches in kernel to deal with Spectre
184 ifdef CONFIG_RETPOLINE
185 KBUILD_CFLAGS += $(RETPOLINE_CFLAGS)
186 # Additionally, avoid generating expensive indirect jumps which
187 # are subject to retpolines for small number of switch cases.
188 # clang turns off jump table generation by default when under
189 # retpoline builds, however, gcc does not for x86. This has
190 # only been fixed starting from gcc stable version 8.4.0 and
191 # onwards, but not for older ones. See gcc bug #86952.
192 ifndef CONFIG_CC_IS_CLANG
193 KBUILD_CFLAGS += -fno-jump-tables
198 KBUILD_CFLAGS += -mharden-sls=all
201 KBUILD_LDFLAGS += -m elf_$(UTS_MACHINE)
203 ifdef CONFIG_LTO_CLANG
204 ifeq ($(shell test $(CONFIG_LLD_VERSION) -lt 130000; echo $$?),0)
205 KBUILD_LDFLAGS += -plugin-opt=-stack-alignment=$(if $(CONFIG_X86_32),4,8)
209 ifdef CONFIG_X86_NEED_RELOCS
210 LDFLAGS_vmlinux := --emit-relocs --discard-none
216 # The 64-bit kernel must be aligned to 2MB. Pass -z max-page-size=0x200000 to
217 # the linker to force 2MB page size regardless of the default page size used
221 LDFLAGS_vmlinux += -z max-page-size=0x200000
225 archscripts: scripts_basic
226 $(Q)$(MAKE) $(build)=arch/x86/tools relocs
229 # Syscall table generation
232 $(Q)$(MAKE) $(build)=arch/x86/entry/syscalls all
237 head-y := arch/x86/kernel/head_$(BITS).o
238 head-y += arch/x86/kernel/head$(BITS).o
239 head-y += arch/x86/kernel/ebda.o
240 head-y += arch/x86/kernel/platform-quirks.o
242 libs-y += arch/x86/lib/
244 # drivers-y are linked after core-y
245 drivers-$(CONFIG_MATH_EMULATION) += arch/x86/math-emu/
246 drivers-$(CONFIG_PCI) += arch/x86/pci/
248 # suspend and hibernation support
249 drivers-$(CONFIG_PM) += arch/x86/power/
251 drivers-$(CONFIG_FB) += arch/x86/video/
254 # boot loader support. Several targets are kept for legacy purposes
256 boot := arch/x86/boot
258 BOOT_TARGETS = bzdisk fdimage fdimage144 fdimage288 hdimage isoimage
260 PHONY += bzImage $(BOOT_TARGETS)
262 # Default kernel to build
265 # KBUILD_IMAGE specify target image being built
266 KBUILD_IMAGE := $(boot)/bzImage
269 ifeq ($(CONFIG_X86_DECODER_SELFTEST),y)
270 $(Q)$(MAKE) $(build)=arch/x86/tools posttest
272 $(Q)$(MAKE) $(build)=$(boot) $(KBUILD_IMAGE)
273 $(Q)mkdir -p $(objtree)/arch/$(UTS_MACHINE)/boot
274 $(Q)ln -fsn ../../x86/boot/bzImage $(objtree)/arch/$(UTS_MACHINE)/boot/$@
276 $(BOOT_TARGETS): vmlinux
277 $(Q)$(MAKE) $(build)=$(boot) $@
283 PHONY += vdso_install
285 $(Q)$(MAKE) $(build)=arch/x86/entry/vdso $@
287 archprepare: checkbin
289 ifndef CONFIG_CC_HAS_ASM_GOTO
290 @echo Compiler lacks asm-goto support.
293 ifdef CONFIG_RETPOLINE
294 ifeq ($(RETPOLINE_CFLAGS),)
295 @echo "You are building kernel with non-retpoline compiler." >&2
296 @echo "Please update your compiler." >&2
302 $(Q)rm -rf $(objtree)/arch/i386
303 $(Q)rm -rf $(objtree)/arch/x86_64
306 echo '* bzImage - Compressed kernel image (arch/x86/boot/bzImage)'
307 echo ' install - Install kernel using (your) ~/bin/$(INSTALLKERNEL) or'
308 echo ' (distribution) /sbin/$(INSTALLKERNEL) or install to '
309 echo ' $$(INSTALL_PATH) and run lilo'
311 echo ' fdimage - Create 1.4MB boot floppy image (arch/x86/boot/fdimage)'
312 echo ' fdimage144 - Create 1.4MB boot floppy image (arch/x86/boot/fdimage)'
313 echo ' fdimage288 - Create 2.8MB boot floppy image (arch/x86/boot/fdimage)'
314 echo ' hdimage - Create a BIOS/EFI hard disk image (arch/x86/boot/hdimage)'
315 echo ' isoimage - Create a boot CD-ROM image (arch/x86/boot/image.iso)'
316 echo ' bzdisk/fdimage*/hdimage/isoimage also accept:'
317 echo ' FDARGS="..." arguments for the booted kernel'
318 echo ' FDINITRD=file initrd for the booted kernel'
320 echo ' kvm_guest.config - Enable Kconfig items for running this kernel as a KVM guest'
321 echo ' xen.config - Enable Kconfig items for running this kernel as a Xen guest'
322 echo ' x86_debug.config - Enable tip tree debugging options for testing'