home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #16 / NN_1992_16.iso / spool / comp / os / linux / 6705 < prev    next >
Encoding:
Text File  |  1992-07-25  |  1.0 KB  |  36 lines

  1. Newsgroups: comp.os.linux
  2. Path: sparky!uunet!wupost!gumby!destroyer!ubc-cs!uw-beaver!news.u.washington.edu!serval!phys1.physics.wsu.edu!hlu
  3. From: hlu@phys1.physics.wsu.edu (Hongjiu Lu)
  4. Subject: Re: Compiling GDB 4.6 died: missing machine/reg.h ??
  5. Message-ID: <1992Jul25.212756.11188@serval.net.wsu.edu>
  6. Sender: news@serval.net.wsu.edu (USENET News System)
  7. Organization: Washington State University
  8. References:  <1992Jul25.173749.13704@cmcl2.nyu.edu>
  9. Date: Sat, 25 Jul 92 21:27:56 GMT
  10. Lines: 24
  11.  
  12. In article <1992Jul25.173749.13704@cmcl2.nyu.edu>, wuwei@acf3.nyu.edu (Wei Wu) writes:
  13. |> I tried to compile gdb 4.6. It is supposed to support linux.
  14. |> I configured for linux. The make died in making bfd lib.
  15. |> Missing header file <machine/reg.h>. Am I missing something 
  16. |> on my system ?
  17. |> 
  18. |> 
  19. |> Wei Wu (wuwei@acf3.nyu.edu)
  20.  
  21. Make a dummy for <machine/reg.h> and <sys/reg.h>, like
  22.  
  23. cd /usr/include
  24. touch machine/reg.h
  25. touch sys/reg.h
  26.  
  27. In gcc 2.2.2d, I used
  28.  
  29. #ifndef xxxxxxx
  30. #define xxxxxxx
  31. #endif
  32.  
  33. -- 
  34. H.J.
  35. Gcc/libc maintainer for Linux.
  36.