Windows下編譯bitcoin方法
阿新 • • 發佈:2018-12-21
linux下編譯不難,下面說說Windows下用vs2017 社群版(vs2015不行)如何編譯bitcoin
第一步 安裝依賴庫
下載bitcoin程式碼並進入目錄:bitcoin\build_msvc
開啟檔案README.md,裡面有詳細的說明:
也就是說首先要用vcpkg安裝bitcoin依賴庫,在powershell下執行命令完成安裝:
PS >.\vcpkg install boost:x64-windows-static
libevent:x64-windows-static
openssl:x64-windows-static
zeromq:x64-windows-static
berkeleydb:x64-windows-static
secp256k1:x64-windows-static
leveldb:x64-windows-static
vcpkg由微軟提供的工具,用於Windows下管理開源庫,可在github下載。
第二步 生成工程檔案
PS >python msvc-autogen.py
第三步 編譯前設定調整
此時得到的vc工程並不能找到依賴庫的位置,所以需要修改設定
vs2015開啟工程E:\workspace\bitcoin\build_msvc\bitcoin.sln
選擇解決方案下面的15個專案,右鍵選單選擇屬性,彈出屬性頁窗體:
新增第一步安裝的依賴庫include路徑和庫路徑:
E:\workspace\vcpkg\installed\x64-windows-static\include
E:\workspace\vcpkg\installed\x64-windows-static\lib
第四步 編譯
編譯配置選x64,然後編譯即可成功