mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-23 18:14:13 +08:00
* lexsup.c (parse_args) <case OPTION_EXPORT_DYNAMIC, case 'E'>:
Set new link_info member export_dynamic. * ldmain.c (main): Initialize new link_info member export_dynamic.
This commit is contained in:
parent
7be4069c7e
commit
2a096f0438
@ -1,3 +1,9 @@
|
||||
2001-06-15 Hans-Peter Nilsson <hp@axis.com>
|
||||
|
||||
* lexsup.c (parse_args) <case OPTION_EXPORT_DYNAMIC, case 'E'>:
|
||||
Set new link_info member export_dynamic.
|
||||
* ldmain.c (main): Initialize new link_info member export_dynamic.
|
||||
|
||||
2001-06-12 Nick Clifton <nickc@cambridge.redhat.com>
|
||||
|
||||
* ldlang.c (walk_wild): Only call walk_wild_file if
|
||||
|
@ -219,6 +219,7 @@ main (argc, argv)
|
||||
link_info.emitrelocations = false;
|
||||
link_info.shared = false;
|
||||
link_info.symbolic = false;
|
||||
link_info.export_dynamic = false;
|
||||
link_info.static_link = false;
|
||||
link_info.traditional_format = false;
|
||||
link_info.optimize = false;
|
||||
|
@ -667,6 +667,7 @@ parse_args (argc, argv)
|
||||
case OPTION_EXPORT_DYNAMIC:
|
||||
case 'E': /* HP/UX compatibility. */
|
||||
command_line.export_dynamic = true;
|
||||
link_info.export_dynamic = true;
|
||||
break;
|
||||
case 'e':
|
||||
lang_add_entry (optarg, true);
|
||||
|
Loading…
Reference in New Issue
Block a user