summaryrefslogtreecommitdiff
path: root/ld/emultempl/aix.em
diff options
context:
space:
mode:
authorTom Rix <trix@redhat.com>2002-05-18 16:56:27 +0000
committerTom Rix <trix@redhat.com>2002-05-18 16:56:27 +0000
commit728317c7e7ed3c298a9f5240e905bb4e5cc59cb2 (patch)
tree73cf5d210e6f0359b725a6c28e78af9b97a44a8c /ld/emultempl/aix.em
parente34d042a128c5f6c539fb40b28cdf9b85909e62a (diff)
downloadbinutils-redhat-728317c7e7ed3c298a9f5240e905bb4e5cc59cb2.tar.gz
Add -bnortl and -bnortllib support for AIX.
Diffstat (limited to 'ld/emultempl/aix.em')
-rw-r--r--ld/emultempl/aix.em5
1 files changed, 4 insertions, 1 deletions
diff --git a/ld/emultempl/aix.em b/ld/emultempl/aix.em
index 90e104a0d3..50bfe64a25 100644
--- a/ld/emultempl/aix.em
+++ b/ld/emultempl/aix.em
@@ -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},