forked from Imagelibrary/binutils-gdb
* lexsup.c: Rename --add-needed to --copy-dt-needed-entries.
* ldlang.h (struct lang_input_statement_struct): Rename add_needed
to add_DT_NEEDED_for_dynamic. Rename as_needed to
add_DT_NEEDED_for_regular.
* ldlang.c: Likewise.
* ldlang.h: Likewise.
* ldlang.c: Use the new variable names.
* ldgram.y: Likewise.
* emultempl/elf32.em: Likewise.
* ld.texinfo: Document the renamed option. Also mention its
affect on the resolution of dynamic symbols.
* NEWS: Mention the changed option name.
This commit is contained in:
13
ld/ldmain.c
13
ld/ldmain.c
@@ -93,13 +93,14 @@ bfd_boolean version_printed;
|
||||
/* Nonzero means link in every member of an archive. */
|
||||
bfd_boolean whole_archive;
|
||||
|
||||
/* Nonzero means create DT_NEEDED entries only if a dynamic library
|
||||
actually satisfies some reference in a regular object. */
|
||||
bfd_boolean as_needed;
|
||||
/* True means only create DT_NEEDED entries for dynamic libraries
|
||||
if they actually satisfy some reference in a regular object. */
|
||||
bfd_boolean add_DT_NEEDED_for_regular;
|
||||
|
||||
/* Nonzero means never create DT_NEEDED entries for dynamic libraries
|
||||
in DT_NEEDED tags. */
|
||||
bfd_boolean add_needed = TRUE;
|
||||
/* 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;
|
||||
|
||||
/* TRUE if we should demangle symbol names. */
|
||||
bfd_boolean demangling;
|
||||
|
||||
Reference in New Issue
Block a user