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

Error compiling TCCata

Status
Not open for further replies.

jadethread

Enthusiast
Code:
 CMake Error at cmake/macros/ConfigureBoost.cmake:17 (message):
  No BOOST_ROOT environment variable could be found! Please make sure it is
  set and the points to your Boost installation.
Call Stack (most recent call first):
  CMakeLists.txt:60 (include)

Windows 7 home Premium 64 bit.
Visual Studio 2013 Ultimate
Cmake 3.0.2

Hello I'm getting this error and I do not know how to fix it. I went through the logs and couldn't really figure out the reason of why I was getting the error. Any ideas?

It also says . "Missing Pthread.h" But I have tried downloading it and extracting the files into the needed places, But even when I do that it says "Pthread_Create" not found but says "PThread" found. I didn't want to mess my visual studios up so I deleted the stuff I put into the folders just incase and figured I'd post here for help.

http://paste.emudevs.com/?paste=192 -- error log
 
Last edited:

FoxGaming

Exalted Member
Code:
 CMake Error at cmake/macros/ConfigureBoost.cmake:17 (message):
  No BOOST_ROOT environment variable could be found! Please make sure it is
  set and the points to your Boost installation.
Call Stack (most recent call first):
  CMakeLists.txt:60 (include)

Windows 7 home Premium 64 bit.
Visual Studio 2013 Ultimate
Cmake 3.0.2

Hello I'm getting this error and I do not know how to fix it. I went through the logs and couldn't really figure out the reason of why I was getting the error. Any ideas?

It also says . "Missing Pthread.h" But I have tried downloading it and extracting the files into the needed places, But even when I do that it says "Pthread_Create" not found but says "PThread" found. I didn't want to mess my visual studios up so I deleted the stuff I put into the folders just incase and figured I'd post here for help.

http://paste.emudevs.com/?paste=192 -- error log

It's not missing pthread...it's missing the boost environment that you need to install.

http://www.mediafire.com/download/gl5o126p8rjrv42/boost_1_55_0-msvc-12.0-32.exe
install that, DO NOT CHANGE THE INSTALL LOCATION.
 

Tommy

Founder
No problem, after you install restart your PC, and delete your cmake cache, then try configuring and building again, then it should compile fine.

You don't need to restart your PC. Just make sure you don't have CMake running when you setup the new path, else, you'll need to restart CMake for it to reload the environment variables.

You can view my reply here: http://emudevs.com/showthread.php/3...ownload-included?p=25574&viewfull=1#post25574 for more info regarding certain things when setting up boost.

You also don't need to install anything else to add the path variable, you can do it yourself -- all you need need to do is set the path variable up manually in Computer -> System Properties -> Advanced System Settings -> Environment Variables -> New System Variable -> Variable Name: BOOST_ROOT, Variable value: Your/Boost/Path.
 

jadethread

Enthusiast
Problem Fixed now guys thanks alot! I had to set the System Variable even though I installed to default place but it worked after that. Looking forward to the 4.3.4 core :)
 
Status
Not open for further replies.
Top