2014-01-15 44 views
0

我的工作我的硬币的那一刻,在此发布的指南如下: http://devtome.com/doku.php?id=scrypt_altcoin_cloning_guide当编译基于sCrypt-cryptocurrency QT客户端,常见的错误抛出

我用的同一个库,正确安装他们 - - 一切!但是,在编译期间出现以下错误。使用

命令是:

QMAKE “USE_UPNP = - ” syncoin-qt.pro

使-f Makefile.Release

c:\deps\boost/boost/system/error_code.hpp: At global scope: 
c:\deps\boost/boost/system/error_code.hpp:222:36: warning: 'boost::system::posix 
_category' defined but not used [-Wunused-variable] 
c:\deps\boost/boost/system/error_code.hpp:223:36: warning: 'boost::system::errno 
_ecat' defined but not used [-Wunused-variable] 
c:\deps\boost/boost/system/error_code.hpp:224:36: warning: 'boost::system::nativ 
e_ecat' defined but not used [-Wunused-variable] 
mingw32-make: *** [build/bitcoin.o] Error 1 

阅读比特币论坛后,我发现一个帖子由shakezula提到,这经常是缺少“__NO_SYSTEM_INCLUDES”的结果。然而,包括在我的.pro文件,你可以在这里找到:

http://pastebin.com/4p4BMPAE

感谢您的帮助。

回答

0

我是正确的,当你发布这个atm时你在哪里。有点卡在这里...你使用Qt 5.2吗?我想我们可能需要用4.8.5来完成任何事情。

0

我设法通过下载CoinLab构建环境来解决这个问题;对于那些感兴趣的,QT版本是4.8.4,MinGW是与GCC 4.6.2捆绑在一起的版本。

相关问题