Hi, I noticed that some code is built with gcc-3.2.2 that requires the presence of libgcc_s.so.1 somewhere in the library load path. You can avoid this annoying and stupid problem by adding this to your Makefile.global for GCCOPTS variable: -static-libgcc
Even though libgcc.a is not in /usr/local/lib, it is under /usr/local/lib/gcc-lib/ and gcc will find it with -static-libgcc. If you are using C++ or Java and want exception handling to work in your shared libraries then you must not use this option. Regards, Kris -- AOLserver - http://www.aolserver.com/ To Remove yourself from this list: http://www.aolserver.com/listserv.html List information and options: http://listserv.aol.com/
