mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: gcc: Do not pass -dynamic-linker to linker when !shared on arm.
Fixes <http://bugs.gnu.org/20102>. * gnu/packages/patches/gcc-arm-link-spec-fix.patch: New file. * gnu-system.am (dist_patch_DATA): Add it. * gnu/packages/gcc.scm (gcc-4.8, gcc-4.9): Add patch. * gnu/packages/cross-base.scm (cross-gcc): Preserve patches from gcc-4.8. Co-Authored-By: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
7b2abd0055
commit
1421afa94a
4 changed files with 25 additions and 4 deletions
16
gnu/packages/patches/gcc-arm-link-spec-fix.patch
Normal file
16
gnu/packages/patches/gcc-arm-link-spec-fix.patch
Normal file
|
@ -0,0 +1,16 @@
|
|||
Do not pass -dynamic-linker to linker when !shared.
|
||||
Fixes <http://bugs.gnu.org/20102>.
|
||||
|
||||
Patch by Ludovic Courtès <ludo@gnu.org>.
|
||||
|
||||
--- 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
|
Loading…
Add table
Add a link
Reference in a new issue