Browse Source

2003-01-09 Chris Demetriou <cgd@broadcom.com>

* ldmain.c (get_emulation): Sort -mipsNN checks in the usual
        order, and handle (ignore) -mips32r2.
binutils-2_14-branch
Chris Demetriou 24 years ago
parent
commit
6f33421c47
  1. 5
      ld/ChangeLog
  2. 7
      ld/ldmain.c

5
ld/ChangeLog

@ -1,3 +1,8 @@
2003-01-09 Chris Demetriou <cgd@broadcom.com>
* ldmain.c (get_emulation): Sort -mipsNN checks in the usual
order, and handle (ignore) -mips32r2.
2003-01-09 Daniel Jacobowitz <drow@mvista.com>
* ldmain.c (main): Make sure ld_sysroot is initialized.

7
ld/ldmain.c

@ -578,10 +578,11 @@ get_emulation (argc, argv)
else if (strcmp (argv[i], "-mips1") == 0
|| strcmp (argv[i], "-mips2") == 0
|| strcmp (argv[i], "-mips3") == 0
|| strcmp (argv[i], "-mips32") == 0
|| strcmp (argv[i], "-mips64") == 0
|| strcmp (argv[i], "-mips4") == 0
|| strcmp (argv[i], "-mips5") == 0)
|| strcmp (argv[i], "-mips5") == 0
|| strcmp (argv[i], "-mips32") == 0
|| strcmp (argv[i], "-mips32r2") == 0
|| strcmp (argv[i], "-mips64") == 0)
{
/* FIXME: The arguments -mips1, -mips2, -mips3, etc. are
passed to the linker by some MIPS compilers. They

Loading…
Cancel
Save