* remote-sim.c (gdbsim_open): Use "--architecture" instead of
authorJeff Law <law@redhat.com>
Tue, 16 Dec 1997 10:22:14 +0000 (10:22 +0000)
committerJeff Law <law@redhat.com>
Tue, 16 Dec 1997 10:22:14 +0000 (10:22 +0000)
        ambigious short form.

gdb/ChangeLog
gdb/remote-sim.c

index 5596c8b4d4be4e0d2a250b002c0f1a640a24cd84..2efa5c0d898986d1f71306a825a0003a941bfc8d 100644 (file)
@@ -1,3 +1,8 @@
+Tue Dec 16 11:24:30 1997  Jeffrey A Law  (law@cygnus.com)
+
+       * remote-sim.c (gdbsim_open): Use "--architecture" instead of
+       ambigious short form.
+
 Tue Dec 16 10:29:16 1997  David Taylor  <taylor@texas.cygnus.com>
 
        * d30v-tdep.c (d30v_frame_chain): don't or in DMEM_START to
index 22b65650a4d587148347014b52d2ab54327011e0..a1a1e32bc2c6ddd9d29da7a54d2709d6d54dc51c 100644 (file)
@@ -506,7 +506,7 @@ gdbsim_open (args, from_tty)
 
   len = (7 + 1 /* gdbsim */
         + strlen (" -E little")
-        + strlen (" --arch=xxxxxxxxxx")
+        + strlen (" --architecture=xxxxxxxxxx")
         + (args ? strlen (args) : 0)
         + 50) /* slack */;
   arg_buf = (char *) alloca (len);
@@ -533,7 +533,7 @@ gdbsim_open (args, from_tty)
      explicitly specified */
   if (!target_architecture_auto)
     {
-      strcat (arg_buf, " --arch=");
+      strcat (arg_buf, " --architecture=");
       strcat (arg_buf, target_architecture->printable_name);
     }
   /* finally, any explicit args */
This page took 0.02792 seconds and 4 git commands to generate.