Of course, you can.
I have got some errors and a lot of warnings like "conversion from 'size_t' to 'uint32_t', possible loss of data"
========== Build: 36 succeeded, 2 failed, 0 up-to-date, 3 skipped ==========
There are fatal error I have got
27> DoubleSpend.cpp
31>D:\devtools\boost_1_64_0\boost/type_traits/common_type.hpp(43): fatal error C1001: An internal error has occurred in the compiler.
31> (compiler file 'msc1.cpp', line 1325)
35>d:\devproducts\micronotecoin-v1.0.1\tests\unittests\testtransferscontainerkeyimage.cpp(325): fatal error C1001: An internal error has occurred in the compiler.
35> (compiler file 'f:\dd\vctools\compiler\utc\src\p2\ehexcept.c', line 956)
35>d:\devproducts\micronotecoin-v1.0.1\tests\unittests\testtransferscontainer.cpp(432): fatal error C1001: An internal error has occurred in the compiler.
35> (compiler file 'f:\dd\vctools\compiler\utc\src\p2\ehexcept.c', line 956)
35>d:\devproducts\micronotecoin-v1.0.1\tests\unittests\testwallet.cpp(2281): fatal error C1001: An internal error has occurred in the compiler.
35> (compiler file 'f:\dd\vctools\compiler\utc\src\p2\ehexcept.c', line 956)
May be you can help to solve this. Thanks in advance
Hi,
This is my steps for compile for Windows:
- Download and install MSVC 2013
- Download, unzip and install boost 1.57.0:
cd c:\boost_1_57_0
bootstrap.bat
b2 --toolset=msvc variant=release link=static threading=multi runtime-link=static address-model=64
- Download and install CMAKE 3.9.1
- Download micronotecoin and uncompress it (
https://github.com/micronotecoin/micronotecoin/archive/master.zip). Please download it again because I changed node addresses.
Compilation:
cd c:\micronotecoin-master
mkdir build
cd build
cmake -G "Visual Studio 12 Win64" -DBOOST_ROOT=c:\boost_1_57_0 -DBOOST_LIBRARYDIR=c:\boost_1_57_0\stage\lib ..
"c:\Program Files (x86)\MSBuild\12.0\Bin\amd64\MSBuild.exe" micronotecoin.sln /p:Configuration=release /m
I hope it helps you!
Best regards!