home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #31 / NN_1992_31.iso / spool / comp / os / linux / 22587 < prev    next >
Encoding:
Internet Message Format  |  1993-01-03  |  1.6 KB

  1. Path: sparky!uunet!spool.mu.edu!uwm.edu!ogicse!news.u.washington.edu!serval!hlu
  2. From: hlu@eecs.wsu.edu (H.J. Lu)
  3. Newsgroups: comp.os.linux
  4. Subject: Re: Gcc 2.3.3 help
  5. Keywords: Eek
  6. Message-ID: <1993Jan3.231223.3450@serval.net.wsu.edu>
  7. Date: 3 Jan 93 23:12:23 GMT
  8. Article-I.D.: serval.1993Jan3.231223.3450
  9. References: <daum.726098715@ee.ualberta.ca>
  10. Sender: news@serval.net.wsu.edu (USENET News System)
  11. Organization: School of EECS, Washington State University
  12. Lines: 43
  13.  
  14. In article <daum.726098715@ee.ualberta.ca>, daum@ee.ualberta.ca (Tanya Louise Daum) writes:
  15. |> Okay, I downloaded all the gcc 2.3.3 upgrade stuff out of tsx-11
  16. |> /pub/linux/GCC and untarred and put it all in the right directories.
  17. |> 
  18. |> But when I go to type "gcc" it says "gcc: can't load library
  19. |> '/lib/libc.so.4' Incompatible version
  20. |> 
  21. |> My libc.so.4 is linked to libc.so.4.2 ( -rwxr-xr-x   1 427      242
  22.                                ^^^
  23.                              Only one link
  24.  
  25. |> 607236 Dec 30 04:22 libc.so.4.2) and ( -r-xr-xr-x   2 root     system
  26.                                   ^^^
  27.                             It has two links,
  28.                             But not 4.2.
  29.  
  30. |> 607236 Dec 30 20:00 libc.so.4)
  31. |> 
  32. |> can anybody help me?
  33. |> 
  34. |> 
  35. |> -- 
  36. |> "And men are men who till the land, and women are women who weave, fifty men
  37. |>  own the lemon grove, and no man is a slave." -- Herbert Read
  38. |> 
  39. |> Comrade @ LambdaMOO (telnet lambda.parc.xerox.com 8888) daum@bode.ualberta.ca
  40.  
  41.  
  42. Boot from bootable root disk and then mount your root partition. After
  43. that, do
  44.  
  45. cd /mnt/lib
  46. rm libc.so.4
  47. ln -sf libc.so.4.2 libc.so.4
  48.  
  49. Or try
  50.  
  51. cd /lib
  52. ln -sf libc.so.4.2 libc.so.4
  53.  
  54. I prefer symbolic link for shared images.
  55.  
  56. H.J.
  57.