* 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
3 changed files with 8 additions and 0 deletions
|
@ -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>
|
2001-06-12 Nick Clifton <nickc@cambridge.redhat.com>
|
||||||
|
|
||||||
* ldlang.c (walk_wild): Only call walk_wild_file if
|
* ldlang.c (walk_wild): Only call walk_wild_file if
|
||||||
|
|
|
@ -219,6 +219,7 @@ main (argc, argv)
|
||||||
link_info.emitrelocations = false;
|
link_info.emitrelocations = false;
|
||||||
link_info.shared = false;
|
link_info.shared = false;
|
||||||
link_info.symbolic = false;
|
link_info.symbolic = false;
|
||||||
|
link_info.export_dynamic = false;
|
||||||
link_info.static_link = false;
|
link_info.static_link = false;
|
||||||
link_info.traditional_format = false;
|
link_info.traditional_format = false;
|
||||||
link_info.optimize = false;
|
link_info.optimize = false;
|
||||||
|
|
|
@ -667,6 +667,7 @@ parse_args (argc, argv)
|
||||||
case OPTION_EXPORT_DYNAMIC:
|
case OPTION_EXPORT_DYNAMIC:
|
||||||
case 'E': /* HP/UX compatibility. */
|
case 'E': /* HP/UX compatibility. */
|
||||||
command_line.export_dynamic = true;
|
command_line.export_dynamic = true;
|
||||||
|
link_info.export_dynamic = true;
|
||||||
break;
|
break;
|
||||||
case 'e':
|
case 'e':
|
||||||
lang_add_entry (optarg, true);
|
lang_add_entry (optarg, true);
|
||||||
|
|
Loading…
Add table
Reference in a new issue