diff options
author | Nick Clifton <nickc@redhat.com> | 2001-05-23 17:26:40 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2001-05-23 17:26:40 +0000 |
commit | d1cf510e5e1ab5cb49de51ae96ef011ec0ab7510 (patch) | |
tree | 9189d3cd2efd6281a0ee083401bc11fa84863dbb /ld | |
parent | 6c426cf36e042f2ef86fdb7d6c7e5e6a7ddb0e1c (diff) | |
download | gdb-d1cf510e5e1ab5cb49de51ae96ef011ec0ab7510.zip gdb-d1cf510e5e1ab5cb49de51ae96ef011ec0ab7510.tar.gz gdb-d1cf510e5e1ab5cb49de51ae96ef011ec0ab7510.tar.bz2 |
Add MIPS r12k support
Diffstat (limited to 'ld')
-rw-r--r-- | ld/ChangeLog | 4 | ||||
-rw-r--r-- | ld/ldmain.c | 3 |
2 files changed, 6 insertions, 1 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog index 5267811..d5f5eb5 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,7 @@ +2001-05-23 Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de> + + * ldmain.c (get_emulation): Add -mips5 command line argument. + 2001-05-22 Alexandre Oliva <aoliva@redhat.com> * emulparams/elf_i386_ldso.sh: New, copied from elf_i386.sh. diff --git a/ld/ldmain.c b/ld/ldmain.c index 8a170a7..928aa84 100644 --- a/ld/ldmain.c +++ b/ld/ldmain.c @@ -502,7 +502,8 @@ get_emulation (argc, argv) else if (strcmp (argv[i], "-mips1") == 0 || strcmp (argv[i], "-mips2") == 0 || strcmp (argv[i], "-mips3") == 0 - || strcmp (argv[i], "-mips4") == 0) + || strcmp (argv[i], "-mips4") == 0 + || strcmp (argv[i], "-mips5") == 0) { /* FIXME: The arguments -mips1, -mips2 and -mips3 are passed to the linker by some MIPS compilers. They |