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

[SOLVED] Compileing Cmake Error?

Status
Not open for further replies.

albag

Respected Member
I get this error when i try to compile?
i use studio 2015
and all the openssl and that is installed
Code:
The C compiler identification is unknown
The CXX compiler identification is unknown
CMake Error at CMakeLists.txt:12 (project):
  No CMAKE_C_COMPILER could be found.



CMake Error at CMakeLists.txt:12 (project):
  No CMAKE_CXX_COMPILER could be found.



Configuring incomplete, errors occurred!
See also "C:/Users/Ejer/Documents/wow server/Compile/CMakeFiles/CMakeOutput.log".
See also "C:/Users/Ejer/Documents/wow server/Compile/CMakeFiles/CMakeError.log".
 

Tommy

Founder
The error is clear: it cannot find your C/CXX compiler.

Preconditions
  • You have installed the compiler/IDE and it was able to once compile any other program (directly without CMake)
  • You have the latest CMake version
  • You have access rights on the drive you want CMake to generate your build environment
  • You have a clean build directory (because CMake does cache things from the last try) e.g. as sub-directory of your source tree

Taken from: http://stackoverflow.com/questions/...30-project-no-cmake-c-compiler-could-be-found
 

albag

Respected Member
Now i get this Error?

Severity Code Description Project File Line
Error C2177 constant too big common C:\Program Files (x86)\Windows Kits\10\Include\10.0.10240.0\shared\rpcasync.h 70
Severity Code Description Project File Line
Error C2177 constant too big common C:\Program Files (x86)\Windows Kits\10\Include\10.0.10240.0\shared\rpcasync.h 70


15>C:\Program Files (x86)\Windows Kits\10\Include\10.0.10240.0\shared\rpcdcep.h(233): error C2177: constant too big
15>C:\Program Files (x86)\Windows Kits\10\Include\10.0.10240.0\shared\rpcdcep.h(510): error C2177: constant too big
15>C:\Program Files (x86)\Windows Kits\10\Include\10.0.10240.0\shared\rpcdcep.h(537): error C2177: constant too big
15>C:\Program Files (x86)\Windows Kits\10\Include\10.0.10240.0\shared\rpcdcep.h(548): error C2177: constant too big
15>C:\Program Files (x86)\Windows Kits\10\Include\10.0.10240.0\shared\rpcdcep.h(728): error C2177: constant too big
15>C:\Program Files (x86)\Windows Kits\10\Include\10.0.10240.0\shared\rpcdcep.h(853): error C2177: constant too big
15>C:\Program Files (x86)\Windows Kits\10\Include\10.0.10240.0\shared\rpcdcep.h(1019): error C2177: constant too big
15>C:\Program Files (x86)\Windows Kits\10\Include\10.0.10240.0\shared\rpcdcep.h(1056): error C2177: constant too big
15>C:\Program Files (x86)\Windows Kits\10\Include\10.0.10240.0\shared\rpcdcep.h(1204): error C2177: constant too big
15>C:\Program Files (x86)\Windows Kits\10\Include\10.0.10240.0\shared\rpcdcep.h(1223): error C2177: constant too big
15>C:\Program Files (x86)\Windows Kits\10\Include\10.0.10240.0\shared\rpcdcep.h(1232): error C2177: constant too big
15>C:\Program Files (x86)\Windows Kits\10\Include\10.0.10240.0\shared\rpcdcep.h(1241): error C2177: constant too big
15>C:\Program Files (x86)\Windows Kits\10\Include\10.0.10240.0\shared\rpcdcep.h(1252): error C2177: constant too big
15>C:\Program Files (x86)\Windows Kits\10\Include\10.0.10240.0\shared\rpcdcep.h(1273): error C2177: constant too big
15>C:\Program Files (x86)\Windows Kits\10\Include\10.0.10240.0\shared\rpcnterr.h(46): error C2177: constant too big
15>C:\Program Files (x86)\Windows Kits\10\Include\10.0.10240.0\shared\rpcasync.h(70): error C2177: constant too big
15>C:\Program Files (x86)\Windows Kits\10\Include\10.0.10240.0\shared\rpcasync.h(233): error C2177: constant too big
15>C:\Program Files (x86)\Windows Kits\10\Include\10.0.10240.0\shared\rpcasync.h(724): error C2177: constant too big
15>C:\Program Files (x86)\Windows Kits\10\Include\10.0.10240.0\shared\rpcasync.h(732): error C2177: constant too big
15>C:\Program Files (x86)\Windows Kits\10\Include\10.0.10240.0\um\shellapi.h(175): error C2177: constant too big
15>C:\Program Files (x86)\Windows Kits\10\Include\10.0.10240.0\um\shellapi.h(178): error C2177: constant too big
15>C:\Program Files (x86)\Windows Kits\10\Include\10.0.10240.0\um\shellapi.h(258): error C2177: constant too big
15>C:\Program Files (x86)\Windows Kits\10\Include\10.0.10240.0\um\shellapi.h(382): error C2177: constant too big
 
Last edited:
Status
Not open for further replies.
Top