diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2020-12-14 13:54:50 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2020-12-14 13:54:50 -0800 |
commit | 84292fffc2468125632a21c09533a89426ea212e (patch) | |
tree | d2ec4f5d668ebb45ada890c6c9c9b9e042b2a6dd /arch/x86/boot | |
parent | 8ba27ae36b416a1507e783dbee4bb521fd6bb519 (diff) | |
parent | 2838307b019dfec0c309c4e8e589658736cff4c9 (diff) |
Merge tag 'x86_build_for_v5.11' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
Pull x86 build updates from Borislav Petkov:
"Two x86 build fixes:
- Fix the vmlinux size check on 64-bit along with adding useful
clarifications on the topic (Arvind Sankar)
- Remove -m16 workaround now that the GCC versions that need it are
unsupported (Nick Desaulniers)"
* tag 'x86_build_for_v5.11' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
x86/build: Remove -m16 workaround for unsupported versions of GCC
x86/build: Fix vmlinux size check on 64-bit
Diffstat (limited to 'arch/x86/boot')
-rw-r--r-- | arch/x86/boot/code16gcc.h | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/arch/x86/boot/code16gcc.h b/arch/x86/boot/code16gcc.h deleted file mode 100644 index e19fd7536307..000000000000 --- a/arch/x86/boot/code16gcc.h +++ /dev/null @@ -1,12 +0,0 @@ -/* SPDX-License-Identifier: GPL-2.0 */ -# -# code16gcc.h -# -# This file is added to the assembler via -Wa when compiling 16-bit C code. -# This is done this way instead via asm() to make sure gcc does not reorder -# things around us. -# -# gcc 4.9+ has a real -m16 option so we can drop this hack long term. -# - - .code16gcc |