Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | # SPDX-License-Identifier: GPL-2.0 |
Al Viro | 5c48b10 | 2011-08-18 20:06:39 +0100 | [diff] [blame] | 2 | core-y += arch/x86/crypto/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | |
David Gow | 8849818 | 2022-12-17 12:44:35 +0800 | [diff] [blame] | 4 | # |
| 5 | # Disable SSE and other FP/SIMD instructions to match normal x86 |
David Gow | a3046a6 | 2023-03-18 12:15:54 +0800 | [diff] [blame] | 6 | # This is required to work around issues in older LLVM versions, but breaks |
| 7 | # GCC versions < 11. See: |
| 8 | # https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99652 |
David Gow | 8849818 | 2022-12-17 12:44:35 +0800 | [diff] [blame] | 9 | # |
David Gow | a3046a6 | 2023-03-18 12:15:54 +0800 | [diff] [blame] | 10 | ifeq ($(CONFIG_CC_IS_CLANG),y) |
David Gow | 8849818 | 2022-12-17 12:44:35 +0800 | [diff] [blame] | 11 | KBUILD_CFLAGS += -mno-sse -mno-mmx -mno-sse2 -mno-3dnow -mno-avx |
David Gow | 9a2123b | 2024-05-29 17:33:35 +0800 | [diff] [blame] | 12 | KBUILD_RUSTFLAGS += --target=$(objtree)/scripts/target.json |
David Gow | 8849818 | 2022-12-17 12:44:35 +0800 | [diff] [blame] | 13 | KBUILD_RUSTFLAGS += -Ctarget-feature=-sse,-sse2,-sse3,-ssse3,-sse4.1,-sse4.2,-avx,-avx2 |
David Gow | a3046a6 | 2023-03-18 12:15:54 +0800 | [diff] [blame] | 14 | endif |
David Gow | 8849818 | 2022-12-17 12:44:35 +0800 | [diff] [blame] | 15 | |
Al Viro | 7bbe720 | 2011-08-18 20:06:29 +0100 | [diff] [blame] | 16 | ifeq ($(CONFIG_X86_32),y) |
Jeff Dike | 42fda66 | 2007-10-16 01:26:50 -0700 | [diff] [blame] | 17 | START := 0x8048000 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | |
Masahiro Yamada | d503ac5 | 2018-08-24 08:20:39 +0900 | [diff] [blame] | 19 | KBUILD_LDFLAGS += -m elf_i386 |
Al Viro | a6e77d6 | 2011-08-18 20:06:19 +0100 | [diff] [blame] | 20 | ELF_ARCH := i386 |
| 21 | ELF_FORMAT := elf32-i386 |
Al Viro | ca5cd87 | 2007-10-29 04:31:16 +0000 | [diff] [blame] | 22 | CHECKFLAGS += -D__i386__ |
Paolo 'Blaisorblade' Giarrusso | 20d0021 | 2005-07-14 00:33:43 -0700 | [diff] [blame] | 23 | |
Sam Ravnborg | a0f97e0 | 2007-10-14 22:21:35 +0200 | [diff] [blame] | 24 | KBUILD_CFLAGS += $(call cc-option,-m32) |
Sam Ravnborg | 222d394 | 2007-10-15 21:59:31 +0200 | [diff] [blame] | 25 | KBUILD_AFLAGS += $(call cc-option,-m32) |
Paolo 'Blaisorblade' Giarrusso | 20d0021 | 2005-07-14 00:33:43 -0700 | [diff] [blame] | 26 | LINK-y += $(call cc-option,-m32) |
Paolo 'Blaisorblade' Giarrusso | 20d0021 | 2005-07-14 00:33:43 -0700 | [diff] [blame] | 27 | |
Al Viro | 3cb4209 | 2012-04-09 13:59:00 -0400 | [diff] [blame] | 28 | LDS_EXTRA := -Ui386 |
| 29 | export LDS_EXTRA |
| 30 | |
Paolo 'Blaisorblade' Giarrusso | 96d55b8 | 2005-10-30 15:00:07 -0800 | [diff] [blame] | 31 | # First of all, tune CFLAGS for the specific CPU. This actually sets cflags-y. |
Masahiro Yamada | 67d7c30 | 2023-01-28 18:24:23 +0900 | [diff] [blame] | 32 | include $(srctree)/arch/x86/Makefile_32.cpu |
Paolo 'Blaisorblade' Giarrusso | 96d55b8 | 2005-10-30 15:00:07 -0800 | [diff] [blame] | 33 | |
| 34 | # prevent gcc from keeping the stack 16 byte aligned. Taken from i386. |
| 35 | cflags-y += $(call cc-option,-mpreferred-stack-boundary=2) |
| 36 | |
Jeff Dike | fec468b | 2006-06-04 02:51:49 -0700 | [diff] [blame] | 37 | # Prevent sprintf in nfsd from being converted to strcpy and resulting in |
| 38 | # an unresolved reference. |
| 39 | cflags-y += -ffreestanding |
| 40 | |
Sam Ravnborg | a0f97e0 | 2007-10-14 22:21:35 +0200 | [diff] [blame] | 41 | KBUILD_CFLAGS += $(cflags-y) |
Al Viro | 7bbe720 | 2011-08-18 20:06:29 +0100 | [diff] [blame] | 42 | |
| 43 | else |
| 44 | |
| 45 | START := 0x60000000 |
| 46 | |
| 47 | KBUILD_CFLAGS += -fno-builtin -m64 |
| 48 | |
| 49 | CHECKFLAGS += -m64 -D__x86_64__ |
| 50 | KBUILD_AFLAGS += -m64 |
Masahiro Yamada | d503ac5 | 2018-08-24 08:20:39 +0900 | [diff] [blame] | 51 | KBUILD_LDFLAGS += -m elf_x86_64 |
Al Viro | 7bbe720 | 2011-08-18 20:06:29 +0100 | [diff] [blame] | 52 | KBUILD_CPPFLAGS += -m64 |
| 53 | |
| 54 | ELF_ARCH := i386:x86-64 |
| 55 | ELF_FORMAT := elf64-x86-64 |
| 56 | |
| 57 | # Not on all 64-bit distros /lib is a symlink to /lib64. PLD is an example. |
| 58 | |
Johannes Berg | 386093c | 2021-03-08 14:02:37 +0100 | [diff] [blame] | 59 | LINK-$(CONFIG_LD_SCRIPT_DYN_RPATH) += -Wl,-rpath,/lib64 |
Al Viro | 7bbe720 | 2011-08-18 20:06:29 +0100 | [diff] [blame] | 60 | LINK-y += -m64 |
| 61 | |
Al Viro | 7bbe720 | 2011-08-18 20:06:29 +0100 | [diff] [blame] | 62 | endif |