This is a guide for users who like to build a Windows-based Steem miner. Many thanks to **@arhag** who helped me clear the last Win-build error. Edit: A user requested the rar files be changed to zip files. These files are changed. Winrar is no longer needed. Prerequisite ------------- You will need to have a basic level of understanding of Microsoft Windows and Visual Studio compilation. You will need have 64bit Microsoft Windows7 and above, at least 4GB RAM and 500GB disk space. And a good Internet connection. ---------- Dependencies ------------- First download the following software: | <i class="icon-down-circled"></i>Software | Link | --------------------------------------------- | ------------------ |Visual Studio 2013 Express (Desktop) | https://www.microsoft.com/en-sg/download/details.aspx?id=44914 | |CMake 2.8.12.2 | https://cmake.org/files/v2.8/cmake-2.8.12.2-win32-x86.zip | | Boost 1.58.0 | http://sourceforge.net/projects/boost/files/boost/1.58.0/boost_1_58_0.zip | | OpenSSL | https://www.openssl.org/source/ | | Doxygen | http://www.stack.nl/~dimitri/doxygen/download.html | |ActivePerl 5.16.3 for Windows | http://www.activestate.com/activeperl/downloads | | Python (2.7 or 3.x) | https://www.python.org/ | > <i class="icon-file"></i>**Note:** > - Make sure you have sufficient space for Visual Studio 2013. The download file itself is huge, taking up a few Gig of space. > - Install VS2013 and you will need to use it to compile the rest. #### <i class="icon-right-hand"></i> Build Boost Use this guide: http://www.boost.org/doc/libs/1_58_0/more/getting_started/windows.html ``` >bootstrap.bat >b2 --build-dir=build-directory toolset=msvc-12.0 address-model=64 --build-type=complete stage ``` > <i class="icon-file"></i>**Note:** > The compiled library is in this folder - \boost_1_58_0\stage\lib #### <i class="icon-right-hand"></i>Build OpenSSL Use this guide: http://p-nand-q.com/programming/windows/building_openssl_with_visual_studio_2013.html ``` >Look under the section "Building the 64-bit Release Static Library" >Change to the source directory, for example T:\openssl-src-64 >Run perl Configure VC-WIN64A --prefix=T:\Build-OpenSSL-VC64-Release-Static. This will make T:\Build-OpenSSL-VC64-Release-Static your output directory; it should be fairly obvious how you can change that. >Run ms\do_win64a >Run nmake -f ms\nt.mak >Run nmake -f ms\nt.mak install ``` > **Note:** > If you need to dive deeper, you can refer to this guide - http://developer.covenanteyes.com/building-openssl-for-visual-studio/ > #### <i class="icon-right-hand"></i> Build Doxygen Use this guide: http://www.stack.nl/~dimitri/doxygen/download.html ``` >git clone https://github.com/doxygen/doxygen.git >cd doxygen >cmake.exe -G "Visual Studio 12 Win64" >Open the generated Visual Studio solution file and use it to compile doxygen ``` [<img src="https://i.imgsafe.org/c61b50adfa.jpg">] ``` > Right-click on the "ALL_BUILD" project file and click Build. ``` ---------- Let's Check Out Steem ------------------- I have encountered numerous obstacles with building Steem on Visual Studio 2013, namely it does not follow C++ standards closely. I am sharing with you a working build and possible pit holes to watch out for. There are some changes needed to be make to the original Steem source codes to make it compatible with Windows. I have made the pull requests and they are pending review and approval by the developers. For now, I place the changes in btscube repository in github. ``` >Add CMake.exe to the PATH environment variable >L:\mkdir steem >cd steem >https://github.com/btscube/steem >cd steem >git submodule update --init --recursive >mkdir build >cd build >set BOOST_ROOT=L:\boost_1_58_0 >set OPENSSL_ROOT_DIR=L:\OpenSSL >set DOXYGEN_EXECUTABLE=L:\doxygen\bin\doxygen.exe >cmake.exe -G "Visual Studio 12 Win64" -DBOOST_ROOT="$BOOST_ROOT" -DOPENSSL_ROOT_DIR="$OPENSSL_ROOT" -DDOXYGEN_EXECUTABLE="$DOXYGEN_EXECUTABLE" -DCMAKE_BUILD_TYPE=Release -DLOW_MEMORY_NODE=ON ..\steem ``` You should see an output as follows: ``` -- BUILD_STEEM_TESTNET: OFF -- LOW_MEMORY_NODE: ON -- -- CONFIGURING FOR LOW MEMORY NODE -- -- Using custom FindBoost.cmake -- Boost version: 1.58.0 -- Found the following Boost libraries: -- thread -- date_time -- system -- filesystem -- program_options -- signals -- serialization -- chrono -- unit_test_framework -- context -- locale -- Using custom FindBoost.cmake -- Boost version: 1.58.0 -- Found the following Boost libraries: -- coroutine -- Configuring Steem on WIN32 -- tcl INCLUDE PATH: /include -- Could NOT find Tclsh (missing: TCL_TCLSH) -- Could NOT find TCL (missing: TCL_LIBRARY) -- Could NOT find TCLTK (missing: TCL_LIBRARY TK_LIBRARY TK_INCLUDE_PATH) -- Could NOT find TK (missing: TK_LIBRARY TK_INCLUDE_PATH) -- tcl_library: TCL_LIBRARY-NOTFOUND -- Configuring project fc located in: L:/stm2/steem/libraries/fc -- Configuring fc to build on Win32 -- Using custom FindBoost.cmake -- Boost version: 1.58.0 -- Found the following Boost libraries: -- thread -- date_time -- system -- filesystem -- program_options -- signals -- serialization -- chrono -- unit_test_framework -- context -- locale -- iostreams -- Using custom FindBoost.cmake -- Boost version: 1.58.0 -- Found the following Boost libraries: -- coroutine -- Setting up OpenSSL root and include vars to L:\OpenSSL, L:\OpenSSL/include -- Found OpenSSL: L:/openssl/lib/ssleay32.lib;L:/openssl/lib/libeay32.lib (found version "1.0.1g") ** websocketpp =========== Used Build Configuration ============= -- ENABLE_CPP11 = ON -- BUILD_EXAMPLES = OFF -- BUILD_TESTS = OFF -- WEBSOCKETPP_ROOT = L:/steem/steem/libraries/fc/vendor/websocketpp -- WEBSOCKETPP_BIN = L:/steem/build/libraries/fc/vendor/websocketpp/bin -- WEBSOCKETPP_LIB = L:/steem/build/libraries/fc/vendor/websocketpp/lib -- Install prefix = L:/steem/steem/libraries/fc/vendor/websocketpp/install -- WEBSOCKETPP_BOOST_LIBS = -- WEBSOCKETPP_PLATFORM_LIBS = -- WEBSOCKETPP_PLATFORM_TLS_LIBS = -- OPENSSL_FOUND = TRUE -- OPENSSL_INCLUDE_DIR = L:\OpenSSL/include -- OPENSSL_LIBRARIES = L:/openssl/lib/ssleay32.lib;L:/openssl/lib/libeay32.lib -- OPENSSL_VERSION = 1.0.1g -- Could NOT find Curses (missing: CURSES_LIBRARY CURSES_INCLUDE_PATH) -- Readline path -- Could NOT find Readline (missing: Readline_INCLUDE_DIR Readline_LIBRARY) -- eay=L:/openssl/bin/libeay32.dll -- Finished fc module configuration... -- CONFIGURED FOR STEEM NETWORK -- CONFIGURED FOR LOW MEMORY NODE -- Configuring done -- Generating done -- Build files have been written to: L:/steem/build ``` ><i class="icon-file"></i> **Note:** > - The example above uses drive L:\. You may use other path location. > - This configuration builds steem as a low-memory node, you can opt to turn it off. > - This configuration has "ENABLE_CONTENT_PATCHING" off. You can opt to turn it on by adding this parameter to the cmake command "-ENABLE_CONTENT_PATCHING=ON" > - You can safely ignore the error with ncurses and readline. They are not really needed. ---------- Let's build Steem! ------------- CMake will generate a list of files and folders for the build. [<img src="https://i.imgsafe.org/c4cce2e38d.jpg">] ``` >Open the Steem.sln solution ``` On the right plane, you will see a list of projects. [<img src="https://i.imgsafe.org/c5076145ab.jpg">] ``` >Right-click the secp256k1 project and unload it. >Get the extra file secp256k1-zkp.zip from https://mega.nz/#!2Zo0GKII!sX2kIA-1hiRcjvLei1cCz7gqdCNJC9IjnUwvClrUK0o >Extra the folder from the rar file and replace the your local subfolder eg L:\steem\steem\libraries\fc\vendor\secp256k1-zkp with it. ``` ><i class="icon-file"></i> **Note:** > - The original secp256k1 project included is slow in mining. We will use a highly optimised one from btscube github instead. [<img src="https://i.imgsafe.org/c5f81d536f.jpg">] ``` >Right-click on the steemd project and build it >Once it is successfully built, you will find steem.exe in the folder \build\programs\steemd\Release ``` Now we are ready to build the cli_wallet. [<img src="https://i.imgsafe.org/c685abec51.jpg">] ``` >Right-click on the cli_wallet project and build it >Once it is successfully built, you will find cli_wallet.exe in the folder \build\programs\cli_wallet\Release ``` #### <i class="icon-right-hand"></i> Running the newly built Steem I will touch on running Steem in Part 2 of the guide. You will need the following runtime components. | <i class="icon-down-circled"></i>Steem Runtime Components | Link | --------------------------------------------- | ------------------ |Visual C++ Redistributable Packages for Visual Studio 2013 | https://www.microsoft.com/en-us/download/details.aspx?id=40784 | |runtimeparts.zip|https://mega.nz/#!2Zo0GKII!sX2kIA-1hiRcjvLei1cCz7gqdCNJC9IjnUwvClrUK0o | #### <i class="icon-right-hand"></i> Stay tuned for Part 2!
author | bitcube |
---|---|
permlink | steem-mining-in-microsoft-windows-a-builder-s-guide-part-1 |
category | steem |
json_metadata | {"tags":["steem","steem-mining"],"image":["https://i.imgsafe.org/c61b50adfa.jpg","https://i.imgsafe.org/c4cce2e38d.jpg","https://i.imgsafe.org/c5076145ab.jpg","https://i.imgsafe.org/c5f81d536f.jpg","https://i.imgsafe.org/c685abec51.jpg"],"links":["https://www.microsoft.com/en-sg/download/details.aspx?id=44914","http://www.boost.org/doc/libs/1_58_0/more/getting_started/windows.html","http://p-nand-q.com/programming/windows/building_openssl_with_visual_studio_2013.html","http://www.stack.nl/~dimitri/doxygen/download.html","https://github.com/btscube/steem","https://mega.nz/#!2Zo0GKII!sX2kIA-1hiRcjvLei1cCz7gqdCNJC9IjnUwvClrUK0o","https://www.microsoft.com/en-us/download/details.aspx?id=40784"]} |
created | 2016-07-06 03:00:12 |
last_update | 2016-07-06 08:08:30 |
depth | 0 |
children | 15 |
last_payout | 2016-08-23 10:56:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 35.762 HBD |
curator_payout_value | 3.906 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 9,255 |
author_reputation | 8,016,881,813,007 |
root_title | "Steem Mining in Microsoft Windows : A Builder's Guide (Part 1)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 56,870 |
net_rshares | 57,658,524,315,598 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
skywalker | 0 | 7,137,469,019,110 | 100% | ||
firstclass | 0 | 7,459,162,914,069 | 100% | ||
blackjack | 0 | 11,290,118,646,015 | 100% | ||
freedom | 0 | 5,975,093,189,779 | 100% | ||
bitcube | 0 | 2,821,930,254,738 | 100% | ||
abit | 0 | 5,075,068,251,031 | 100% | ||
wang | 0 | 4,142,445,083,675 | 100% | ||
steem-id | 0 | 183,840,825,382 | 100% | ||
bunny | 0 | 3,957,606,799 | 100% | ||
complexring | 0 | 2,063,747,746,242 | 100% | ||
arhag | 0 | 5,006,077,630,751 | 100% | ||
ajvest | 0 | 91,588,179,305 | 100% | ||
joseph | 0 | 960,407,486,275 | 100% | ||
benjojo | 0 | 773,992,682,821 | 100% | ||
pfunk | 0 | 520,658,364,231 | 100% | ||
proctologic | 0 | 11,059,751,131 | 100% | ||
tuck-fheman | 0 | 463,659,414,372 | 100% | ||
donkeypong | 0 | 2,033,753,751,334 | 100% | ||
modeprator | 0 | 7,452,649,741 | 100% | ||
dedriss | 0 | 2,555,500,919 | 100% | ||
anonimau5 | 0 | 2,899,515,058 | 100% | ||
steemship | 0 | 661,377,654,517 | 100% | ||
spaninv | 0 | 4,701,954,450 | 100% | ||
teamsteem | 0 | 48,251,099,643 | 100% | ||
asch | 0 | 40,213,850,494 | 100% | ||
murh | 0 | 1,045,272,135 | 11.33% | ||
dmitry | 0 | 1,590,545,009 | 100% | ||
ranko-k | 0 | 39,691,690,647 | 100% | ||
motivational | 0 | 5,838,014,873 | 100% | ||
snuutsboots | 0 | 1,819,534,110 | 100% | ||
justtryme90 | 0 | 2,898,415,330 | 100% | ||
eric-boucher | 0 | 89,476,902,410 | 100% | ||
robi-rusmana | 0 | 179,315,078 | 100% | ||
stiletto | 0 | 359,680,480 | 100% | ||
kenny-crane | 0 | 78,742,989,033 | 100% | ||
ratel | 0 | 21,268,225,246 | 100% | ||
will-zewe | 0 | 69,444,503,530 | 100% | ||
business | 0 | 55,640,490,603 | 100% | ||
kimziv | 0 | 272,142,888,182 | 100% | ||
gtg | 0 | 15,124,520,627 | 100% | ||
frankjones | 0 | 209,355,669 | 100% | ||
oklin | 0 | 258,875,527 | 100% | ||
norbu | 0 | 2,740,776,933 | 100% | ||
grey580 | 0 | 258,327,075 | 100% | ||
ridji | 0 | 245,439,805 | 100% | ||
auxon | 0 | 10,291,030,327 | 100% | ||
devnull | 0 | 247,256,436 | 100% | ||
on0tole | 0 | 2,075,905,234 | 100% | ||
mrgreen | 0 | 230,528,759 | 100% | ||
vkoreshkoff | 0 | 11,652,058 | 100% | ||
dr2073 | 0 | 236,203,239 | 100% | ||
dekrypt | 0 | 493,231,679 | 100% | ||
bycz | 0 | 282,404,023 | 100% | ||
gobbahfett | 0 | 235,940,246 | 100% | ||
kodachrome | 0 | 468,743,259 | 100% | ||
arcange | 0 | 12,824,787 | 0% | ||
akronte | 0 | 112,088,321 | 100% | ||
denverliu | 0 | 228,335,590 | 100% | ||
philopseudes | 0 | 116,092,002 | 100% | ||
stat | 0 | 71,932,944 | 100% | ||
sarancha80 | 0 | 23,042,984 | 100% | ||
yorg | 0 | 99,026,149 | 100% | ||
rcmdantas | 0 | 133,162,203 | 100% | ||
lemooljiang | 0 | 269,387,372 | 100% | ||
somebody | 0 | 202,376,602,899 | 100% | ||
lunyyft | 0 | 50,140,903 | 100% | ||
adarcho | 0 | 0 | 100% | ||
demartini | 0 | 0 | 100% | ||
muks | 0 | 0 | 100% | ||
heejaekim | 0 | 0 | 100% | ||
katakoto | 0 | 0 | 100% |
great tutorial
author | bunny |
---|---|
permlink | re-bitcube-steem-mining-in-microsoft-windows-a-builder-s-guide-part-1-20160706t121114770z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-07-06 12:11:15 |
last_update | 2016-07-06 12:11:15 |
depth | 1 |
children | 0 |
last_payout | 2016-08-23 10:56:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 14 |
author_reputation | 2,975,000,206,258 |
root_title | "Steem Mining in Microsoft Windows : A Builder's Guide (Part 1)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,708 |
net_rshares | 0 |
Thank you, it's a good tutorial.
author | denverliu |
---|---|
permlink | re-bitcube-steem-mining-in-microsoft-windows-a-builder-s-guide-part-1-20160718t081427396z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-07-18 08:14:27 |
last_update | 2016-07-18 08:14:27 |
depth | 1 |
children | 0 |
last_payout | 2016-08-23 10:56:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 32 |
author_reputation | 12,248,503,488 |
root_title | "Steem Mining in Microsoft Windows : A Builder's Guide (Part 1)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 162,121 |
net_rshares | 431,971,420 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
denverliu | 0 | 431,971,420 | 100% |
Fantastic work. Will save me getting a headache tomorrow when I try compiling again. Thanks for your time on this.
author | devnull |
---|---|
permlink | re-bitcube-steem-mining-in-microsoft-windows-a-builder-s-guide-part-1-20160710t235148663z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-07-10 23:51:51 |
last_update | 2016-07-10 23:51:51 |
depth | 1 |
children | 0 |
last_payout | 2016-08-23 10:56:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 114 |
author_reputation | 28,815,156,430 |
root_title | "Steem Mining in Microsoft Windows : A Builder's Guide (Part 1)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 76,104 |
net_rshares | 0 |
that https://github.com/btscube/steem/releases/tag/v0.8.5b, don't work. can somebody help? do config fine but still not working. some another guy, same problem. i don't mean that link, that steemd.exe.
author | falzxx |
---|---|
permlink | re-bitcube-steem-mining-in-microsoft-windows-a-builder-s-guide-part-1-20160713t024522403z |
category | steem |
json_metadata | {"tags":["steem"],"links":["https://github.com/btscube/steem/releases/tag/v0.8.5b,"]} |
created | 2016-07-13 02:44:03 |
last_update | 2016-07-13 02:46:03 |
depth | 1 |
children | 1 |
last_payout | 2016-08-23 10:56:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 201 |
author_reputation | 62,860,390,074 |
root_title | "Steem Mining in Microsoft Windows : A Builder's Guide (Part 1)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 90,226 |
net_rshares | 4,835,151 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
falzxx | 0 | 4,835,151 | 0% |
it dont work now we wait for a new version
author | rolik |
---|---|
permlink | re-falzxx-re-bitcube-steem-mining-in-microsoft-windows-a-builder-s-guide-part-1-20160717t135245597z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-07-17 13:52:54 |
last_update | 2016-07-17 13:53:15 |
depth | 2 |
children | 0 |
last_payout | 2016-08-23 10:56:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 42 |
author_reputation | 961,931,333,036 |
root_title | "Steem Mining in Microsoft Windows : A Builder's Guide (Part 1)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 145,193 |
net_rshares | 0 |
A little on the long side, but great article. Thanks a lot. I can finally get up and running mining STEEM. Too bad I wasn't doing this months ago ... sigh.
author | gobbahfett |
---|---|
permlink | re-bitcube-steem-mining-in-microsoft-windows-a-builder-s-guide-part-1-20160713t015806159z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-07-13 01:58:06 |
last_update | 2016-07-13 02:10:45 |
depth | 1 |
children | 1 |
last_payout | 2016-08-23 10:56:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 155 |
author_reputation | 11,452,781,153 |
root_title | "Steem Mining in Microsoft Windows : A Builder's Guide (Part 1)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 89,885 |
net_rshares | 235,940,246 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
gobbahfett | 0 | 235,940,246 | 100% |
Don't worry man, steam is still young. You'll have plenty of time to mine and make a HUGE Profit Cheers!
author | entrepreneur |
---|---|
permlink | re-gobbahfett-re-bitcube-steem-mining-in-microsoft-windows-a-builder-s-guide-part-1-20160714t012012065z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-07-14 01:19:45 |
last_update | 2016-07-14 01:19:45 |
depth | 2 |
children | 0 |
last_payout | 2016-08-23 10:56:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 105 |
author_reputation | 177,878,907,758 |
root_title | "Steem Mining in Microsoft Windows : A Builder's Guide (Part 1)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 103,484 |
net_rshares | 532,160,399 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
entrepreneur | 0 | 532,160,399 | 100% |
This is great! I have been looking for Steem code for WIndows. Thanks for sharing!
author | kenny-crane |
---|---|
permlink | re-bitcube-steem-mining-in-microsoft-windows-a-builder-s-guide-part-1-20160706t041147964z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-07-06 04:11:45 |
last_update | 2016-07-06 04:11:45 |
depth | 1 |
children | 0 |
last_payout | 2016-08-23 10:56:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 84 |
author_reputation | 231,900,469,977,463 |
root_title | "Steem Mining in Microsoft Windows : A Builder's Guide (Part 1)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 56,989 |
net_rshares | 0 |
Warning! mining STEEM is not possible anymore. Save your time. >Can I mine STEEM? >No. Proof of work mining has been removed from Steem. >https://steemit.com/faq.html#Can_I_mine_STEEM
author | khunfarang |
---|---|
permlink | re-bitcube-steem-mining-in-microsoft-windows-a-builder-s-guide-part-1-20170705t114041589z |
category | steem |
json_metadata | {"tags":["steem"],"links":["https://steemit.com/faq.html#Can_I_mine_STEEM"],"app":"steemit/0.1"} |
created | 2017-07-05 11:40:42 |
last_update | 2017-07-05 11:40:42 |
depth | 1 |
children | 0 |
last_payout | 2017-07-12 11:40:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 185 |
author_reputation | 23,724,395,578 |
root_title | "Steem Mining in Microsoft Windows : A Builder's Guide (Part 1)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,386,781 |
net_rshares | 0 |
Thanks for making this guide! I have one problem though, when I get to actually compiling Steem.. I just cannot make it find the boost headers: ** CMake Error at libraries/fc/CMakeModules/FindBoost.cmake:1129 (message): Unable to find the requested Boost libraries. Unable to find the Boost header files. Please set BOOST_ROOT to the root directory containing Boost or BOOST_INCLUDEDIR to the directory containing Boost's headers. Call Stack (most recent call first): libraries/fc/CMakeLists.txt:119 (FIND_PACKAGE) ** I compiled boost as above and put its build dir as "D:\Build\boost\boost_release". Ive tried numerous folders and env variables (like Boost_Include_dir) and none of them ever past the find Boost check. What *exactly* is meant to be in the folder specified as "BOOST_ROOT"? thanks again!
author | kodachrome |
---|---|
permlink | re-bitcube-steem-mining-in-microsoft-windows-a-builder-s-guide-part-1-20160731t121621985z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-07-31 12:16:21 |
last_update | 2016-07-31 12:16:21 |
depth | 1 |
children | 1 |
last_payout | 2016-08-23 10:56:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 821 |
author_reputation | 119,101,290,755 |
root_title | "Steem Mining in Microsoft Windows : A Builder's Guide (Part 1)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 509,373 |
net_rshares | 0 |
Any tips? I've even tried downloading pre-built Boost Libs and it still cannot find boost when compiling Steem. It dies at the cmake. Ive set BOOST_ROOT to various directories in the structure, thinking now this isnt a "cant find problem" but something else?? Also, in the section above about your changes to the Steem source and Git Hub.. you seem to be missing a step as you just list the URL. Assume its a Git checkout command thats missing?
author | kodachrome |
---|---|
permlink | re-kodachrome-re-bitcube-steem-mining-in-microsoft-windows-a-builder-s-guide-part-1-20160801t115854784z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-08-01 11:58:54 |
last_update | 2016-08-01 11:58:54 |
depth | 2 |
children | 0 |
last_payout | 2016-08-23 10:56:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 446 |
author_reputation | 119,101,290,755 |
root_title | "Steem Mining in Microsoft Windows : A Builder's Guide (Part 1)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 532,892 |
net_rshares | 0 |
Very hard to understand and confusing. Is there any easy method to mine Steem in Windows PC?
author | tadakaluri |
---|---|
permlink | re-bitcube-steem-mining-in-microsoft-windows-a-builder-s-guide-part-1-20160706t033644897z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-07-06 03:36:45 |
last_update | 2016-07-06 03:36:45 |
depth | 1 |
children | 3 |
last_payout | 2016-08-23 10:56:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 93 |
author_reputation | 147,902,391,599 |
root_title | "Steem Mining in Microsoft Windows : A Builder's Guide (Part 1)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 56,934 |
net_rshares | 3,841,756,777 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
tadakaluri | 0 | 3,487,324,194 | 100% | ||
shamitha | 0 | 282,499,639 | 100% | ||
stat | 0 | 71,932,944 | 100% | ||
germanas1985 | 0 | 0 | 100% |
The above is for the adventurous. You can get the compiled version here - https://github.com/btscube/steem/releases/tag/v0.8.5b and save the trouble.
author | bitcube |
---|---|
permlink | re-tadakaluri-re-bitcube-steem-mining-in-microsoft-windows-a-builder-s-guide-part-1-20160706t035636963z |
category | steem |
json_metadata | {"tags":["steem"],"links":["https://github.com/btscube/steem/releases/tag/v0.8.5b"]} |
created | 2016-07-06 03:56:39 |
last_update | 2016-07-06 03:56:39 |
depth | 2 |
children | 1 |
last_payout | 2016-08-23 10:56:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 151 |
author_reputation | 8,016,881,813,007 |
root_title | "Steem Mining in Microsoft Windows : A Builder's Guide (Part 1)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 56,963 |
net_rshares | 8,259,986,345 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
anonimau5 | 0 | 2,899,515,058 | 100% | ||
bryner | 0 | 1,448,714,050 | 100% | ||
tadakaluri | 0 | 3,417,577,710 | 100% | ||
oklin | 0 | 258,875,527 | 100% | ||
danwattz | 0 | 235,304,000 | 100% | ||
fcbrandon | 0 | 0 | 100% |
Thanks for your work! I'll check this out now. Everythings a'ready to go minin'.
author | gobbahfett |
---|---|
permlink | re-bitcube-re-tadakaluri-re-bitcube-steem-mining-in-microsoft-windows-a-builder-s-guide-part-1-20160713t021153661z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-07-13 02:11:54 |
last_update | 2016-07-13 02:11:54 |
depth | 3 |
children | 0 |
last_payout | 2016-08-23 10:56:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 80 |
author_reputation | 11,452,781,153 |
root_title | "Steem Mining in Microsoft Windows : A Builder's Guide (Part 1)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 89,994 |
net_rshares | 235,940,246 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
gobbahfett | 0 | 235,940,246 | 100% |
Try this guide for beginners - https://steemit.com/steem/@bitcube/steem-mining-in-microsoft-windows-a-miner-s-guide-part-2
author | bitcube |
---|---|
permlink | re-tadakaluri-re-bitcube-steem-mining-in-microsoft-windows-a-builder-s-guide-part-1-20160706t075439461z |
category | steem |
json_metadata | {"tags":["steem"],"links":["https://steemit.com/steem/@bitcube/steem-mining-in-microsoft-windows-a-miner-s-guide-part-2"]} |
created | 2016-07-06 07:54:42 |
last_update | 2016-07-06 07:54:42 |
depth | 2 |
children | 0 |
last_payout | 2016-08-23 10:56:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 122 |
author_reputation | 8,016,881,813,007 |
root_title | "Steem Mining in Microsoft Windows : A Builder's Guide (Part 1)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 57,355 |
net_rshares | 230,597,920 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
danwattz | 0 | 230,597,920 | 100% |