Chnage the default endianness for mcore to little
authorNick Clifton <nickc@redhat.com>
Wed, 3 Nov 1999 18:16:52 +0000 (18:16 +0000)
committerNick Clifton <nickc@redhat.com>
Wed, 3 Nov 1999 18:16:52 +0000 (18:16 +0000)
binutils/ChangeLog
binutils/dlltool.c

index 4955c13320b2b4f69e6babf0300969c7e075e2a5..bf9f27bb014743d9260e1873872ff0a8d24bad6e 100644 (file)
@@ -2,6 +2,8 @@
 
        * dlltool.c (flush_page): Clip short values to prevent warnings
        from the assembler.
+       Change default mcore machine name to 'mcore-le' and rename
+       big-endian version to 'mcore-be'. 
 
 1999-10-27  Fred Fish  <fnf@cygnus.com>
 
index 908f798096d81865c7aaf3715a459ba292e7da3e..23206a6209f6d32d79f6715cad12886fc90962c7 100644 (file)
@@ -391,7 +391,7 @@ static const char *mname = "ppc";
 #endif
 
 #ifdef DLLTOOL_MCORE
-static const char * mname = "mcore";
+static const char * mname = "mcore-le";
 #endif
 
 #ifdef DLLTOOL_MCORE_ELF
@@ -553,7 +553,7 @@ mtable[] =
   ,
   {
 #define MMCORE_BE 5
-    "mcore", ".byte", ".short", ".long", ".asciz", "//",
+    "mcore-be", ".byte", ".short", ".long", ".asciz", "//",
     "jmpi\t1\n\tnop\n\t.long",
     ".global", ".space", ".align\t2",".align\t4", "",
     "pe-mcore-big", bfd_arch_mcore,
@@ -571,7 +571,7 @@ mtable[] =
   ,
   {
 #define MMCORE_ELF 7
-    "mcore-elf", ".byte", ".short", ".long", ".asciz", "//",
+    "mcore-elf-be", ".byte", ".short", ".long", ".asciz", "//",
     "jmpi\t1\n\tnop\n\t.long",
     ".global", ".space", ".align\t2",".align\t4", "",
     "elf32-mcore-big", bfd_arch_mcore,
@@ -3093,7 +3093,7 @@ usage (file, status)
   fprintf (file, _("Usage %s <options> <object-files>\n"), program_name);
   /* xgetext:c-format */
   fprintf (file, _("   -m --machine <machine>    Create as DLL for <machine>.  [default: %s]\n"), mname);
-  fprintf (file, _("        possible <machine>: arm[_interwork], i386, mcore[-elf][-le], ppc, thumb\n"));
+  fprintf (file, _("        possible <machine>: arm[_interwork], i386, mcore[-elf]{-le|-be}, ppc, thumb\n"));
   fprintf (file, _("   -e --output-exp <outname> Generate an export file.\n"));
   fprintf (file, _("   -l --output-lib <outname> Generate an interface library.\n"));
   fprintf (file, _("   -a --add-indirect         Add dll indirects to export file.\n"));