Missing symbols using Intel's compiler

2005-01-23 Thread Simon Perreault
Hi, I am using libtool+automake+autoconf to build my library. Everything builds fine without warnings or errors and I end up with a nice shared library. However, that library is missing stdc++ symbols: [EMAIL PROTECTED] .libs]$ ldd -r libwrap.so libblas.so.3 = /usr/lib/libblas.so.3

Re: Missing symbols using Intel's compiler

2005-01-23 Thread Bob Friesenhahn
On Sun, 23 Jan 2005, Simon Perreault wrote: I am using libtool+automake+autoconf to build my library. Everything builds fine without warnings or errors and I end up with a nice shared library. However, that library is missing stdc++ symbols: In order to automatically obtain stdc++ symbols, the

Re: Missing symbols using Intel's compiler

2005-01-23 Thread Simon Perreault
On January 23, 2005 11:16, Bob Friesenhahn wrote: In order to automatically obtain stdc++ symbols, the library must be linked using a C++ compiler. Thank you very much! That was the problem! I had to use CXX=icpc, not CXX=icc. -- Simon Perreault [EMAIL PROTECTED] -- http://nomis80.org

Re: Missing symbols using Intel's compiler

2005-01-23 Thread Ralf Wildenhues
* Bob Friesenhahn wrote on Sun, Jan 23, 2005 at 05:16:03PM CET: On Sun, 23 Jan 2005, Simon Perreault wrote: I am using libtool+automake+autoconf to build my library. Everything builds fine without warnings or errors and I end up with a nice shared library. However, that library is missing