grub-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[PATCH 2/2] build: Disable PIE in TARGET_CCASFLAGS if needed


From: Matt Turner
Subject: [PATCH 2/2] build: Disable PIE in TARGET_CCASFLAGS if needed
Date: Wed, 19 Feb 2020 22:51:42 -0800

From: Mike Gilbert <address@hidden>

PIE should be disabled in assembly sources as well, or else grub will
fail to boot.

Bug: https://bugs.gentoo.org/667852
---
 configure.ac | 1 +
 1 file changed, 1 insertion(+)

diff --git a/configure.ac b/configure.ac
index b5e31c787..e2c783652 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1263,6 +1263,7 @@ grub_CHECK_LINK_PIE
 # `-fPIE' or '-fpie' and '-pie' in the default specs.
 if [ x"$pie_possible" = xyes ]; then
   TARGET_CFLAGS="$TARGET_CFLAGS -fno-PIE -fno-pie"
+  TARGET_CCASFLAGS="$TARGET_CCASFLAGS -fno-PIE -fno-pie"
 fi
 
 if [ x"$link_nopie_needed" = xyes ] || [ x"$pie_possible" = xyes ]; then
-- 
2.24.1




reply via email to

[Prev in Thread] Current Thread [Next in Thread]