diff options
Diffstat (limited to 'ld')
-rw-r--r-- | ld/ChangeLog | 3 | ||||
-rw-r--r-- | ld/emultempl/aix.em | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog index 69dac3b..6827fba 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,5 +1,8 @@ Thu Oct 26 14:11:26 1995 Ian Lance Taylor <ian@cygnus.com> + * emultempl/aix.em (gld${EMULATION_NAME}_parse_args): Treat + -static as a synonym for -bnso. + * scripttempl/aix.sc: Move special symbols inside sections. Always start .data at 0. diff --git a/ld/emultempl/aix.em b/ld/emultempl/aix.em index ae0d7dd..08c79b2 100644 --- a/ld/emultempl/aix.em +++ b/ld/emultempl/aix.em @@ -152,6 +152,7 @@ gld${EMULATION_NAME}_parse_args (argc, argv) {"bso", no_argument, NULL, OPTION_AUTOIMP}, {"bstrcmpct", no_argument, NULL, OPTION_STRCMPCT}, {"btextro", no_argument, &textro, 1}, + {"static", no_argument, NULL, OPTION_NOAUTOIMP}, {NULL, no_argument, NULL, 0} }; |