* Rui Ramos wrote on Thu, Dec 15, 2005 at 10:05:11AM CET:
>
> has asked i've attached the config.log
>
> The gcc version i was trying was gcc (GCC) 3.4.3 on kernel 2.4.21-27.0.4.ELsmp
>
> With version 3.2.3 it work. that's why i've asked about the compilers
> compatibility, can't seem to find it in the site
That's your actual error:
| configure:8828: g++ -o conftest -O3 -DLAM_BUILDING=1 conftest.cc >&5
| configure:8831: $? = 0
| configure:8833: ./conftest
| ./conftest: error while loading shared libraries: libstdc++.so.6: cannot open shared object file: No such file or directory
| configure:8836: $? = 127
You need to instruct the runtime linker where to find libstdc++.so.6.
For example by setting LD_LIBRARY_PATH suitably. Or adding a rpath
argument with that directory to LDFLAGS.
Cheers,
Ralf
|