Post
Topic
Board Announcements (Altcoins)
Re: [ANN] AEON [2017-04-05: update to 0.9.11.0]
by
Arux
on 25/04/2017, 08:32:19 UTC

It allows performing certain low level functions such as signing messages or connecting to the debug function on nodes (currently disabled by I believe). Not generally needed.

Got it Wink Thanks

Another question: Boost pre-compiled binaries have either static and shared versions.
After the cmake step I guess Project.sln should point to static ones by itself...or not?

Thanks
boost pre-compiled libraries are shared versions (useful if you don't want to compile boost and you don't plan to use your binaries on another computer)
although compiling static boost libraries is not a great task
Code:
cd c:\boost_1_63_0
bootstrap.bat
b2 --toolset=msvc variant=release link=static threading=multi runtime-link=static address-model=64
boost static lib have a "s" in their name http://www.boost.org/doc/libs/1_42_0/more/getting_started/unix-variants.html#library-naming
libraries are built in stage/lib folder

btw, when i updated cmake to 3.8 (from 3.4.3), i guess findboost has changed because i must now type
Code:
cmake -G "Visual Studio 14 2015 Win64" -DBOOST_ROOT=c:/local/boost_1_63_0 ..
with forward slash instead of
Code:
cmake -G "Visual Studio 14 2015 Win64" -DBOOST_ROOT=c:\boost_1_63_0 -DBOOST_LIBRARYDIR=c:\boost_1_63_0\stage\lib ..
previously (and with backslash)