Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2019
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 43.02 KB | None | 0 0
  1. Hello, when I try to compile the core I've got the following issue.
  2.  
  3. In file included from /home/wow/ArkCORE-NG/src/server/shared/PrecompiledHeaders/sharedPCH.cpp:1:
  4. In file included from /home/wow/ArkCORE-NG/src/server/shared/PrecompiledHeaders/sharedPCH.h:3:
  5. In file included from /home/wow/ArkCORE-NG/src/server/shared/Common.h:65:
  6. In file included from /usr/bin/../lib/gcc/x86_64-linux-gnu/6.3.0/../../../../include/c++/6.3.0/unordered_map:35:
  7. /usr/bin/../lib/gcc/x86_64-linux-gnu/6.3.0/../../../../include/c++/6.3.0/bits/c++0x_warning.h:32:2: error:
  8. This file requires compiler and library support for the ISO C++ 2011
  9. standard. This support must be enabled with the -std=c++11 or -std=gnu++11
  10. compiler options.
  11. #error This file requires compiler and library support
  12. ^
  13. [ 0%] Building CXX object dep/recastnavigation/Recast/CMakeFiles/Recast.dir/RecastAlloc.cpp.o
  14. [ 0%] Building CXX object dep/recastnavigation/Recast/CMakeFiles/Recast.dir/RecastArea.cpp.o
  15. [ 0%] Building CXX object dep/recastnavigation/Detour/CMakeFiles/Detour.dir/DetourNavMesh.cpp.o
  16. [ 1%] Building CXX object dep/g3dlite/CMakeFiles/g3dlib.dir/source/Any.cpp.o
  17. In file included from /home/wow/ArkCORE-NG/src/server/collision/PrecompiledHeaders/collisionPCH.cpp:1:
  18. In file included from /home/wow/ArkCORE-NG/src/server/collision/PrecompiledHeaders/collisionPCH.h:3:
  19. In file included from /home/wow/ArkCORE-NG/src/server/collision/Maps/MapTree.h:25:
  20. In file included from /usr/bin/../lib/gcc/x86_64-linux-gnu/6.3.0/../../../../include/c++/6.3.0/unordered_map:35:
  21. /usr/bin/../lib/gcc/x86_64-linux-gnu/6.3.0/../../../../include/c++/6.3.0/bits/c++0x_warning.h:32:2: error:
  22. This file requires compiler and library support for the ISO C++ 2011
  23. standard. This support must be enabled with the -std=c++11 or -std=gnu++11
  24. compiler options.
  25. #error This file requires compiler and library support
  26. ^
  27. In file included from /home/wow/ArkCORE-NG/src/server/collision/PrecompiledHeaders/collisionPCH.cpp:1:
  28. In file included from /home/wow/ArkCORE-NG/src/server/collision/PrecompiledHeaders/collisionPCH.h:3:
  29. /home/wow/ArkCORE-NG/src/server/collision/Maps/MapTree.h:43:22: error: no type
  30. named 'unordered_map' in namespace 'std'
  31. typedef std::unordered_map<uint32, bool> loadedTileMap;
  32. ~~~~~^
  33. /home/wow/ArkCORE-NG/src/server/collision/Maps/MapTree.h:43:35: error: expected
  34. member name or ';' after declaration specifiers
  35. typedef std::unordered_map<uint32, bool> loadedTileMap;
  36. ~~~~~~~~~~~~~~~~~~~~~~~~~~^
  37. /home/wow/ArkCORE-NG/src/server/collision/Maps/MapTree.h:44:22: error: no type
  38. named 'unordered_map' in namespace 'std'
  39. typedef std::unordered_map<uint32, uint32> loadedSpawnMap;
  40. ~~~~~^
  41. /home/wow/ArkCORE-NG/src/server/collision/Maps/MapTree.h:44:35: error: expected
  42. member name or ';' after declaration specifiers
  43. typedef std::unordered_map<uint32, uint32> loadedSpawnMap;
  44. ~~~~~~~~~~~~~~~~~~~~~~~~~~^
  45. /home/wow/ArkCORE-NG/src/server/collision/Maps/MapTree.h:55:13: error: unknown
  46. type name 'loadedTileMap'
  47. loadedTileMap iLoadedTiles;
  48. ^
  49. /home/wow/ArkCORE-NG/src/server/collision/Maps/MapTree.h:57:13: error: unknown
  50. type name 'loadedSpawnMap'
  51. loadedSpawnMap iLoadedSpawns;
  52. ^
  53. 7 errors generated.
  54. src/server/collision/CMakeFiles/collisionPCH.cpp_dephelp.dir/build.make:62: recipe for target 'src/server/collision/CMakeFiles/collisionPCH.cpp_dephelp.dir/PrecompiledHeaders/collisionPCH.cpp.o' failed
  55. make[2]: *** [src/server/collision/CMakeFiles/collisionPCH.cpp_dephelp.dir/PrecompiledHeaders/collisionPCH.cpp.o] Error 1
  56. CMakeFiles/Makefile2:882: recipe for target 'src/server/collision/CMakeFiles/collisionPCH.cpp_dephelp.dir/all' failed
  57. make[1]: *** [src/server/collision/CMakeFiles/collisionPCH.cpp_dephelp.dir/all] Error 2
  58. make[1]: *** Waiting for unfinished jobs....
  59. [ 1%] Building CXX object dep/g3dlite/CMakeFiles/g3dlib.dir/source/BinaryFormat.cpp.o
  60. [ 1%] Building CXX object dep/recastnavigation/Recast/CMakeFiles/Recast.dir/RecastContour.cpp.o
  61. [ 1%] Building CXX object dep/gsoap/CMakeFiles/gsoap.dir/soapServer.cpp.o
  62. [ 1%] Building CXX object dep/recastnavigation/Detour/CMakeFiles/Detour.dir/DetourNavMeshBuilder.cpp.o
  63. [ 1%] Building CXX object dep/g3dlite/CMakeFiles/g3dlib.dir/source/BinaryInput.cpp.o
  64. In file included from /home/wow/ArkCORE-NG/src/server/shared/PrecompiledHeaders/sharedPCH.cpp:1:
  65. In file included from /home/wow/ArkCORE-NG/src/server/shared/PrecompiledHeaders/sharedPCH.h:3:
  66. /home/wow/ArkCORE-NG/src/server/shared/Common.h:130:67: error: use of undeclared
  67. identifier 'nullptr'
  68. inline unsigned long atoul(char const* str) { return strtoul(str, nullptr, 10); }
  69. ^
  70. /home/wow/ArkCORE-NG/src/server/shared/Common.h:131:74: error: use of undeclared
  71. identifier 'nullptr'
  72. ...long long atoull(char const* str) { return strtoull(str, nullptr, 10); }
  73. ^
  74. In file included from /home/wow/ArkCORE-NG/src/server/shared/PrecompiledHeaders/sharedPCH.cpp:1:
  75. In file included from /home/wow/ArkCORE-NG/src/server/shared/PrecompiledHeaders/sharedPCH.h:4:
  76. In file included from /home/wow/ArkCORE-NG/src/server/shared/Logging/Log.h:24:
  77. /home/wow/ArkCORE-NG/src/server/shared/Logging/Appender.h:108:14: error: no type
  78. named 'unordered_map' in namespace 'std'
  79. typedef std::unordered_map<uint8, Appender*> AppenderMap;
  80. ~~~~~^
  81. /home/wow/ArkCORE-NG/src/server/shared/Logging/Appender.h:108:27: error:
  82. expected unqualified-id
  83. typedef std::unordered_map<uint8, Appender*> AppenderMap;
  84. ^
  85. In file included from /home/wow/ArkCORE-NG/src/server/shared/PrecompiledHeaders/sharedPCH.cpp:1:
  86. In file included from /home/wow/ArkCORE-NG/src/server/shared/PrecompiledHeaders/sharedPCH.h:4:
  87. In file included from /home/wow/ArkCORE-NG/src/server/shared/Logging/Log.h:25:
  88. /home/wow/ArkCORE-NG/src/server/shared/Logging/Logger.h:41:9: error: unknown
  89. type name 'AppenderMap'
  90. AppenderMap appenders;
  91. ^
  92. [ 1%] Building CXX object dep/gsoap/CMakeFiles/gsoap.dir/stdsoap2.cpp.o
  93. [ 2%] Building C object dep/jemalloc/CMakeFiles/jemalloc.dir/src/atomic.c.o
  94. In file included from /home/wow/ArkCORE-NG/src/server/shared/PrecompiledHeaders/sharedPCH.cpp:1:
  95. In file included from /home/wow/ArkCORE-NG/src/server/shared/PrecompiledHeaders/sharedPCH.h:4:
  96. /home/wow/ArkCORE-NG/src/server/shared/Logging/Log.h:38:18: error: no type named
  97. 'unordered_map' in namespace 'std'
  98. typedef std::unordered_map<std::string, Logger> LoggerMap;
  99. ~~~~~^
  100. /home/wow/ArkCORE-NG/src/server/shared/Logging/Log.h:38:31: error: expected
  101. member name or ';' after declaration specifiers
  102. typedef std::unordered_map<std::string, Logger> LoggerMap;
  103. ~~~~~~~~~~~~~~~~~~~~~~~~~~^
  104. /home/wow/ArkCORE-NG/src/server/shared/Logging/Log.h:39:18: error: no type named
  105. 'unordered_map' in namespace 'std'
  106. typedef std::unordered_map<std::string, Logger const*> CachedLoggerC...
  107. ~~~~~^
  108. /home/wow/ArkCORE-NG/src/server/shared/Logging/Log.h:39:31: error: expected
  109. member name or ';' after declaration specifiers
  110. typedef std::unordered_map<std::string, Logger const*> CachedLoggerC...
  111. ~~~~~~~~~~~~~~~~~~~~~~~~~~^
  112. /home/wow/ArkCORE-NG/src/server/shared/Logging/Log.h:71:9: error: unknown type
  113. name 'AppenderMap'
  114. AppenderMap appenders;
  115. ^
  116. /home/wow/ArkCORE-NG/src/server/shared/Logging/Log.h:72:9: error: unknown type
  117. name 'LoggerMap'; did you mean 'Logger'?
  118. LoggerMap loggers;
  119. ^~~~~~~~~
  120. Logger
  121. /home/wow/ArkCORE-NG/src/server/shared/Logging/LogOperation.h:22:7: note:
  122. 'Logger' declared here
  123. class Logger;
  124. ^
  125. [ 2%] Building CXX object dep/recastnavigation/Detour/CMakeFiles/Detour.dir/DetourNavMeshQuery.cpp.o
  126. In file included from /home/wow/ArkCORE-NG/src/server/shared/PrecompiledHeaders/sharedPCH.cpp:1:
  127. In file included from /home/wow/ArkCORE-NG/src/server/shared/PrecompiledHeaders/sharedPCH.h:4:
  128. /home/wow/ArkCORE-NG/src/server/shared/Logging/Log.h:73:9: error: unknown type
  129. name 'CachedLoggerContainer'
  130. CachedLoggerContainer cachedLoggers;
  131. ^
  132. /home/wow/ArkCORE-NG/src/server/shared/Logging/Log.h:85:5: error: use of
  133. undeclared identifier 'CachedLoggerContainer'
  134. CachedLoggerContainer::const_iterator itCached = cachedLoggers.find(...
  135. ^
  136. /home/wow/ArkCORE-NG/src/server/shared/Logging/Log.h:89:28: error: use of
  137. undeclared identifier 'nullptr'
  138. Logger const* logger = nullptr;
  139. ^
  140. /home/wow/ArkCORE-NG/src/server/shared/Logging/Log.h:95:9: error: use of
  141. undeclared identifier 'LoggerMap'; did you mean 'Logger'?
  142. LoggerMap::const_iterator it = loggers.find(type);
  143. ^~~~~~~~~
  144. Logger
  145. /home/wow/ArkCORE-NG/src/server/shared/Logging/LogOperation.h:22:7: note:
  146. 'Logger' declared here
  147. class Logger;
  148. ^
  149. In file included from /home/wow/ArkCORE-NG/src/server/shared/PrecompiledHeaders/sharedPCH.cpp:1:
  150. In file included from /home/wow/ArkCORE-NG/src/server/shared/PrecompiledHeaders/sharedPCH.h:4:
  151. /home/wow/ArkCORE-NG/src/server/shared/Logging/Log.h:95:9: error: no type named
  152. 'const_iterator' in 'Logger'; did you mean
  153. 'ACE_NS_WString::const_iterator'?
  154. LoggerMap::const_iterator it = loggers.find(type);
  155. ^~~~~~~~~~~~~~~~~~~~~~~~~
  156. ACE_NS_WString::const_iterator
  157. /usr/include/ace/String_Base.h:79:55: note: 'ACE_NS_WString::const_iterator'
  158. declared here
  159. typedef ACE_String_Base_Const_Iterator <ACE_CHAR_T> const_iterator;
  160. ^
  161. In file included from /home/wow/ArkCORE-NG/src/server/shared/PrecompiledHeaders/sharedPCH.cpp:1:
  162. In file included from /home/wow/ArkCORE-NG/src/server/shared/PrecompiledHeaders/sharedPCH.h:4:
  163. /home/wow/ArkCORE-NG/src/server/shared/Logging/Log.h:103:26: error: member
  164. reference type 'ACE_NS_WString::const_iterator' (aka
  165. 'ACE_String_Base_Const_Iterator<wchar_t>') is not a pointer; did you mean
  166. to use '.'?
  167. logger = &(it->second);
  168. ~~^~
  169. .
  170. /home/wow/ArkCORE-NG/src/server/shared/Logging/Log.h:103:28: error: no member
  171. named 'second' in 'ACE_String_Base_Const_Iterator<wchar_t>'
  172. logger = &(it->second);
  173. ~~ ^
  174. [ 2%] Building C object dep/jemalloc/CMakeFiles/jemalloc.dir/src/base.c.o
  175. fatal error: too many errors emitted, stopping now [-ferror-limit=]
  176. 20 errors generated.
  177. src/server/shared/CMakeFiles/sharedPCH.cpp_dephelp.dir/build.make:62: recipe for target 'src/server/shared/CMakeFiles/sharedPCH.cpp_dephelp.dir/PrecompiledHeaders/sharedPCH.cpp.o' failed
  178. make[2]: *** [src/server/shared/CMakeFiles/sharedPCH.cpp_dephelp.dir/PrecompiledHeaders/sharedPCH.cpp.o] Error 1
  179. CMakeFiles/Makefile2:557: recipe for target 'src/server/shared/CMakeFiles/sharedPCH.cpp_dephelp.dir/all' failed
  180. make[1]: *** [src/server/shared/CMakeFiles/sharedPCH.cpp_dephelp.dir/all] Error 2
  181. [ 2%] Building C object dep/jemalloc/CMakeFiles/jemalloc.dir/src/bitmap.c.o
  182. In file included from /home/wow/ArkCORE-NG/src/server/game/PrecompiledHeaders/gamePCH.cpp:1:
  183. In file included from /home/wow/ArkCORE-NG/src/server/game/PrecompiledHeaders/gamePCH.h:3:
  184. In file included from /home/wow/ArkCORE-NG/src/server/game/Server/WorldSocket.h:42:
  185. In file included from /home/wow/ArkCORE-NG/src/server/shared/Common.h:65:
  186. In file included from /usr/bin/../lib/gcc/x86_64-linux-gnu/6.3.0/../../../../include/c++/6.3.0/unordered_map:35:
  187. /usr/bin/../lib/gcc/x86_64-linux-gnu/6.3.0/../../../../include/c++/6.3.0/bits/c++0x_warning.h:32:2: error:
  188. This file requires compiler and library support for the ISO C++ 2011
  189. standard. This support must be enabled with the -std=c++11 or -std=gnu++11
  190. compiler options.
  191. #error This file requires compiler and library support
  192. ^
  193. /home/wow/ArkCORE-NG/dep/gsoap/stdsoap2.cpp:812:30: warning: adding 'int' to a
  194. string does not append to the string [-Wstring-plus-int]
  195. sprintf(t, "\r\n%lX\r\n" + (soap->chunksize ? 0 : 2), (unsigned long)n);
  196. ~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~
  197. /home/wow/ArkCORE-NG/dep/gsoap/stdsoap2.cpp:812:30: note: use array indexing to
  198. silence this warning
  199. sprintf(t, "\r\n%lX\r\n" + (soap->chunksize ? 0 : 2), (unsigned long)n);
  200. ^
  201. & [ ]
  202. [ 3%] Building CXX object dep/recastnavigation/Recast/CMakeFiles/Recast.dir/RecastFilter.cpp.o
  203. [ 3%] Building C object dep/jemalloc/CMakeFiles/jemalloc.dir/src/chunk.c.o
  204. In file included from /home/wow/ArkCORE-NG/src/server/game/PrecompiledHeaders/gamePCH.cpp:1:
  205. In file included from /home/wow/ArkCORE-NG/src/server/game/PrecompiledHeaders/gamePCH.h:3:
  206. In file included from /home/wow/ArkCORE-NG/src/server/game/Server/WorldSocket.h:42:
  207. /home/wow/ArkCORE-NG/src/server/shared/Common.h:130:67: error: use of undeclared
  208. identifier 'nullptr'
  209. inline unsigned long atoul(char const* str) { return strtoul(str, nullptr, 10); }
  210. ^
  211. /home/wow/ArkCORE-NG/src/server/shared/Common.h:131:74: error: use of undeclared
  212. identifier 'nullptr'
  213. ...long long atoull(char const* str) { return strtoull(str, nullptr, 10); }
  214. ^
  215. /home/wow/ArkCORE-NG/dep/gsoap/stdsoap2.cpp:9532:30: warning: address of array
  216. 'tp->name' will always evaluate to 'true' [-Wpointer-bool-conversion]
  217. { if (tp->visible && tp->name)
  218. ~~ ~~~~^~~~
  219. /home/wow/ArkCORE-NG/dep/gsoap/stdsoap2.cpp:9537:65: warning: data argument not
  220. used by format string [-Wformat-extra-args]
  221. { sprintf(soap->tmpbuf, *(np->id) ? "xmlns:%s" : "xmlns", np->id);
  222. ~~~~~~~ ^
  223. [ 3%] Building C object dep/jemalloc/CMakeFiles/jemalloc.dir/src/chunk_dss.c.o
  224. In file included from /home/wow/ArkCORE-NG/src/server/game/PrecompiledHeaders/gamePCH.cpp:1:
  225. In file included from /home/wow/ArkCORE-NG/src/server/game/PrecompiledHeaders/gamePCH.h:7:
  226. In file included from /home/wow/ArkCORE-NG/src/server/game/Maps/MapManager.h:23:
  227. In file included from /home/wow/ArkCORE-NG/src/server/game/Entities/Object/Object.h:24:
  228. /home/wow/ArkCORE-NG/src/server/game/Conditions/ConditionMgr.h:171:32: error:
  229. use of undeclared identifier 'nullptr'
  230. mLastFailedCondition = nullptr;
  231. ^
  232. [ 3%] Building CXX object dep/recastnavigation/Recast/CMakeFiles/Recast.dir/RecastLayers.cpp.o
  233. In file included from /home/wow/ArkCORE-NG/src/server/game/PrecompiledHeaders/gamePCH.cpp:1:
  234. In file included from /home/wow/ArkCORE-NG/src/server/game/PrecompiledHeaders/gamePCH.h:7:
  235. In file included from /home/wow/ArkCORE-NG/src/server/game/Maps/MapManager.h:23:
  236. In file included from /home/wow/ArkCORE-NG/src/server/game/Entities/Object/Object.h:25:
  237. In file included from /home/wow/ArkCORE-NG/src/server/game/Grids/GridReference.h:23:
  238. In file included from /home/wow/ArkCORE-NG/src/server/shared/Dynamic/LinkedReference/Reference.h:23:
  239. /home/wow/ArkCORE-NG/src/server/shared/Dynamic/LinkedList.h:58:69: error: use of
  240. undeclared identifier 'nullptr'
  241. ...iNext->iPrev = iPrev; iPrev->iNext = iNext; iNext = nullptr; iPrev = nul...
  242. ^
  243. /home/wow/ArkCORE-NG/src/server/shared/Dynamic/LinkedList.h:58:86: error: use of
  244. undeclared identifier 'nullptr'
  245. ...= iPrev; iPrev->iNext = iNext; iNext = nullptr; iPrev = nullptr;
  246. ^
  247. In file included from /home/wow/ArkCORE-NG/src/server/game/PrecompiledHeaders/gamePCH.cpp:1:
  248. In file included from /home/wow/ArkCORE-NG/src/server/game/PrecompiledHeaders/gamePCH.h:7:
  249. In file included from /home/wow/ArkCORE-NG/src/server/game/Maps/MapManager.h:23:
  250. In file included from /home/wow/ArkCORE-NG/src/server/game/Entities/Object/Object.h:25:
  251. In file included from /home/wow/ArkCORE-NG/src/server/game/Grids/GridReference.h:23:
  252. /home/wow/ArkCORE-NG/src/server/shared/Dynamic/LinkedReference/Reference.h:43:32: error:
  253. use of undeclared identifier 'nullptr'
  254. Reference() { iRefTo = nullptr; iRefFrom = nullptr; }
  255. ^
  256. /home/wow/ArkCORE-NG/src/server/shared/Dynamic/LinkedReference/Reference.h:43:52: error:
  257. use of undeclared identifier 'nullptr'
  258. Reference() { iRefTo = nullptr; iRefFrom = nullptr; }
  259. ^
  260. /home/wow/ArkCORE-NG/src/server/shared/Dynamic/LinkedReference/Reference.h:66:22: error:
  261. use of undeclared identifier 'nullptr'
  262. iRefTo = nullptr;
  263. ^
  264. /home/wow/ArkCORE-NG/src/server/shared/Dynamic/LinkedReference/Reference.h:67:24: error:
  265. use of undeclared identifier 'nullptr'
  266. iRefFrom = nullptr;
  267. ^
  268. /home/wow/ArkCORE-NG/src/server/shared/Dynamic/LinkedReference/Reference.h:76:22: error:
  269. use of undeclared identifier 'nullptr'
  270. iRefTo = nullptr;
  271. ^
  272. /home/wow/ArkCORE-NG/src/server/shared/Dynamic/LinkedReference/Reference.h:81:30: error:
  273. use of undeclared identifier 'nullptr'
  274. return iRefTo != nullptr;
  275. ^
  276. In file included from /home/wow/ArkCORE-NG/src/server/game/PrecompiledHeaders/gamePCH.cpp:1:
  277. In file included from /home/wow/ArkCORE-NG/src/server/game/PrecompiledHeaders/gamePCH.h:7:
  278. In file included from /home/wow/ArkCORE-NG/src/server/game/Maps/MapManager.h:23:
  279. In file included from /home/wow/ArkCORE-NG/src/server/game/Entities/Object/Object.h:26:
  280. In file included from /home/wow/ArkCORE-NG/src/server/game/Maps/Map.h:27:
  281. In file included from /home/wow/ArkCORE-NG/src/server/game/DataStores/DBCStructure.h:27:
  282. In file included from /home/wow/ArkCORE-NG/src/server/shared/Utilities/Util.h:25:
  283. In file included from /home/wow/ArkCORE-NG/src/server/shared/Utilities/Random.h:24:
  284. /home/wow/ArkCORE-NG/src/server/shared/Utilities/Duration.h:25:14: error: no
  285. member named 'chrono' in namespace 'std'
  286. typedef std::chrono::milliseconds Milliseconds;
  287. ~~~~~^
  288. /home/wow/ArkCORE-NG/src/server/shared/Utilities/Duration.h:28:14: error: no
  289. member named 'chrono' in namespace 'std'
  290. typedef std::chrono::seconds Seconds;
  291. ~~~~~^
  292. /home/wow/ArkCORE-NG/src/server/shared/Utilities/Duration.h:31:14: error: no
  293. member named 'chrono' in namespace 'std'
  294. typedef std::chrono::minutes Minutes;
  295. ~~~~~^
  296. /home/wow/ArkCORE-NG/src/server/shared/Utilities/Duration.h:34:14: error: no
  297. member named 'chrono' in namespace 'std'
  298. typedef std::chrono::hours Hours;
  299. ~~~~~^
  300. In file included from /home/wow/ArkCORE-NG/src/server/game/PrecompiledHeaders/gamePCH.cpp:1:
  301. In file included from /home/wow/ArkCORE-NG/src/server/game/PrecompiledHeaders/gamePCH.h:7:
  302. In file included from /home/wow/ArkCORE-NG/src/server/game/Maps/MapManager.h:23:
  303. In file included from /home/wow/ArkCORE-NG/src/server/game/Entities/Object/Object.h:26:
  304. In file included from /home/wow/ArkCORE-NG/src/server/game/Maps/Map.h:27:
  305. In file included from /home/wow/ArkCORE-NG/src/server/game/DataStores/DBCStructure.h:27:
  306. In file included from /home/wow/ArkCORE-NG/src/server/shared/Utilities/Util.h:25:
  307. /home/wow/ArkCORE-NG/src/server/shared/Utilities/Random.h:101:41: warning:
  308. alias declarations are a C++11 extension [-Wc++11-extensions]
  309. using discrete_distribution_param = typename std::discrete_distribut...
  310. ^
  311. /home/wow/ArkCORE-NG/src/server/shared/Utilities/Random.h:101:55: error: no type
  312. named 'discrete_distribution' in namespace 'std'
  313. ...discrete_distribution_param = typename std::discrete_distribution::pa...
  314. ~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~
  315. /home/wow/ArkCORE-NG/src/server/shared/Utilities/Random.h:101:49: error:
  316. expected ';' after alias declaration
  317. using discrete_distribution_param = typename std::discrete_distribut...
  318. ^
  319. ;
  320. [ 3%] Building C object dep/jemalloc/CMakeFiles/jemalloc.dir/src/chunk_mmap.c.o
  321. In file included from /home/wow/ArkCORE-NG/src/server/game/PrecompiledHeaders/gamePCH.cpp:1:
  322. In file included from /home/wow/ArkCORE-NG/src/server/game/PrecompiledHeaders/gamePCH.h:7:
  323. In file included from /home/wow/ArkCORE-NG/src/server/game/Maps/MapManager.h:23:
  324. In file included from /home/wow/ArkCORE-NG/src/server/game/Entities/Object/Object.h:26:
  325. In file included from /home/wow/ArkCORE-NG/src/server/game/Maps/Map.h:27:
  326. /home/wow/ArkCORE-NG/src/server/game/DataStores/DBCStructure.h:2712:14: error:
  327. no type named 'unordered_map' in namespace 'std'
  328. typedef std::unordered_map<uint16, std::set> PhaseGroupContainer;
  329. ~~~~~^
  330. fatal error: too many errors emitted, stopping now [-ferror-limit=]
  331. [ 3%] Building C object dep/jemalloc/CMakeFiles/jemalloc.dir/src/ckh.c.o
  332. [ 3%] Building C object dep/jemalloc/CMakeFiles/jemalloc.dir/src/ctl.c.o
  333. [ 3%] Building CXX object dep/recastnavigation/Recast/CMakeFiles/Recast.dir/RecastMesh.cpp.o
  334. 1 warning and 20 errors generated.
  335. src/server/game/CMakeFiles/gamePCH.cpp_dephelp.dir/build.make:62: recipe for target 'src/server/game/CMakeFiles/gamePCH.cpp_dephelp.dir/PrecompiledHeaders/gamePCH.cpp.o' failed
  336. make[2]: *** [src/server/game/CMakeFiles/gamePCH.cpp_dephelp.dir/PrecompiledHeaders/gamePCH.cpp.o] Error 1
  337. CMakeFiles/Makefile2:722: recipe for target 'src/server/game/CMakeFiles/gamePCH.cpp_dephelp.dir/all' failed
  338. make[1]: *** [src/server/game/CMakeFiles/gamePCH.cpp_dephelp.dir/all] Error 2
  339. [ 3%] Building CXX object dep/recastnavigation/Recast/CMakeFiles/Recast.dir/RecastMeshDetail.cpp.o
  340. [ 3%] Building C object dep/jemalloc/CMakeFiles/jemalloc.dir/src/extent.c.o
  341. [ 3%] Building CXX object dep/g3dlite/CMakeFiles/g3dlib.dir/source/BinaryOutput.cpp.o
  342. [ 3%] Building CXX object dep/recastnavigation/Detour/CMakeFiles/Detour.dir/DetourNode.cpp.o
  343. [ 3%] Linking CXX static library libDetour.a
  344. [ 3%] Built target Detour
  345. [ 3%] Building CXX object dep/g3dlite/CMakeFiles/g3dlib.dir/source/Box.cpp.o
  346. [ 3%] Building C object dep/jemalloc/CMakeFiles/jemalloc.dir/src/hash.c.o
  347. [ 3%] Building C object dep/jemalloc/CMakeFiles/jemalloc.dir/src/huge.c.o
  348. [ 3%] Building CXX object dep/recastnavigation/Recast/CMakeFiles/Recast.dir/RecastRasterization.cpp.o
  349. [ 3%] Building C object dep/jemalloc/CMakeFiles/jemalloc.dir/src/jemalloc.c.o
  350. [ 3%] Building CXX object dep/g3dlite/CMakeFiles/g3dlib.dir/source/Capsule.cpp.o
  351. [ 3%] Building CXX object dep/g3dlite/CMakeFiles/g3dlib.dir/source/CollisionDetection.cpp.o
  352. [ 4%] Building C object dep/jemalloc/CMakeFiles/jemalloc.dir/src/mb.c.o
  353. [ 4%] Building CXX object dep/recastnavigation/Recast/CMakeFiles/Recast.dir/RecastRegion.cpp.o
  354. [ 4%] Building CXX object dep/g3dlite/CMakeFiles/g3dlib.dir/source/CoordinateFrame.cpp.o
  355. [ 4%] Building CXX object dep/g3dlite/CMakeFiles/g3dlib.dir/source/Crypto.cpp.o
  356. [ 4%] Building C object dep/jemalloc/CMakeFiles/jemalloc.dir/src/mutex.c.o
  357. [ 4%] Building CXX object dep/g3dlite/CMakeFiles/g3dlib.dir/source/Cylinder.cpp.o
  358. [ 4%] Building C object dep/jemalloc/CMakeFiles/jemalloc.dir/src/prof.c.o
  359. [ 4%] Building CXX object dep/g3dlite/CMakeFiles/g3dlib.dir/source/debugAssert.cpp.o
  360. [ 4%] Building CXX object dep/g3dlite/CMakeFiles/g3dlib.dir/source/FileSystem.cpp.o
  361. [ 5%] Building CXX object dep/g3dlite/CMakeFiles/g3dlib.dir/source/fileutils.cpp.o
  362. [ 5%] Building CXX object dep/g3dlite/CMakeFiles/g3dlib.dir/source/format.cpp.o
  363. [ 5%] Linking CXX static library libRecast.a
  364. [ 5%] Built target Recast
  365. [ 5%] Building CXX object dep/g3dlite/CMakeFiles/g3dlib.dir/source/g3dfnmatch.cpp.o
  366. [ 5%] Building C object dep/jemalloc/CMakeFiles/jemalloc.dir/src/quarantine.c.o
  367. [ 5%] Building CXX object dep/g3dlite/CMakeFiles/g3dlib.dir/source/g3dmath.cpp.o
  368. [ 5%] Building C object dep/jemalloc/CMakeFiles/jemalloc.dir/src/rtree.c.o
  369. [ 5%] Building CXX object dep/g3dlite/CMakeFiles/g3dlib.dir/source/Line.cpp.o
  370. 3 warnings generated.
  371. [ 5%] Linking CXX static library libgsoap.a
  372. [ 5%] Built target gsoap
  373. [ 5%] Building C object dep/jemalloc/CMakeFiles/jemalloc.dir/src/stats.c.o
  374. [ 5%] Building CXX object dep/g3dlite/CMakeFiles/g3dlib.dir/source/LineSegment.cpp.o
  375. [ 5%] Building C object dep/jemalloc/CMakeFiles/jemalloc.dir/src/tcache.c.o
  376. [ 5%] Building C object dep/jemalloc/CMakeFiles/jemalloc.dir/src/tsd.c.o
  377. [ 5%] Building C object dep/jemalloc/CMakeFiles/jemalloc.dir/src/util.c.o
  378. [ 5%] Building CXX object dep/g3dlite/CMakeFiles/g3dlib.dir/source/Log.cpp.o
  379. [ 5%] Building CXX object dep/g3dlite/CMakeFiles/g3dlib.dir/source/Matrix3.cpp.o
  380. [ 5%] Building CXX object dep/g3dlite/CMakeFiles/g3dlib.dir/source/Matrix4.cpp.o
  381. [ 5%] Building CXX object dep/g3dlite/CMakeFiles/g3dlib.dir/source/MemoryManager.cpp.o
  382. [ 5%] Building CXX object dep/g3dlite/CMakeFiles/g3dlib.dir/source/PhysicsFrame.cpp.o
  383. [ 5%] Building CXX object dep/g3dlite/CMakeFiles/g3dlib.dir/source/Plane.cpp.o
  384. [ 6%] Building CXX object dep/g3dlite/CMakeFiles/g3dlib.dir/source/prompt.cpp.o
  385. [ 6%] Linking C static library libjemalloc.a
  386. [ 6%] Building CXX object dep/g3dlite/CMakeFiles/g3dlib.dir/source/Quat.cpp.o
  387. [ 6%] Built target jemalloc
  388. [ 6%] Building CXX object dep/g3dlite/CMakeFiles/g3dlib.dir/source/Random.cpp.o
  389. [ 6%] Building CXX object dep/g3dlite/CMakeFiles/g3dlib.dir/source/Ray.cpp.o
  390. [ 6%] Building CXX object dep/g3dlite/CMakeFiles/g3dlib.dir/source/ReferenceCount.cpp.o
  391. [ 6%] Building CXX object dep/g3dlite/CMakeFiles/g3dlib.dir/source/RegistryUtil.cpp.o
  392. [ 6%] Building CXX object dep/g3dlite/CMakeFiles/g3dlib.dir/source/Sphere.cpp.o
  393. [ 6%] Building CXX object dep/g3dlite/CMakeFiles/g3dlib.dir/source/stringutils.cpp.o
  394. [ 6%] Building CXX object dep/g3dlite/CMakeFiles/g3dlib.dir/source/TextOutput.cpp.o
  395. [ 6%] Building CXX object dep/g3dlite/CMakeFiles/g3dlib.dir/source/TextInput.cpp.o
  396. [ 6%] Building CXX object dep/g3dlite/CMakeFiles/g3dlib.dir/source/System.cpp.o
  397. [ 6%] Building CXX object dep/g3dlite/CMakeFiles/g3dlib.dir/source/Triangle.cpp.o
  398. [ 7%] Building CXX object dep/g3dlite/CMakeFiles/g3dlib.dir/source/uint128.cpp.o
  399. [ 7%] Building CXX object dep/g3dlite/CMakeFiles/g3dlib.dir/source/UprightFrame.cpp.o
  400. [ 7%] Building CXX object dep/g3dlite/CMakeFiles/g3dlib.dir/source/Vector2.cpp.o
  401. [ 7%] Building CXX object dep/g3dlite/CMakeFiles/g3dlib.dir/source/Vector3.cpp.o
  402. [ 7%] Building CXX object dep/g3dlite/CMakeFiles/g3dlib.dir/source/Vector4.cpp.o
  403. [ 7%] Linking CXX static library libg3dlib.a
  404. [ 7%] Built target g3dlib
  405. Makefile:129: recipe for target 'all' failed
  406. make: *** [all] Error 2
  407. wow@XXXXXXXXXX:~/ArkCORE-NG/build$
  408.  
  409. Using:
  410. Debian 9
  411.  
  412. Cmake info:
  413.  
  414. This is the CMakeCache file.
  415. For build in directory: /home/wow/ArkCORE-NG/build
  416. It was generated by CMake: /usr/local/bin/cmake
  417. You can edit this file to change values found and used by cmake.
  418. If you do not want to change any of the values, simply exit the editor.
  419. If you do want to change a value, simply edit, save, and exit the editor.
  420. The syntax for the file is as follows:
  421. KEY:TYPE=VALUE
  422. KEY is the name of a variable in the cache.
  423. TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!.
  424. VALUE is the current value for the KEY.
  425. ########################
  426.  
  427. EXTERNAL cache entries
  428. ########################
  429.  
  430. //Specify include-directories that might contain ace.h here.
  431. ACE_INCLUDE_DIR:PATH=/usr/include
  432.  
  433. //Specify library-locations that might contain the ACE library
  434. // here.
  435. ACE_LIBRARY:FILEPATH=/usr/lib/libACE.so
  436.  
  437. //Value Computed by CMake
  438. ArkCORE4-NG_BINARY_DIR:STATIC=/home/wow/ArkCORE-NG/build
  439.  
  440. //Value Computed by CMake
  441. ArkCORE4-NG_SOURCE_DIR:STATIC=/home/wow/ArkCORE-NG
  442.  
  443. //Path to a file.
  444. BZIP2_INCLUDE_DIR:PATH=/usr/include
  445.  
  446. //Path to a library.
  447. BZIP2_LIBRARY_DEBUG:FILEPATH=BZIP2_LIBRARY_DEBUG-NOTFOUND
  448.  
  449. //Path to a library.
  450. BZIP2_LIBRARY_RELEASE:FILEPATH=/usr/lib/x86_64-linux-gnu/libbz2.so
  451.  
  452. //Path to a program.
  453. CMAKE_AR:FILEPATH=/usr/bin/ar
  454.  
  455. //Choose the type of build, options are: None Debug Release RelWithDebInfo
  456. // MinSizeRel ...
  457. CMAKE_BUILD_TYPE:STRING=
  458.  
  459. //Enable/Disable color output during build.
  460. CMAKE_COLOR_MAKEFILE:BOOL=ON
  461.  
  462. //CXX compiler
  463. CMAKE_CXX_COMPILER:FILEPATH=/usr/bin/c++
  464.  
  465. //LLVM archiver
  466. CMAKE_CXX_COMPILER_AR:FILEPATH=/usr/bin/llvm-ar-3.8
  467.  
  468. //Generate index for LLVM archive
  469. CMAKE_CXX_COMPILER_RANLIB:FILEPATH=/usr/bin/llvm-ranlib-3.8
  470.  
  471. //Flags used by the CXX compiler during all build types.
  472. CMAKE_CXX_FLAGS:STRING=
  473.  
  474. //Flags used by the CXX compiler during DEBUG builds.
  475. CMAKE_CXX_FLAGS_DEBUG:STRING=-g
  476.  
  477. //Flags used by the CXX compiler during MINSIZEREL builds.
  478. CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG
  479.  
  480. //Flags used by the CXX compiler during RELEASE builds.
  481. CMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG
  482.  
  483. //Flags used by the CXX compiler during RELWITHDEBINFO builds.
  484. CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG
  485.  
  486. //C compiler
  487. CMAKE_C_COMPILER:FILEPATH=/usr/bin/cc
  488.  
  489. //LLVM archiver
  490. CMAKE_C_COMPILER_AR:FILEPATH=/usr/bin/llvm-ar-3.8
  491.  
  492. //Generate index for LLVM archive
  493. CMAKE_C_COMPILER_RANLIB:FILEPATH=/usr/bin/llvm-ranlib-3.8
  494.  
  495. //Flags used by the C compiler during all build types.
  496. CMAKE_C_FLAGS:STRING=
  497.  
  498. //Flags used by the C compiler during DEBUG builds.
  499. CMAKE_C_FLAGS_DEBUG:STRING=-g
  500.  
  501. //Flags used by the C compiler during MINSIZEREL builds.
  502. CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG
  503.  
  504. //Flags used by the C compiler during RELEASE builds.
  505. CMAKE_C_FLAGS_RELEASE:STRING=-O3 -DNDEBUG
  506.  
  507. //Flags used by the C compiler during RELWITHDEBINFO builds.
  508. CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG
  509.  
  510. //Flags used by the linker during all build types.
  511. CMAKE_EXE_LINKER_FLAGS:STRING=
  512.  
  513. //Flags used by the linker during DEBUG builds.
  514. CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING=
  515.  
  516. //Flags used by the linker during MINSIZEREL builds.
  517. CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING=
  518.  
  519. //Flags used by the linker during RELEASE builds.
  520. CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING=
  521.  
  522. //Flags used by the linker during RELWITHDEBINFO builds.
  523. CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING=
  524.  
  525. //Enable/Disable output of compile commands during generation.
  526. CMAKE_EXPORT_COMPILE_COMMANDS:BOOL=OFF
  527.  
  528. //Install path prefix, prepended onto install directories.
  529. CMAKE_INSTALL_PREFIX:PATH=/home/wow/server-dev
  530.  
  531. //Path to a program.
  532. CMAKE_LINKER:FILEPATH=/usr/bin/ld
  533.  
  534. //Path to a program.
  535. CMAKE_MAKE_PROGRAM:FILEPATH=/usr/bin/make
  536.  
  537. //Flags used by the linker during the creation of modules during
  538. // all build types.
  539. CMAKE_MODULE_LINKER_FLAGS:STRING=
  540.  
  541. //Flags used by the linker during the creation of modules during
  542. // DEBUG builds.
  543. CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING=
  544.  
  545. //Flags used by the linker during the creation of modules during
  546. // MINSIZEREL builds.
  547. CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING=
  548.  
  549. //Flags used by the linker during the creation of modules during
  550. // RELEASE builds.
  551. CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING=
  552.  
  553. //Flags used by the linker during the creation of modules during
  554. // RELWITHDEBINFO builds.
  555. CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING=
  556.  
  557. //Path to a program.
  558. CMAKE_NM:FILEPATH=/usr/bin/nm
  559.  
  560. //Path to a program.
  561. CMAKE_OBJCOPY:FILEPATH=/usr/bin/objcopy
  562.  
  563. //Path to a program.
  564. CMAKE_OBJDUMP:FILEPATH=/usr/bin/objdump
  565.  
  566. //Value Computed by CMake
  567. CMAKE_PROJECT_DESCRIPTION:STATIC=
  568.  
  569. //Value Computed by CMake
  570. CMAKE_PROJECT_HOMEPAGE_URL:STATIC=
  571.  
  572. //Value Computed by CMake
  573. CMAKE_PROJECT_NAME:STATIC=ArkCORE4-NG
  574.  
  575. //Path to a program.
  576. CMAKE_RANLIB:FILEPATH=/usr/bin/ranlib
  577.  
  578. //Flags used by the linker during the creation of shared libraries
  579. // during all build types.
  580. CMAKE_SHARED_LINKER_FLAGS:STRING=
  581.  
  582. //Flags used by the linker during the creation of shared libraries
  583. // during DEBUG builds.
  584. CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING=
  585.  
  586. //Flags used by the linker during the creation of shared libraries
  587. // during MINSIZEREL builds.
  588. CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING=
  589.  
  590. //Flags used by the linker during the creation of shared libraries
  591. // during RELEASE builds.
  592. CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING=
  593.  
  594. //Flags used by the linker during the creation of shared libraries
  595. // during RELWITHDEBINFO builds.
  596. CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING=
  597.  
  598. //If set, runtime paths are not added when installing shared libraries,
  599. // but are added when building.
  600. CMAKE_SKIP_INSTALL_RPATH:BOOL=NO
  601.  
  602. //If set, runtime paths are not added when using shared libraries.
  603. CMAKE_SKIP_RPATH:BOOL=NO
  604.  
  605. //Flags used by the linker during the creation of static libraries
  606. // during all build types.
  607. CMAKE_STATIC_LINKER_FLAGS:STRING=
  608.  
  609. //Flags used by the linker during the creation of static libraries
  610. // during DEBUG builds.
  611. CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING=
  612.  
  613. //Flags used by the linker during the creation of static libraries
  614. // during MINSIZEREL builds.
  615. CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING=
  616.  
  617. //Flags used by the linker during the creation of static libraries
  618. // during RELEASE builds.
  619. CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING=
  620.  
  621. //Flags used by the linker during the creation of static libraries
  622. // during RELWITHDEBINFO builds.
  623. CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING=
  624.  
  625. //Path to a program.
  626. CMAKE_STRIP:FILEPATH=/usr/bin/strip
  627.  
  628. //If this value is on, makefiles will be generated without the
  629. // .SILENT directive, and all commands will be echoed to the console
  630. // during the make. This is useful for debugging only. With Visual
  631. // Studio IDE projects all commands are done without /nologo.
  632. CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE
  633.  
  634. //Dependencies for the target
  635. Detour_LIB_DEPENDS:STATIC=general;/usr/lib/x86_64-linux-gnu/libz.so;
  636.  
  637. //Full path to git commandline client
  638. GIT_EXECUTABLE:FILEPATH=/usr/bin/git
  639.  
  640. //INTERNAL
  641. MYSQL_ADD_INCLUDE_PATH:FILEPATH=/usr/include/mysql
  642.  
  643. //Path to a program.
  644. MYSQL_CONFIG:FILEPATH=/usr/bin/mysql_config
  645.  
  646. //preferred path to MySQL (mysql_config)
  647. MYSQL_CONFIG_PREFER_PATH:FILEPATH=/bin
  648.  
  649. //if more libraries are necessary to link in a MySQL client (typically
  650. // zlib), specify them here.
  651. MYSQL_EXTRA_LIBRARIES:FILEPATH=/usr/lib/x86_64-linux-gnu/libz.so
  652.  
  653. //Specify the directory containing mysql.h.
  654. MYSQL_INCLUDE_DIR:PATH=/usr/include/mysql
  655.  
  656. //Specify the location of the mysql library here.
  657. MYSQL_LIBRARY:FILEPATH=/usr/lib/x86_64-linux-gnu/libmariadbclient.so
  658.  
  659. //Path to a library.
  660. OPENSSL_CRYPTO_LIBRARIES:FILEPATH=/usr/lib/x86_64-linux-gnu/libcrypto.so
  661.  
  662. //Path to a file.
  663. OPENSSL_INCLUDE_DIR:PATH=/usr/include
  664.  
  665. //Path to a file.
  666. OPENSSL_ROOT_DIR:PATH=/usr
  667.  
  668. //Path to a library.
  669. OPENSSL_SSL_LIBRARIES:FILEPATH=/usr/lib/x86_64-linux-gnu/libssl.so
  670.  
  671. //Path to a file.
  672. READLINE_INCLUDE_DIR:PATH=/usr/include
  673.  
  674. //Path to a library.
  675. READLINE_LIBRARY:FILEPATH=/usr/lib/x86_64-linux-gnu/libreadline.so
  676.  
  677. //Dependencies for the target
  678. Recast_LIB_DEPENDS:STATIC=general;/usr/lib/x86_64-linux-gnu/libz.so;
  679.  
  680. //Build core with scripts included
  681. SCRIPTS:BOOL=ON
  682.  
  683. //Build worldserver and authserver
  684. SERVERS:BOOL=ON
  685.  
  686. //Build map/vmap/mmap extraction/assembler tools
  687. TOOLS:BOOL=0
  688.  
  689. //Use precompiled headers when compiling servers
  690. USE_COREPCH:BOOL=ON
  691.  
  692. //Use precompiled headers when compiling scripts
  693. USE_SCRIPTPCH:BOOL=ON
  694.  
  695. //Disable the GIT testing routines
  696. WITHOUT_GIT:BOOL=OFF
  697.  
  698. //Include additional debug-code in core
  699. WITH_COREDEBUG:BOOL=OFF
  700.  
  701. //Build meshextractor (alpha)
  702. WITH_MESHEXTRACTOR:BOOL=OFF
  703.  
  704. //Show all warnings during compile
  705. WITH_WARNINGS:BOOL=0
  706.  
  707. //Path to a file.
  708. ZLIB_INCLUDE_DIR:PATH=/usr/include
  709.  
  710. //Path to a library.
  711. ZLIB_LIBRARY_DEBUG:FILEPATH=ZLIB_LIBRARY_DEBUG-NOTFOUND
  712.  
  713. //Path to a library.
  714. ZLIB_LIBRARY_RELEASE:FILEPATH=/usr/lib/x86_64-linux-gnu/libz.so
  715.  
  716. //Dependencies for the target
  717. collision_LIB_DEPENDS:STATIC=general;shared;
  718.  
  719. //Dependencies for the target
  720. g3dlib_LIB_DEPENDS:STATIC=general;/usr/lib/x86_64-linux-gnu/libz.so;
  721.  
  722. //Dependencies for the target
  723. shared_LIB_DEPENDS:STATIC=general;/usr/lib/libACE.so;
  724.  
  725. ########################
  726.  
  727. INTERNAL cache entries
  728. ########################
  729.  
  730. //ADVANCED property for variable: ACE_INCLUDE_DIR
  731. ACE_INCLUDE_DIR-ADVANCED:INTERNAL=1
  732. //ADVANCED property for variable: ACE_LIBRARY
  733. ACE_LIBRARY-ADVANCED:INTERNAL=1
  734. //ADVANCED property for variable: BZIP2_INCLUDE_DIR
  735. BZIP2_INCLUDE_DIR-ADVANCED:INTERNAL=1
  736. //ADVANCED property for variable: BZIP2_LIBRARY_DEBUG
  737. BZIP2_LIBRARY_DEBUG-ADVANCED:INTERNAL=1
  738. //ADVANCED property for variable: BZIP2_LIBRARY_RELEASE
  739. BZIP2_LIBRARY_RELEASE-ADVANCED:INTERNAL=1
  740. //Have symbol BZ2_bzCompressInit
  741. BZIP2_NEED_PREFIX:INTERNAL=1
  742. //ADVANCED property for variable: CMAKE_AR
  743. CMAKE_AR-ADVANCED:INTERNAL=1
  744. //This is the directory where this CMakeCache.txt was created
  745. CMAKE_CACHEFILE_DIR:INTERNAL=/home/wow/ArkCORE-NG/build
  746. //Major version of cmake used to create the current loaded cache
  747. CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3
  748. //Minor version of cmake used to create the current loaded cache
  749. CMAKE_CACHE_MINOR_VERSION:INTERNAL=13
  750. //Patch version of cmake used to create the current loaded cache
  751. CMAKE_CACHE_PATCH_VERSION:INTERNAL=0
  752. //ADVANCED property for variable: CMAKE_COLOR_MAKEFILE
  753. CMAKE_COLOR_MAKEFILE-ADVANCED:INTERNAL=1
  754. //Path to CMake executable.
  755. CMAKE_COMMAND:INTERNAL=/usr/local/bin/cmake
  756. //Path to cpack program executable.
  757. CMAKE_CPACK_COMMAND:INTERNAL=/usr/local/bin/cpack
  758. //Path to ctest program executable.
  759. CMAKE_CTEST_COMMAND:INTERNAL=/usr/local/bin/ctest
  760. //ADVANCED property for variable: CMAKE_CXX_COMPILER
  761. CMAKE_CXX_COMPILER-ADVANCED:INTERNAL=1
  762. //ADVANCED property for variable: CMAKE_CXX_COMPILER_AR
  763. CMAKE_CXX_COMPILER_AR-ADVANCED:INTERNAL=1
  764. //ADVANCED property for variable: CMAKE_CXX_COMPILER_RANLIB
  765. CMAKE_CXX_COMPILER_RANLIB-ADVANCED:INTERNAL=1
  766. //ADVANCED property for variable: CMAKE_CXX_FLAGS
  767. CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1
  768. //ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG
  769. CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1
  770. //ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL
  771. CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
  772. //ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE
  773. CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1
  774. //ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO
  775. CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
  776. //ADVANCED property for variable: CMAKE_C_COMPILER
  777. CMAKE_C_COMPILER-ADVANCED:INTERNAL=1
  778. //ADVANCED property for variable: CMAKE_C_COMPILER_AR
  779. CMAKE_C_COMPILER_AR-ADVANCED:INTERNAL=1
  780. //ADVANCED property for variable: CMAKE_C_COMPILER_RANLIB
  781. CMAKE_C_COMPILER_RANLIB-ADVANCED:INTERNAL=1
  782. //ADVANCED property for variable: CMAKE_C_FLAGS
  783. CMAKE_C_FLAGS-ADVANCED:INTERNAL=1
  784. //ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG
  785. CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1
  786. //ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL
  787. CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
  788. //ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE
  789. CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1
  790. //ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO
  791. CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
  792. //Path to cache edit program executable.
  793. CMAKE_EDIT_COMMAND:INTERNAL=/usr/local/bin/ccmake
  794. //Executable file format
  795. CMAKE_EXECUTABLE_FORMAT:INTERNAL=ELF
  796. //ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS
  797. CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1
  798. //ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG
  799. CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
  800. //ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL
  801. CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
  802. //ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE
  803. CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
  804. //ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO
  805. CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
  806. //ADVANCED property for variable: CMAKE_EXPORT_COMPILE_COMMANDS
  807. CMAKE_EXPORT_COMPILE_COMMANDS-ADVANCED:INTERNAL=1
  808. //Name of external makefile project generator.
  809. CMAKE_EXTRA_GENERATOR:INTERNAL=
  810. //Name of generator.
  811. CMAKE_GENERATOR:INTERNAL=Unix Makefiles
  812. //Generator instance identifier.
  813. CMAKE_GENERATOR_INSTANCE:INTERNAL=
  814. //Name of generator platform.
  815. CMAKE_GENERATOR_PLATFORM:INTERNAL=
  816. //Name of generator toolset.
  817. CMAKE_GENERATOR_TOOLSET:INTERNAL=
  818. //Have symbol pthread_create
  819. CMAKE_HAVE_LIBC_CREATE:INTERNAL=
  820. //Have library pthreads
  821. CMAKE_HAVE_PTHREADS_CREATE:INTERNAL=
  822. //Have library pthread
  823. CMAKE_HAVE_PTHREAD_CREATE:INTERNAL=1
  824. //Have include pthread.h
  825. CMAKE_HAVE_PTHREAD_H:INTERNAL=1
  826. //Source directory with the top level CMakeLists.txt file for this
  827. // project
  828. CMAKE_HOME_DIRECTORY:INTERNAL=/home/wow/ArkCORE-NG
  829. //Install .so files without execute permission.
  830. CMAKE_INSTALL_SO_NO_EXE:INTERNAL=1
  831. //ADVANCED property for variable: CMAKE_LINKER
  832. CMAKE_LINKER-ADVANCED:INTERNAL=1
  833. //ADVANCED property for variable: CMAKE_MAKE_PROGRAM
  834. CMAKE_MAKE_PROGRAM-ADVANCED:INTERNAL=1
  835. //ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS
  836. CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1
  837. //ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG
  838. CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
  839. //ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL
  840. CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
  841. //ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE
  842. CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
  843. //ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO
  844. CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
  845. //ADVANCED property for variable: CMAKE_NM
  846. CMAKE_NM-ADVANCED:INTERNAL=1
  847. //number of local generators
  848. CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=17
  849. //ADVANCED property for variable: CMAKE_OBJCOPY
  850. CMAKE_OBJCOPY-ADVANCED:INTERNAL=1
  851. //ADVANCED property for variable: CMAKE_OBJDUMP
  852. CMAKE_OBJDUMP-ADVANCED:INTERNAL=1
  853. //Platform information initialized
  854. CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1
  855. //ADVANCED property for variable: CMAKE_RANLIB
  856. CMAKE_RANLIB-ADVANCED:INTERNAL=1
  857. //Path to CMake installation.
  858. CMAKE_ROOT:INTERNAL=/usr/local/share/cmake-3.13
  859. //ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS
  860. CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1
  861. //ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG
  862. CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
  863. //ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL
  864. CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
  865. //ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE
  866. CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
  867. //ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO
  868. CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
  869. //ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH
  870. CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1
  871. //ADVANCED property for variable: CMAKE_SKIP_RPATH
  872. CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1
  873. //ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS
  874. CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1
  875. //ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG
  876. CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
  877. //ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL
  878. CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
  879. //ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE
  880. CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
  881. //ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO
  882. CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
  883. //ADVANCED property for variable: CMAKE_STRIP
  884. CMAKE_STRIP-ADVANCED:INTERNAL=1
  885. //uname command
  886. CMAKE_UNAME:INTERNAL=/bin/uname
  887. //ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE
  888. CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1
  889. //Details about finding BZip2
  890. FIND_PACKAGE_MESSAGE_DETAILS_BZip2:INTERNAL=[/usr/lib/x86_64-linux-gnu/libbz2.so][/usr/include][v1.0.6()]
  891. //Details about finding OpenSSL
  892. FIND_PACKAGE_MESSAGE_DETAILS_OpenSSL:INTERNAL=[/usr/lib/x86_64-linux-gnu/libssl.so;/usr/lib/x86_64-linux-gnu/libcrypto.so][/usr/include][v()]
  893. //Details about finding Threads
  894. FIND_PACKAGE_MESSAGE_DETAILS_Threads:INTERNAL=[TRUE][v()]
  895. //Details about finding ZLIB
  896. FIND_PACKAGE_MESSAGE_DETAILS_ZLIB:INTERNAL=[/usr/lib/x86_64-linux-gnu/libz.so][/usr/include][v1.2.8()]
  897. //ADVANCED property for variable: GIT_EXECUTABLE
  898. GIT_EXECUTABLE-ADVANCED:INTERNAL=1
  899. //ADVANCED property for variable: MYSQL_EXTRA_LIBRARIES
  900. MYSQL_EXTRA_LIBRARIES-ADVANCED:INTERNAL=1
  901. //ADVANCED property for variable: MYSQL_INCLUDE_DIR
  902. MYSQL_INCLUDE_DIR-ADVANCED:INTERNAL=1
  903. //ADVANCED property for variable: MYSQL_LIBRARY
  904. MYSQL_LIBRARY-ADVANCED:INTERNAL=1
  905. //ADVANCED property for variable: OPENSSL_CRYPTO_LIBRARIES
  906. OPENSSL_CRYPTO_LIBRARIES-ADVANCED:INTERNAL=1
  907. //ADVANCED property for variable: OPENSSL_INCLUDE_DIR
  908. OPENSSL_INCLUDE_DIR-ADVANCED:INTERNAL=1
  909. //ADVANCED property for variable: OPENSSL_ROOT_DIR
  910. OPENSSL_ROOT_DIR-ADVANCED:INTERNAL=1
  911. //ADVANCED property for variable: OPENSSL_SSL_LIBRARIES
  912. OPENSSL_SSL_LIBRARIES-ADVANCED:INTERNAL=1
  913. //ADVANCED property for variable: ZLIB_INCLUDE_DIR
  914. ZLIB_INCLUDE_DIR-ADVANCED:INTERNAL=1
  915. //ADVANCED property for variable: ZLIB_LIBRARY_DEBUG
  916. ZLIB_LIBRARY_DEBUG-ADVANCED:INTERNAL=1
  917. //ADVANCED property for variable: ZLIB_LIBRARY_RELEASE
  918. ZLIB_LIBRARY_RELEASE-ADVANCED:INTERNAL=1
  919. //Cached branch name
  920. rev_branch_cached:INTERNAL=master
  921. //Cached commit-hash
  922. rev_hash_cached:INTERNAL=a7304c3075bf
  923.  
  924. Anyone have any idea what can I do?
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement