Compile Poco with MinGW on Windows

后端 未结 5 571
后悔当初
后悔当初 2020-12-06 14:19

I need to compile poco with MinGW so I can use it in Qt Creator but cannot figure out how to, I\'ve managed to compile poco in Visual Studio but I cannot use those libraries

5条回答
  •  暖寄归人
    2020-12-06 14:43

    There maybe a error as follow:

    strip: '/Learn/POCO/poco-1.4.6p2/lib/MinGW/ia32/libPocoFoundation.dll.exe': No such file

    we can resolve the problem by change line in file "build\rules\global"

    STRIPCMD = $(STRIP) $@$(BINEXT) 
    

    to

    STRIPCMD = $(STRIP) $@$
    

提交回复
热议问题