Add -bnortl and -bnortllib support for AIX.
authorTom Rix <trix@redhat.com>
Sat, 18 May 2002 16:56:27 +0000 (16:56 +0000)
committerTom Rix <trix@redhat.com>
Sat, 18 May 2002 16:56:27 +0000 (16:56 +0000)
ld/ChangeLog
ld/emultempl/aix.em

index 4bbcb07..bb3dd76 100644 (file)
@@ -1,3 +1,8 @@
+2002-05-18  Tom Rix  <trix@redhat.com>
+
+       * emultempl/aix.em (gld*_parse_args): Add -bnortl and -bnortllib 
+       support.
+
 2002-05-17  Marek Michalkiewicz  <marekm@amelek.gda.pl>
 
        * Makefile.am: Add new emulations avr1, avr2, avr3, avr4, avr5.
index 90e104a..50bfe64 100644 (file)
@@ -135,7 +135,8 @@ static unsigned int syscall_mask = 0x77;
 /* fake file for -binitfini support */
 static lang_input_statement_type *initfini_file;
 
-/* Whether to do run time linking */
+/* Whether to do run time linking 
+   -brtl enables, -bnortl and -bnortllib disable. */
 static int rtld;
 
 /* Explicit command line library path, -blibpath */
@@ -243,6 +244,8 @@ gld${EMULATION_NAME}_parse_args (argc, argv)
     {"bpT", required_argument, NULL, OPTION_PT},
     {"bro", no_argument, &textro, 1},
     {"brtl", no_argument, &rtld, 1},
+    {"bnortl", no_argument, &rtld, 0},
+    {"bnortllib", no_argument, &rtld, 0},
     {"bS", required_argument, NULL, OPTION_MAXSTACK},
     {"bso", no_argument, NULL, OPTION_AUTOIMP},
     {"bstrcmpct", no_argument, NULL, OPTION_STRCMPCT},