我正在使用从 sf 下载的 i686-w64-mingw32 来编译 POCO 库。编译库并创建 libPoco*.a 文件(带有一些警告)。现在,当我想使用这些文件时(例如,在将字符串转换为整数的小型示例项目中),链接器会抛出错误:./Debug/main.o: main.cpp:(. text+0xab): undefined reference to ` imp __ZN4Poco12NumberParser5parseERKSs'
奇怪的是,如果我使用 TDM-MinGW-4.7.1 为双方(lib 和测试应用程序)进行编译,一切都很好!
我尝试在两个编译中设置“-march=i386;-m32”,但没有运气。这是我尝试构建测试应用程序时的链接器日志:
g++ -o ./Debug/testpoco @"testpoco.txt" -L. -Lc:/poco/lib/ -lPocoFoundationmtd -v
Using built-in specs.
COLLECT_GCC=g++
...
Target: i686-w64-mingw32
...
Thread model: win32
gcc version 4.8.1 (rev5, Built by MinGW-W64 project)
...
COLLECT_GCC_OPTIONS='-o' './Debug/testpoco.exe' '-L.' '-Lc:/poco/lib/' '-v' '-shared-libgcc' '-mtune=generic' '-march=i686'
...
./Debug/main.o:main.cpp:(.text+0xab): undefined reference to `_imp___ZN4Poco12NumberParser5parseERKSs'
collect2.exe: error: ld returned 1 exit status
mingw32-make.exe[1]: *** [Debug/testpoco] Error 1
testpoco.mk:77: recipe for target 'Debug/testpoco' failed