I see the symbol (using nm) as an undefined symbol in a .a file. I Have no idea what it's for or where it would be defined, but PHP seems to require it.
What is the purpose of the symbol __gxx_personality_v0 that some C++ compilers or linkers seem to emit?
That is something that gcc creates when it compiles C++, I believe. You can fix it by renaming your file as a .cpp file, which will tell gcc to compile in the standard C++ library, or add "-lstdc++" to the command line which should tell it not to use it. (You have to link c++ programs using g++ not gcc)
kudzu
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment