On Thu, 3 Apr 2003, Chris Wilkinson wrote: > I'm having trouble finding "libstdc++.so.5" (from glibcpp_3.2.2)
Do you have any files that start with "libstdc++.so"? If you do, you can use a quick hack that usually works: Create a symbolic link in the directory you found the "libstdc++.so" from "libstdc++.so.5" to the filename you found. For example, if you found: /usr/lib/libstdc++.so.5.0.3 (like is on my machine) then do this: ln -s /usr/lib/libstdc++.so.5.0.3 /usr/lib/libstdc++.so.5 This creates a symbolic link. If your program won't run, then delete the file you created with the ln command. (well, I said it was a hack. Even I don't like doing it, but it often works) Tim
