diff options
Diffstat (limited to 'ld')
-rw-r--r-- | ld/ChangeLog | 9 | ||||
-rw-r--r-- | ld/ldmain.c | 4 |
2 files changed, 13 insertions, 0 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog index 532d625..cd8f44d 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -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 diff --git a/ld/ldmain.c b/ld/ldmain.c index 5c534a4..9b507b1 100644 --- a/ld/ldmain.c +++ b/ld/ldmain.c @@ -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; |