summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/gcc/gcc-4.5.1
diff options
context:
space:
mode:
authorNitin A Kamble <nitin.a.kamble@intel.com>2011-01-06 10:13:05 -0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-01-20 21:37:02 +0000
commit95fc6ae1649c86b5c2686385772cda35f5e7631f (patch)
treee74a91ce6ca7aa54aa90b11d52ca9978a6f9a11d /meta/recipes-devtools/gcc/gcc-4.5.1
parentb46ce7cacd07d7bcf5933b6e978f18d69b0f853a (diff)
downloadpoky-95fc6ae1649c86b5c2686385772cda35f5e7631f.tar.gz
gcc_4.5.1: add DSO linking change patch
This patch changes gcc's (ld's) linking behavior. It passes --no-add-needed flag to ld. Because of it ld does not try to find related libraries for linking, causing link failures. And these link failures can be fixed by specifying the library to be linked explicitely on the gcc command line. Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
Diffstat (limited to 'meta/recipes-devtools/gcc/gcc-4.5.1')
-rw-r--r--meta/recipes-devtools/gcc/gcc-4.5.1/fedora/gcc45-no-add-needed.patch52
1 files changed, 52 insertions, 0 deletions
diff --git a/meta/recipes-devtools/gcc/gcc-4.5.1/fedora/gcc45-no-add-needed.patch b/meta/recipes-devtools/gcc/gcc-4.5.1/fedora/gcc45-no-add-needed.patch
new file mode 100644
index 0000000000..23704d3b71
--- /dev/null
+++ b/meta/recipes-devtools/gcc/gcc-4.5.1/fedora/gcc45-no-add-needed.patch
@@ -0,0 +1,52 @@
12010-02-08 Roland McGrath <roland@redhat.com>
2
3 * config/rs6000/sysv4.h (LINK_EH_SPEC): Pass --no-add-needed to the
4 linker.
5 * config/linux.h (LINK_EH_SPEC): Likewise.
6 * config/alpha/elf.h (LINK_EH_SPEC): Likewise.
7 * config/ia64/linux.h (LINK_EH_SPEC): Likewise.
8
9--- gcc/config/alpha/elf.h.~1~
10+++ gcc/config/alpha/elf.h
11@@ -421,7 +421,7 @@ extern int alpha_this_gpdisp_sequence_nu
12 I imagine that other systems will catch up. In the meantime, it
13 doesn't harm to make sure that the data exists to be used later. */
14 #if defined(HAVE_LD_EH_FRAME_HDR)
15-#define LINK_EH_SPEC "%{!static:--eh-frame-hdr} "
16+#define LINK_EH_SPEC "--no-add-needed %{!static:--eh-frame-hdr} "
17 #endif
18
19 /* A C statement (sans semicolon) to output to the stdio stream STREAM
20--- gcc/config/ia64/linux.h.~1~
21+++ gcc/config/ia64/linux.h
22@@ -58,7 +58,7 @@ do { \
23 Signalize that because we have fde-glibc, we don't need all C shared libs
24 linked against -lgcc_s. */
25 #undef LINK_EH_SPEC
26-#define LINK_EH_SPEC ""
27+#define LINK_EH_SPEC "--no-add-needed "
28
29 #define MD_UNWIND_SUPPORT "config/ia64/linux-unwind.h"
30
31--- gcc/config/linux.h.~1~
32+++ gcc/config/linux.h
33@@ -89,7 +89,7 @@ see the files COPYING3 and COPYING.RUNTI
34 } while (0)
35
36 #if defined(HAVE_LD_EH_FRAME_HDR)
37-#define LINK_EH_SPEC "%{!static:--eh-frame-hdr} "
38+#define LINK_EH_SPEC "--no-add-needed %{!static:--eh-frame-hdr} "
39 #endif
40
41 /* Define this so we can compile MS code for use with WINE. */
42--- gcc/config/rs6000/sysv4.h.~1~
43+++ gcc/config/rs6000/sysv4.h
44@@ -917,7 +917,7 @@ SVR4_ASM_SPEC \
45 %{!dynamic-linker:-dynamic-linker " LINUX_DYNAMIC_LINKER "}}}"
46
47 #if defined(HAVE_LD_EH_FRAME_HDR)
48-# define LINK_EH_SPEC "%{!static:--eh-frame-hdr} "
49+# define LINK_EH_SPEC "--no-add-needed %{!static:--eh-frame-hdr} "
50 #endif
51
52 #define CPP_OS_LINUX_SPEC "-D__unix__ -D__gnu_linux__ -D__linux__ \