* Makefile.in (nindy.o): Define "STRIP" as pathname of strip program.
authorKen Raeburn <raeburn@cygnus>
Thu, 8 Oct 1992 02:09:28 +0000 (02:09 +0000)
committerKen Raeburn <raeburn@cygnus>
Thu, 8 Oct 1992 02:09:28 +0000 (02:09 +0000)
* nindy-share/nindy.c (coffstrip): Use that pathname, instead of searching for
a "bfd_strip" program.  Also, fixed up arguments passed to that program.

* tm-nindy960.h (ADDITIONAL_OPTIONS): Use "-ser" rather than "-r", which is now
used for something else.  Rewrite description of associated parameters to match
how gdb does it now.
(ADDITIONAL_OPTION_HELP): Fix message accordingly.

* m68k-pinsn.c (print_insn_arg): Handle new "`" operand type.

gdb/ChangeLog
gdb/Makefile.in
gdb/m68k-pinsn.c
gdb/tm-nindy960.h

index e6c0ab451c125d45b95bbc28fe91dda004891824..5119c829a390cc2e8bdad7f757029c6d404cef06 100644 (file)
@@ -1,3 +1,18 @@
+Wed Oct  7 12:24:01 1992  Ken Raeburn  (raeburn@cygnus.com)
+
+       * Makefile.in (nindy.o): Define "STRIP" as pathname of strip
+       program.
+       * nindy-share/nindy.c (coffstrip): Use that pathname, instead of
+       searching for a "bfd_strip" program.  Also, fixed up arguments
+       passed to that program.
+
+       * tm-nindy960.h (ADDITIONAL_OPTIONS): Use "-ser" rather than "-r",
+       which is now used for something else.  Rewrite description of
+       associated parameters to match how gdb does it now.
+       (ADDITIONAL_OPTION_HELP): Fix message accordingly.
+
+       * m68k-pinsn.c (print_insn_arg): Handle new "`" operand type.
+
 Tue Oct  6 14:47:11 1992  K. Richard Pixley  (rich@sendai.cygnus.com)
 
        NOTICE_SIGNAL_HANDLING_CHANGE macro added to the target vector as
index b61417a490e6b57e1ab06cec248d346162e02fab..7a68be7b0fa642131bdee32ba632ba92deb0f455 100644 (file)
@@ -22,6 +22,7 @@ program_transform_name =
 exec_prefix = $(prefix)
 bindir = $(exec_prefix)/bin
 libdir = $(exec_prefix)/lib
+tooldir = $(libdir)/$(target_alias)
 
 datadir = $(prefix)/lib
 mandir = $(prefix)/man
@@ -746,7 +747,8 @@ xdr_regs.o: ${srcdir}/vx-share/xdr_regs.c
        ${CC} -c ${INTERNAL_CFLAGS} ${srcdir}/vx-share/xdr_regs.c
 
 nindy.o: ${srcdir}/nindy-share/nindy.c
-       ${CC} -c ${INTERNAL_CFLAGS} ${srcdir}/nindy-share/nindy.c
+       ${CC} -c ${INTERNAL_CFLAGS} -DSTRIP='"$(tooldir)/bin/strip"' \
+               ${srcdir}/nindy-share/nindy.c
 
 Onindy.o: ${srcdir}/nindy-share/Onindy.c
        ${CC} -c ${INTERNAL_CFLAGS} ${srcdir}/nindy-share/Onindy.c
index 859d8d9dd77c21a3f51b317a9e83d8fecfcf4463..60c6c592e21a0cd8a500815fe31e93986eadff4f 100644 (file)
@@ -403,6 +403,7 @@ print_insn_arg (d, buffer, p, addr, stream)
     case '?':
     case '/':
     case '&':
+    case '`':
 
       if (place == 'd')
        {
index 520eb6b8ccaf6aafaa3f9cb8994da71c7322bd0c..7237278d971423d65a5edeb3b632a3d2d6a5fd93 100644 (file)
@@ -37,12 +37,12 @@ extern int nindy_initial_brk;       /* Send a BREAK to reset board first */
 extern char *nindy_ttyname;    /* Name of serial port to talk to nindy */
 
 #define        ADDITIONAL_OPTIONS \
-       {"O", 0, &nindy_old_protocol, 1},       \
-       {"brk", 0, &nindy_initial_brk, 1},      \
-       {"r", 1, 0, 1004},  /* 1004 is magic cookie for ADDL_CASES */
+       {"O", no_argument, &nindy_old_protocol, 1},     \
+       {"brk", no_argument, &nindy_initial_brk, 1},    \
+       {"ser", required_argument, 0, 1004},  /* 1004 is magic cookie for ADDL_CASES */
 
 #define        ADDITIONAL_OPTION_CASES \
-       case 1004:      /* -r option:  remote nindy auto-start */       \
+       case 1004:      /* -ser option:  remote nindy auto-start */     \
          nindy_ttyname = optarg;       \
          break;
 
@@ -50,7 +50,7 @@ extern char *nindy_ttyname;   /* Name of serial port to talk to nindy */
        "\
   -O                Use old protocol to talk to a Nindy target\n\
   -brk              Send a break to a Nindy target to reset it.\n\
-  -r SERIAL         Open remote Nindy session to SERIAL port.\n\
+  -ser SERIAL       Open remote Nindy session to SERIAL port.\n\
 "
 
 /* If specified on the command line, open tty for talking to nindy,