diff options
author | Alan Modra <amodra@gmail.com> | 2010-10-28 06:45:33 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2010-10-28 06:45:33 +0000 |
commit | 24898b7032d87189fb709337d3806d629cf0a344 (patch) | |
tree | 2ac304a81cad2b856a579c5b6b412ed0f4776d56 /ld/emultempl/aix.em | |
parent | 47f929815c2345016f4c1c378da0718dfcb9984f (diff) | |
download | binutils-gdb-24898b7032d87189fb709337d3806d629cf0a344.tar.gz |
* ldlang.h (ldlang_add_undef): Add cmdline param.
* ldlang.c (undef_from_cmdline): New var.
(ldlang_add_undef): Add cmdline param. Set undef_from_cmdline.
(lang_end): Really require -e or -u from command line on
relocatable --gc-sections.
* ldemul.c (after_parse_default): Adjust ldlang_add_undef call.
* ldgram.y (extern_name_list_body): Likewise.
* lexsup.c (parse_args): Likewise.
* emultempl/aix.em (gld${EMULATION_NAME}_read_file): Likewise.
Diffstat (limited to 'ld/emultempl/aix.em')
-rw-r--r-- | ld/emultempl/aix.em | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ld/emultempl/aix.em b/ld/emultempl/aix.em index 497f51de98b..4dc36c30509 100644 --- a/ld/emultempl/aix.em +++ b/ld/emultempl/aix.em @@ -1193,7 +1193,7 @@ gld${EMULATION_NAME}_read_file (const char *filename, bfd_boolean import) { struct export_symbol_list *n; - ldlang_add_undef (symname); + ldlang_add_undef (symname, TRUE); n = ((struct export_symbol_list *) xmalloc (sizeof (struct export_symbol_list))); n->next = export_symbols; |