From 66c8b0f695ffaf1b727dc024618b80256317ae33 Mon Sep 17 00:00:00 2001 From: Alexandre Oliva Date: Tue, 19 Dec 2023 21:06:17 -0300 Subject: hardened: use LD_PIE_SPEC only if defined sol2.h may define LINK_PIE_SPEC and leave LD_PIE_SPEC undefined, but gcc.cc will only provide a LD_PIE_SPEC definition if LINK_PIE_SPEC is not defined, and thenit uses LD_PIE_SPEC guarded by #ifdef HAVE_LD_PIE only. Add LD_PIE_SPEC to the guard. gcc/ChangeLog * gcc.cc (process_command): Use LD_PIE_SPEC only if defined. --- gcc/gcc.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gcc/gcc.cc') diff --git a/gcc/gcc.cc b/gcc/gcc.cc index 701f5cd..d5e02c1 100644 --- a/gcc/gcc.cc +++ b/gcc/gcc.cc @@ -5008,7 +5008,7 @@ process_command (unsigned int decoded_options_count, { if (!any_link_options_p && !static_p) { -#ifdef HAVE_LD_PIE +#if defined HAVE_LD_PIE && defined LD_PIE_SPEC save_switch (LD_PIE_SPEC, 0, NULL, /*validated=*/true, /*known=*/false); #endif /* These are passed straight down to collect2 so we have to break -- cgit v1.1