home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #19 / NN_1992_19.iso / spool / gnu / gdb / bug / 1012 < prev    next >
Encoding:
Text File  |  1992-09-01  |  4.0 KB  |  100 lines

  1. Newsgroups: gnu.gdb.bug
  2. Path: sparky!uunet!usc!zaphod.mps.ohio-state.edu!cis.ohio-state.edu!ee.utah.edu!adams
  3. From: adams@ee.utah.edu (Mike Adams)
  4. Subject: (none)
  5. Message-ID: <9209020027.AA28308@ee.utah.edu>
  6. Sender: gnulists@ai.mit.edu
  7. Organization: GNUs Not Usenet
  8. Distribution: gnu
  9. Date: Tue, 1 Sep 1992 12:27:42 GMT
  10. Approved: bug-gdb@prep.ai.mit.edu
  11. Lines: 87
  12.  
  13. Script started on Tue Sep  1 17:38:05 1992
  14.  
  15. To whom it may concern: In trying to install the gdb tools on an HP9000 375
  16. using hpux 8.0 I ran into the following makefile bug.  Please send me a reply
  17. if you can be at all helpful.  
  18.  
  19.  
  20.  
  21.  
  22.  
  23. adams@btsswsf: cd gdb-4.6
  24. adams@btsswsf: ls
  25. Makefile.in      config.sub*      glob/            readline/
  26. README           configure*       include/         texinfo/
  27. bfd/             configure.in     libiberty/
  28. cfg-paper.texi   configure.man    mmalloc/
  29. config/          gdb/             move-if-change*
  30. adams@btsswsf: configure hp9k375
  31. Created "Makefile" in /users/adams/gnu/gdb_tools/gdb-4.6
  32. adams@btsswsf: make
  33.         echo "# !Automatically generated from ./functions.def"\
  34.           "- DO NOT EDIT!" >needed2.awk
  35.         grep '^DEFVAR(' < ./functions.def \
  36.          | sed -e '/DEFVAR/s|DEFVAR.\([^,]*\).*|/\1/ { printf \"#ifndef NEED_\1\\n#define NEED_\1\\n#endif\\n" }|' \
  37.          >>needed2.awk
  38.         grep '^DEFFUNC(' < ./functions.def \
  39.          | sed -e '/DEFFUNC/s|DEFFUNC.\([^,]*\).*|/\1/ { printf \"#ifndef NEED_\1\\n#define NEED_\1\\n#endif\\n" }|' \
  40.          >>needed2.awk
  41.         cc -c -g -I. -I./../include  ./dummy.c
  42.         (cc  dummy.o  ) >errors 2>&1 || true
  43.         rm -f a.out dummy.o
  44.         echo "/* !Automatically generated from ./functions.def"\
  45.           "- DO NOT EDIT! */" >config.h
  46.         awk -f needed2.awk <errors >>config.h
  47.         cc -c -g -I. -I./../include  basename.c
  48.         cc -c -g -I. -I./../include  getopt.c
  49.         cc -c -g -I. -I./../include  getopt1.c
  50.         cc -c -g -I. -I./../include  obstack.c
  51.         cc -c -g -I. -I./../include  spaces.c
  52.         cc -c -g -I. -I./../include  concat.c
  53.         cc -c -g -I. -I./../include  fdmatch.c
  54.         cc -c -g -I. -I./../include  argv.c
  55.         cc -c -g -I. -I./../include  strerror.c
  56.         cc -c -g -I. -I./../include  strsignal.c
  57.         echo "# !Automatically generated from ./functions.def"\
  58.           "- DO NOT EDIT!" >needed.awk
  59.         grep '^DEF(' < ./functions.def \
  60.             | sed -e '/DEF/s|DEF.\([^,]*\).*|/\1/ { printf \"\1\.o " }|' \
  61.             >>needed.awk
  62.         awk -f needed.awk <errors >needed-list
  63.         echo  >>needed-list
  64.         cc -c -g -I. -I./../include  getpagesize.c
  65.         cc -c -g -I. -I./../include  insque.c
  66.         cc -c -g -I. -I./../include  random.c
  67.         cc -c -g -I. -I./../include  alloca.c
  68.         rm -rf libiberty.a
  69.         ar qc libiberty.a \
  70.           basename.o getopt.o getopt1.o obstack.o spaces.o concat.o  fdmatch.o argv.o strerror.o strsignal.o getpagesize.o insque.o random.o alloca.o 
  71.         ranlib libiberty.a
  72. ranlib: ar already did it for you, see ar(1).
  73.         cc -c -g -I. -I./../include  mcalloc.c
  74.         cc -c -g -I. -I./../include  mfree.c
  75.         cc -c -g -I. -I./../include  mmalloc.c
  76.         cc -c -g -I. -I./../include  mmcheck.c
  77.         cc -c -g -I. -I./../include  mmemalign.c
  78.         cc -c -g -I. -I./../include  mmstats.c
  79.         cc -c -g -I. -I./../include  mmtrace.c
  80.         cc -c -g -I. -I./../include  mrealloc.c
  81.         cc -c -g -I. -I./../include  mvalloc.c
  82.         cc -c -g -I. -I./../include  mmap-sup.c
  83.         cc -c -g -I. -I./../include  attach.c
  84.         cc -c -g -I. -I./../include  detach.c
  85.         cc -c -g -I. -I./../include  keys.c
  86.         cc -c -g -I. -I./../include  sbrk-sup.c
  87.         rm -rf libmmalloc.a
  88.         ar qc libmmalloc.a mcalloc.o mfree.o mmalloc.o mmcheck.o mmemalign.o mmstats.o  mmtrace.o mrealloc.o mvalloc.o mmap-sup.o attach.o detach.o  keys.o sbrk-sup.o
  89.         ranlib libmmalloc.a
  90. ranlib: ar already did it for you, see ar(1).
  91. Make:  Don't know how to make all.  Stop.
  92. *** Error code 1
  93.  
  94. Stop.
  95. adams@btsswsf: exit
  96. adams@btsswsf: 
  97. script done on Tue Sep  1 17:41:04 1992
  98.  
  99.  
  100.