From: H.J. Lu Date: Fri, 6 Nov 2009 16:50:59 +0000 (+0000) Subject: 2009-11-06 H.J. Lu X-Git-Tag: cgen-snapshot-20091201~277 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=df856bcc4d0c24105806ff7e16c04a53ff703e08;p=external%2Fbinutils.git 2009-11-06 H.J. Lu PR ld/10912 * ldmain.c (add_DT_NEEDED_for_dynamic): Default to TRUE. --- diff --git a/ld/ChangeLog b/ld/ChangeLog index 0d10fd6..b2c9b10 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,8 @@ +2009-11-06 H.J. Lu + + PR ld/10912 + * ldmain.c (add_DT_NEEDED_for_dynamic): Default to TRUE. + 2009-11-06 Kai Tietz * pe.em (DEFAULT_PSEUDO_RELOC_VERSION): New macro. diff --git a/ld/ldmain.c b/ld/ldmain.c index 2e9e1e6..3ba0592 100644 --- a/ld/ldmain.c +++ b/ld/ldmain.c @@ -100,7 +100,7 @@ bfd_boolean add_DT_NEEDED_for_regular; /* True means create DT_NEEDED entries for dynamic libraries that are DT_NEEDED by dynamic libraries specifically mentioned on the command line. */ -bfd_boolean add_DT_NEEDED_for_dynamic; +bfd_boolean add_DT_NEEDED_for_dynamic = TRUE; /* TRUE if we should demangle symbol names. */ bfd_boolean demangling;