* ldlang.c (load_symbols): If whole_archive is true and ENTRY
describes an archive, call bfd_link_add_symbols on each member. * ldmain.c (whole_archive): New variable. (main): Initialize it to false. * ldmain.h: Declare whole_archive. * lexsup.c (parse_args): Grok --whole-archive switch.
This commit is contained in:
parent
171eb2f259
commit
f2f55b1677
2 changed files with 13 additions and 0 deletions
|
@ -1,3 +1,12 @@
|
|||
Thu Mar 16 13:59:14 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
|
||||
|
||||
* ldlang.c (load_symbols): If whole_archive is true and ENTRY
|
||||
describes an archive, call bfd_link_add_symbols on each member.
|
||||
* ldmain.c (whole_archive): New variable.
|
||||
(main): Initialize it to false.
|
||||
* ldmain.h: Declare whole_archive.
|
||||
* lexsup.c (parse_args): Grok --whole-archive switch.
|
||||
|
||||
Thu Mar 16 11:38:48 1995 Ian Lance Taylor <ian@cygnus.com>
|
||||
|
||||
* genscripts.sh (EMULATION_NAME): Set LIB_PATH to empty when not
|
||||
|
|
|
@ -72,6 +72,9 @@ boolean trace_file_tries;
|
|||
instead of complaining if no input files are given. */
|
||||
boolean version_printed;
|
||||
|
||||
/* Nonzero means link in every member of an archive. */
|
||||
boolean whole_archive;
|
||||
|
||||
args_type command_line;
|
||||
|
||||
ld_config_type config;
|
||||
|
@ -158,6 +161,7 @@ main (argc, argv)
|
|||
|
||||
/* Initialize the data about options. */
|
||||
trace_files = trace_file_tries = version_printed = false;
|
||||
whole_archive = false;
|
||||
config.traditional_format = false;
|
||||
config.build_constructors = true;
|
||||
config.dynamic_link = false;
|
||||
|
|
Loading…
Reference in a new issue