bug-gdb
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

note from Prof D E Knuth


From: Maggie McLoughlin
Subject: note from Prof D E Knuth
Date: Tue, 21 Aug 2001 14:16:27 -0700

Here's a small but annoying bug in GDB (or just possibly in GCC).

I just downloaded and installed version 5.0, configured as "i686-pc-linux-gnu".
My gcc is "egcs-2.91.66".

This version does fix another bug that I had planned to tell you about,
but the old one --- which I reported by mistake to the wrong mailing list
last year --- still exists.

Three small files that illustrate the problem are appended below.
File "simple.c" was generated by "ctangle simple simple simple",
from the CWEB source file "simple.w" and the CWEB change file "simple.ch".
The #line directives in simple.c refer back to those source files.

When I invoke gdb and say "break main" and then "run", I usually can
single step through my programs using "n" repeatedly.

But in this case, gdb gets lost. When I get to the source line that
prints "The last line", the "n" instruction does not stop after that
instruction; I mean, it executes the change-file line that prints "No, this
one is actually last" WITHOUT GIVING ME A CHANCE TO SINGLE-STEP THROUGH
THAT INSTRUCTION.

Of course I reduced a huge program down to this simple case, so that you
could diagnose the bug more easily. In the real program, there are
lots of instructions I never get to see when single-stepping. So I'm
hoping you can fix the bug, thereby helping me to debug incredibly
many other CWEB programs in the future, even though the bug looks rather
harmless in this simple case.

The bug appears to go away if I reduce the program even more. For example,
it is evidently necessary to jump back and forth between simple.w and
simple.ch in the place where I've changed "A bad line" to "A good line";
without that change, GDB works as it should when it gets to the other change.

Yours truly, Don Knuth

PS: Just in case it helps, I include also the whole transcript of my
installation and test run. You probably only want to look at the
final lines.

--------- cut here for "simple.c" -----------------------
/*1:*/
#line 5 "simple.w"

#include <stdio.h> 

main()
{
printf("The first line.\n");
#line 4 "simple.ch"
printf("A good line.\n");
#line 12 "simple.w"
/*2:*/
#line 15 "simple.w"

printf("The last line.\n");

#line 9 "simple.ch"
/*:2*//*3:*/
#line 9 "simple.ch"

printf("No, this one is actually last.\n");

/*:3*/
#line 12 "simple.w"
;
}

/*:1*/
------------------- cut here for "simple.w" -----------------------------
\datethis

@*A curious bug. This program tweaks a bug in \.{gdb}.

@c
#include <stdio.h>

main()
{
  printf("The first line.\n");
  printf("A bad line.\n");
  @<Finish@>;
}

@ @<Finish@>=
printf("The last line.\n");

@*Index.
-------------------- cut here for "simple.ch" ---------------------------
@x change file for restarting POLYSLAVE after a checkpoint
  printf("A bad line.\n");
@y
  printf("A good line.\n");
@z
@x
@*Index.
@y
@ @<Finish@>=
printf("No, this one is actually last.\n");

@*Index.
@z

------------------- cut here for *shell* ---------------------------------
/tmp/gdb-5.0/gdb[1] cd ..
/tmp/gdb-5.0[2] ./configure
Configuring for a i686-pc-linux-gnu host.
Created "Makefile" in /tmp/gdb-5.0 using "mt-frag"
Configuring intl...
creating cache ../config.cache
checking for a BSD compatible install... /usr/bin/install -c
checking how to run the C preprocessor... gcc -E
checking whether make sets ${MAKE}... yes
checking for gcc... gcc
checking whether the C compiler (gcc -g -O2 ) works... yes
checking whether the C compiler (gcc -g -O2 ) is a cross-compiler... no
checking whether we are using GNU C... yes
checking whether gcc accepts -g... yes
checking for ranlib... ranlib
checking for POSIXized ISC... no
checking for ANSI C header files... yes
checking for working const... yes
checking for inline... inline
checking for off_t... yes
checking for size_t... yes
checking for working alloca.h... yes
checking for alloca... yes
checking for unistd.h... yes
checking for getpagesize... yes
checking for working mmap... yes
checking for argz.h... yes
checking for limits.h... yes
checking for locale.h... yes
checking for nl_types.h... yes
checking for malloc.h... yes
checking for string.h... yes
checking for unistd.h... (cached) yes
checking for values.h... yes
checking for sys/param.h... yes
checking for getcwd... yes
checking for munmap... yes
checking for putenv... yes
checking for setenv... yes
checking for setlocale... yes
checking for strchr... yes
checking for strcasecmp... yes
checking for __argz_count... yes
checking for __argz_stringify... yes
checking for __argz_next... yes
checking for stpcpy... yes
checking for LC_MESSAGES... yes
checking whether NLS is requested... yes
checking whether included gettext is requested... no
checking for libintl.h... yes
checking for gettext in libc... yes
checking for msgfmt... /usr/bin/msgfmt
checking for dcgettext... yes
checking for gmsgfmt... /usr/bin/msgfmt
checking for xgettext... /usr/bin/xgettext
updating cache ../config.cache
creating ./config.status
creating Makefile
creating config.h
Configuring mmalloc...
loading cache ../config.cache
checking for gcc... (cached) gcc
checking whether the C compiler (gcc -g -O2 ) works... yes
checking whether the C compiler (gcc -g -O2 ) is a cross-compiler... no
checking whether we are using GNU C... (cached) yes
checking whether gcc accepts -g... (cached) yes
checking for a BSD compatible install... (cached) /usr/bin/install -c
checking host system type... i686-pc-linux-gnu
checking build system type... i686-pc-linux-gnu
checking for ar... ar
checking for ranlib... (cached) ranlib
checking how to run the C preprocessor... (cached) gcc -E
checking for unistd.h... (cached) yes
checking for getpagesize... (cached) yes
checking for working mmap... (cached) yes
checking for limits.h... (cached) yes
checking for stddef.h... yes
checking for unistd.h... (cached) yes
checking whether sbrk must be declared... no
checking whether getpagesize must be declared... no
updating cache ../config.cache
creating ./config.status
creating Makefile
Configuring libiberty...
loading cache ../config.cache
checking host system type... i686-pc-linux-gnu
checking build system type... i686-pc-linux-gnu
checking for ar... (cached) ar
checking for ranlib... (cached) ranlib
checking for gcc... (cached) gcc
checking whether we are using GNU C... (cached) yes
checking whether gcc accepts -g... (cached) yes
checking for POSIXized ISC... no
checking for a BSD compatible install... (cached) /usr/bin/install -c
checking how to run the C preprocessor... (cached) gcc -E
checking for sys/file.h... yes
checking for sys/param.h... (cached) yes
checking for stdlib.h... yes
checking for string.h... (cached) yes
checking for unistd.h... (cached) yes
checking for strings.h... yes
checking for sys/time.h... yes
checking for sys/resource.h... yes
checking for sys/stat.h... yes
checking for sys/wait.h that is POSIX.1 compatible... yes
checking whether the C compiler (gcc -g -O2 ) works... yes
checking whether the C compiler (gcc -g -O2 ) is a cross-compiler... no
checking for asprintf... yes
checking for atexit... yes
checking for basename... yes
checking for bcmp... yes
checking for bcopy... yes
checking for bzero... yes
checking for calloc... yes
checking for clock... yes
checking for getcwd... (cached) yes
checking for getpagesize... (cached) yes
checking for index... yes
checking for insque... yes
checking for memchr... yes
checking for memcmp... yes
checking for memcpy... yes
checking for memmove... yes
checking for memset... yes
checking for mkstemps... no
checking for putenv... (cached) yes
checking for random... yes
checking for rename... yes
checking for rindex... yes
checking for setenv... (cached) yes
checking for sigsetmask... yes
checking for strcasecmp... (cached) yes
checking for strchr... (cached) yes
checking for strdup... yes
checking for strncasecmp... yes
checking for strrchr... yes
checking for strstr... yes
checking for strtod... yes
checking for strtol... yes
checking for strtoul... yes
checking for tmpnam... yes
checking for vasprintf... yes
checking for vfprintf... yes
checking for vprintf... yes
checking for vsprintf... yes
checking for waitpid... yes
checking for working alloca.h... (cached) yes
checking for alloca... (cached) yes
checking for ANSI C header files... (cached) yes
checking for pid_t... yes
checking for vfork.h... no
checking for working vfork... yes
checking for sys_errlist... yes
checking for sys_nerr... yes
checking for sys_siglist... yes
checking for getrusage... yes
checking for on_exit... yes
checking for psignal... yes
checking for strerror... yes
checking for strsignal... yes
checking for sysconf... yes
checking for times... yes
checking for sbrk... yes
checking for gettimeofday... yes
updating cache ../config.cache
creating ./config.status
creating Makefile
creating testsuite/Makefile
creating config.h
Configuring opcodes...
loading cache ../config.cache
checking host system type... i686-pc-linux-gnu
checking target system type... i686-pc-linux-gnu
checking build system type... i686-pc-linux-gnu
checking for gcc... (cached) gcc
checking whether the C compiler (gcc -g -O2 ) works... yes
checking whether the C compiler (gcc -g -O2 ) is a cross-compiler... no
checking whether we are using GNU C... (cached) yes
checking whether gcc accepts -g... (cached) yes
checking for POSIXized ISC... no
checking for a BSD compatible install... (cached) /usr/bin/install -c
checking whether build environment is sane... yes
checking whether make sets ${MAKE}... (cached) yes
checking for working aclocal... found
checking for working autoconf... found
checking for working automake... found
checking for working autoheader... found
checking for working makeinfo... found
checking for ar... (cached) ar
checking for ranlib... (cached) ranlib
checking for ranlib... (cached) ranlib
checking for ld used by GCC... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for BSD-compatible nm... /usr/bin/nm -B
checking whether ln -s works... yes
updating cache ../config.cache
loading cache ../config.cache within ltconfig
checking for object suffix... o
checking for executable suffix... no
checking for gcc option to produce PIC... -fPIC
checking if gcc PIC flag -fPIC works... yes
checking if gcc supports -c -o file.o... yes
checking if gcc supports -c -o file.lo... yes
checking if gcc supports -fno-rtti -fno-exceptions ... yes
checking if gcc static flag -static works... -static
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking whether the linker (/usr/bin/ld) supports shared libraries... yes
checking command to parse /usr/bin/nm -B output... ok
checking how to hardcode library paths into programs... immediate
checking for /usr/bin/ld option to reload object files... -r
checking dynamic linker characteristics... Linux ld.so
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... no
checking whether to build static libraries... yes
checking for objdir... .libs
creating libtool
updating cache ../config.cache
loading cache ../config.cache
checking whether to enable maintainer-specific portions of Makefiles... no
checking for Cygwin environment... no
checking for mingw32 environment... no
checking for executable suffix... (cached) no
checking for gcc... (cached) gcc
checking whether the C compiler (gcc -g -O2 ) works... yes
checking whether the C compiler (gcc -g -O2 ) is a cross-compiler... no
checking whether we are using GNU C... (cached) yes
checking whether gcc accepts -g... (cached) yes
checking how to run the C preprocessor... (cached) gcc -E
checking for ANSI C header files... (cached) yes
checking for working const... (cached) yes
checking for inline... (cached) inline
checking for off_t... (cached) yes
checking for size_t... (cached) yes
checking for working alloca.h... (cached) yes
checking for alloca... (cached) yes
checking for unistd.h... (cached) yes
checking for getpagesize... (cached) yes
checking for working mmap... (cached) yes
checking for argz.h... (cached) yes
checking for limits.h... (cached) yes
checking for locale.h... (cached) yes
checking for nl_types.h... (cached) yes
checking for malloc.h... (cached) yes
checking for string.h... (cached) yes
checking for unistd.h... (cached) yes
checking for values.h... (cached) yes
checking for sys/param.h... (cached) yes
checking for getcwd... (cached) yes
checking for munmap... (cached) yes
checking for putenv... (cached) yes
checking for setenv... (cached) yes
checking for setlocale... (cached) yes
checking for strchr... (cached) yes
checking for strcasecmp... (cached) yes
checking for __argz_count... (cached) yes
checking for __argz_stringify... (cached) yes
checking for __argz_next... (cached) yes
checking for LC_MESSAGES... (cached) yes
checking whether NLS is requested... yes
checking whether included gettext is requested... no
checking for libintl.h... (cached) yes
checking for gettext in libc... (cached) yes
checking for msgfmt... (cached) /usr/bin/msgfmt
checking for dcgettext... (cached) yes
checking for gmsgfmt... (cached) /usr/bin/msgfmt
checking for xgettext... (cached) /usr/bin/xgettext
checking for a BSD compatible install... /usr/bin/install -c
checking for string.h... (cached) yes
checking for strings.h... (cached) yes
checking for stdlib.h... (cached) yes
updating cache ../config.cache
creating ./config.status
creating Makefile
creating po/Makefile.in
creating config.h
Configuring bfd...
loading cache ../config.cache
checking host system type... i686-pc-linux-gnu
checking target system type... i686-pc-linux-gnu
checking build system type... i686-pc-linux-gnu
checking for gcc... (cached) gcc
checking whether the C compiler (gcc -g -O2 ) works... yes
checking whether the C compiler (gcc -g -O2 ) is a cross-compiler... no
checking whether we are using GNU C... (cached) yes
checking whether gcc accepts -g... (cached) yes
checking for POSIXized ISC... no
checking for a BSD compatible install... (cached) /usr/bin/install -c
checking whether build environment is sane... yes
checking whether make sets ${MAKE}... (cached) yes
checking for working aclocal... found
checking for working autoconf... found
checking for working automake... found
checking for working autoheader... found
checking for working makeinfo... found
checking for ar... (cached) ar
checking for ranlib... (cached) ranlib
checking for ranlib... (cached) ranlib
checking for ld used by GCC... (cached) /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... (cached) yes
checking for BSD-compatible nm... (cached) /usr/bin/nm -B
checking whether ln -s works... (cached) yes
loading cache ../config.cache within ltconfig
checking for object suffix... o
checking for executable suffix... (cached) no
checking for gcc option to produce PIC... -fPIC
checking if gcc PIC flag -fPIC works... yes
checking if gcc supports -c -o file.o... yes
checking if gcc supports -c -o file.lo... yes
checking if gcc supports -fno-rtti -fno-exceptions ... yes
checking if gcc static flag -static works... -static
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking whether the linker (/usr/bin/ld) supports shared libraries... yes
checking command to parse /usr/bin/nm -B output... ok
checking how to hardcode library paths into programs... immediate
checking for /usr/bin/ld option to reload object files... -r
checking dynamic linker characteristics... Linux ld.so
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... no
checking whether to build static libraries... yes
checking for objdir... .libs
creating libtool
loading cache ../config.cache
checking whether to enable maintainer-specific portions of Makefiles... no
checking for Cygwin environment... (cached) no
checking for mingw32 environment... (cached) no
checking for executable suffix... (cached) no
checking for gcc... (cached) gcc
checking whether the C compiler (gcc -g -O2 ) works... yes
checking whether the C compiler (gcc -g -O2 ) is a cross-compiler... no
checking whether we are using GNU C... (cached) yes
checking whether gcc accepts -g... (cached) yes
checking how to run the C preprocessor... (cached) gcc -E
checking for ANSI C header files... (cached) yes
checking for working const... (cached) yes
checking for inline... (cached) inline
checking for off_t... (cached) yes
checking for size_t... (cached) yes
checking for working alloca.h... (cached) yes
checking for alloca... (cached) yes
checking for unistd.h... (cached) yes
checking for getpagesize... (cached) yes
checking for working mmap... (cached) yes
checking for argz.h... (cached) yes
checking for limits.h... (cached) yes
checking for locale.h... (cached) yes
checking for nl_types.h... (cached) yes
checking for malloc.h... (cached) yes
checking for string.h... (cached) yes
checking for unistd.h... (cached) yes
checking for values.h... (cached) yes
checking for sys/param.h... (cached) yes
checking for getcwd... (cached) yes
checking for munmap... (cached) yes
checking for putenv... (cached) yes
checking for setenv... (cached) yes
checking for setlocale... (cached) yes
checking for strchr... (cached) yes
checking for strcasecmp... (cached) yes
checking for __argz_count... (cached) yes
checking for __argz_stringify... (cached) yes
checking for __argz_next... (cached) yes
checking for LC_MESSAGES... (cached) yes
checking whether NLS is requested... yes
checking whether included gettext is requested... no
checking for libintl.h... (cached) yes
checking for gettext in libc... (cached) yes
checking for msgfmt... (cached) /usr/bin/msgfmt
checking for dcgettext... (cached) yes
checking for gmsgfmt... (cached) /usr/bin/msgfmt
checking for xgettext... (cached) /usr/bin/xgettext
checking for a BSD compatible install... /usr/bin/install -c
checking for stddef.h... (cached) yes
checking for string.h... (cached) yes
checking for strings.h... (cached) yes
checking for stdlib.h... (cached) yes
checking for time.h... yes
checking for unistd.h... (cached) yes
checking for fcntl.h... yes
checking for sys/file.h... (cached) yes
checking for sys/time.h... (cached) yes
checking whether time.h and sys/time.h may both be included... yes
checking for dirent.h that defines DIR... yes
checking for opendir in -ldir... no
checking for fcntl... yes
checking for getpagesize... (cached) yes
checking for setitimer... yes
checking for sysconf... (cached) yes
checking for fdopen... yes
checking for getuid... yes
checking for getgid... yes
checking whether strstr must be declared... no
checking whether malloc must be declared... no
checking whether realloc must be declared... no
checking whether free must be declared... no
checking whether getenv must be declared... no
checking for sys/procfs.h... yes
checking for prstatus_t in sys/procfs.h... yes
checking for prstatus_t.pr_who in sys/procfs.h... no
checking for pstatus_t in sys/procfs.h... no
checking for prpsinfo_t in sys/procfs.h... yes
checking for psinfo_t in sys/procfs.h... no
checking for lwpstatus_t in sys/procfs.h... no
checking for lwpstatus_t.pr_context in sys/procfs.h... no
checking for lwpstatus_t.pr_reg in sys/procfs.h... no
checking for win32_pstatus_t in sys/procfs.h... no
checking for unistd.h... (cached) yes
checking for getpagesize... (cached) yes
checking for working mmap... (cached) yes
checking for madvise... no
checking for mprotect... yes
updating cache ../config.cache
creating ./config.status
creating Makefile
creating doc/Makefile
creating bfd-in3.h
creating po/Makefile.in
creating config.h
Configuring readline...
loading cache ../config.cache
checking host system type... i686-pc-linux-gnu
checking for gcc... (cached) gcc
checking whether the C compiler (gcc -g -O2 ) works... yes
checking whether the C compiler (gcc -g -O2 ) is a cross-compiler... no
checking whether we are using GNU C... (cached) yes
checking whether gcc accepts -g... (cached) yes
checking how to run the C preprocessor... (cached) gcc -E
checking for minix/config.h... no
checking whether gcc needs -traditional... no
checking for a BSD compatible install... (cached) /usr/bin/install -c
checking for ar... (cached) ar
checking for ranlib... (cached) ranlib
checking return type of signal handlers... void
checking whether stat file-mode macros are broken... no
checking for dirent.h that defines DIR... (cached) yes
checking for opendir in -ldir... (cached) no
checking for strcasecmp... (cached) yes
checking for select... yes
checking for setenv... (cached) yes
checking for putenv... (cached) yes
checking for tcgetattr... yes
checking for setlocale... (cached) yes
checking for lstat... yes
checking for working strcoll... yes
checking for unistd.h... (cached) yes
checking for stdlib.h... (cached) yes
checking for varargs.h... yes
checking for stdarg.h... yes
checking for string.h... (cached) yes
checking for sys/ptem.h... no
checking for sys/pte.h... no
checking for sys/stream.h... no
checking for sys/select.h... yes
checking for termcap.h... yes
checking for termios.h... yes
checking for termio.h... yes
checking for sys/file.h... (cached) yes
checking for locale.h... (cached) yes
checking for type of signal functions... posix
checking if signal handlers must be reinstalled when invoked... no
checking for presence of POSIX-style sigsetjmp/siglongjmp... present
checking for lstat... yes
checking whether programs are able to redeclare getpw functions... yes
checking whether or not strcoll and strcmp differ... no
checking whether signal handlers are of type void... yes
checking for TIOCGWINSZ in sys/ioctl.h... yes
checking for TIOCSTAT in sys/ioctl.h... no
checking for FIONREAD in sys/ioctl.h... yes
checking for speed_t in sys/types.h... no
checking for struct winsize in sys/ioctl.h and termios.h... sys/ioctl.h
checking if struct dirent has a d_ino member... yes
checking if struct dirent has a d_fileno member... yes
checking for tgetent in -ltermcap... yes
checking which library has the termcap functions... using libtermcap
checking configuration for building shared libraries... supported
updating cache ../config.cache
creating ./config.status
creating Makefile
creating doc/Makefile
creating examples/Makefile
creating shlib/Makefile
creating config.h
Configuring sim...
loading cache ../config.cache
checking for gcc... (cached) gcc
checking whether the C compiler (gcc -g -O2 ) works... yes
checking whether the C compiler (gcc -g -O2 ) is a cross-compiler... no
checking whether we are using GNU C... (cached) yes
checking whether gcc accepts -g... (cached) yes
checking for a BSD compatible install... (cached) /usr/bin/install -c
checking host system type... i686-pc-linux-gnu
checking build system type... i686-pc-linux-gnu
checking for ar... (cached) ar
checking for ranlib... (cached) ranlib
checking host system type... i686-pc-linux-gnu
checking target system type... i686-pc-linux-gnu
checking build system type... i686-pc-linux-gnu
checking for gcc... (cached) gcc
checking whether the C compiler (gcc -g -O2 ) works... yes
checking whether the C compiler (gcc -g -O2 ) is a cross-compiler... no
checking whether we are using GNU C... (cached) yes
checking whether gcc accepts -g... (cached) yes
checking for ranlib... (cached) ranlib
creating ./config.status
creating Makefile
Configuring gdb...
loading cache ../config.cache
checking whether to enable maintainer-specific portions of Makefiles... no
checking for gcc... (cached) gcc
checking whether the C compiler (gcc -g -O2 ) works... yes
checking whether the C compiler (gcc -g -O2 ) is a cross-compiler... no
checking whether we are using GNU C... (cached) yes
checking whether gcc accepts -g... (cached) yes
checking how to run the C preprocessor... (cached) gcc -E
checking for AIX... no
checking for POSIXized ISC... no
checking for gcc option to accept ANSI C... none needed
checking host system type... i686-pc-linux-gnu
checking target system type... i686-pc-linux-gnu
checking build system type... i686-pc-linux-gnu
checking whether make sets ${MAKE}... (cached) yes
checking for ranlib... (cached) ranlib
checking for ANSI C header files... (cached) yes
checking for working const... (cached) yes
checking for inline... (cached) inline
checking for off_t... (cached) yes
checking for size_t... (cached) yes
checking for working alloca.h... (cached) yes
checking for alloca... (cached) yes
checking for unistd.h... (cached) yes
checking for getpagesize... (cached) yes
checking for working mmap... (cached) yes
checking for argz.h... (cached) yes
checking for limits.h... (cached) yes
checking for locale.h... (cached) yes
checking for nl_types.h... (cached) yes
checking for malloc.h... (cached) yes
checking for string.h... (cached) yes
checking for unistd.h... (cached) yes
checking for values.h... (cached) yes
checking for sys/param.h... (cached) yes
checking for getcwd... (cached) yes
checking for munmap... (cached) yes
checking for putenv... (cached) yes
checking for setenv... (cached) yes
checking for setlocale... (cached) yes
checking for strchr... (cached) yes
checking for strcasecmp... (cached) yes
checking for __argz_count... (cached) yes
checking for __argz_stringify... (cached) yes
checking for __argz_next... (cached) yes
checking for LC_MESSAGES... (cached) yes
checking whether NLS is requested... yes
checking whether included gettext is requested... no
checking for libintl.h... (cached) yes
checking for gettext in libc... (cached) yes
checking for msgfmt... (cached) /usr/bin/msgfmt
checking for dcgettext... (cached) yes
checking for gmsgfmt... (cached) /usr/bin/msgfmt
checking for xgettext... (cached) /usr/bin/xgettext
checking for mawk... mawk
checking for a BSD compatible install... (cached) /usr/bin/install -c
checking for ar... (cached) ar
checking for ranlib... (cached) ranlib
checking for bison... bison -y
checking for mig... mig
checking return type of signal handlers... (cached) void
checking for ANSI C header files... (cached) yes
checking for ctype.h... yes
checking for curses.h... yes
checking for endian.h... yes
checking for link.h... yes
checking for thread_db.h... no
checking for proc_service.h... no
checking for memory.h... yes
checking for objlist.h... no
checking for ptrace.h... no
checking for sgtty.h... yes
checking for stddef.h... (cached) yes
checking for stdlib.h... (cached) yes
checking for string.h... (cached) yes
checking for sys/procfs.h... (cached) yes
checking for sys/ptrace.h... yes
checking for sys/reg.h... yes
checking for stdint.h... yes
checking for term.h... yes
checking for termio.h... (cached) yes
checking for termios.h... (cached) yes
checking for unistd.h... (cached) yes
checking for wait.h... yes
checking for sys/wait.h... (cached) yes
checking for wchar.h... yes
checking for wctype.h... yes
checking for asm/debugreg.h... yes
checking for sys/debugreg.h... yes
checking for sys/select.h... (cached) yes
checking for time.h... (cached) yes
checking for sys/ioctl.h... yes
checking for sys/user.h... yes
checking whether stat file-mode macros are broken... (cached) no
checking for working const... (cached) yes
checking for setpgid... yes
checking for sbrk... (cached) yes
checking for sigaction... yes
checking for isascii... yes
checking for bzero... (cached) yes
checking for bcopy... (cached) yes
checking for btowc... yes
checking for poll... yes
checking for sigprocmask... yes
checking for working alloca.h... (cached) yes
checking for alloca... (cached) yes
checking for PTRACE_GETREGS... yes
checking for PTRACE_GETXFPREGS... no
checking for socketpair in -lsocket... no
checking for socketpair... yes
checking whether malloc must be declared... (cached) no
checking whether realloc must be declared... (cached) no
checking whether free must be declared... (cached) no
checking whether strerror must be declared... no
checking whether strdup must be declared... no
checking whether strstr must be declared... (cached) no
checking for HPUX save_state structure... no
checking for pstatus_t in sys/procfs.h... (cached) no
checking for prrun_t in sys/procfs.h... no
checking for gregset_t in sys/procfs.h... yes
checking for fpregset_t in sys/procfs.h... yes
checking for prgregset_t in sys/procfs.h... no
checking for prfpregset_t in sys/procfs.h... no
checking for lwpid_t in sys/procfs.h... no
checking for psaddr_t in sys/procfs.h... no
checking for PIOCSET ioctl entry in sys/procfs.h... no
checking for main in -lm... yes
checking for wctype in -lc... yes
checking for long long support in compiler... yes
checking for long long support in printf... yes
checking for long double support in compiler... yes
checking for long double support in printf... yes
checking for long double support in scanf... yes
checking for unistd.h... (cached) yes
checking for getpagesize... (cached) yes
checking for working mmap... (cached) yes
checking for cygwin... no
checking for tgetent in -lncurses... yes
checking for X... libraries /usr/X11R6/lib, headers /usr/X11R6/include
checking whether ln -s works... (cached) yes
checking for Cygwin environment... (cached) no
checking for mingw32 environment... (cached) no
checking for executable suffix... (cached) no
updating cache ../config.cache
creating ./config.status
creating Makefile
creating tui/Makefile
creating .gdbinit
creating config.h
linking ./config/i386/xm-linux.h to xm.h
linking ./config/i386/tm-linux.h to tm.h
linking ./config/i386/nm-linux.h to nm.h
configuring in doc
running /bin/sh ./configure  --host=i686-pc-linux-gnu 
--target=i686-pc-linux-gnu --cache-file=../../config.cache --srcdir=.
loading cache ../../config.cache
checking for a BSD compatible install... (cached) /usr/bin/install -c
checking whether ln -s works... (cached) yes
creating ./config.status
creating Makefile
configuring in testsuite
running /bin/sh ./configure  --host=i686-pc-linux-gnu 
--target=i686-pc-linux-gnu --cache-file=../../config.cache --srcdir=.
loading cache ../../config.cache
checking host system type... i686-pc-linux-gnu
checking target system type... i686-pc-linux-gnu
checking build system type... i686-pc-linux-gnu
creating ./config.status
creating Makefile
configuring in gdb.asm
running /bin/sh ./configure  --host=i686-pc-linux-gnu 
--target=i686-pc-linux-gnu --cache-file=../../../config.cache --srcdir=.
loading cache ../../../config.cache
checking host system type... i686-pc-linux-gnu
checking target system type... i686-pc-linux-gnu
checking build system type... i686-pc-linux-gnu
creating ./config.status
creating Makefile
linking ./common.inc to arch.inc
configuring in gdb.base
running /bin/sh ./configure  --host=i686-pc-linux-gnu 
--target=i686-pc-linux-gnu --cache-file=../../../config.cache --srcdir=.
loading cache ../../../config.cache
checking host system type... i686-pc-linux-gnu
checking target system type... i686-pc-linux-gnu
checking build system type... i686-pc-linux-gnu
creating ./config.status
creating Makefile
configuring in gdb.c++
running /bin/sh ./configure  --host=i686-pc-linux-gnu 
--target=i686-pc-linux-gnu --cache-file=../../../config.cache --srcdir=.
loading cache ../../../config.cache
checking host system type... i686-pc-linux-gnu
checking target system type... i686-pc-linux-gnu
checking build system type... i686-pc-linux-gnu
creating ./config.status
creating Makefile
configuring in gdb.disasm
running /bin/sh ./configure  --host=i686-pc-linux-gnu 
--target=i686-pc-linux-gnu --cache-file=../../../config.cache --srcdir=.
loading cache ../../../config.cache
checking host system type... i686-pc-linux-gnu
checking target system type... i686-pc-linux-gnu
checking build system type... i686-pc-linux-gnu
creating ./config.status
creating Makefile
configuring in gdb.chill
running /bin/sh ./configure  --host=i686-pc-linux-gnu 
--target=i686-pc-linux-gnu --cache-file=../../../config.cache --srcdir=.
loading cache ../../../config.cache
checking host system type... i686-pc-linux-gnu
checking target system type... i686-pc-linux-gnu
checking build system type... i686-pc-linux-gnu
creating ./config.status
creating Makefile
configuring in gdb.mi
running /bin/sh ./configure  --host=i686-pc-linux-gnu 
--target=i686-pc-linux-gnu --cache-file=../../../config.cache --srcdir=.
loading cache ../../../config.cache
checking host system type... i686-pc-linux-gnu
checking target system type... i686-pc-linux-gnu
checking build system type... i686-pc-linux-gnu
creating ./config.status
creating Makefile
configuring in gdb.threads
running /bin/sh ./configure  --host=i686-pc-linux-gnu 
--target=i686-pc-linux-gnu --cache-file=../../../config.cache --srcdir=.
loading cache ../../../config.cache
checking host system type... i686-pc-linux-gnu
checking target system type... i686-pc-linux-gnu
checking build system type... i686-pc-linux-gnu
checking how to run the C preprocessor... (cached) gcc -E
checking for pthread.h... yes
updating cache ../../../config.cache
creating ./config.status
creating Makefile
creating config.h
configuring in gdb.trace
running /bin/sh ./configure  --host=i686-pc-linux-gnu 
--target=i686-pc-linux-gnu --cache-file=../../../config.cache --srcdir=.
loading cache ../../../config.cache
checking host system type... i686-pc-linux-gnu
checking target system type... i686-pc-linux-gnu
checking build system type... i686-pc-linux-gnu
creating ./config.status
creating Makefile
configuring in gdb.stabs
running /bin/sh ./configure  --host=i686-pc-linux-gnu 
--target=i686-pc-linux-gnu --cache-file=../../../config.cache --srcdir=.
loading cache ../../../config.cache
checking host system type... i686-pc-linux-gnu
checking target system type... i686-pc-linux-gnu
checking build system type... i686-pc-linux-gnu
creating ./config.status
creating Makefile
configuring in gdbserver
running /bin/sh ./configure  --host=i686-pc-linux-gnu 
--target=i686-pc-linux-gnu --cache-file=../../config.cache --srcdir=.
loading cache ../../config.cache
checking host system type... i686-pc-linux-gnu
checking target system type... i686-pc-linux-gnu
checking build system type... i686-pc-linux-gnu
checking for a BSD compatible install... (cached) /usr/bin/install -c
creating ./config.status
creating Makefile
linking ./../config/i386/xm-linux.h to xm.h
linking ./../config/i386/tm-linux.h to tm.h
linking ./../config/i386/nm-linux.h to nm.h
Configuring etc...
loading cache ../config.cache
checking for a BSD compatible install... (cached) /usr/bin/install -c
creating ./config.status
creating Makefile
Configuring utils...
Created "Makefile" in /tmp/gdb-5.0/utils
Configuring spu...
Created "Makefile" in /tmp/gdb-5.0/utils/spu
/tmp/gdb-5.0[3] make
make[1]: Entering directory `/tmp/gdb-5.0/libiberty'
if [ x"no" = xyes ] && [ ! -d pic ]; then \
  mkdir pic; \
else true; fi
touch stamp-picdir
test x"no" != xyes || \
  gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I./../include  -W -Wall -Wtraditional  
argv.c -o pic/argv.o
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I./../include  -W -Wall -Wtraditional argv.c
test x"no" != xyes || \
  gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I./../include  -W -Wall -Wtraditional  
choose-temp.c -o pic/choose-temp.o
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I./../include  -W -Wall -Wtraditional 
choose-temp.c
test x"no" != xyes || \
  gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I./../include  -W -Wall -Wtraditional  
concat.c -o pic/concat.o
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I./../include  -W -Wall -Wtraditional 
concat.c
test x"no" != xyes || \
  gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I./../include  -W -Wall -Wtraditional  
cplus-dem.c -o pic/cplus-dem.o
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I./../include  -W -Wall -Wtraditional 
cplus-dem.c
test x"no" != xyes || \
  gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I./../include  -W -Wall -Wtraditional  
fdmatch.c -o pic/fdmatch.o
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I./../include  -W -Wall -Wtraditional 
fdmatch.c
test x"no" != xyes || \
  gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I./../include  -W -Wall -Wtraditional  
fnmatch.c -o pic/fnmatch.o
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I./../include  -W -Wall -Wtraditional 
fnmatch.c
test x"no" != xyes || \
  gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I./../include  -W -Wall -Wtraditional  
getopt.c -o pic/getopt.o
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I./../include  -W -Wall -Wtraditional 
getopt.c
test x"no" != xyes || \
  gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I./../include  -W -Wall -Wtraditional  
getopt1.c -o pic/getopt1.o
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I./../include  -W -Wall -Wtraditional 
getopt1.c
test x"no" != xyes || \
  gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I./../include  -W -Wall -Wtraditional  
getpwd.c -o pic/getpwd.o
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I./../include  -W -Wall -Wtraditional 
getpwd.c
test x"no" != xyes || \
  gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I./../include  -W -Wall -Wtraditional  
getruntime.c -o pic/getruntime.o
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I./../include  -W -Wall -Wtraditional 
getruntime.c
test x"no" != xyes || \
  gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I./../include  -W -Wall -Wtraditional  
hashtab.c -o pic/hashtab.o
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I./../include  -W -Wall -Wtraditional 
hashtab.c
test x"no" != xyes || \
  gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I./../include  -W -Wall -Wtraditional  
hex.c -o pic/hex.o
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I./../include  -W -Wall -Wtraditional hex.c
test x"no" != xyes || \
  gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I./../include  -W -Wall -Wtraditional  
floatformat.c -o pic/floatformat.o
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I./../include  -W -Wall -Wtraditional 
floatformat.c
/usr/include/bits/mathinline.h: In function `__finite':
In file included from /usr/include/math.h:348,
                 from floatformat.c:21:
/usr/include/bits/mathinline.h:638: warning: integer constant is unsigned in 
ANSI C, signed with -traditional
test x"no" != xyes || \
  gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I./../include  -W -Wall -Wtraditional  
objalloc.c -o pic/objalloc.o
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I./../include  -W -Wall -Wtraditional 
objalloc.c
test x"no" != xyes || \
  gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I./../include  -W -Wall -Wtraditional  
obstack.c -o pic/obstack.o
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I./../include  -W -Wall -Wtraditional 
obstack.c
test x"no" != xyes || \
  gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I./../include  -W -Wall -Wtraditional  
partition.c -o pic/partition.o
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I./../include  -W -Wall -Wtraditional 
partition.c
test x"no" != xyes || \
  gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I./../include  -W -Wall -Wtraditional  
pexecute.c -o pic/pexecute.o
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I./../include  -W -Wall -Wtraditional 
pexecute.c
pexecute.c: In function `pexecute':
pexecute.c:663: warning: variable `func' might be clobbered by `longjmp' or 
`vfork'
pexecute.c:666: warning: variable `output_desc' might be clobbered by `longjmp' 
or `vfork'
pexecute.c:667: warning: variable `retries' might be clobbered by `longjmp' or 
`vfork'
pexecute.c:667: warning: variable `sleep_interval' might be clobbered by 
`longjmp' or `vfork'
test x"no" != xyes || \
  gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I./../include  -W -Wall -Wtraditional  
spaces.c -o pic/spaces.o
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I./../include  -W -Wall -Wtraditional 
spaces.c
test x"no" != xyes || \
  gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I./../include  -W -Wall -Wtraditional  
splay-tree.c -o pic/splay-tree.o
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I./../include  -W -Wall -Wtraditional 
splay-tree.c
test x"no" != xyes || \
  gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I./../include  -W -Wall -Wtraditional  
strerror.c -o pic/strerror.o
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I./../include  -W -Wall -Wtraditional 
strerror.c
test x"no" != xyes || \
  gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I./../include  -W -Wall -Wtraditional  
strsignal.c -o pic/strsignal.o
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I./../include  -W -Wall -Wtraditional 
strsignal.c
test x"no" != xyes || \
  gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I./../include  -W -Wall -Wtraditional  
xatexit.c -o pic/xatexit.o
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I./../include  -W -Wall -Wtraditional 
xatexit.c
test x"no" != xyes || \
  gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I./../include  -W -Wall -Wtraditional  
xexit.c -o pic/xexit.o
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I./../include  -W -Wall -Wtraditional xexit.c
test x"no" != xyes || \
  gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I./../include  -W -Wall -Wtraditional  
xmalloc.c -o pic/xmalloc.o
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I./../include  -W -Wall -Wtraditional 
xmalloc.c
test x"no" != xyes || \
  gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I./../include  -W -Wall -Wtraditional  
xmemdup.c -o pic/xmemdup.o
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I./../include  -W -Wall -Wtraditional 
xmemdup.c
test x"no" != xyes || \
  gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I./../include  -W -Wall -Wtraditional  
xstrdup.c -o pic/xstrdup.o
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I./../include  -W -Wall -Wtraditional 
xstrdup.c
test x"no" != xyes || \
  gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I./../include  -W -Wall -Wtraditional  
xstrerror.c -o pic/xstrerror.o
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I./../include  -W -Wall -Wtraditional 
xstrerror.c
test x"no" != xyes || \
  gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I./../include  -W -Wall -Wtraditional  
mkstemps.c -o pic/mkstemps.o
gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I./../include  -W -Wall -Wtraditional 
mkstemps.c
rm -f libiberty.a
ar rc libiberty.a \
  argv.o choose-temp.o concat.o cplus-dem.o fdmatch.o fnmatch.o getopt.o 
getopt1.o getpwd.o getruntime.o hashtab.o hex.o floatformat.o objalloc.o 
obstack.o partition.o pexecute.o spaces.o splay-tree.o strerror.o strsignal.o 
xatexit.o xexit.o xmalloc.o xmemdup.o xstrdup.o xstrerror.o  mkstemps.o 
ranlib libiberty.a
rm -f needed-list; touch needed-list; \
for f in atexit calloc memchr memcmp memcpy memmove memset rename strchr 
strerror strrchr strstr strtol strtoul tmpnam vfprintf vprintf vfork waitpid 
bcmp bcopy bzero; do \
  for g in mkstemps.o ; do \
    case "$g" in \
      *$f*) echo $g >> needed-list ;; \
    esac; \
  done; \
done
echo argv.o choose-temp.o concat.o cplus-dem.o fdmatch.o fnmatch.o getopt.o 
getopt1.o getpwd.o getruntime.o hashtab.o hex.o floatformat.o objalloc.o 
obstack.o partition.o pexecute.o spaces.o splay-tree.o strerror.o strsignal.o 
xatexit.o xexit.o xmalloc.o xmemdup.o xstrdup.o xstrerror.o > required-list
make[2]: Entering directory `/tmp/gdb-5.0/libiberty/testsuite'
make[2]: Nothing to be done for `all'.
make[2]: Leaving directory `/tmp/gdb-5.0/libiberty/testsuite'
make[1]: Leaving directory `/tmp/gdb-5.0/libiberty'
make[1]: Entering directory `/tmp/gdb-5.0/intl'
make[1]: Nothing to be done for `all'.
make[1]: Leaving directory `/tmp/gdb-5.0/intl'
make[1]: Entering directory `/tmp/gdb-5.0/bfd'
make  all-recursive
make[2]: Entering directory `/tmp/gdb-5.0/bfd'
Making all in doc
make[3]: Entering directory `/tmp/gdb-5.0/bfd/doc'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory `/tmp/gdb-5.0/bfd/doc'
Making all in po
make[3]: Entering directory `/tmp/gdb-5.0/bfd/po'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory `/tmp/gdb-5.0/bfd/po'
make[3]: Entering directory `/tmp/gdb-5.0/bfd'
rm -f bfd-tmp.h
cp bfd-in3.h bfd-tmp.h
/bin/sh ./../move-if-change bfd-tmp.h bfd.h
rm -f bfd-tmp.h
touch stmp-bfd-h
/bin/sh ./libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I. -D_GNU_SOURCE  
 -DTRAD_CORE   -I. -I. -I./../include  -I./../intl -I../intl   -W -Wall -g -O2 
-c archive.c
gcc -DHAVE_CONFIG_H -I. -I. -I. -D_GNU_SOURCE -DTRAD_CORE -I. -I. 
-I./../include -I./../intl -I../intl -W -Wall -g -O2 -c archive.c -o archive.o
echo timestamp > archive.lo
/bin/sh ./libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I. -D_GNU_SOURCE  
 -DTRAD_CORE   -I. -I. -I./../include  -I./../intl -I../intl   -W -Wall -g -O2 
-c -DDEFAULT_VECTOR=bfd_elf32_i386_vec 
-DSELECT_VECS='&bfd_elf32_i386_vec,&i386linux_vec,&bfd_elf32_little_generic_vec,&bfd_elf32_big_generic_vec'
 -DSELECT_ARCHITECTURES='&bfd_i386_arch' -DHAVE_bfd_elf32_i386_vec 
-DHAVE_i386linux_vec -DHAVE_bfd_elf32_little_generic_vec 
-DHAVE_bfd_elf32_big_generic_vec ./archures.c
gcc -DHAVE_CONFIG_H -I. -I. -I. -D_GNU_SOURCE -DTRAD_CORE -I. -I. 
-I./../include -I./../intl -I../intl -W -Wall -g -O2 -c 
-DDEFAULT_VECTOR=bfd_elf32_i386_vec 
"-DSELECT_VECS=&bfd_elf32_i386_vec,&i386linux_vec,&bfd_elf32_little_generic_vec,&bfd_elf32_big_generic_vec"
 "-DSELECT_ARCHITECTURES=&bfd_i386_arch" -DHAVE_bfd_elf32_i386_vec 
-DHAVE_i386linux_vec -DHAVE_bfd_elf32_little_generic_vec 
-DHAVE_bfd_elf32_big_generic_vec ./archures.c -o archures.o
echo timestamp > archures.lo
/bin/sh ./libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I. -D_GNU_SOURCE  
 -DTRAD_CORE   -I. -I. -I./../include  -I./../intl -I../intl   -W -Wall -g -O2 
-c bfd.c
gcc -DHAVE_CONFIG_H -I. -I. -I. -D_GNU_SOURCE -DTRAD_CORE -I. -I. 
-I./../include -I./../intl -I../intl -W -Wall -g -O2 -c bfd.c -o bfd.o
echo timestamp > bfd.lo
/bin/sh ./libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I. -D_GNU_SOURCE  
 -DTRAD_CORE   -I. -I. -I./../include  -I./../intl -I../intl   -W -Wall -g -O2 
-c cache.c
gcc -DHAVE_CONFIG_H -I. -I. -I. -D_GNU_SOURCE -DTRAD_CORE -I. -I. 
-I./../include -I./../intl -I../intl -W -Wall -g -O2 -c cache.c -o cache.o
echo timestamp > cache.lo
/bin/sh ./libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I. -D_GNU_SOURCE  
 -DTRAD_CORE   -I. -I. -I./../include  -I./../intl -I../intl   -W -Wall -g -O2 
-c coffgen.c
gcc -DHAVE_CONFIG_H -I. -I. -I. -D_GNU_SOURCE -DTRAD_CORE -I. -I. 
-I./../include -I./../intl -I../intl -W -Wall -g -O2 -c coffgen.c -o coffgen.o
echo timestamp > coffgen.lo
/bin/sh ./libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I. -D_GNU_SOURCE  
 -DTRAD_CORE   -I. -I. -I./../include  -I./../intl -I../intl   -W -Wall -g -O2 
-c corefile.c
gcc -DHAVE_CONFIG_H -I. -I. -I. -D_GNU_SOURCE -DTRAD_CORE -I. -I. 
-I./../include -I./../intl -I../intl -W -Wall -g -O2 -c corefile.c -o corefile.o
echo timestamp > corefile.lo
/bin/sh ./libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I. -D_GNU_SOURCE  
 -DTRAD_CORE   -I. -I. -I./../include  -I./../intl -I../intl   -W -Wall -g -O2 
-c format.c
gcc -DHAVE_CONFIG_H -I. -I. -I. -D_GNU_SOURCE -DTRAD_CORE -I. -I. 
-I./../include -I./../intl -I../intl -W -Wall -g -O2 -c format.c -o format.o
echo timestamp > format.lo
/bin/sh ./libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I. -D_GNU_SOURCE  
 -DTRAD_CORE   -I. -I. -I./../include  -I./../intl -I../intl   -W -Wall -g -O2 
-c init.c
gcc -DHAVE_CONFIG_H -I. -I. -I. -D_GNU_SOURCE -DTRAD_CORE -I. -I. 
-I./../include -I./../intl -I../intl -W -Wall -g -O2 -c init.c -o init.o
echo timestamp > init.lo
/bin/sh ./libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I. -D_GNU_SOURCE  
 -DTRAD_CORE   -I. -I. -I./../include  -I./../intl -I../intl   -W -Wall -g -O2 
-c libbfd.c
gcc -DHAVE_CONFIG_H -I. -I. -I. -D_GNU_SOURCE -DTRAD_CORE -I. -I. 
-I./../include -I./../intl -I../intl -W -Wall -g -O2 -c libbfd.c -o libbfd.o
echo timestamp > libbfd.lo
/bin/sh ./libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I. -D_GNU_SOURCE  
 -DTRAD_CORE   -I. -I. -I./../include  -I./../intl -I../intl   -W -Wall -g -O2 
-c opncls.c
gcc -DHAVE_CONFIG_H -I. -I. -I. -D_GNU_SOURCE -DTRAD_CORE -I. -I. 
-I./../include -I./../intl -I../intl -W -Wall -g -O2 -c opncls.c -o opncls.o
echo timestamp > opncls.lo
/bin/sh ./libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I. -D_GNU_SOURCE  
 -DTRAD_CORE   -I. -I. -I./../include  -I./../intl -I../intl   -W -Wall -g -O2 
-c reloc.c
gcc -DHAVE_CONFIG_H -I. -I. -I. -D_GNU_SOURCE -DTRAD_CORE -I. -I. 
-I./../include -I./../intl -I../intl -W -Wall -g -O2 -c reloc.c -o reloc.o
echo timestamp > reloc.lo
/bin/sh ./libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I. -D_GNU_SOURCE  
 -DTRAD_CORE   -I. -I. -I./../include  -I./../intl -I../intl   -W -Wall -g -O2 
-c section.c
gcc -DHAVE_CONFIG_H -I. -I. -I. -D_GNU_SOURCE -DTRAD_CORE -I. -I. 
-I./../include -I./../intl -I../intl -W -Wall -g -O2 -c section.c -o section.o
echo timestamp > section.lo
/bin/sh ./libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I. -D_GNU_SOURCE  
 -DTRAD_CORE   -I. -I. -I./../include  -I./../intl -I../intl   -W -Wall -g -O2 
-c syms.c
gcc -DHAVE_CONFIG_H -I. -I. -I. -D_GNU_SOURCE -DTRAD_CORE -I. -I. 
-I./../include -I./../intl -I../intl -W -Wall -g -O2 -c syms.c -o syms.o
echo timestamp > syms.lo
rm -f targmatch.h
sed -f ./targmatch.sed < ./config.bfd > targmatch.new
mv -f targmatch.new targmatch.h
/bin/sh ./libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I. -D_GNU_SOURCE  
 -DTRAD_CORE   -I. -I. -I./../include  -I./../intl -I../intl   -W -Wall -g -O2 
-c -DDEFAULT_VECTOR=bfd_elf32_i386_vec 
-DSELECT_VECS='&bfd_elf32_i386_vec,&i386linux_vec,&bfd_elf32_little_generic_vec,&bfd_elf32_big_generic_vec'
 -DSELECT_ARCHITECTURES='&bfd_i386_arch' -DHAVE_bfd_elf32_i386_vec 
-DHAVE_i386linux_vec -DHAVE_bfd_elf32_little_generic_vec 
-DHAVE_bfd_elf32_big_generic_vec ./targets.c
gcc -DHAVE_CONFIG_H -I. -I. -I. -D_GNU_SOURCE -DTRAD_CORE -I. -I. 
-I./../include -I./../intl -I../intl -W -Wall -g -O2 -c 
-DDEFAULT_VECTOR=bfd_elf32_i386_vec 
"-DSELECT_VECS=&bfd_elf32_i386_vec,&i386linux_vec,&bfd_elf32_little_generic_vec,&bfd_elf32_big_generic_vec"
 "-DSELECT_ARCHITECTURES=&bfd_i386_arch" -DHAVE_bfd_elf32_i386_vec 
-DHAVE_i386linux_vec -DHAVE_bfd_elf32_little_generic_vec 
-DHAVE_bfd_elf32_big_generic_vec ./targets.c -o targets.o
echo timestamp > targets.lo
/bin/sh ./libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I. -D_GNU_SOURCE  
 -DTRAD_CORE   -I. -I. -I./../include  -I./../intl -I../intl   -W -Wall -g -O2 
-c hash.c
gcc -DHAVE_CONFIG_H -I. -I. -I. -D_GNU_SOURCE -DTRAD_CORE -I. -I. 
-I./../include -I./../intl -I../intl -W -Wall -g -O2 -c hash.c -o hash.o
echo timestamp > hash.lo
/bin/sh ./libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I. -D_GNU_SOURCE  
 -DTRAD_CORE   -I. -I. -I./../include  -I./../intl -I../intl   -W -Wall -g -O2 
-c linker.c
gcc -DHAVE_CONFIG_H -I. -I. -I. -D_GNU_SOURCE -DTRAD_CORE -I. -I. 
-I./../include -I./../intl -I../intl -W -Wall -g -O2 -c linker.c -o linker.o
echo timestamp > linker.lo
/bin/sh ./libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I. -D_GNU_SOURCE  
 -DTRAD_CORE   -I. -I. -I./../include  -I./../intl -I../intl   -W -Wall -g -O2 
-c srec.c
gcc -DHAVE_CONFIG_H -I. -I. -I. -D_GNU_SOURCE -DTRAD_CORE -I. -I. 
-I./../include -I./../intl -I../intl -W -Wall -g -O2 -c srec.c -o srec.o
echo timestamp > srec.lo
/bin/sh ./libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I. -D_GNU_SOURCE  
 -DTRAD_CORE   -I. -I. -I./../include  -I./../intl -I../intl   -W -Wall -g -O2 
-c binary.c
gcc -DHAVE_CONFIG_H -I. -I. -I. -D_GNU_SOURCE -DTRAD_CORE -I. -I. 
-I./../include -I./../intl -I../intl -W -Wall -g -O2 -c binary.c -o binary.o
echo timestamp > binary.lo
/bin/sh ./libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I. -D_GNU_SOURCE  
 -DTRAD_CORE   -I. -I. -I./../include  -I./../intl -I../intl   -W -Wall -g -O2 
-c tekhex.c
gcc -DHAVE_CONFIG_H -I. -I. -I. -D_GNU_SOURCE -DTRAD_CORE -I. -I. 
-I./../include -I./../intl -I../intl -W -Wall -g -O2 -c tekhex.c -o tekhex.o
echo timestamp > tekhex.lo
/bin/sh ./libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I. -D_GNU_SOURCE  
 -DTRAD_CORE   -I. -I. -I./../include  -I./../intl -I../intl   -W -Wall -g -O2 
-c ihex.c
gcc -DHAVE_CONFIG_H -I. -I. -I. -D_GNU_SOURCE -DTRAD_CORE -I. -I. 
-I./../include -I./../intl -I../intl -W -Wall -g -O2 -c ihex.c -o ihex.o
echo timestamp > ihex.lo
/bin/sh ./libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I. -D_GNU_SOURCE  
 -DTRAD_CORE   -I. -I. -I./../include  -I./../intl -I../intl   -W -Wall -g -O2 
-c stabs.c
gcc -DHAVE_CONFIG_H -I. -I. -I. -D_GNU_SOURCE -DTRAD_CORE -I. -I. 
-I./../include -I./../intl -I../intl -W -Wall -g -O2 -c stabs.c -o stabs.o
echo timestamp > stabs.lo
/bin/sh ./libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I. -D_GNU_SOURCE  
 -DTRAD_CORE   -I. -I. -I./../include  -I./../intl -I../intl   -W -Wall -g -O2 
-c stab-syms.c
gcc -DHAVE_CONFIG_H -I. -I. -I. -D_GNU_SOURCE -DTRAD_CORE -I. -I. 
-I./../include -I./../intl -I../intl -W -Wall -g -O2 -c stab-syms.c -o 
stab-syms.o
echo timestamp > stab-syms.lo
rm -f elf32-target.h
sed -e s/NN/32/g < ./elfxx-target.h > elf32-target.new
mv -f elf32-target.new elf32-target.h
/bin/sh ./libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I. -D_GNU_SOURCE  
 -DTRAD_CORE   -I. -I. -I./../include  -I./../intl -I../intl   -W -Wall -g -O2 
-c elf32-i386.c
gcc -DHAVE_CONFIG_H -I. -I. -I. -D_GNU_SOURCE -DTRAD_CORE -I. -I. 
-I./../include -I./../intl -I../intl -W -Wall -g -O2 -c elf32-i386.c -o 
elf32-i386.o
echo timestamp > elf32-i386.lo
/bin/sh ./libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I. -D_GNU_SOURCE  
 -DTRAD_CORE   -I. -I. -I./../include  -I./../intl -I../intl   -W -Wall -g -O2 
-c elf32.c
gcc -DHAVE_CONFIG_H -I. -I. -I. -D_GNU_SOURCE -DTRAD_CORE -I. -I. 
-I./../include -I./../intl -I../intl -W -Wall -g -O2 -c elf32.c -o elf32.o
elflink.h: In function `elf_link_output_extsym':
In file included from elfcode.h:1518,
                 from elf32.c:23:
elflink.h:5085: warning: `chain' might be used uninitialized in this function
echo timestamp > elf32.lo
/bin/sh ./libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I. -D_GNU_SOURCE  
 -DTRAD_CORE   -I. -I. -I./../include  -I./../intl -I../intl   -W -Wall -g -O2 
-c elf.c
gcc -DHAVE_CONFIG_H -I. -I. -I. -D_GNU_SOURCE -DTRAD_CORE -I. -I. 
-I./../include -I./../intl -I../intl -W -Wall -g -O2 -c elf.c -o elf.o
echo timestamp > elf.lo
/bin/sh ./libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I. -D_GNU_SOURCE  
 -DTRAD_CORE   -I. -I. -I./../include  -I./../intl -I../intl   -W -Wall -g -O2 
-c elflink.c
gcc -DHAVE_CONFIG_H -I. -I. -I. -D_GNU_SOURCE -DTRAD_CORE -I. -I. 
-I./../include -I./../intl -I../intl -W -Wall -g -O2 -c elflink.c -o elflink.o
echo timestamp > elflink.lo
/bin/sh ./libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I. -D_GNU_SOURCE  
 -DTRAD_CORE   -I. -I. -I./../include  -I./../intl -I../intl   -W -Wall -g -O2 
-c dwarf2.c
gcc -DHAVE_CONFIG_H -I. -I. -I. -D_GNU_SOURCE -DTRAD_CORE -I. -I. 
-I./../include -I./../intl -I../intl -W -Wall -g -O2 -c dwarf2.c -o dwarf2.o
echo timestamp > dwarf2.lo
/bin/sh ./libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I. -D_GNU_SOURCE  
 -DTRAD_CORE   -I. -I. -I./../include  -I./../intl -I../intl   -W -Wall -g -O2 
-c dwarf1.c
gcc -DHAVE_CONFIG_H -I. -I. -I. -D_GNU_SOURCE -DTRAD_CORE -I. -I. 
-I./../include -I./../intl -I../intl -W -Wall -g -O2 -c dwarf1.c -o dwarf1.o
echo timestamp > dwarf1.lo
/bin/sh ./libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I. -D_GNU_SOURCE  
 -DTRAD_CORE   -I. -I. -I./../include  -I./../intl -I../intl   -W -Wall -g -O2 
-c i386linux.c
gcc -DHAVE_CONFIG_H -I. -I. -I. -D_GNU_SOURCE -DTRAD_CORE -I. -I. 
-I./../include -I./../intl -I../intl -W -Wall -g -O2 -c i386linux.c -o 
i386linux.o
echo timestamp > i386linux.lo
/bin/sh ./libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I. -D_GNU_SOURCE  
 -DTRAD_CORE   -I. -I. -I./../include  -I./../intl -I../intl   -W -Wall -g -O2 
-c aout32.c
gcc -DHAVE_CONFIG_H -I. -I. -I. -D_GNU_SOURCE -DTRAD_CORE -I. -I. 
-I./../include -I./../intl -I../intl -W -Wall -g -O2 -c aout32.c -o aout32.o
aoutx.h: In function `aout_link_input_section_std':
In file included from aout32.c:23:
aoutx.h:4944: warning: `section' might be used uninitialized in this function
aoutx.h:5009: warning: `section' might be used uninitialized in this function
aoutx.h:5072: warning: `s' might be used uninitialized in this function
aoutx.h: In function `aout_link_input_section_ext':
aoutx.h:5487: warning: `s' might be used uninitialized in this function
echo timestamp > aout32.lo
/bin/sh ./libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I. -D_GNU_SOURCE  
 -DTRAD_CORE   -I. -I. -I./../include  -I./../intl -I../intl   -W -Wall -g -O2 
-c elf32-gen.c
gcc -DHAVE_CONFIG_H -I. -I. -I. -D_GNU_SOURCE -DTRAD_CORE -I. -I. 
-I./../include -I./../intl -I../intl -W -Wall -g -O2 -c elf32-gen.c -o 
elf32-gen.o
echo timestamp > elf32-gen.lo
/bin/sh ./libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I. -D_GNU_SOURCE  
 -DTRAD_CORE   -I. -I. -I./../include  -I./../intl -I../intl   -W -Wall -g -O2 
-c cpu-i386.c
gcc -DHAVE_CONFIG_H -I. -I. -I. -D_GNU_SOURCE -DTRAD_CORE -I. -I. 
-I./../include -I./../intl -I../intl -W -Wall -g -O2 -c cpu-i386.c -o cpu-i386.o
echo timestamp > cpu-i386.lo
/bin/sh ./libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I. -D_GNU_SOURCE  
 -DTRAD_CORE   -I. -I. -I./../include  -I./../intl -I../intl   -W -Wall -g -O2 
-c trad-core.c
gcc -DHAVE_CONFIG_H -I. -I. -I. -D_GNU_SOURCE -DTRAD_CORE -I. -I. 
-I./../include -I./../intl -I../intl -W -Wall -g -O2 -c trad-core.c -o 
trad-core.o
echo timestamp > trad-core.lo
rm -f tofiles
f=""; \
for i in elf32-i386.lo elf32.lo elf.lo elflink.lo dwarf2.lo dwarf1.lo 
i386linux.lo aout32.lo elf32-gen.lo cpu-i386.lo trad-core.lo ; do \
  case " $f " in \
    *" $i "*) ;; \
    *) f="$f $i" ;; \
  esac ; \
done ; \
echo $f > tofiles
/bin/sh ./../move-if-change tofiles ofiles
touch stamp-ofiles
/bin/sh ./libtool --mode=link gcc -W -Wall -g -O2  -o libbfd.la -rpath 
/usr/local/lib -release 2.9.5  archive.lo archures.lo bfd.lo cache.lo 
coffgen.lo corefile.lo format.lo init.lo libbfd.lo opncls.lo reloc.lo 
section.lo syms.lo targets.lo hash.lo linker.lo srec.lo binary.lo tekhex.lo 
ihex.lo stabs.lo stab-syms.lo `cat ofiles`  
mkdir .libs
ar cru .libs/libbfd.a  archive.o archures.o bfd.o cache.o coffgen.o corefile.o 
format.o init.o libbfd.o opncls.o reloc.o section.o syms.o targets.o hash.o 
linker.o srec.o binary.o tekhex.o ihex.o stabs.o stab-syms.o elf32-i386.o 
elf32.o elf.o elflink.o dwarf2.o dwarf1.o i386linux.o aout32.o elf32-gen.o 
cpu-i386.o trad-core.o 
ranlib .libs/libbfd.a
creating libbfd.la
(cd .libs && rm -f libbfd.la && ln -s ../libbfd.la libbfd.la)
libtooldir=`/bin/sh ./libtool --config | sed -n -e 's/^objdir=//p'`; \
if [ -f $libtooldir/libbfd.a ]; then \
  cp $libtooldir/libbfd.a libbfd.tmp; \
  /bin/sh ./../move-if-change libbfd.tmp libbfd.a; \
else true; fi
touch stamp-lib
make[3]: Leaving directory `/tmp/gdb-5.0/bfd'
make[2]: Leaving directory `/tmp/gdb-5.0/bfd'
make[1]: Leaving directory `/tmp/gdb-5.0/bfd'
make[1]: Entering directory `/tmp/gdb-5.0/opcodes'
make  all-recursive
make[2]: Entering directory `/tmp/gdb-5.0/opcodes'
Making all in po
make[3]: Entering directory `/tmp/gdb-5.0/opcodes/po'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory `/tmp/gdb-5.0/opcodes/po'
make[3]: Entering directory `/tmp/gdb-5.0/opcodes'
/bin/sh ./libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I. -D_GNU_SOURCE 
-I. -I. -I../bfd -I./../include -I./../bfd  -I./../intl -I../intl   -W -Wall -g 
-O2 -c dis-buf.c
gcc -DHAVE_CONFIG_H -I. -I. -I. -D_GNU_SOURCE -I. -I. -I../bfd -I./../include 
-I./../bfd -I./../intl -I../intl -W -Wall -g -O2 -c dis-buf.c -o dis-buf.o
echo timestamp > dis-buf.lo
/bin/sh ./libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I. -D_GNU_SOURCE 
-I. -I. -I../bfd -I./../include -I./../bfd  -I./../intl -I../intl   -W -Wall -g 
-O2 -c  -DARCH_i386 ./disassemble.c
gcc -DHAVE_CONFIG_H -I. -I. -I. -D_GNU_SOURCE -I. -I. -I../bfd -I./../include 
-I./../bfd -I./../intl -I../intl -W -Wall -g -O2 -c -DARCH_i386 ./disassemble.c 
-o disassemble.o
echo timestamp > disassemble.lo
/bin/sh ./libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I. -D_GNU_SOURCE 
-I. -I. -I../bfd -I./../include -I./../bfd  -I./../intl -I../intl   -W -Wall -g 
-O2 -c i386-dis.c
gcc -DHAVE_CONFIG_H -I. -I. -I. -D_GNU_SOURCE -I. -I. -I../bfd -I./../include 
-I./../bfd -I./../intl -I../intl -W -Wall -g -O2 -c i386-dis.c -o i386-dis.o
echo timestamp > i386-dis.lo
/bin/sh ./libtool --mode=link gcc -W -Wall -g -O2  -o libopcodes.la -rpath 
/usr/local/lib -release 2.9.5  dis-buf.lo disassemble.lo i386-dis.lo  
mkdir .libs
ar cru .libs/libopcodes.a  dis-buf.o disassemble.o i386-dis.o 
ranlib .libs/libopcodes.a
creating libopcodes.la
(cd .libs && rm -f libopcodes.la && ln -s ../libopcodes.la libopcodes.la)
libtooldir=`/bin/sh ./libtool --config | sed -n -e 's/^objdir=//p'`; \
if [ -f $libtooldir/libopcodes.a ]; then \
  cp $libtooldir/libopcodes.a libopcodes.tmp; \
  /bin/sh ./../move-if-change libopcodes.tmp libopcodes.a; \
else true; fi
touch stamp-lib
make[3]: Leaving directory `/tmp/gdb-5.0/opcodes'
make[2]: Leaving directory `/tmp/gdb-5.0/opcodes'
make[1]: Leaving directory `/tmp/gdb-5.0/opcodes'
make[1]: Entering directory `/tmp/gdb-5.0/etc'
make[1]: Nothing to be done for `all'.
make[1]: Leaving directory `/tmp/gdb-5.0/etc'
make[1]: Entering directory `/tmp/gdb-5.0/mmalloc'
gcc -c -g -O2 -DHAVE_UNISTD_H=1 -DHAVE_GETPAGESIZE=1 -DHAVE_MMAP=1 
-DHAVE_LIMITS_H=1 -DHAVE_STDDEF_H=1 -DHAVE_UNISTD_H=1  -I. -I./../include ./mm.c
rm -rf libmmalloc.a
ar rc libmmalloc.a mm.o
ranlib libmmalloc.a
make[1]: Leaving directory `/tmp/gdb-5.0/mmalloc'
make[1]: Entering directory `/tmp/gdb-5.0/readline'
rm -f readline.o
gcc -c -DHAVE_CONFIG_H   -I. -I. -I/usr/local/include 
-DRL_LIBRARY_VERSION='"4.0"' -g -O2 readline.c
rm -f vi_mode.o
gcc -c -DHAVE_CONFIG_H   -I. -I. -I/usr/local/include 
-DRL_LIBRARY_VERSION='"4.0"' -g -O2 vi_mode.c
rm -f funmap.o
gcc -c -DHAVE_CONFIG_H   -I. -I. -I/usr/local/include 
-DRL_LIBRARY_VERSION='"4.0"' -g -O2 funmap.c
rm -f keymaps.o
gcc -c -DHAVE_CONFIG_H   -I. -I. -I/usr/local/include 
-DRL_LIBRARY_VERSION='"4.0"' -g -O2 keymaps.c
rm -f parens.o
gcc -c -DHAVE_CONFIG_H   -I. -I. -I/usr/local/include 
-DRL_LIBRARY_VERSION='"4.0"' -g -O2 parens.c
rm -f search.o
gcc -c -DHAVE_CONFIG_H   -I. -I. -I/usr/local/include 
-DRL_LIBRARY_VERSION='"4.0"' -g -O2 search.c
rm -f rltty.o
gcc -c -DHAVE_CONFIG_H   -I. -I. -I/usr/local/include 
-DRL_LIBRARY_VERSION='"4.0"' -g -O2 rltty.c
rm -f complete.o
gcc -c -DHAVE_CONFIG_H   -I. -I. -I/usr/local/include 
-DRL_LIBRARY_VERSION='"4.0"' -g -O2 complete.c
rm -f bind.o
gcc -c -DHAVE_CONFIG_H   -I. -I. -I/usr/local/include 
-DRL_LIBRARY_VERSION='"4.0"' -g -O2 bind.c
rm -f isearch.o
gcc -c -DHAVE_CONFIG_H   -I. -I. -I/usr/local/include 
-DRL_LIBRARY_VERSION='"4.0"' -g -O2 isearch.c
rm -f display.o
gcc -c -DHAVE_CONFIG_H   -I. -I. -I/usr/local/include 
-DRL_LIBRARY_VERSION='"4.0"' -g -O2 display.c
rm -f signals.o
gcc -c -DHAVE_CONFIG_H   -I. -I. -I/usr/local/include 
-DRL_LIBRARY_VERSION='"4.0"' -g -O2 signals.c
rm -f util.o
gcc -c -DHAVE_CONFIG_H   -I. -I. -I/usr/local/include 
-DRL_LIBRARY_VERSION='"4.0"' -g -O2 util.c
rm -f kill.o
gcc -c -DHAVE_CONFIG_H   -I. -I. -I/usr/local/include 
-DRL_LIBRARY_VERSION='"4.0"' -g -O2 kill.c
rm -f undo.o
gcc -c -DHAVE_CONFIG_H   -I. -I. -I/usr/local/include 
-DRL_LIBRARY_VERSION='"4.0"' -g -O2 undo.c
rm -f macro.o
gcc -c -DHAVE_CONFIG_H   -I. -I. -I/usr/local/include 
-DRL_LIBRARY_VERSION='"4.0"' -g -O2 macro.c
rm -f input.o
gcc -c -DHAVE_CONFIG_H   -I. -I. -I/usr/local/include 
-DRL_LIBRARY_VERSION='"4.0"' -g -O2 input.c
rm -f callback.o
gcc -c -DHAVE_CONFIG_H   -I. -I. -I/usr/local/include 
-DRL_LIBRARY_VERSION='"4.0"' -g -O2 callback.c
rm -f terminal.o
gcc -c -DHAVE_CONFIG_H   -I. -I. -I/usr/local/include 
-DRL_LIBRARY_VERSION='"4.0"' -g -O2 terminal.c
rm -f nls.o
gcc -c -DHAVE_CONFIG_H   -I. -I. -I/usr/local/include 
-DRL_LIBRARY_VERSION='"4.0"' -g -O2 nls.c
rm -f xmalloc.o
gcc -c -DHAVE_CONFIG_H   -I. -I. -I/usr/local/include 
-DRL_LIBRARY_VERSION='"4.0"' -g -O2 xmalloc.c
rm -f history.o
gcc -c -DHAVE_CONFIG_H   -I. -I. -I/usr/local/include 
-DRL_LIBRARY_VERSION='"4.0"' -g -O2 history.c
rm -f histexpand.o
gcc -c -DHAVE_CONFIG_H   -I. -I. -I/usr/local/include 
-DRL_LIBRARY_VERSION='"4.0"' -g -O2 histexpand.c
rm -f histfile.o
gcc -c -DHAVE_CONFIG_H   -I. -I. -I/usr/local/include 
-DRL_LIBRARY_VERSION='"4.0"' -g -O2 histfile.c
rm -f histsearch.o
gcc -c -DHAVE_CONFIG_H   -I. -I. -I/usr/local/include 
-DRL_LIBRARY_VERSION='"4.0"' -g -O2 histsearch.c
rm -f shell.o
gcc -c -DHAVE_CONFIG_H   -I. -I. -I/usr/local/include 
-DRL_LIBRARY_VERSION='"4.0"' -g -O2 shell.c
rm -f tilde.o
gcc -c -DHAVE_CONFIG_H   -I. -I. -I/usr/local/include 
-DRL_LIBRARY_VERSION='"4.0"' -g -O2 tilde.c
rm -f libreadline.a
ar cr libreadline.a readline.o vi_mode.o funmap.o keymaps.o parens.o search.o 
rltty.o complete.o bind.o isearch.o display.o signals.o util.o kill.o undo.o 
macro.o input.o callback.o terminal.o nls.o xmalloc.o history.o histexpand.o 
histfile.o histsearch.o shell.o  tilde.o
test -n "ranlib" && ranlib libreadline.a
rm -f libhistory.a
ar cr libhistory.a history.o histexpand.o histfile.o histsearch.o shell.o  
xmalloc.o
test -n "ranlib" && ranlib libhistory.a
make[1]: Leaving directory `/tmp/gdb-5.0/readline'
make[1]: Entering directory `/tmp/gdb-5.0/sim'
make[1]: Leaving directory `/tmp/gdb-5.0/sim'
make[1]: Entering directory `/tmp/gdb-5.0/gdb'
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   main.c
rm -f version.c
echo '#include "version.h"' >> version.c
echo 'const char version[] = "5.0";' >> version.c
echo 'const char host_name[] = "i686-pc-linux-gnu";' >> version.c
echo 'const char target_name[] = "i686-pc-linux-gnu";' >> version.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   version.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   blockframe.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   breakpoint.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   findvar.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   stack.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   thread.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   source.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   values.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   eval.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   valops.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   valarith.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   valprint.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   printcmd.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   symtab.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   symfile.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   symmisc.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   infcmd.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   infrun.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   command.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   expprint.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   environ.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   event-loop.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   event-top.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   inf-loop.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   gdbarch.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   arch-utils.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   gdbtypes.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   ./copying.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   i386-tdep.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   i386-linux-tdep.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   i387-tdep.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   ser-tcp.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   ser-unix.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   ser-pipe.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   infptrace.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   solib.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   inftarg.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   fork-child.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   corelow.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   core-aout.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   i386v-nat.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   i386-linux-nat.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   linux-thread.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   lin-thread.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   remote.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   dcache.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   remote-utils.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   tracepoint.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   ax-general.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   ax-gdb.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   mem-break.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   target.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   parse.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   language.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   c-exp.tab.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   jv-exp.tab.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   f-exp.tab.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   m2-exp.tab.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   buildsym.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   kod.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   kod-cisco.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   gdb-events.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   exec.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   bcache.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   objfiles.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   minsyms.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   maint.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   demangle.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   dbxread.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   coffread.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   elfread.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   dwarfread.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   dwarf2read.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   mipsread.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   stabsread.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   corefile.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   c-lang.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   ch-exp.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   ch-lang.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   f-lang.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   ui-out.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   cli-out.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   varobj.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   wrapper.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   jv-lang.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   jv-valprint.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   jv-typeprint.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   m2-lang.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   scm-exp.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   scm-lang.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   scm-valprint.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   complaints.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   typeprint.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   c-typeprint.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   ch-typeprint.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   f-typeprint.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   m2-typeprint.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   c-valprint.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   cp-valprint.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   ch-valprint.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   f-valprint.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   m2-valprint.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   nlmread.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   serial.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   mdebugread.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   os9kread.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   top.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   utils.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   ui-file.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   ./tui/tui-file.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   annotate.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   inflow.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   gnu-regex.c
Making init.c
gcc -c -g -O2    -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode 
-I./../readline/.. -I../bfd -I./../bfd  -I./../include -I../intl -I./../intl 
-I./tui  -DUSE_INCLUDED_REGEX   init.c
rm -f libgdb.a
ar q libgdb.a version.o blockframe.o breakpoint.o findvar.o stack.o thread.o 
source.o values.o eval.o valops.o valarith.o valprint.o printcmd.o symtab.o 
symfile.o symmisc.o infcmd.o infrun.o command.o expprint.o environ.o 
event-loop.o event-top.o inf-loop.o gdbarch.o arch-utils.o gdbtypes.o copying.o 
i386-tdep.o i386-linux-tdep.o i387-tdep.o ser-tcp.o ser-unix.o ser-pipe.o 
infptrace.o solib.o inftarg.o fork-child.o corelow.o core-aout.o i386v-nat.o 
i386-linux-nat.o linux-thread.o lin-thread.o remote.o dcache.o remote-utils.o 
tracepoint.o ax-general.o ax-gdb.o   mem-break.o target.o parse.o language.o 
c-exp.tab.o jv-exp.tab.o f-exp.tab.o m2-exp.tab.o buildsym.o kod.o kod-cisco.o 
gdb-events.o exec.o bcache.o objfiles.o minsyms.o maint.o demangle.o dbxread.o 
coffread.o elfread.o dwarfread.o dwarf2read.o mipsread.o stabsread.o corefile.o 
c-lang.o ch-exp.o ch-lang.o f-lang.o ui-out.o cli-out.o varobj.o wrapper.o 
jv-lang.o jv-valprint.o jv-typeprint.o m2-lang.o scm-exp.o scm-lang.o !
scm-valprint.o complaints.o typeprint.o c-typeprint.o ch-typeprint.o 
f-typeprint.o m2-typeprint.o c-valprint.o cp-valprint.o ch-valprint.o 
f-valprint.o m2-valprint.o nlmread.o serial.o mdebugread.o os9kread.o top.o 
utils.o ui-file.o tui-file.o annotate.o inflow.o gnu-regex.o    init.o
ranlib libgdb.a
rm -f gdb
gcc -g -O2        -o gdb main.o libgdb.a    ../bfd/libbfd.a 
../readline/libreadline.a ../opcodes/libopcodes.a  ../libiberty/libiberty.a 
-lncurses     -lm  ../libiberty/libiberty.a  -ldl -rdynamic
make[2]: Entering directory `/tmp/gdb-5.0/gdb'
make[3]: Entering directory `/tmp/gdb-5.0/gdb/doc'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory `/tmp/gdb-5.0/gdb/doc'
make[2]: Leaving directory `/tmp/gdb-5.0/gdb'
make[1]: Leaving directory `/tmp/gdb-5.0/gdb'
/tmp/gdb-5.0[4] ctangle simple simple simple
This is CTANGLE (Version 3.62)
*1*4
Writing the output file (simple.c):
Done.
(No errors were found.)
/tmp/gdb-5.0[5] make simple
gcc -g -O2    simple.c   -o simple
/tmp/gdb-5.0[6] ./gdb/gdb
GNU gdb 5.0
Copyright 2000 Free Software Foundation, Inc.
GDB is free software, covered by the GNU General Public License, and you are
welcome to change it and/or distribute copies of it under certain conditions.
Type "show copying" to see the conditions.
There is absolutely no warranty for GDB.  Type "show warranty" for details.
This GDB was configured as "i686-pc-linux-gnu".
(gdb) file simple
Reading symbols from simple...done.
(gdb) break main
Breakpoint 1 at 0x80483cb: file simple.w, line 10.
(gdb) run
Starting program: /tmp/gdb-5.0/simple 

Breakpoint 1, main () at simple.w:10
10        printf("The first line.\n");
(gdb) n
The first line.
4         printf("A good line.\n");
(gdb) n
A good line.
16      printf("The last line.\n");
(gdb) n
The last line.
No, this one is actually last.
13      }
(gdb) 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]