public inbox for gdb@sourceware.org
 help / color / mirror / Atom feed
* GDB *** [event-top.o] Error 1!!
@ 2002-06-20 13:08 Mike Cleary
  2002-06-20 14:00 ` Jim Blandy
  2002-06-20 14:48 ` Elena Zannoni
  0 siblings, 2 replies; 9+ messages in thread
From: Mike Cleary @ 2002-06-20 13:08 UTC (permalink / raw)
  To: gdb; +Cc: clp

Hello
I'm trying to report this error and I'm not sure if anybody knows about 
this yet. Can somebody please tell me exactly what the error is.
I've pasted warnings below:
gcc -c -g -O2    -I. -I/home/buildsys/source/toolchain/gdb 
-I/home/buildsys/sour
ce/toolchain/gdb/config -DHAVE_CONFIG_H 
-I/home/buildsys/source/toolchain/gdb/..
/include/opcode -I/home/buildsys/source/toolchain/gdb/../readline/.. 
-I../bfd -I
/home/buildsys/source/toolchain/gdb/../bfd  
-I/home/buildsys/source/toolchain/gd
b/../include -I../intl -I/home/buildsys/source/toolchain/gdb/../intl  
-DMI_OUT=1
 -DGDBTK -DUI_OUT=1 -Wimplicit -Wreturn-type -Wcomment -Wtrigraphs 
-Wformat -Wpa
rentheses -Wpointer-arith -Wuninitialized  
/home/buildsys/source/toolchain/gdb/e
vent-top.c
/home/buildsys/source/toolchain/gdb/event-top.c: In function 
`cli_command_loop':
/home/buildsys/source/toolchain/gdb/event-top.c:192: warning: implicit 
declarati
on of function `strcat'
/home/buildsys/source/toolchain/gdb/event-top.c: In function 
`command_handler':
/home/buildsys/source/toolchain/gdb/event-top.c:469: warning: implicit 
declarati
on of function `isatty'
/home/buildsys/source/toolchain/gdb/event-top.c:518: 
`space_at_cmd_start' undecl
ared (first use in this function)
/home/buildsys/source/toolchain/gdb/event-top.c:518: (Each undeclared 
identifier
 is reported only once
/home/buildsys/source/toolchain/gdb/event-top.c:518: for each function 
it appear
s in.)
/home/buildsys/source/toolchain/gdb/event-top.c: In function 
`command_line_handl
er':
/home/buildsys/source/toolchain/gdb/event-top.c:709: warning: implicit 
declarati
on of function `strncmp'
/home/buildsys/source/toolchain/gdb/event-top.c: In function 
`async_disconnect':
/home/buildsys/source/toolchain/gdb/event-top.c:1019: warning: implicit 
declarat
ion of function `getpid'
make[2]: *** [event-top.o] Error 1
make[2]: Leaving directory 
`/home/buildsys/build/intel1/basic/native/toolchain/g
db'
make[1]: *** [all-gdb] Error 2
make[1]: Leaving directory 
`/home/buildsys/build/intel1/basic/native/toolchain'
make: *** [bootstrap] Error 2
(END)

If anybody could hlep that'd be great.
Thanks
-Mike

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: GDB *** [event-top.o] Error 1!!
  2002-06-20 13:08 GDB *** [event-top.o] Error 1!! Mike Cleary
@ 2002-06-20 14:00 ` Jim Blandy
  2002-06-20 14:48 ` Elena Zannoni
  1 sibling, 0 replies; 9+ messages in thread
From: Jim Blandy @ 2002-06-20 14:00 UTC (permalink / raw)
  To: Mike Cleary; +Cc: gdb, clp


Mike Cleary <mcleary@iol.unh.edu> writes:
> /home/buildsys/source/toolchain/gdb/event-top.c:518:
> `space_at_cmd_start' undecl
> ared (first use in this function)
> /home/buildsys/source/toolchain/gdb/event-top.c:518: (Each undeclared
> identifier
>  is reported only once
> /home/buildsys/source/toolchain/gdb/event-top.c:518: for each function
> it appear
> s in.)

Based on looking at event-top.c, you seem to be compiling on a system
where HAVE_SBRK isn't #defined.  Does your system have the `sbrk'
system call?

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: GDB *** [event-top.o] Error 1!!
  2002-06-20 13:08 GDB *** [event-top.o] Error 1!! Mike Cleary
  2002-06-20 14:00 ` Jim Blandy
@ 2002-06-20 14:48 ` Elena Zannoni
  2002-06-20 16:32   ` Andrew Cagney
  2002-06-20 19:16   ` GDB *** [event-top.o] Error 1!! Matthew H Bemis
  1 sibling, 2 replies; 9+ messages in thread
From: Elena Zannoni @ 2002-06-20 14:48 UTC (permalink / raw)
  To: Mike Cleary; +Cc: gdb, clp



There is a missing ifdef in there, I guess you must be one of the few
(the only one) triggering this. 

Could you try this patch?

Index: event-top.c
===================================================================
RCS file: /cvs/uberbaum/gdb/event-top.c,v
retrieving revision 1.20
diff -u -p -r1.20 event-top.c
--- event-top.c	27 Mar 2002 21:20:15 -0000	1.20
+++ event-top.c	20 Jun 2002 21:46:36 -0000
@@ -514,8 +514,10 @@ command_handler (char *command)
 	(struct continuation_arg *) xmalloc (sizeof (struct continuation_arg));
       arg1->next = arg2;
       arg2->next = NULL;
-      arg1->data.integer = time_at_cmd_start;
-      arg2->data.integer = space_at_cmd_start;
+      arg1->data.longint = time_at_cmd_start;
+#ifdef HAVE_SBRK
+      arg2->data.longint = space_at_cmd_start;
+#endif
       add_continuation (command_line_handler_continuation, arg1);
     }

As far as the other warnings, I am not seeing them, what type of system are
you compiling on?

Elena



Mike Cleary writes:
 > Hello
 > I'm trying to report this error and I'm not sure if anybody knows about 
 > this yet. Can somebody please tell me exactly what the error is.
 > I've pasted warnings below:
 > gcc -c -g -O2    -I. -I/home/buildsys/source/toolchain/gdb 
 > -I/home/buildsys/sour
 > ce/toolchain/gdb/config -DHAVE_CONFIG_H 
 > -I/home/buildsys/source/toolchain/gdb/..
 > /include/opcode -I/home/buildsys/source/toolchain/gdb/../readline/.. 
 > -I../bfd -I
 > /home/buildsys/source/toolchain/gdb/../bfd  
 > -I/home/buildsys/source/toolchain/gd
 > b/../include -I../intl -I/home/buildsys/source/toolchain/gdb/../intl  
 > -DMI_OUT=1
 >  -DGDBTK -DUI_OUT=1 -Wimplicit -Wreturn-type -Wcomment -Wtrigraphs 
 > -Wformat -Wpa
 > rentheses -Wpointer-arith -Wuninitialized  
 > /home/buildsys/source/toolchain/gdb/e
 > vent-top.c
 > /home/buildsys/source/toolchain/gdb/event-top.c: In function 
 > `cli_command_loop':
 > /home/buildsys/source/toolchain/gdb/event-top.c:192: warning: implicit 
 > declarati
 > on of function `strcat'
 > /home/buildsys/source/toolchain/gdb/event-top.c: In function 
 > `command_handler':
 > /home/buildsys/source/toolchain/gdb/event-top.c:469: warning: implicit 
 > declarati
 > on of function `isatty'
 > /home/buildsys/source/toolchain/gdb/event-top.c:518: 
 > `space_at_cmd_start' undecl
 > ared (first use in this function)
 > /home/buildsys/source/toolchain/gdb/event-top.c:518: (Each undeclared 
 > identifier
 >  is reported only once
 > /home/buildsys/source/toolchain/gdb/event-top.c:518: for each function 
 > it appear
 > s in.)
 > /home/buildsys/source/toolchain/gdb/event-top.c: In function 
 > `command_line_handl
 > er':
 > /home/buildsys/source/toolchain/gdb/event-top.c:709: warning: implicit 
 > declarati
 > on of function `strncmp'
 > /home/buildsys/source/toolchain/gdb/event-top.c: In function 
 > `async_disconnect':
 > /home/buildsys/source/toolchain/gdb/event-top.c:1019: warning: implicit 
 > declarat
 > ion of function `getpid'
 > make[2]: *** [event-top.o] Error 1
 > make[2]: Leaving directory 
 > `/home/buildsys/build/intel1/basic/native/toolchain/g
 > db'
 > make[1]: *** [all-gdb] Error 2
 > make[1]: Leaving directory 
 > `/home/buildsys/build/intel1/basic/native/toolchain'
 > make: *** [bootstrap] Error 2
 > (END)
 > 
 > If anybody could hlep that'd be great.
 > Thanks
 > -Mike

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: GDB *** [event-top.o] Error 1!!
  2002-06-20 14:48 ` Elena Zannoni
@ 2002-06-20 16:32   ` Andrew Cagney
  2002-06-21 17:13     ` *** [ser-tcp.o] Error 1 on alpha! Matthew H Bemis
  2002-06-20 19:16   ` GDB *** [event-top.o] Error 1!! Matthew H Bemis
  1 sibling, 1 reply; 9+ messages in thread
From: Andrew Cagney @ 2002-06-20 16:32 UTC (permalink / raw)
  To: Elena Zannoni; +Cc: Mike Cleary, gdb, clp

> -      arg1->data.integer = time_at_cmd_start;
> -      arg2->data.integer = space_at_cmd_start;
> +      arg1->data.longint = time_at_cmd_start;
> +#ifdef HAVE_SBRK
> +      arg2->data.longint = space_at_cmd_start;
> +#endif
>        add_continuation (command_line_handler_continuation, arg1);
>      }

Hmm, might as well pull that into the 5.2 branch.

Andrew


^ permalink raw reply	[flat|nested] 9+ messages in thread

* RE: GDB *** [event-top.o] Error 1!!
  2002-06-20 14:48 ` Elena Zannoni
  2002-06-20 16:32   ` Andrew Cagney
@ 2002-06-20 19:16   ` Matthew H Bemis
  1 sibling, 0 replies; 9+ messages in thread
From: Matthew H Bemis @ 2002-06-20 19:16 UTC (permalink / raw)
  To: Elena Zannoni, Mike Cleary; +Cc: gdb, clp

Elana,
Mike is building on an alphaev56, and he is building with the
bootstrap-gcc_3.0.4 baseline.
we'll try the patch tomorrow.
we'll let you know how it goes.
thanks!
Matt Bemis

-----Original Message-----
From: gdb-owner@sources.redhat.com
[mailto:gdb-owner@sources.redhat.com]On Behalf Of Elena Zannoni
Sent: Thursday, June 20, 2002 5:48 PM
To: Mike Cleary
Cc: gdb@sources.redhat.com; clp
Subject: Re: GDB *** [event-top.o] Error 1!!




There is a missing ifdef in there, I guess you must be one of the few
(the only one) triggering this.

Could you try this patch?

Index: event-top.c
===================================================================
RCS file: /cvs/uberbaum/gdb/event-top.c,v
retrieving revision 1.20
diff -u -p -r1.20 event-top.c
--- event-top.c	27 Mar 2002 21:20:15 -0000	1.20
+++ event-top.c	20 Jun 2002 21:46:36 -0000
@@ -514,8 +514,10 @@ command_handler (char *command)
 	(struct continuation_arg *) xmalloc (sizeof (struct continuation_arg));
       arg1->next = arg2;
       arg2->next = NULL;
-      arg1->data.integer = time_at_cmd_start;
-      arg2->data.integer = space_at_cmd_start;
+      arg1->data.longint = time_at_cmd_start;
+#ifdef HAVE_SBRK
+      arg2->data.longint = space_at_cmd_start;
+#endif
       add_continuation (command_line_handler_continuation, arg1);
     }

As far as the other warnings, I am not seeing them, what type of system are
you compiling on?

Elena



Mike Cleary writes:
 > Hello
 > I'm trying to report this error and I'm not sure if anybody knows about
 > this yet. Can somebody please tell me exactly what the error is.
 > I've pasted warnings below:
 > gcc -c -g -O2    -I. -I/home/buildsys/source/toolchain/gdb
 > -I/home/buildsys/sour
 > ce/toolchain/gdb/config -DHAVE_CONFIG_H
 > -I/home/buildsys/source/toolchain/gdb/..
 > /include/opcode -I/home/buildsys/source/toolchain/gdb/../readline/..
 > -I../bfd -I
 > /home/buildsys/source/toolchain/gdb/../bfd
 > -I/home/buildsys/source/toolchain/gd
 > b/../include -I../intl -I/home/buildsys/source/toolchain/gdb/../intl
 > -DMI_OUT=1
 >  -DGDBTK -DUI_OUT=1 -Wimplicit -Wreturn-type -Wcomment -Wtrigraphs
 > -Wformat -Wpa
 > rentheses -Wpointer-arith -Wuninitialized
 > /home/buildsys/source/toolchain/gdb/e
 > vent-top.c
 > /home/buildsys/source/toolchain/gdb/event-top.c: In function
 > `cli_command_loop':
 > /home/buildsys/source/toolchain/gdb/event-top.c:192: warning: implicit
 > declarati
 > on of function `strcat'
 > /home/buildsys/source/toolchain/gdb/event-top.c: In function
 > `command_handler':
 > /home/buildsys/source/toolchain/gdb/event-top.c:469: warning: implicit
 > declarati
 > on of function `isatty'
 > /home/buildsys/source/toolchain/gdb/event-top.c:518:
 > `space_at_cmd_start' undecl
 > ared (first use in this function)
 > /home/buildsys/source/toolchain/gdb/event-top.c:518: (Each undeclared
 > identifier
 >  is reported only once
 > /home/buildsys/source/toolchain/gdb/event-top.c:518: for each function
 > it appear
 > s in.)
 > /home/buildsys/source/toolchain/gdb/event-top.c: In function
 > `command_line_handl
 > er':
 > /home/buildsys/source/toolchain/gdb/event-top.c:709: warning: implicit
 > declarati
 > on of function `strncmp'
 > /home/buildsys/source/toolchain/gdb/event-top.c: In function
 > `async_disconnect':
 > /home/buildsys/source/toolchain/gdb/event-top.c:1019: warning: implicit
 > declarat
 > ion of function `getpid'
 > make[2]: *** [event-top.o] Error 1
 > make[2]: Leaving directory
 > `/home/buildsys/build/intel1/basic/native/toolchain/g
 > db'
 > make[1]: *** [all-gdb] Error 2
 > make[1]: Leaving directory
 > `/home/buildsys/build/intel1/basic/native/toolchain'
 > make: *** [bootstrap] Error 2
 > (END)
 >
 > If anybody could hlep that'd be great.
 > Thanks
 > -Mike

^ permalink raw reply	[flat|nested] 9+ messages in thread

* *** [ser-tcp.o] Error 1 on alpha!
  2002-06-20 16:32   ` Andrew Cagney
@ 2002-06-21 17:13     ` Matthew H Bemis
  2002-06-22 10:09       ` Andrew Cagney
  0 siblings, 1 reply; 9+ messages in thread
From: Matthew H Bemis @ 2002-06-21 17:13 UTC (permalink / raw)
  To: Andrew Cagney, Elena Zannoni; +Cc: Mike Cleary, gdb, clp

Hello,
when I tried applying the patch today I noticed it was already
applied: ) -thanks
so I built basic-gcc_2.95.3 native toolchain/gdb, and i got the following
error- : (
gcc -c -g -O2    -I. -I/mnt/u9/toolchain/buildsys/source/toolchain/gdb -I/mn
t/u9/toolchain
/buildsys/source/toolchain/gdb/config -DHAVE_CONFIG_H -I/mnt/u9/toolchain/bu
ildsys/source/
toolchain/gdb/../include/opcode -I/mnt/u9/toolchain/buildsys/source/toolchai
n/gdb/../readl
ine/.. -I../bfd -I/mnt/u9/toolchain/buildsys/source/toolchain/gdb/../bfd -DN
O_MMALLOC  -I/
mnt/u9/toolchain/buildsys/source/toolchain/gdb/../include -I../intl -I/mnt/u
9/toolchain/bu
ildsys/source/toolchain/gdb/../intl  -DMI_OUT=1 -DGDBTK -DUI_OUT=1 -Wimplici
t -Wreturn-typ
e -Wcomment -Wtrigraphs -Wformat -Wparentheses -Wpointer-arith -Wuninitializ
ed  /mnt/u9/to
olchain/buildsys/source/toolchain/gdb/ser-tcp.c
/mnt/u9/toolchain/buildsys/source/toolchain/gdb/ser-tcp.c: In function
`net_open':
/mnt/u9/toolchain/buildsys/source/toolchain/gdb/ser-tcp.c:67: warning:
implicit declaratio
n of function `strncmp'
/mnt/u9/toolchain/buildsys/source/toolchain/gdb/ser-tcp.c:81: warning:
implicit declaratio
n of function `strncpy'
/mnt/u9/toolchain/buildsys/source/toolchain/gdb/ser-tcp.c:83: warning:
implicit declaratio
n of function `atoi'
/mnt/u9/toolchain/buildsys/source/toolchain/gdb/ser-tcp.c:87: warning: type
mismatch in im
plicit declaration for built-in function `strcpy'
/mnt/u9/toolchain/buildsys/source/toolchain/gdb/ser-tcp.c:112: warning:
implicit declarati
on of function `ioctl'
/mnt/u9/toolchain/buildsys/source/toolchain/gdb/ser-tcp.c:112: `FIONBIO'
undeclared (first
 use in this function)
/mnt/u9/toolchain/buildsys/source/toolchain/gdb/ser-tcp.c:112: (Each
undeclared identifier
 is reported only once
/mnt/u9/toolchain/buildsys/source/toolchain/gdb/ser-tcp.c:112: for each
function it appear
s in.)
/mnt/u9/toolchain/buildsys/source/toolchain/gdb/ser-tcp.c: In function
`net_close':
/mnt/u9/toolchain/buildsys/source/toolchain/gdb/ser-tcp.c:203: warning:
implicit declarati
on of function `close'
make[2]: *** [ser-tcp.o] Error 1
make[2]: Leaving directory
`/mnt/u9/toolchain/buildsys/build/alpha9/basic-gcc_2.95.3/nativ
e/toolchain/gdb'
make[1]: *** [all-gdb] Error 2
make[1]: Leaving directory
`/mnt/u9/toolchain/buildsys/build/alpha9/basic-gcc_2.95.3/nativ
e/toolchain'
make: *** [bootstrap] Error 2

-----Original Message-----
From: owner-linuxlab@io.iol.unh.edu
[mailto:owner-linuxlab@io.iol.unh.edu]On Behalf Of Andrew Cagney
Sent: Thursday, June 20, 2002 7:33 PM
To: Elena Zannoni
Cc: Mike Cleary; gdb@sources.redhat.com; clp
Subject: Re: GDB *** [event-top.o] Error 1!!


> -      arg1->data.integer = time_at_cmd_start;
> -      arg2->data.integer = space_at_cmd_start;
> +      arg1->data.longint = time_at_cmd_start;
> +#ifdef HAVE_SBRK
> +      arg2->data.longint = space_at_cmd_start;
> +#endif
>        add_continuation (command_line_handler_continuation, arg1);
>      }

Hmm, might as well pull that into the 5.2 branch.

Andrew

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: *** [ser-tcp.o] Error 1 on alpha!
  2002-06-21 17:13     ` *** [ser-tcp.o] Error 1 on alpha! Matthew H Bemis
@ 2002-06-22 10:09       ` Andrew Cagney
  2002-06-22 10:23         ` Matthew H Bemis
  0 siblings, 1 reply; 9+ messages in thread
From: Andrew Cagney @ 2002-06-22 10:09 UTC (permalink / raw)
  To: Matthew H Bemis; +Cc: Elena Zannoni, Mike Cleary, gdb, clp

Hmm,

The problem below is from something other than the patch.  I suspect a 
configuration / host problem - for some reason, there isn't a definition 
of FIONBIO available?

Andrew




> /mnt/u9/toolchain/buildsys/source/toolchain/gdb/ser-tcp.c:112: `FIONBIO'
> undeclared (first
>  use in this function)
> /mnt/u9/toolchain/buildsys/source/toolchain/gdb/ser-tcp.c:112: (Each
> undeclared identifier
>  is reported only once
> /mnt/u9/toolchain/buildsys/source/toolchain/gdb/ser-tcp.c:112: for each
> function it appear
> s in.)


^ permalink raw reply	[flat|nested] 9+ messages in thread

* RE: *** [ser-tcp.o] Error 1 on alpha!
  2002-06-22 10:09       ` Andrew Cagney
@ 2002-06-22 10:23         ` Matthew H Bemis
  2002-06-26 20:28           ` Andrew Cagney
  0 siblings, 1 reply; 9+ messages in thread
From: Matthew H Bemis @ 2002-06-22 10:23 UTC (permalink / raw)
  To: Andrew Cagney; +Cc: Elena Zannoni, Mike Cleary, gdb, clp

Hello,
I agree it is not caused by the patch, but not many people test their
patches on alpha.
We download from cvs every day and build this.  We have a stable build
system.  I can give you a cvs snapshot of when we took the source code from
cvs if you'd like, and I can also provide any other information about the
host machine upon request.
I have all of the build logs available too if you'd like to see them got to:
for alpha goto:
ftp://alpha9.crl.dec.com/pub/autobuild/results/alpha6/basic-gcc_2.95.3/nativ
e/toolchain/20020622-05:21:38-F/
and click on the X-configure.blog log to see the configuration,and the
X-make.blog for the compilation error

to see alpha daily builds goto:
http://handhelds.org/projects/toolchain/autobuild/build-results.php3






-----Original Message-----
From: Andrew Cagney [mailto:ac131313@cygnus.com]
Sent: Saturday, June 22, 2002 1:09 PM
To: Matthew H Bemis
Cc: Elena Zannoni; Mike Cleary; gdb@sources.redhat.com; clp
Subject: Re: *** [ser-tcp.o] Error 1 on alpha!


Hmm,

The problem below is from something other than the patch.  I suspect a
configuration / host problem - for some reason, there isn't a definition
of FIONBIO available?

Andrew




> /mnt/u9/toolchain/buildsys/source/toolchain/gdb/ser-tcp.c:112: `FIONBIO'
> undeclared (first
>  use in this function)
> /mnt/u9/toolchain/buildsys/source/toolchain/gdb/ser-tcp.c:112: (Each
> undeclared identifier
>  is reported only once
> /mnt/u9/toolchain/buildsys/source/toolchain/gdb/ser-tcp.c:112: for each
> function it appear
> s in.)

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: *** [ser-tcp.o] Error 1 on alpha!
  2002-06-22 10:23         ` Matthew H Bemis
@ 2002-06-26 20:28           ` Andrew Cagney
  0 siblings, 0 replies; 9+ messages in thread
From: Andrew Cagney @ 2002-06-26 20:28 UTC (permalink / raw)
  To: Matthew H Bemis; +Cc: Andrew Cagney, Elena Zannoni, Mike Cleary, gdb, clp

> Hello,
> I agree it is not caused by the patch, but not many people test their
> patches on alpha.
> We download from cvs every day and build this.  We have a stable build
> system.  I can give you a cvs snapshot of when we took the source code from
> cvs if you'd like, and I can also provide any other information about the
> host machine upon request.

Would you have a time for the last successful build?

> I have all of the build logs available too if you'd like to see them got to:
> for alpha goto:
> ftp://alpha9.crl.dec.com/pub/autobuild/results/alpha6/basic-gcc_2.95.3/nativ
> e/toolchain/20020622-05:21:38-F/
> and click on the X-configure.blog log to see the configuration,and the
> X-make.blog for the compilation error
> 
> to see alpha daily builds goto:
> http://handhelds.org/projects/toolchain/autobuild/build-results.php3

I suspect that the unfortunate reality is that someone is going to have 
to roll up their sleeves and try to build GDB while logged into an Alpha 
GNU/Linux system.  Only that way can the look at the relevant headers 
and figure out why things are going wrong.  ser-*.c is pretty generic so 
I'm puzzled as to why that doesn't build.

Anyway this:

> /mnt/buildsys/source/toolchain/gdb/ser-tcp.c: In function `net_open':
> /mnt/buildsys/source/toolchain/gdb/ser-tcp.c:67: warning: implicit declaration of function `strncmp'
> /mnt/buildsys/source/toolchain/gdb/ser-tcp.c:81: warning: implicit declaration of function `strncpy'
> /mnt/buildsys/source/toolchain/gdb/ser-tcp.c:83: warning: implicit declaration of function `atoi'

suggests that something is skewiff.  ser-tcp.c unconditionally includes 
"gdb_string.h" and that pulls in either <string.h> or <strings.h> so 
should have those declarations visible?

Hmm, check the generated config.h for something strange.

Andrew


^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2002-06-27  3:28 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2002-06-20 13:08 GDB *** [event-top.o] Error 1!! Mike Cleary
2002-06-20 14:00 ` Jim Blandy
2002-06-20 14:48 ` Elena Zannoni
2002-06-20 16:32   ` Andrew Cagney
2002-06-21 17:13     ` *** [ser-tcp.o] Error 1 on alpha! Matthew H Bemis
2002-06-22 10:09       ` Andrew Cagney
2002-06-22 10:23         ` Matthew H Bemis
2002-06-26 20:28           ` Andrew Cagney
2002-06-20 19:16   ` GDB *** [event-top.o] Error 1!! Matthew H Bemis

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).