From f2f55b1677af6a75aa735277b533c566886e1279 Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Thu, 16 Mar 1995 19:06:41 +0000 Subject: [PATCH] * 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. --- ld/ChangeLog | 9 +++++++++ ld/ldmain.c | 4 ++++ 2 files changed, 13 insertions(+) diff --git a/ld/ChangeLog b/ld/ChangeLog index 532d625c812..cd8f44d370e 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,12 @@ +Thu Mar 16 13:59:14 1995 Roland McGrath + + * 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 * genscripts.sh (EMULATION_NAME): Set LIB_PATH to empty when not diff --git a/ld/ldmain.c b/ld/ldmain.c index 5c534a43a38..9b507b13ce9 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; -- 2.30.2