summaryrefslogtreecommitdiffstats
path: root/payloads
diff options
context:
space:
mode:
authorThomas Heijligen <src@posteo.de>2022-11-29 19:51:03 +0100
committerFelix Held <felix-coreboot@felixheld.de>2023-03-07 17:10:36 +0000
commitc0c62ebbae1d22c1882026cad41d530fa9854175 (patch)
treea53c23a1937519c78ad1a9abcf675bcc7388af76 /payloads
parentf0c1c9791b2909e5d963d55b215485f66f1fc62e (diff)
downloadcoreboot-c0c62ebbae1d22c1882026cad41d530fa9854175.tar.gz
coreboot-c0c62ebbae1d22c1882026cad41d530fa9854175.tar.bz2
coreboot-c0c62ebbae1d22c1882026cad41d530fa9854175.zip
libpayload: bin/lpgcc allow to call without files
When building libflashrom ontop of libpayload, meson calls the lpgcc wrapper with -xc but without a file to obtain information about the C compiler. To make this work guard $_LIBGCC with -xnone in the lpgcc wrapper. -xnone tells the compiler to interpret the following files of libpayload by their suffix, not the privious given -x option. Change-Id: I9e037ff44c0a6d0585d8a6f8aeabae6e651142e2 Signed-off-by: Thomas Heijligen <src@posteo.de> Reviewed-on: https://review.coreboot.org/c/coreboot/+/70117 Reviewed-by: Julius Werner <jwerner@chromium.org> Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Nico Huber <nico.h@gmx.de>
Diffstat (limited to 'payloads')
-rwxr-xr-xpayloads/libpayload/bin/lpgcc2
1 files changed, 1 insertions, 1 deletions
diff --git a/payloads/libpayload/bin/lpgcc b/payloads/libpayload/bin/lpgcc
index 5e418e84bd6d..35fa5584a80c 100755
--- a/payloads/libpayload/bin/lpgcc
+++ b/payloads/libpayload/bin/lpgcc
@@ -229,5 +229,5 @@ else
# header to be placed below 0x2000 in the resulting image. See:
# http://www.gnu.org/software/grub/manual/multiboot/html_node/OS-image-format.html
- $DEFAULT_CC $_LDFLAGS $HEAD_O $CMDLINE $_CFLAGS -lpayload $_LIBGCC
+ $DEFAULT_CC $_LDFLAGS $HEAD_O $CMDLINE $_CFLAGS -lpayload -xnone $_LIBGCC
fi