Advertisement
Guest User

Untitled

a guest
Apr 7th, 2014
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 41.94 KB | None | 0 0
  1.  
  2. E:\osrm>SET PREFIX=e:/libs
  3.  
  4. E:\osrm>SET BOOST_ROOT=e:/libs/boost
  5.  
  6. E:\osrm>git clone https://github.com/alex85k/Project-OSRM.git Project-OSRM
  7.  
  8. E:\osrm>rem git clone https://github.com/alex85k/Project-OSRM.git Project-OSRM
  9.  
  10. E:\osrm>rem git clone https://github.com/DennisOSRM/Project-OSRM Project-OSRM
  11.  
  12. E:\osrm>cd Project-OSRM
  13.  
  14. E:\osrm\Project-OSRM>git checkout win-038
  15. Branch win-038 set up to track remote branch win-038 from origin.
  16.  
  17. E:\osrm\Project-OSRM>rem git checkout develop
  18.  
  19. E:\osrm\Project-OSRM>mkdir build
  20.  
  21. E:\osrm\Project-OSRM>cd build
  22.  
  23. E:\osrm\Project-OSRM\build>cmake .. -G "NMake Makefiles" -DCMAKE_BUILD_TYPE=Release -DBZIP2_LIBRARIES=e:/libs/lib/libbz2.lib -DCMAKE_INSTALL_PREFIX=e:/libs -DBOOST_ROOT=e:/libs/boost -DBoost_USE_STATIC_LIBS=ON
  24. -- The C compiler identification is MSVC 18.0.21005.1
  25. -- The CXX compiler identification is MSVC 18.0.21005.1
  26. -- Check for working C compiler: C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/bin/x86_amd64/cl.exe
  27. -- Check for working C compiler: C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/bin/x86_amd64/cl.exe -- works
  28. -- Detecting C compiler ABI info
  29. -- Detecting C compiler ABI info - done
  30. -- Check for working CXX compiler: C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/bin/x86_amd64/cl.exe
  31. -- Check for working CXX compiler: C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/bin/x86_amd64/cl.exe -- works
  32. -- Detecting CXX compiler ABI info
  33. -- Detecting CXX compiler ABI info - done
  34. -- Building on a 64 bit system
  35. -- Windows build, some more boost libraries are used
  36. -- Configuring OSRM in release mode
  37. -- Performing Test HAS_LTO_FLAG
  38. -- Performing Test HAS_LTO_FLAG - Failed
  39. -- Performing Test HAS_LTO_PARTITION_FLAG
  40. -- Performing Test HAS_LTO_PARTITION_FLAG - Failed
  41. -- Boost version: 1.55.0
  42. -- Found the following Boost libraries:
  43. -- date_time
  44. -- filesystem
  45. -- iostreams
  46. -- program_options
  47. -- regex
  48. -- system
  49. -- thread
  50. -- chrono
  51. -- zlib
  52. -- Looking for include file pthread.h
  53. -- Looking for include file pthread.h - not found
  54. -- Found Threads: TRUE
  55. -- Found Lua52: e:/libs/lib/lua.lib
  56. -- Looking for LuaJIT 5.2
  57. -- Could NOT find LUAJIT (missing: LUAJIT_LIBRARIES)
  58. -- Found LibXml2: e:/libs/lib/libxml2.lib (found version "2.9.1")
  59. -- Looking for Luabind...
  60. -- Found Luabind: e:/libs/lib/luabind.lib
  61. -- Found Luabind: e:/libs/lib/luabind.lib
  62. -- Looking for STXXL...
  63. -- Found STXXL: e:/libs/lib/stxxl.lib
  64. -- Found STXXL: e:/libs/lib/stxxl.lib
  65. -- Looking for OSMPBF...
  66. -- Found OSMPBF: e:/libs/lib/osmpbf.lib
  67. -- Found OSMPBF: e:/libs/lib/osmpbf.lib
  68. -- Found PROTOBUF: e:/libs/lib/protobuf.lib
  69. -- Found BZip2: e:/libs/lib/libbz2.lib (found version "1.0.6")
  70. -- Looking for BZ2_bzCompressInit in e:/libs/lib/libbz2.lib
  71. -- Looking for BZ2_bzCompressInit in e:/libs/lib/libbz2.lib - not found
  72. -- Found ZLIB: e:/libs/lib/zlib.lib (found version "1.2.8")
  73. -- Activating OSRM internal tools
  74. -- Could NOT find GDAL (missing: GDAL_LIBRARY GDAL_INCLUDE_DIR)
  75. -- Configuring done
  76. -- Generating done
  77. -- Build files have been written to: E:/osrm/Project-OSRM/build
  78.  
  79. E:\osrm\Project-OSRM\build>nmake
  80. Scanning dependencies of target COORDLIB
  81. [ 2%] Building CXX object CMakeFiles/COORDLIB.dir/DataStructures/Coordinate.cpp.obj
  82. Coordinate.cpp
  83. Linking CXX static library COORDLIB.lib
  84. [ 2%] Built target COORDLIB
  85. Scanning dependencies of target GITDESCRIPTION
  86. [ 5%] Building CXX object CMakeFiles/GITDESCRIPTION.dir/Util/GitDescription.cpp.obj
  87. GitDescription.cpp
  88. Linking CXX static library GITDESCRIPTION.lib
  89. [ 5%] Built target GITDESCRIPTION
  90. [ 8%] Configuring UUID.cpp
  91. Scanning dependencies of target OSRM
  92. [ 11%] Building CXX object CMakeFiles/OSRM.dir/Library/OSRM_impl.cpp.obj
  93. OSRM_impl.cpp
  94. Please define _WIN32_WINNT or _WIN32_WINDOWS appropriately. For example:
  95. - add -D_WIN32_WINNT=0x0501 to the compiler command line; or
  96. - add _WIN32_WINNT=0x0501 to your project's Preprocessor Definitions.
  97. Assuming _WIN32_WINNT=0x0501 (i.e. Windows XP target).
  98. E:\osrm\Project-OSRM\Include\osrm/RouteParameters.h(119) : warning C4244: 'initializing' : conversion from 'const double' to 'int', possible loss of data
  99. E:\osrm\Project-OSRM\Include\osrm/RouteParameters.h(120) : warning C4244: 'initializing' : conversion from 'const double' to 'int', possible loss of data
  100. e:\osrm\project-osrm\library\../Plugins/HelloWorldPlugin.h(68) : warning C4267: 'argument' : conversion from 'size_t' to 'const int', possible loss of data
  101. e:\osrm\project-osrm\library\../Plugins/HelloWorldPlugin.h(84) : warning C4267: 'argument' : conversion from 'size_t' to 'const int', possible loss of data
  102. e:\osrm\project-osrm\descriptors\DescriptionFactory.h(73) : warning C4244: 'argument' : conversion from 'double' to 'const int', possible loss of data
  103. e:\osrm\project-osrm\server\datastructures\../../DataStructures/EdgeBasedNode.h(172) : warning C4244: 'argument' : conversion from 'const double' to 'int', possible loss of data
  104. e:\osrm\project-osrm\server\datastructures\../../DataStructures/EdgeBasedNode.h(172) : warning C4244: 'argument' : conversion from 'double' to 'int', possible loss of data
  105. e:\osrm\project-osrm\datastructures\QueryNode.h(57) : warning C4244: 'argument' : conversion from 'const double' to 'int', possible loss of data
  106. e:\osrm\project-osrm\datastructures\QueryNode.h(65) : warning C4244: 'argument' : conversion from 'const double' to 'int', possible loss of data
  107. e:\osrm\project-osrm\datastructures\SharedMemoryFactory.h(315) : warning C4101: 'lock_file' : unreferenced local variable
  108. e:\osrm\project-osrm\datastructures\../Util/TimingUtil.h(57) : warning C4244: '=' : conversion from '__time64_t' to 'long', possible loss of data
  109. e:\osrm\project-osrm\library\../Plugins/LocatePlugin.h(109) : warning C4267: '+=' : conversion from 'size_t' to 'unsigned int', possible loss of data
  110. e:\osrm\project-osrm\library\../Plugins/LocatePlugin.h(49) : while compiling class template member function 'void LocatePlugin<BaseDataFacade<QueryEdge::EdgeData>>::HandleRequest(const RouteParameters &,http::Reply &)'
  111. E:\osrm\Project-OSRM\Library\OSRM_impl.cpp(65) : see reference to class template instantiation 'LocatePlugin<BaseDataFacade<QueryEdge::EdgeData>>' being compiled
  112. e:\osrm\project-osrm\library\../Plugins/NearestPlugin.h(120) : warning C4267: '+=' : conversion from 'size_t' to 'unsigned int', possible loss of data
  113. e:\osrm\project-osrm\library\../Plugins/NearestPlugin.h(57) : while compiling class template member function 'void NearestPlugin<BaseDataFacade<QueryEdge::EdgeData>>::HandleRequest(const RouteParameters &,http::Reply &)'
  114. E:\osrm\Project-OSRM\Library\OSRM_impl.cpp(70) : see reference to class template instantiation 'NearestPlugin<BaseDataFacade<QueryEdge::EdgeData>>' being compiled
  115. e:\osrm\project-osrm\library\../Plugins/TimestampPlugin.h(72) : warning C4267: '+=' : conversion from 'size_t' to 'unsigned int', possible loss of data
  116. e:\osrm\project-osrm\library\../Plugins/TimestampPlugin.h(40) : while compiling class template member function 'void TimestampPlugin<BaseDataFacade<QueryEdge::EdgeData>>::HandleRequest(const RouteParameters &,http::Reply &)'
  117. E:\osrm\Project-OSRM\Library\OSRM_impl.cpp(75) : see reference to class template instantiation 'TimestampPlugin<BaseDataFacade<QueryEdge::EdgeData>>' being compiled
  118. e:\osrm\project-osrm\library\../Plugins/ViaRoutePlugin.h(188) : warning C4267: '+=' : conversion from 'size_t' to 'unsigned int', possible loss of data
  119. e:\osrm\project-osrm\library\../Plugins/ViaRoutePlugin.h(77) : while compiling class template member function 'void ViaRoutePlugin<BaseDataFacade<QueryEdge::EdgeData>>::HandleRequest(const RouteParameters &,http::Reply &)'
  120. E:\osrm\Project-OSRM\Library\OSRM_impl.cpp(80) : see reference to class template instantiation 'ViaRoutePlugin<BaseDataFacade<QueryEdge::EdgeData>>' being compiled
  121. e:\osrm\project-osrm\server\datastructures\../../DataStructures/StaticRTree.h(887) : warning C4244: '*=' : conversion from 'double' to 'int', possible loss of data
  122. e:\osrm\project-osrm\server\datastructures\../../DataStructures/StaticRTree.h(743) : while compiling class template member function 'bool StaticRTree<RTreeLeaf,true>::FindPhantomNodeForCoordinate(const FixedPointCoordinate &,PhantomNode &,const unsigned int)'
  123. e:\osrm\project-osrm\library\../Server/DataStructures/SharedDataFacade.h(341) : see reference to function template instantiation 'bool StaticRTree<RTreeLeaf,true>::FindPhantomNodeForCoordinate(const FixedPointCoordinate &,PhantomNode &,const unsigned int)' being compiled
  124. e:\osrm\project-osrm\server\datastructures\SharedDataType.h(46) : see reference to class template instantiation 'StaticRTree<RTreeLeaf,true>' being compiled
  125. e:\osrm\project-osrm\server\datastructures\../../DataStructures/StaticRTree.h(889) : warning C4244: '*=' : conversion from 'double' to 'int', possible loss of data
  126. e:\osrm\project-osrm\library\../Server/DataStructures/SharedDataFacade.h(109) : warning C4244: '=' : conversion from 'uint64_t' to 'unsigned int', possible loss of data
  127. e:\osrm\project-osrm\library\../Server/DataStructures/SharedDataFacade.h(108) : while compiling class template member function 'void SharedDataFacade<QueryEdge::EdgeData>::LoadGraph(void)'
  128. e:\osrm\project-osrm\library\../Server/DataStructures/SharedDataFacade.h(242) : see reference to function template instantiation 'void SharedDataFacade<QueryEdge::EdgeData>::LoadGraph(void)' being compiled
  129. E:\osrm\Project-OSRM\Library\OSRM_impl.cpp(51) : see reference to class template instantiation 'SharedDataFacade<QueryEdge::EdgeData>' being compiled
  130. e:\osrm\project-osrm\plugins\../Descriptors/JSONDescriptor.h(321) : warning C4267: 'argument' : conversion from 'size_t' to 'const int', possible loss of data
  131. e:\osrm\project-osrm\plugins\../Descriptors/JSONDescriptor.h(116) : while compiling class template member function 'void JSONDescriptor<DataFacadeT>::Run(const RawRouteData &,const PhantomNodes &,DataFacadeT *,http::Reply &)'
  132. with
  133. [
  134. DataFacadeT=BaseDataFacade<QueryEdge::EdgeData>
  135. ]
  136. e:\osrm\project-osrm\library\../Plugins/ViaRoutePlugin.h(161) : see reference to class template instantiation 'JSONDescriptor<DataFacadeT>' being compiled
  137. with
  138. [
  139. DataFacadeT=BaseDataFacade<QueryEdge::EdgeData>
  140. ]
  141. e:\osrm\project-osrm\library\../Plugins/ViaRoutePlugin.h(77) : while compiling class template member function 'void ViaRoutePlugin<BaseDataFacade<QueryEdge::EdgeData>>::HandleRequest(const RouteParameters &,http::Reply &)'
  142. e:\osrm\project-osrm\datastructures\StaticGraph.h(98) : warning C4267: '=' : conversion from 'size_t' to 'StaticGraph<QueryEdge::EdgeData,false>::NodeIterator', possible loss of data
  143. e:\osrm\project-osrm\datastructures\StaticGraph.h(94) : while compiling class template member function 'StaticGraph<QueryEdge::EdgeData,false>::StaticGraph(std::vector<DataT,std::allocator<_Ty>> &,std::vector<StaticGraph<QueryEdge::EdgeData,false>::_StrEdge,std::allocator<StaticGraph<QueryEdge::EdgeData,false>::_StrEdge>> &)'
  144. with
  145. [
  146. DataT=StaticGraph<QueryEdge::EdgeData,false>::_StrNode
  147. , _Ty=StaticGraph<QueryEdge::EdgeData,false>::_StrNode
  148. ]
  149. e:\osrm\project-osrm\library\../Server/DataStructures/InternalDataFacade.h(108) : see reference to function template instantiation 'StaticGraph<QueryEdge::EdgeData,false>::StaticGraph(std::vector<DataT,std::allocator<_Ty>> &,std::vector<StaticGraph<QueryEdge::EdgeData,false>::_StrEdge,std::allocator<StaticGraph<QueryEdge::EdgeData,false>::_StrEdge>> &)' being compiled
  150. with
  151. [
  152. DataT=StaticGraph<QueryEdge::EdgeData,false>::_StrNode
  153. , _Ty=StaticGraph<QueryEdge::EdgeData,false>::_StrNode
  154. ]
  155. e:\osrm\project-osrm\server\datastructures\SharedDataType.h(103) : see reference to class template instantiation 'StaticGraph<QueryEdge::EdgeData,false>' being compiled
  156. e:\osrm\project-osrm\datastructures\StaticGraph.h(99) : warning C4267: '=' : conversion from 'size_t' to 'StaticGraph<QueryEdge::EdgeData,false>::EdgeIterator', possible loss of data
  157. e:\osrm\project-osrm\datastructures\StaticGraph.h(98) : warning C4267: '=' : conversion from 'size_t' to 'StaticGraph<QueryEdge::EdgeData,true>::NodeIterator', possible loss of data
  158. e:\osrm\project-osrm\datastructures\StaticGraph.h(94) : while compiling class template member function 'StaticGraph<QueryEdge::EdgeData,true>::StaticGraph(SharedMemoryWrapper<DataT> &,SharedMemoryWrapper<StaticGraph<QueryEdge::EdgeData,true>::_StrEdge> &)'
  159. with
  160. [
  161. DataT=StaticGraph<QueryEdge::EdgeData,true>::_StrNode
  162. ]
  163. e:\osrm\project-osrm\library\../Server/DataStructures/SharedDataFacade.h(128) : see reference to function template instantiation 'StaticGraph<QueryEdge::EdgeData,true>::StaticGraph(SharedMemoryWrapper<DataT> &,SharedMemoryWrapper<StaticGraph<QueryEdge::EdgeData,true>::_StrEdge> &)' being compiled
  164. with
  165. [
  166. DataT=StaticGraph<QueryEdge::EdgeData,true>::_StrNode
  167. ]
  168. e:\osrm\project-osrm\library\../Server/DataStructures/SharedDataFacade.h(54) : see reference to class template instantiation 'StaticGraph<QueryEdge::EdgeData,true>' being compiled
  169. e:\osrm\project-osrm\datastructures\StaticGraph.h(99) : warning C4267: '=' : conversion from 'size_t' to 'StaticGraph<QueryEdge::EdgeData,true>::EdgeIterator', possible loss of data
  170. e:\osrm\project-osrm\routingalgorithms\BasicRoutingInterface.h(141) : warning C4267: 'initializing' : conversion from 'size_t' to 'const unsigned int', possible loss of data
  171. e:\osrm\project-osrm\routingalgorithms\BasicRoutingInterface.h(140) : while compiling class template member function 'void BasicRoutingInterface<DataFacadeT>::UnpackPath(const std::vector<NodeID,std::allocator<char32_t>> &,std::vector<PathData,std::allocator<_Ty>> &) const'
  172. with
  173. [
  174. DataFacadeT=BaseDataFacade<QueryEdge::EdgeData>
  175. , _Ty=PathData
  176. ]
  177. e:\osrm\project-osrm\datastructures\../RoutingAlgorithms/ShortestPathRouting.h(360) : see reference to function template instantiation 'void BasicRoutingInterface<DataFacadeT>::UnpackPath(const std::vector<NodeID,std::allocator<char32_t>> &,std::vector<PathData,std::allocator<_Ty>> &) const' being compiled
  178. with
  179. [
  180. DataFacadeT=BaseDataFacade<QueryEdge::EdgeData>
  181. , _Ty=PathData
  182. ]
  183. e:\osrm\project-osrm\datastructures\../RoutingAlgorithms/ShortestPathRouting.h(39) : see reference to class template instantiation 'BasicRoutingInterface<DataFacadeT>' being compiled
  184. with
  185. [
  186. DataFacadeT=BaseDataFacade<QueryEdge::EdgeData>
  187. ]
  188. e:\osrm\project-osrm\plugins\../DataStructures/SearchEngine.h(54) : see reference to class template instantiation 'ShortestPathRouting<DataFacadeT>' being compiled
  189. with
  190. [
  191. DataFacadeT=BaseDataFacade<QueryEdge::EdgeData>
  192. ]
  193. e:\osrm\project-osrm\library\../Plugins/ViaRoutePlugin.h(62) : see reference to class template instantiation 'SearchEngine<DataFacadeT>' being compiled
  194. with
  195. [
  196. DataFacadeT=BaseDataFacade<QueryEdge::EdgeData>
  197. ]
  198. e:\osrm\project-osrm\library\../Plugins/ViaRoutePlugin.h(56) : while compiling class template member function 'ViaRoutePlugin<BaseDataFacade<QueryEdge::EdgeData>>::ViaRoutePlugin(DataFacadeT *)'
  199. with
  200. [
  201. DataFacadeT=BaseDataFacade<QueryEdge::EdgeData>
  202. ]
  203. E:\osrm\Project-OSRM\Library\OSRM_impl.cpp(83) : see reference to function template instantiation 'ViaRoutePlugin<BaseDataFacade<QueryEdge::EdgeData>>::ViaRoutePlugin(DataFacadeT *)' being compiled
  204. with
  205. [
  206. DataFacadeT=BaseDataFacade<QueryEdge::EdgeData>
  207. ]
  208. e:\osrm\project-osrm\datastructures\../RoutingAlgorithms/AlternativePathRouting.h(342) : warning C4267: 'initializing' : conversion from 'size_t' to 'unsigned int', possible loss of data
  209. e:\osrm\project-osrm\datastructures\../RoutingAlgorithms/AlternativePathRouting.h(300) : while compiling class template member function 'void AlternativeRouting<DataFacadeT>::computeLengthAndSharingOfViaPath(const NodeID,int *,int *,const int,const std::vector<NodeID,std::allocator<char32_t>> &)'
  210. with
  211. [
  212. DataFacadeT=BaseDataFacade<QueryEdge::EdgeData>
  213. ]
  214. e:\osrm\project-osrm\datastructures\../RoutingAlgorithms/AlternativePathRouting.h(249) : see reference to function template instantiation 'void AlternativeRouting<DataFacadeT>::computeLengthAndSharingOfViaPath(const NodeID,int *,int *,const int,const std::vector<NodeID,std::allocator<char32_t>> &)' being compiled
  215. with
  216. [
  217. DataFacadeT=BaseDataFacade<QueryEdge::EdgeData>
  218. ]
  219. e:\osrm\project-osrm\plugins\../DataStructures/SearchEngine.h(55) : see reference to class template instantiation 'AlternativeRouting<DataFacadeT>' being compiled
  220. with
  221. [
  222. DataFacadeT=BaseDataFacade<QueryEdge::EdgeData>
  223. ]
  224. e:\osrm\project-osrm\datastructures\../RoutingAlgorithms/AlternativePathRouting.h(355) : warning C4267: 'initializing' : conversion from 'size_t' to 'int', possible loss of data
  225. e:\osrm\project-osrm\datastructures\../RoutingAlgorithms/AlternativePathRouting.h(361) : warning C4267: 'initializing' : conversion from 'size_t' to 'int', possible loss of data
  226. e:\osrm\project-osrm\datastructures\../RoutingAlgorithms/AlternativePathRouting.h(362) : warning C4267: 'initializing' : conversion from 'size_t' to 'int', possible loss of data
  227. e:\osrm\project-osrm\datastructures\../RoutingAlgorithms/AlternativePathRouting.h(376) : warning C4267: '=' : conversion from 'size_t' to 'int', possible loss of data
  228. e:\osrm\project-osrm\datastructures\../RoutingAlgorithms/AlternativePathRouting.h(377) : warning C4267: '=' : conversion from 'size_t' to 'int', possible loss of data
  229. e:\osrm\project-osrm\datastructures\../RoutingAlgorithms/AlternativePathRouting.h(518) : warning C4244: 'initializing' : conversion from 'const double' to 'const int', possible loss of data
  230. e:\osrm\project-osrm\datastructures\../RoutingAlgorithms/AlternativePathRouting.h(476) : while compiling class template member function 'bool AlternativeRouting<DataFacadeT>::viaNodeCandidatePasses_T_Test(AlternativeRouting<DataFacadeT>::QueryHeap &,AlternativeRouting<DataFacadeT>::QueryHeap &,AlternativeRouting<DataFacadeT>::QueryHeap &,AlternativeRouting<DataFacadeT>::QueryHeap &,const AlternativeRouting<DataFacadeT>::RankedCandidateNode &,const int,const int,int *,NodeID *,NodeID *)'
  231. with
  232. [
  233. DataFacadeT=BaseDataFacade<QueryEdge::EdgeData>
  234. ]
  235. e:\osrm\project-osrm\datastructures\../RoutingAlgorithms/AlternativePathRouting.h(260) : see reference to function template instantiation 'bool AlternativeRouting<DataFacadeT>::viaNodeCandidatePasses_T_Test(AlternativeRouting<DataFacadeT>::QueryHeap &,AlternativeRouting<DataFacadeT>::QueryHeap &,AlternativeRouting<DataFacadeT>::QueryHeap &,AlternativeRouting<DataFacadeT>::QueryHeap &,const AlternativeRouting<DataFacadeT>::RankedCandidateNode &,const int,const int,int *,NodeID *,NodeID *)' being compiled
  236. with
  237. [
  238. DataFacadeT=BaseDataFacade<QueryEdge::EdgeData>
  239. ]
  240. e:\osrm\project-osrm\datastructures\../RoutingAlgorithms/AlternativePathRouting.h(523) : warning C4267: 'initializing' : conversion from 'size_t' to 'unsigned int', possible loss of data
  241. e:\osrm\project-osrm\datastructures\../RoutingAlgorithms/AlternativePathRouting.h(564) : warning C4267: 'initializing' : conversion from 'size_t' to 'unsigned int', possible loss of data
  242. e:\osrm\project-osrm\plugins\../Descriptors/JSONDescriptor.h(367) : warning C4267: 'initializing' : conversion from 'size_t' to 'int', possible loss of data
  243. e:\osrm\project-osrm\plugins\../Descriptors/JSONDescriptor.h(352) : while compiling class template member function 'void JSONDescriptor<DataFacadeT>::GetRouteNames(std::vector<JSONDescriptor<DataFacadeT>::Segment,std::allocator<_Ty>> &,std::vector<_Ty,std::allocator<_Ty>> &,const DataFacadeT *,JSONDescriptor<DataFacadeT>::RouteNames &)'
  244. with
  245. [
  246. DataFacadeT=BaseDataFacade<QueryEdge::EdgeData>
  247. , _Ty=JSONDescriptor<BaseDataFacade<QueryEdge::EdgeData>>::Segment
  248. ]
  249. e:\osrm\project-osrm\plugins\../Descriptors/JSONDescriptor.h(268) : see reference to function template instantiation 'void JSONDescriptor<DataFacadeT>::GetRouteNames(std::vector<JSONDescriptor<DataFacadeT>::Segment,std::allocator<_Ty>> &,std::vector<_Ty,std::allocator<_Ty>> &,const DataFacadeT *,JSONDescriptor<DataFacadeT>::RouteNames &)' being compiled
  250. with
  251. [
  252. DataFacadeT=BaseDataFacade<QueryEdge::EdgeData>
  253. , _Ty=JSONDescriptor<BaseDataFacade<QueryEdge::EdgeData>>::Segment
  254. ]
  255. e:\osrm\project-osrm\plugins\../Descriptors/JSONDescriptor.h(379) : warning C4267: '=' : conversion from 'size_t' to 'int', possible loss of data
  256. e:\osrm\project-osrm\plugins\../Descriptors/JSONDescriptor.h(455) : warning C4244: 'argument' : conversion from 'const double' to 'const int', possible loss of data
  257. e:\osrm\project-osrm\plugins\../Descriptors/JSONDescriptor.h(418) : while compiling class template member function 'void JSONDescriptor<DataFacadeT>::BuildTextualDescription(DescriptionFactory &,http::Reply &,const int,const DataFacadeT *,std::vector<JSONDescriptor<DataFacadeT>::Segment,std::allocator<_Ty>> &)'
  258. with
  259. [
  260. DataFacadeT=BaseDataFacade<QueryEdge::EdgeData>
  261. , _Ty=JSONDescriptor<BaseDataFacade<QueryEdge::EdgeData>>::Segment
  262. ]
  263. e:\osrm\project-osrm\plugins\../Descriptors/JSONDescriptor.h(166) : see reference to function template instantiation 'void JSONDescriptor<DataFacadeT>::BuildTextualDescription(DescriptionFactory &,http::Reply &,const int,const DataFacadeT *,std::vector<JSONDescriptor<DataFacadeT>::Segment,std::allocator<_Ty>> &)' being compiled
  264. with
  265. [
  266. DataFacadeT=BaseDataFacade<QueryEdge::EdgeData>
  267. , _Ty=JSONDescriptor<BaseDataFacade<QueryEdge::EdgeData>>::Segment
  268. ]
  269. e:\osrm\project-osrm\plugins\../Descriptors/JSONDescriptor.h(464) : warning C4244: 'argument' : conversion from 'const double' to 'const int', possible loss of data
  270. e:\osrm\project-osrm\plugins\../Descriptors/JSONDescriptor.h(470) : warning C4244: 'argument' : conversion from 'double' to 'const int', possible loss of data
  271. e:\osrm\project-osrm\plugins\../Descriptors/JSONDescriptor.h(479) : warning C4267: 'argument' : conversion from 'size_t' to 'int', possible loss of data
  272. e:\osrm\project-osrm\plugins\../Descriptors/JSONDescriptor.h(479) : warning C4244: 'argument' : conversion from 'const double' to 'int', possible loss of data
  273. e:\libs\boost\include\boost-1_55\boost/smart_ptr/make_shared_object.hpp(218) : warning C4244: 'argument' : conversion from 'uint64_t' to 'const uint32_t', possible loss of data
  274. e:\osrm\project-osrm\library\../Server/DataStructures/SharedDataFacade.h(105) : see reference to function template instantiation 'boost::shared_ptr<StaticRTree<RTreeLeaf,true>> boost::make_shared<StaticRTree<RTreeLeaf,true>,SharedDataFacade<QueryEdge::EdgeData>::RTreeNode*&,uint64_t&,const boost::filesystem::path&>(Arg1,uint64_t &,const boost::filesystem::path &)' being compiled
  275. with
  276. [
  277. Arg1=SharedDataFacade<QueryEdge::EdgeData>::RTreeNode *&
  278. ]
  279. e:\osrm\project-osrm\library\../Server/DataStructures/SharedDataFacade.h(97) : while compiling class template member function 'void SharedDataFacade<QueryEdge::EdgeData>::LoadRTree(const boost::filesystem::path &)'
  280. e:\osrm\project-osrm\library\../Server/DataStructures/SharedDataFacade.h(244) : see reference to function template instantiation 'void SharedDataFacade<QueryEdge::EdgeData>::LoadRTree(const boost::filesystem::path &)' being compiled
  281. e:\osrm\project-osrm\datastructures\../RoutingAlgorithms/AlternativePathRouting.h(429) : warning C4244: 'initializing' : conversion from 'double' to 'int', possible loss of data
  282. e:\osrm\project-osrm\datastructures\../RoutingAlgorithms/AlternativePathRouting.h(158) : see reference to function template instantiation 'void AlternativeRouting<DataFacadeT>::AlternativeRoutingStep<true>(AlternativeRouting<DataFacadeT>::QueryHeap &,AlternativeRouting<DataFacadeT>::QueryHeap &,NodeID *,int *,std::vector<NodeID,std::allocator<char32_t>> &,std::vector<AlternativeRouting<DataFacadeT>::SearchSpaceEdge,std::allocator<_Ty>> &,const int) const' being compiled
  283. with
  284. [
  285. DataFacadeT=BaseDataFacade<QueryEdge::EdgeData>
  286. , _Ty=AlternativeRouting<DataFacadeT>::SearchSpaceEdge
  287. ]
  288. e:\osrm\project-osrm\datastructures\../RoutingAlgorithms/AlternativePathRouting.h(158) : see reference to function template instantiation 'void AlternativeRouting<DataFacadeT>::AlternativeRoutingStep<true>(AlternativeRouting<DataFacadeT>::QueryHeap &,AlternativeRouting<DataFacadeT>::QueryHeap &,NodeID *,int *,std::vector<NodeID,std::allocator<char32_t>> &,std::vector<AlternativeRouting<DataFacadeT>::SearchSpaceEdge,std::allocator<_Ty>> &,const int) const' being compiled
  289. with
  290. [
  291. DataFacadeT=BaseDataFacade<QueryEdge::EdgeData>
  292. , _Ty=AlternativeRouting<DataFacadeT>::SearchSpaceEdge
  293. ]
  294. e:\osrm\project-osrm\datastructures\../RoutingAlgorithms/AlternativePathRouting.h(82) : while compiling class template member function 'void AlternativeRouting<DataFacadeT>::operator ()(const PhantomNodes &,RawRouteData &)'
  295. with
  296. [
  297. DataFacadeT=BaseDataFacade<QueryEdge::EdgeData>
  298. ]
  299. e:\osrm\project-osrm\library\../Plugins/ViaRoutePlugin.h(127) : see reference to function template instantiation 'void AlternativeRouting<DataFacadeT>::operator ()(const PhantomNodes &,RawRouteData &)' being compiled
  300. with
  301. [
  302. DataFacadeT=BaseDataFacade<QueryEdge::EdgeData>
  303. ]
  304. e:\osrm\project-osrm\routingalgorithms\../Util/ContainerUtils.h(37) : warning C4244: 'initializing' : conversion from '__int64' to 'unsigned int', possible loss of data
  305. e:\osrm\project-osrm\datastructures\../RoutingAlgorithms/AlternativePathRouting.h(172) : see reference to function template instantiation 'void sort_unique_resize<NodeID>(std::vector<NodeID,std::allocator<char32_t>> &)' being compiled
  306. e:\osrm\project-osrm\descriptors\DescriptionFactory.h(186) : warning C4244: '*=' : conversion from 'double' to 'unsigned int', possible loss of data
  307. e:\osrm\project-osrm\plugins\../Descriptors/JSONDescriptor.h(146) : see reference to function template instantiation 'void DescriptionFactory::Run<DataFacadeT>(const DataFacadeT *,const unsigned int)' being compiled
  308. with
  309. [
  310. DataFacadeT=BaseDataFacade<QueryEdge::EdgeData>
  311. ]
  312. e:\osrm\project-osrm\plugins\../Descriptors/JSONDescriptor.h(116) : while compiling class template member function 'void JSONDescriptor<DataFacadeT>::Run(const RawRouteData &,const PhantomNodes &,DataFacadeT *,http::Reply &)'
  313. with
  314. [
  315. DataFacadeT=BaseDataFacade<QueryEdge::EdgeData>
  316. ]
  317. e:\osrm\project-osrm\descriptors\DescriptionFactory.h(196) : warning C4244: '*=' : conversion from 'double' to 'unsigned int', possible loss of data
  318. e:\osrm\project-osrm\descriptors\DescriptionFactory.h(206) : warning C4244: '=' : conversion from 'double' to 'short', possible loss of data
  319. [ 14%] Building CXX object CMakeFiles/OSRM.dir/Descriptors/DescriptionFactory.cpp.obj
  320. DescriptionFactory.cpp
  321. e:\osrm\project-osrm\descriptors\DescriptionFactory.h(73) : warning C4244: 'argument' : conversion from 'double' to 'const int', possible loss of data
  322. E:\osrm\Project-OSRM\Descriptors\DescriptionFactory.cpp(102) : warning C4244: 'argument' : conversion from 'const short' to 'const TurnInstruction', possible loss of data
  323. [ 17%] Building CXX object CMakeFiles/OSRM.dir/DataStructures/SearchEngineData.cpp.obj
  324. SearchEngineData.cpp
  325. [ 20%] Building CXX object CMakeFiles/OSRM.dir/DataStructures/Coordinate.cpp.obj
  326. Coordinate.cpp
  327. [ 23%] Building CXX object CMakeFiles/OSRM.dir/Algorithms/DouglasPeucker.cpp.obj
  328. DouglasPeucker.cpp
  329. E:\osrm\Project-OSRM\Algorithms\DouglasPeucker.cpp(106) : warning C4244: '=' : conversion from 'double' to 'int', possible loss of data
  330. E:\osrm\Project-OSRM\Algorithms\DouglasPeucker.cpp(107) : warning C4244: '=' : conversion from 'double' to 'int', possible loss of data
  331. E:\osrm\Project-OSRM\Algorithms\DouglasPeucker.cpp(174) : warning C4244: 'initializing' : conversion from 'double' to 'const int', possible loss of data
  332. [ 26%] Building CXX object CMakeFiles/OSRM.dir/Algorithms/PolylineCompressor.cpp.obj
  333. PolylineCompressor.cpp
  334. [ 29%] Building CXX object CMakeFiles/OSRM.dir/Server/Http/Reply.cpp.obj
  335. Reply.cpp
  336. Please define _WIN32_WINNT or _WIN32_WINDOWS appropriately. For example:
  337. - add -D_WIN32_WINNT=0x0501 to the compiler command line; or
  338. - add _WIN32_WINNT=0x0501 to your project's Preprocessor Definitions.
  339. Assuming _WIN32_WINNT=0x0501 (i.e. Windows XP target).
  340. E:\osrm\Project-OSRM\Server\Http\Reply.cpp(51) : warning C4267: '+=' : conversion from 'size_t' to 'unsigned int', possible loss of data
  341. E:\osrm\Project-OSRM\Server\Http\Reply.cpp(98) : warning C4267: 'argument' : conversion from 'size_t' to 'const int', possible loss of data
  342. [ 32%] Building CXX object CMakeFiles/OSRM.dir/Util/GitDescription.cpp.obj
  343. GitDescription.cpp
  344. [ 32%] Configuring UUID.cpp
  345. [ 35%] Building CXX object CMakeFiles/OSRM.dir/Util/UUID.cpp.obj
  346. UUID.cpp
  347. Linking CXX static library OSRM.lib
  348. [ 35%] Built target OSRM
  349. Scanning dependencies of target UUIDConfigure
  350. [ 38%] Configuring UUID.cpp
  351. [ 38%] Built target UUIDConfigure
  352. Scanning dependencies of target UUID
  353. [ 41%] Configuring UUID.cpp
  354. [ 44%] Building CXX object CMakeFiles/UUID.dir/Util/UUID.cpp.obj
  355. UUID.cpp
  356. Linking CXX static library UUID.lib
  357. [ 44%] Built target UUID
  358. Scanning dependencies of target osrm-cli
  359. [ 47%] Building CXX object CMakeFiles/osrm-cli.dir/Tools/simpleclient.cpp.obj
  360. simpleclient.cpp
  361. Please define _WIN32_WINNT or _WIN32_WINDOWS appropriately. For example:
  362. - add -D_WIN32_WINNT=0x0501 to the compiler command line; or
  363. - add _WIN32_WINNT=0x0501 to your project's Preprocessor Definitions.
  364. Assuming _WIN32_WINNT=0x0501 (i.e. Windows XP target).
  365. E:\osrm\Project-OSRM\Include\osrm/RouteParameters.h(119) : warning C4244: 'initializing' : conversion from 'const double' to 'int', possible loss of data
  366. E:\osrm\Project-OSRM\Include\osrm/RouteParameters.h(120) : warning C4244: 'initializing' : conversion from 'const double' to 'int', possible loss of data
  367. E:\osrm\Project-OSRM\Tools\simpleclient.cpp(98) : warning C4244: 'argument' : conversion from 'double' to 'int', possible loss of data
  368. E:\osrm\Project-OSRM\Tools\simpleclient.cpp(99) : warning C4244: 'argument' : conversion from 'double' to 'int', possible loss of data
  369. Linking CXX executable osrm-cli.exe
  370. [ 47%] Built target osrm-cli
  371. Scanning dependencies of target osrm-datastore
  372. [ 50%] Building CXX object CMakeFiles/osrm-datastore.dir/datastore.cpp.obj
  373. datastore.cpp
  374. e:\osrm\project-osrm\DataStructures/SharedMemoryFactory.h(315) : warning C4101: 'lock_file' : unreferenced local variable
  375. e:\osrm\project-osrm\datastructures\../Util/TimingUtil.h(57) : warning C4244: '=' : conversion from '__time64_t' to 'long', possible loss of data
  376. e:\osrm\project-osrm\server\datastructures\../../DataStructures/EdgeBasedNode.h(172) : warning C4244: 'argument' : conversion from 'const double' to 'int', possible loss of data
  377. e:\osrm\project-osrm\server\datastructures\../../DataStructures/EdgeBasedNode.h(172) : warning C4244: 'argument' : conversion from 'double' to 'int', possible loss of data
  378. e:\osrm\project-osrm\datastructures\QueryNode.h(57) : warning C4244: 'argument' : conversion from 'const double' to 'int', possible loss of data
  379. e:\osrm\project-osrm\datastructures\QueryNode.h(65) : warning C4244: 'argument' : conversion from 'const double' to 'int', possible loss of data
  380. E:\osrm\Project-OSRM\datastore.cpp(162) : warning C4267: 'initializing' : conversion from 'size_t' to 'unsigned int', possible loss of data
  381. E:\osrm\Project-OSRM\datastore.cpp(265) : warning C4267: '=' : conversion from 'size_t' to 'unsigned int', possible loss of data
  382. Linking CXX executable osrm-datastore.exe
  383. [ 50%] Built target osrm-datastore
  384. Scanning dependencies of target osrm-extract
  385. [ 52%] Building CXX object CMakeFiles/osrm-extract.dir/extractor.cpp.obj
  386. extractor.cpp
  387. e:\osrm\project-osrm\datastructures\QueryNode.h(57) : warning C4244: 'argument' : conversion from 'const double' to 'int', possible loss of data
  388. e:\osrm\project-osrm\datastructures\QueryNode.h(65) : warning C4244: 'argument' : conversion from 'const double' to 'int', possible loss of data
  389. e:\libs\include\stxxl/bits/io/request.h(89) : warning C4290: C++ exception specification ignored except to indicate a function is not __declspec(nothrow)
  390. e:\libs\include\stxxl/bits/io/file.h(108) : warning C4290: C++ exception specification ignored except to indicate a function is not __declspec(nothrow)
  391. e:\osrm\project-osrm\Util/TimingUtil.h(57) : warning C4244: '=' : conversion from '__time64_t' to 'long', possible loss of data
  392. E:\osrm\Project-OSRM\extractor.cpp(213) : warning C4101: 'e' : unreferenced local variable
  393. [ 55%] Building CXX object CMakeFiles/osrm-extract.dir/Extractor/BaseParser.cpp.obj
  394. BaseParser.cpp
  395. e:\osrm\project-osrm\datastructures\QueryNode.h(57) : warning C4244: 'argument' : conversion from 'const double' to 'int', possible loss of data
  396. e:\osrm\project-osrm\datastructures\QueryNode.h(65) : warning C4244: 'argument' : conversion from 'const double' to 'int', possible loss of data
  397. E:\osrm\Project-OSRM\Extractor\BaseParser.cpp(59) : warning C4800: 'int' : forcing value to bool 'true' or 'false' (performance warning)
  398. E:\osrm\Project-OSRM\Extractor\BaseParser.cpp(76) : warning C4267: 'initializing' : conversion from 'size_t' to 'const unsigned int', possible loss of data
  399. [ 58%] Building CXX object CMakeFiles/osrm-extract.dir/Extractor/ExtractionContainers.cpp.obj
  400. ExtractionContainers.cpp
  401. e:\osrm\project-osrm\datastructures\QueryNode.h(57) : warning C4244: 'argument' : conversion from 'const double' to 'int', possible loss of data
  402. e:\osrm\project-osrm\datastructures\QueryNode.h(65) : warning C4244: 'argument' : conversion from 'const double' to 'int', possible loss of data
  403. e:\libs\include\stxxl/bits/io/request.h(89) : warning C4290: C++ exception specification ignored except to indicate a function is not __declspec(nothrow)
  404. e:\libs\include\stxxl/bits/io/file.h(108) : warning C4290: C++ exception specification ignored except to indicate a function is not __declspec(nothrow)
  405. e:\osrm\project-osrm\extractor\../Util/TimingUtil.h(57) : warning C4244: '=' : conversion from '__time64_t' to 'long', possible loss of data
  406. E:\osrm\Project-OSRM\Extractor\ExtractionContainers.cpp(416) : warning C4244: 'initializing' : conversion from 'unsigned __int64' to 'const unsigned int', possible loss of data
  407. E:\osrm\Project-OSRM\Extractor\ExtractionContainers.cpp(422) : warning C4267: '+=' : conversion from 'size_t' to 'unsigned int', possible loss of data
  408. E:\osrm\Project-OSRM\Extractor\ExtractionContainers.cpp(436) : warning C4267: '+=' : conversion from 'size_t' to 'unsigned int', possible loss of data
  409. E:\osrm\Project-OSRM\Extractor\ExtractionContainers.cpp(446) : warning C4267: 'initializing' : conversion from 'size_t' to 'const unsigned int', possible loss of data
  410. [ 61%] Building CXX object CMakeFiles/osrm-extract.dir/Extractor/ExtractorCallbacks.cpp.obj
  411. ExtractorCallbacks.cpp
  412. e:\osrm\project-osrm\datastructures\QueryNode.h(57) : warning C4244: 'argument' : conversion from 'const double' to 'int', possible loss of data
  413. e:\osrm\project-osrm\datastructures\QueryNode.h(65) : warning C4244: 'argument' : conversion from 'const double' to 'int', possible loss of data
  414. e:\libs\include\stxxl/bits/io/request.h(89) : warning C4290: C++ exception specification ignored except to indicate a function is not __declspec(nothrow)
  415. e:\libs\include\stxxl/bits/io/file.h(108) : warning C4290: C++ exception specification ignored except to indicate a function is not __declspec(nothrow)
  416. E:\osrm\Project-OSRM\Extractor\ExtractorCallbacks.cpp(99) : warning C4244: '=' : conversion from 'unsigned __int64' to 'unsigned int', possible loss of data
  417. [ 64%] Building CXX object CMakeFiles/osrm-extract.dir/Extractor/PBFParser.cpp.obj
  418. PBFParser.cpp
  419. e:\osrm\project-osrm\datastructures\QueryNode.h(57) : warning C4244: 'argument' : conversion from 'const double' to 'int', possible loss of data
  420. e:\osrm\project-osrm\datastructures\QueryNode.h(65) : warning C4244: 'argument' : conversion from 'const double' to 'int', possible loss of data
  421. E:\osrm\Project-OSRM\Extractor\PBFParser.cpp(98) : warning C4267: 'argument' : conversion from 'size_t' to 'int', possible loss of data
  422. E:\osrm\Project-OSRM\Extractor\PBFParser.cpp(201) : warning C4244: '=' : conversion from 'int64_t' to 'NodeID', possible loss of data
  423. E:\osrm\Project-OSRM\Extractor\PBFParser.cpp(202) : warning C4244: '=' : conversion from 'const double' to 'int', possible loss of data
  424. E:\osrm\Project-OSRM\Extractor\PBFParser.cpp(203) : warning C4244: '=' : conversion from 'const double' to 'int', possible loss of data
  425. E:\osrm\Project-OSRM\Extractor\PBFParser.cpp(300) : warning C4244: '=' : conversion from 'int64_t' to 'NodeID', possible loss of data
  426. E:\osrm\Project-OSRM\Extractor\PBFParser.cpp(305) : warning C4244: '=' : conversion from 'int64_t' to 'EdgeID', possible loss of data
  427. E:\osrm\Project-OSRM\Extractor\PBFParser.cpp(308) : warning C4244: '=' : conversion from 'int64_t' to 'EdgeID', possible loss of data
  428. E:\osrm\Project-OSRM\Extractor\PBFParser.cpp(312) : warning C4244: '=' : conversion from 'int64_t' to 'unsigned int', possible loss of data
  429. E:\osrm\Project-OSRM\Extractor\PBFParser.cpp(337) : warning C4244: '=' : conversion from 'google::protobuf::int64' to 'unsigned int', possible loss of data
  430. E:\osrm\Project-OSRM\Extractor\PBFParser.cpp(341) : warning C4244: '+=' : conversion from 'google::protobuf::int64' to 'unsigned int', possible loss of data
  431. E:\osrm\Project-OSRM\Extractor\PBFParser.cpp(427) : warning C4267: '=' : conversion from 'size_t' to 'uInt', possible loss of data
  432. E:\osrm\Project-OSRM\Extractor\PBFParser.cpp(528) : warning C4267: 'argument' : conversion from 'size_t' to 'int', possible loss of data
  433. [ 67%] Building CXX object CMakeFiles/osrm-extract.dir/Extractor/ScriptingEnvironment.cpp.obj
  434. ScriptingEnvironment.cpp
  435. e:\osrm\project-osrm\datastructures\QueryNode.h(57) : warning C4244: 'argument' : conversion from 'const double' to 'int', possible loss of data
  436. e:\osrm\project-osrm\datastructures\QueryNode.h(65) : warning C4244: 'argument' : conversion from 'const double' to 'int', possible loss of data
  437. [ 70%] Building CXX object CMakeFiles/osrm-extract.dir/Extractor/XMLParser.cpp.obj
  438. XMLParser.cpp
  439. e:\osrm\project-osrm\datastructures\QueryNode.h(57) : warning C4244: 'argument' : conversion from 'const double' to 'int', possible loss of data
  440. e:\osrm\project-osrm\datastructures\QueryNode.h(65) : warning C4244: 'argument' : conversion from 'const double' to 'int', possible loss of data
  441. Linking CXX executable osrm-extract.exe
  442. XMLParser.cpp.obj : error LNK2019: unresolved external symbol xmlStrEqual referenced in function "public: virtual bool __cdecl XMLParser::Parse(void)" (?Parse@XMLParser@@UEAA_NXZ)
  443.  
  444. XMLParser.cpp.obj : error LNK2019: unresolved external symbol xmlNewTextReaderFilename referenced in function "struct _xmlTextReader * __cdecl inputReaderFactory(char const *)" (?inputReaderFactory@@YAPEAU_xmlTextReader@@PEBD@Z)
  445.  
  446. XMLParser.cpp.obj : error LNK2019: unresolved external symbol xmlTextReaderRead referenced in function "public: virtual bool __cdecl XMLParser::Parse(void)" (?Parse@XMLParser@@UEAA_NXZ)
  447.  
  448. XMLParser.cpp.obj : error LNK2019: unresolved external symbol xmlTextReaderDepth referenced in function "private: struct ImportNode __cdecl XMLParser::_ReadXMLNode(void)" (?_ReadXMLNode@XMLParser@@AEAA?AUImportNode@@XZ)
  449.  
  450. XMLParser.cpp.obj : error LNK2019: unresolved external symbol xmlTextReaderIsEmptyElement referenced in function "private: struct ImportNode __cdecl XMLParser::_ReadXMLNode(void)" (?_ReadXMLNode@XMLParser@@AEAA?AUImportNode@@XZ)
  451.  
  452. XMLParser.cpp.obj : error LNK2019: unresolved external symbol xmlTextReaderNodeType referenced in function "public: virtual bool __cdecl XMLParser::Parse(void)" (?Parse@XMLParser@@UEAA_NXZ)
  453.  
  454. XMLParser.cpp.obj : error LNK2019: unresolved external symbol xmlTextReaderName referenced in function "public: virtual bool __cdecl XMLParser::Parse(void)" (?Parse@XMLParser@@UEAA_NXZ)
  455.  
  456. XMLParser.cpp.obj : error LNK2019: unresolved external symbol xmlTextReaderGetAttribute referenced in function "private: struct ImportNode __cdecl XMLParser::_ReadXMLNode(void)" (?_ReadXMLNode@XMLParser@@AEAA?AUImportNode@@XZ)
  457.  
  458. XMLParser.cpp.obj : error LNK2019: unresolved external symbol xmlReaderForIO referenced in function "struct _xmlTextReader * __cdecl inputReaderFactory(char const *)" (?inputReaderFactory@@YAPEAU_xmlTextReader@@PEBD@Z)
  459.  
  460. XMLParser.cpp.obj : error LNK2019: unresolved external symbol BZ2_bzReadOpen referenced in function "struct _xmlTextReader * __cdecl inputReaderFactory(char const *)" (?inputReaderFactory@@YAPEAU_xmlTextReader@@PEBD@Z)
  461.  
  462. XMLParser.cpp.obj : error LNK2019: unresolved external symbol BZ2_bzReadClose referenced in function "int __cdecl readFromBz2Stream(void *,char *,int)" (?readFromBz2Stream@@YAHPEAXPEADH@Z)
  463.  
  464. XMLParser.cpp.obj : error LNK2019: unresolved external symbol BZ2_bzReadGetUnused referenced in function "int __cdecl readFromBz2Stream(void *,char *,int)" (?readFromBz2Stream@@YAHPEAXPEADH@Z)
  465.  
  466. XMLParser.cpp.obj : error LNK2019: unresolved external symbol BZ2_bzRead referenced in function "int __cdecl readFromBz2Stream(void *,char *,int)" (?readFromBz2Stream@@YAHPEAXPEADH@Z)
  467.  
  468. XMLParser.cpp.obj : error LNK2019: unresolved external symbol __imp_xmlFree referenced in function "public: virtual bool __cdecl XMLParser::Parse(void)" (?Parse@XMLParser@@UEAA_NXZ)
  469.  
  470. osrm-extract.exe : fatal error LNK1120: 14 unresolved externals
  471.  
  472. LINK failed. with 1120
  473.  
  474. E:\osrm\Project-OSRM\build>cd ..
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement