diff options
author | Nick Clifton <nickc@redhat.com> | 2002-03-18 12:46:27 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2002-03-18 12:46:27 +0000 |
commit | eb1e0e807ac769f624181bc44acdcd79d866949d (patch) | |
tree | ddd5259b49eb8431b5e2bd8f9f84e6ea7b0e5cc3 /ld/emultempl | |
parent | a1c259a138165fa878430144c8658093d6ac2256 (diff) | |
download | gdb-eb1e0e807ac769f624181bc44acdcd79d866949d.zip gdb-eb1e0e807ac769f624181bc44acdcd79d866949d.tar.gz gdb-eb1e0e807ac769f624181bc44acdcd79d866949d.tar.bz2 |
Add AIX 64 shared library support and emulation layer for binutils
Diffstat (limited to 'ld/emultempl')
-rw-r--r-- | ld/emultempl/aix.em | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ld/emultempl/aix.em b/ld/emultempl/aix.em index 2d7b69f..a540d0b 100644 --- a/ld/emultempl/aix.em +++ b/ld/emultempl/aix.em @@ -797,8 +797,8 @@ choose_target (argc, argv) static char *from_inside; static char *argv_to_target[][2] = { {NULL, "${OUTPUT_FORMAT}"}, - {"-b32", "aixcoff-rs6000"}, - {"-b64", "aixcoff64-rs6000"}, + {"-b32", "${OUTPUT_FORMAT_32BIT}"}, + {"-b64", "${OUTPUT_FORMAT_64BIT}"}, }; jmax = 3; |