Do not pass -dynamic-linker to linker when !shared. Fixes . ARM 'link' spec issue reported at https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65711 and https://gcc.gnu.org/ml/gcc-patches/2015-04/msg01387.html. Patch by Ludovic Courtès . --- gcc-4.8.4/gcc/config/arm/linux-elf.h.orig 2015-04-08 20:31:20.376900478 +0200 +++ gcc-4.8.4/gcc/config/arm/linux-elf.h 2015-04-08 20:31:36.437014437 +0200 @@ -65,7 +65,7 @@ %{symbolic:-Bsymbolic} \ %{!static: \ %{rdynamic:-export-dynamic} \ - -dynamic-linker " GNU_USER_DYNAMIC_LINKER "} \ + %{!shared:-dynamic-linker " GNU_USER_DYNAMIC_LINKER "}} \ -X \ %{mbig-endian:-EB} %{mlittle-endian:-EL}" \ SUBTARGET_EXTRA_LINK_SPEC 'koszko' selected='selected'>koszko Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2023-12-14gnu: pypy: Update to 7.3.13....The validate-runpath error was previously reported in #57653. Version update fixes the existing build errors. * gnu/packages/python.scm (pypy3): Update to 7.3.13. [source]: Update origin URI. [arguments]<#:validate-runpath>: Disable check. [arguments]<#:phases>: Update directory paths. Change-Id: Ic6ab7dd77e30fa85d6fa5f000f9aa2528951b81e Co-authored-by: Ludovic Courtès <ludo@gnu.org> Greg Hogan