projects
/
GitHub
/
LineageOS
/
G12
/
android_kernel_amlogic_linux-4.9.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fefc74a
)
x86/build: Turn off -fcf-protection for realmode targets
author
Arnd Bergmann
<arnd@arndb.de>
Tue, 23 Mar 2021 12:48:36 +0000
(13:48 +0100)
committer
Greg Kroah-Hartman
<gregkh@linuxfoundation.org>
Sat, 10 Apr 2021 11:04:44 +0000
(13:04 +0200)
[ Upstream commit
9fcb51c14da2953de585c5c6e50697b8a6e91a7b
]
The new Ubuntu GCC packages turn on -fcf-protection globally,
which causes a build failure in the x86 realmode code:
cc1: error: ‘-fcf-protection’ is not compatible with this target
Turn it off explicitly on compilers that understand this option.
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Link:
https://lore.kernel.org/r/20210323124846.1584944-1-arnd@kernel.org
Signed-off-by: Sasha Levin <sashal@kernel.org>
arch/x86/Makefile
patch
|
blob
|
blame
|
history
diff --git
a/arch/x86/Makefile
b/arch/x86/Makefile
index 9f0099c46c8813eae8bdb027bfdaf8c30427f332..9ebbd4892557e74a18ce12270cde23cc77aec462 100644
(file)
--- a/
arch/x86/Makefile
+++ b/
arch/x86/Makefile
@@
-34,7
+34,7
@@
REALMODE_CFLAGS := $(M16_CFLAGS) -g -Os -D__KERNEL__ \
-DDISABLE_BRANCH_PROFILING \
-Wall -Wstrict-prototypes -march=i386 -mregparm=3 \
-fno-strict-aliasing -fomit-frame-pointer -fno-pic \
- -mno-mmx -mno-sse
+ -mno-mmx -mno-sse
$(call cc-option,-fcf-protection=none)
REALMODE_CFLAGS += $(call __cc-option, $(CC), $(REALMODE_CFLAGS), -ffreestanding)
REALMODE_CFLAGS += $(call __cc-option, $(CC), $(REALMODE_CFLAGS), -fno-stack-protector)