• This is a read only backup of the old Emudevs forum. If you want to have anything removed, please message me on Discord: KittyKaev

Written How to install and setup Boost

Tommy

Founder
Read the "I'm getting errors" in the main tutorial post.

P.S. Updated the tutorial.
P.P.S. Since I installed a new version of Windows I've been currently reinstalling all of the needed programs. Currently I receive the same error you are getting and resolved it by putting the static lib folder in the boost folder (if you didn't down boost-binaries executable and installed boost that way) or download and install boost-binaries executable from here.

That being said, I rewrote that particular "I'm getting errors" list item:

Could not find the following static Boost libraries: Make sure the static libraries are in your boost_X_XX_X folder. Static library folder is called "lib32-msvc-XX.0" or "lib64-msvc-XX.0" for 64bit- "XX" is the msvc version. For example, "boost_1_60_0-msvc-14.0-64.exe" is 64 bit and "boost_1_60_0-msvc-14.0-32.exe" is 32bit "14.0" is Visual Studio 2015. Overall, this error can be resolved if you have the static library folder in the BOOST_ROOT directory.

Screenshot (NOTE: 14.0 is VS 2015)

jJvndve.png


After that:

Code:
Boost version: 1.60.0
Found the following Boost libraries:
  system
  filesystem
  thread
  program_options
  iostreams
  regex
 

omen

Member
Read the "I'm getting errors" in the main tutorial post.

P.S. Updated the tutorial.
P.P.S. Since I installed a new version of Windows I've been currently reinstalling all of the needed programs. Currently I receive the same error you are getting and resolved it by putting the static lib folder in the boost folder (if you didn't down boost-binaries executable and installed boost that way) or download and install boost-binaries executable from here.

That being said, I rewrote that particular "I'm getting errors" list item:

Could not find the following static Boost libraries: Make sure the static libraries are in your boost_X_XX_X folder. Static library folder is called "lib32-msvc-XX.0" or "lib64-msvc-XX.0" for 64bit- "XX" is the msvc version. For example, "boost_1_60_0-msvc-14.0-64.exe" is 64 bit and "boost_1_60_0-msvc-14.0-32.exe" is 32bit "14.0" is Visual Studio 2015. Overall, this error can be resolved if you have the static library folder in the BOOST_ROOT directory.

Screenshot (NOTE: 14.0 is VS 2015)

jJvndve.png


After that:

Code:
Boost version: 1.60.0
Found the following Boost libraries:
  system
  filesystem
  thread
  program_options
  iostreams
  regex
confirmed, i solved it similar to this with boost 1_57_0
 
Top