我正在运行AIX 6.1和GCC 4.2,并在尝试使用以下命令编译SQLite(我认为版本3.7.5)时:
gcc -maix64 -D_FILE_OFFSET_BITS=64 -c -fPIC -DHAVE_USLEEP ./sqlite/sqlite3.c -o ./sqlite/sqlite3.o
gcc -maix64 -shared –L/usr/lib/threads -o ./sqlite/libsqlite3.so ./sqlite/sqlite3.o –ldl -lpthread
我收到以下错误:ld: 0711-317 ERROR: Undefined symbol: .__gcc_qsub
ld: 0711-317 ERROR: Undefined symbol: .__gcc_qmul
ld: 0711-317 ERROR: Undefined symbol: .__gcc_qadd
ld: 0711-345 Use the -bloadmap or -bnoquiet option to obtain more information.
您知道这可能是由什么引起的吗?任何帮助将不胜感激;-)
更新1:
这是详细的输出:
/usr/bin/gcc -maix64 -v -shared-libgcc -L/usr/lib/threads -o ./sqlite/libsqlite3.so ./sqlite/sqlite3.o -lpthread
Using built-in specs.
Target: powerpc-ibm-aix6.1.0.0
Configured with: ../configure --with-as=/usr/bin/as --with-ld=/usr/bin/ld --enable-languages=c,c++,java --prefix=/opt/freeware --enable-threads --enable-version-specific-runtime-libs --host=powerpc-ibm-aix6.1.0.0 --target=powerpc-ibm-aix6.1.0.0 --build=powerpc-ibm-aix6.1.0.0 --disable-libjava-multilib
Thread model: aix
gcc version 4.2.0
/opt/freeware/libexec/gcc/powerpc-ibm-aix6.1.0.0/4.2.0/collect2 -bpT:0x10000000 -bpD:0x20000000 -btextro -bnodelcsect -b64 -o ./sqlite/libsqlite3.so /lib/crt0_64.o -L/usr/lib/threads -L/opt/freeware/lib/gcc/powerpc-ibm-aix6.1.0.0/4.2.0/ppc64 -L/opt/freeware/lib/gcc/powerpc-ibm-aix6.1.0.0/4.2.0 -L/opt/freeware/lib/gcc/powerpc-ibm-aix6.1.0.0/4.2.0/../../.. ./sqlite/sqlite3.o -lpthread -lgcc_s /opt/freeware/lib/gcc/powerpc-ibm-aix6.1.0.0/4.2.0/ppc64/libgcc.a -lc -lgcc_s /opt/freeware/lib/gcc/powerpc-ibm-aix6.1.0.0/4.2.0/ppc64/libgcc.a
collect2: library libgcc_s not found
最佳答案
尝试将-lm
添加到链接命令以包括数学库。
如果不是,请检查此page并搜索“AIX”。
关于c - AIX 6.1上的编译错误- undefined symbol :.__ gcc_qsub,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/7811389/