On Fri, 18 Mar 2011 03:51:53 -0400, "Raghuram.O.S." <[email protected]> wrote: > Okay. Its not a pycuda issue anymore. I loaded a few modules. Now I'm > getting this. > > > import pycuda.autoinit > > > ImportError: /usr/lib64/libstdc++.so.6: version `GLIBCXX_3.4.9' not found > (required by > /nfs/01/osu5574/local/python/lib/python2.7/site-packages/pycuda-0.94rc-py2.7-linux-x86_64.egg/pycuda/_driver.so)
This problem seems to be that you used a newer C++ compiler, but the dynamic linker (ld.so) is still finding the old compiler's libstdc++.so.6. Use LD_LIBRARY_PATH to point ld.so to the right libstdc++. HTH, Andreas
pgp2yIXEn9SJa.pgp
Description: PGP signature
_______________________________________________ PyCUDA mailing list [email protected] http://lists.tiker.net/listinfo/pycuda
