我编译使用命令行C ++程序
g++ -c prog.cc -std=c++11 -march=native -fPIC -fopenmp
然后尝试通过做一个共享对象
g++ prog.o -shared -fopenmp -o lib/libprog.so
这一直工作。 但是,今天我得到:
/usr/bin/ld: prog.o: relocation R_X86_64_PC32 against undefined symbol
`_ZTVN12_GLOBAL__N_111handle_baseE' can not be used when making a shared
object; recompile with -fPIC
/usr/bin/ld: final link failed: Bad value
collect2: error: ld returned 1 exit status
符号_ZTVN12_GLOBAL__N_111handle_baseE
去轧液,以vtable for (anonymous namespace)::handle_base
( handle_base
是在prog.cc匿名命名空间中定义一个多态类是的,我做电dynamic_cast<handle_base>()
我使用的gcc版本4.7.0(GCC)和GNU LD(GNU Binutils的,openSUSE的11.1)2.19。 任何人可以帮助(提出解决方案[比没有共享对象或做其他dynamic cast
])?