On Jun 22, 2010, at 8:41 AM, Nabil Servais wrote: > Hello everyone, > > I use graphserver on a fedora 13 64 bits and when I try to import data I've > got this strange error about Rtree: > > OSError: /usr/local/lib/libspatialindex_c.so: undefined symbol: > _ZTVN10__cxxabiv121__vmi_class_type_infoE
A quick googling of this symbol will show that is almost always related to linking issues. Your libspatialindex_c was possibly linked via gcc instead of g++ or ld. By virtue of it being in /usr/local/lib, I presume you compiled libspatialindex yourself. You most likely need to force your it to use g++ for linking by altering your environment variables before issuing configure and building a clean version of libspatialindex. Howard _______________________________________________ Community mailing list [email protected] http://lists.gispython.org/mailman/listinfo/community
