Guest User

CMakeError.log vtk6 aur

a guest
Mar 22nd, 2018
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 46.77 KB | None | 0 0
  1. Determining if the pthread_create exist failed with the following output:
  2. Change Dir: /home/kishore/.cache/pacaur/vtk6/src/build/CMakeFiles/CMakeTmp
  3.  
  4. Run Build Command:"/bin/ninja" "cmTC_f6bfd"
  5. [1/2] Building C object CMakeFiles/cmTC_f6bfd.dir/CheckSymbolExists.c.o
  6. [2/2] Linking C executable cmTC_f6bfd
  7. FAILED: cmTC_f6bfd
  8. : && /bin/cc -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -fno-plt -Wl,-O1,--sort-common,--as-needed,-z,relro,-z,now -rdynamic CMakeFiles/cmTC_f6bfd.dir/CheckSymbolExists.c.o -o cmTC_f6bfd && :
  9. CMakeFiles/cmTC_f6bfd.dir/CheckSymbolExists.c.o: In function `main':
  10. CheckSymbolExists.c:(.text.startup+0x3): undefined reference to `pthread_create'
  11. collect2: error: ld returned 1 exit status
  12. ninja: build stopped: subcommand failed.
  13.  
  14. File /home/kishore/.cache/pacaur/vtk6/src/build/CMakeFiles/CMakeTmp/CheckSymbolExists.c:
  15. /* */
  16. #include <pthread.h>
  17.  
  18. int main(int argc, char** argv)
  19. {
  20. (void)argv;
  21. #ifndef pthread_create
  22. return ((int*)(&pthread_create))[argc];
  23. #else
  24. (void)argc;
  25. return 0;
  26. #endif
  27. }
  28.  
  29. Determining if the function pthread_create exists in the pthreads failed with the following output:
  30. Change Dir: /home/kishore/.cache/pacaur/vtk6/src/build/CMakeFiles/CMakeTmp
  31.  
  32. Run Build Command:"/bin/ninja" "cmTC_42841"
  33. [1/2] Building C object CMakeFiles/cmTC_42841.dir/CheckFunctionExists.c.o
  34. [2/2] Linking C executable cmTC_42841
  35. FAILED: cmTC_42841
  36. : && /bin/cc -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -fno-plt -DCHECK_FUNCTION_EXISTS=pthread_create -Wl,-O1,--sort-common,--as-needed,-z,relro,-z,now -rdynamic CMakeFiles/cmTC_42841.dir/CheckFunctionExists.c.o -o cmTC_42841 -lpthreads && :
  37. /bin/ld: cannot find -lpthreads
  38. collect2: error: ld returned 1 exit status
  39. ninja: build stopped: subcommand failed.
  40.  
  41.  
  42. Determining size of __int64 failed with the following output:
  43. Change Dir: /home/kishore/.cache/pacaur/vtk6/src/build/CMakeFiles/CMakeTmp
  44.  
  45. Run Build Command:"/bin/ninja" "cmTC_3a674"
  46. [1/2] Building C object CMakeFiles/cmTC_3a674.dir/VTK_SIZEOF___INT64.c.o
  47. FAILED: CMakeFiles/cmTC_3a674.dir/VTK_SIZEOF___INT64.c.o
  48. /bin/cc -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -fno-plt -o CMakeFiles/cmTC_3a674.dir/VTK_SIZEOF___INT64.c.o -c /home/kishore/.cache/pacaur/vtk6/src/build/CMakeFiles/CheckTypeSize/VTK_SIZEOF___INT64.c
  49. /home/kishore/.cache/pacaur/vtk6/src/build/CMakeFiles/CheckTypeSize/VTK_SIZEOF___INT64.c:23:22: error: ‘__int64’ undeclared here (not in a function); did you mean ‘__int64_t’?
  50. #define SIZE (sizeof(__int64))
  51. ^
  52. /home/kishore/.cache/pacaur/vtk6/src/build/CMakeFiles/CheckTypeSize/VTK_SIZEOF___INT64.c:25:12: note: in expansion of macro ‘SIZE’
  53. ('0' + ((SIZE / 10000)%10)),
  54. ^~~~
  55. ninja: build stopped: subcommand failed.
  56.  
  57. /home/kishore/.cache/pacaur/vtk6/src/build/CMakeFiles/CheckTypeSize/VTK_SIZEOF___INT64.c:
  58. #include <sys/types.h>
  59. #include <stdint.h>
  60. #include <stddef.h>
  61.  
  62.  
  63. #undef KEY
  64. #if defined(__i386)
  65. # define KEY '_','_','i','3','8','6'
  66. #elif defined(__x86_64)
  67. # define KEY '_','_','x','8','6','_','6','4'
  68. #elif defined(__ppc__)
  69. # define KEY '_','_','p','p','c','_','_'
  70. #elif defined(__ppc64__)
  71. # define KEY '_','_','p','p','c','6','4','_','_'
  72. #elif defined(__aarch64__)
  73. # define KEY '_','_','a','a','r','c','h','6','4','_','_'
  74. #elif defined(__ARM_ARCH_7A__)
  75. # define KEY '_','_','A','R','M','_','A','R','C','H','_','7','A','_','_'
  76. #elif defined(__ARM_ARCH_7S__)
  77. # define KEY '_','_','A','R','M','_','A','R','C','H','_','7','S','_','_'
  78. #endif
  79.  
  80. #define SIZE (sizeof(__int64))
  81. char info_size[] = {'I', 'N', 'F', 'O', ':', 's','i','z','e','[',
  82. ('0' + ((SIZE / 10000)%10)),
  83. ('0' + ((SIZE / 1000)%10)),
  84. ('0' + ((SIZE / 100)%10)),
  85. ('0' + ((SIZE / 10)%10)),
  86. ('0' + (SIZE % 10)),
  87. ']',
  88. #ifdef KEY
  89. ' ','k','e','y','[', KEY, ']',
  90. #endif
  91. '\0'};
  92.  
  93. #ifdef __CLASSIC_C__
  94. int main(argc, argv) int argc; char *argv[];
  95. #else
  96. int main(int argc, char *argv[])
  97. #endif
  98. {
  99. int require = 0;
  100. require += info_size[argc];
  101. (void)argv;
  102. return require;
  103. }
  104.  
  105.  
  106. Determining if the function getsockname exists in the socket failed with the following output:
  107. Change Dir: /home/kishore/.cache/pacaur/vtk6/src/build/CMakeFiles/CMakeTmp
  108.  
  109. Run Build Command:"/bin/ninja" "cmTC_c849c"
  110. [1/2] Building C object CMakeFiles/cmTC_c849c.dir/CheckFunctionExists.c.o
  111. [2/2] Linking C executable cmTC_c849c
  112. FAILED: cmTC_c849c
  113. : && /bin/cc -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -fno-plt -DCHECK_FUNCTION_EXISTS=getsockname -Wl,-O1,--sort-common,--as-needed,-z,relro,-z,now -rdynamic CMakeFiles/cmTC_c849c.dir/CheckFunctionExists.c.o -o cmTC_c849c -lsocket && :
  114. /bin/ld: cannot find -lsocket
  115. collect2: error: ld returned 1 exit status
  116. ninja: build stopped: subcommand failed.
  117.  
  118.  
  119. Checking for non-standard argument to stl allocator<>::max_size failed to compile with the following output:
  120. Change Dir: /home/kishore/.cache/pacaur/vtk6/src/build/Utilities/KWSys/vtksys/CMakeFiles/CMakeTmp
  121.  
  122. Run Build Command:"/bin/ninja" "cmTC_f11c0"
  123. [1/2] Building CXX object CMakeFiles/cmTC_f11c0.dir/kwsysPlatformTestsCXX.cxx.o
  124. FAILED: CMakeFiles/cmTC_f11c0.dir/kwsysPlatformTestsCXX.cxx.o
  125. /bin/c++ -DKWSYS_STL_HAVE_STD=1 -DTEST_KWSYS_STL_HAS_ALLOCATOR_MAX_SIZE_ARGUMENT -D__STDC_CONSTANT_MACROS -o CMakeFiles/cmTC_f11c0.dir/kwsysPlatformTestsCXX.cxx.o -c /home/kishore/.cache/pacaur/vtk6/src/VTK-6.3.0/Utilities/KWSys/vtksys/kwsysPlatformTestsCXX.cxx
  126. /home/kishore/.cache/pacaur/vtk6/src/VTK-6.3.0/Utilities/KWSys/vtksys/kwsysPlatformTestsCXX.cxx: In function ‘void f(const std::allocator<char>&)’:
  127. /home/kishore/.cache/pacaur/vtk6/src/VTK-6.3.0/Utilities/KWSys/vtksys/kwsysPlatformTestsCXX.cxx:256:25: error: no matching function for call to ‘std::allocator<char>::max_size(long unsigned int) const’
  128. a.max_size(sizeof(int));
  129. ^
  130. In file included from /usr/include/c++/7.3.1/x86_64-pc-linux-gnu/bits/c++allocator.h:33:0,
  131. from /usr/include/c++/7.3.1/bits/allocator.h:46,
  132. from /usr/include/c++/7.3.1/memory:63,
  133. from /home/kishore/.cache/pacaur/vtk6/src/VTK-6.3.0/Utilities/KWSys/vtksys/kwsysPlatformTestsCXX.cxx:253:
  134. /usr/include/c++/7.3.1/ext/new_allocator.h:129:7: note: candidate: __gnu_cxx::new_allocator<_Tp>::size_type __gnu_cxx::new_allocator<_Tp>::max_size() const [with _Tp = char; __gnu_cxx::new_allocator<_Tp>::size_type = long unsigned int]
  135. max_size() const _GLIBCXX_USE_NOEXCEPT
  136. ^~~~~~~~
  137. /usr/include/c++/7.3.1/ext/new_allocator.h:129:7: note: candidate expects 0 arguments, 1 provided
  138. ninja: build stopped: subcommand failed.
  139.  
  140.  
  141. Checking whether "<>" is needed for template friends failed to compile with the following output:
  142. Change Dir: /home/kishore/.cache/pacaur/vtk6/src/build/Utilities/KWSys/vtksys/CMakeFiles/CMakeTmp
  143.  
  144. Run Build Command:"/bin/ninja" "cmTC_e7b27"
  145. [1/2] Building CXX object CMakeFiles/cmTC_e7b27.dir/kwsysPlatformTestsCXX.cxx.o
  146. FAILED: CMakeFiles/cmTC_e7b27.dir/kwsysPlatformTestsCXX.cxx.o
  147. /bin/c++ -DTEST_KWSYS_CXX_HAS_NULL_TEMPLATE_ARGS -D__STDC_CONSTANT_MACROS -o CMakeFiles/cmTC_e7b27.dir/kwsysPlatformTestsCXX.cxx.o -c /home/kishore/.cache/pacaur/vtk6/src/VTK-6.3.0/Utilities/KWSys/vtksys/kwsysPlatformTestsCXX.cxx
  148. /home/kishore/.cache/pacaur/vtk6/src/VTK-6.3.0/Utilities/KWSys/vtksys/kwsysPlatformTestsCXX.cxx:141:21: warning: friend declaration ‘int f(A<T>&)’ declares a non-template function [-Wnon-template-friend]
  149. friend int f(A<T>&);
  150. ^
  151. /home/kishore/.cache/pacaur/vtk6/src/VTK-6.3.0/Utilities/KWSys/vtksys/kwsysPlatformTestsCXX.cxx:141:21: note: (if this is not what you intended, make sure the function template has already been declared and add <> after the function name here)
  152. /home/kishore/.cache/pacaur/vtk6/src/VTK-6.3.0/Utilities/KWSys/vtksys/kwsysPlatformTestsCXX.cxx: In instantiation of ‘int f(A<T>&) [with T = int]’:
  153. /home/kishore/.cache/pacaur/vtk6/src/VTK-6.3.0/Utilities/KWSys/vtksys/kwsysPlatformTestsCXX.cxx:147:23: required from here
  154. /home/kishore/.cache/pacaur/vtk6/src/VTK-6.3.0/Utilities/KWSys/vtksys/kwsysPlatformTestsCXX.cxx:146:46: error: ‘int A<int>::x’ is private within this context
  155. template <class T> int f(A<T>& a) { return a.x = 0; }
  156. ~~^
  157. /home/kishore/.cache/pacaur/vtk6/src/VTK-6.3.0/Utilities/KWSys/vtksys/kwsysPlatformTestsCXX.cxx:143:7: note: declared private here
  158. int x;
  159. ^
  160. ninja: build stopped: subcommand failed.
  161.  
  162.  
  163. Checking whether C++ compiler has '__int64' failed to compile with the following output:
  164. Change Dir: /home/kishore/.cache/pacaur/vtk6/src/build/Utilities/KWSys/vtksys/CMakeFiles/CMakeTmp
  165.  
  166. Run Build Command:"/bin/ninja" "cmTC_d9470"
  167. [1/2] Building CXX object CMakeFiles/cmTC_d9470.dir/kwsysPlatformTestsCXX.cxx.o
  168. FAILED: CMakeFiles/cmTC_d9470.dir/kwsysPlatformTestsCXX.cxx.o
  169. /bin/c++ -DTEST_KWSYS_CXX_HAS___INT64 -D__STDC_CONSTANT_MACROS -o CMakeFiles/cmTC_d9470.dir/kwsysPlatformTestsCXX.cxx.o -c /home/kishore/.cache/pacaur/vtk6/src/VTK-6.3.0/Utilities/KWSys/vtksys/kwsysPlatformTestsCXX.cxx
  170. /home/kishore/.cache/pacaur/vtk6/src/VTK-6.3.0/Utilities/KWSys/vtksys/kwsysPlatformTestsCXX.cxx:126:1: error: ‘__int64’ does not name a type; did you mean ‘__amd64’?
  171. __int64 f(__int64 n) { return n; }
  172. ^~~~~~~
  173. __amd64
  174. /home/kishore/.cache/pacaur/vtk6/src/VTK-6.3.0/Utilities/KWSys/vtksys/kwsysPlatformTestsCXX.cxx: In function ‘int main()’:
  175. /home/kishore/.cache/pacaur/vtk6/src/VTK-6.3.0/Utilities/KWSys/vtksys/kwsysPlatformTestsCXX.cxx:129:3: error: ‘__int64’ was not declared in this scope
  176. __int64 n = 0;
  177. ^~~~~~~
  178. /home/kishore/.cache/pacaur/vtk6/src/VTK-6.3.0/Utilities/KWSys/vtksys/kwsysPlatformTestsCXX.cxx:129:3: note: suggested alternative: ‘__amd64’
  179. __int64 n = 0;
  180. ^~~~~~~
  181. __amd64
  182. /home/kishore/.cache/pacaur/vtk6/src/VTK-6.3.0/Utilities/KWSys/vtksys/kwsysPlatformTestsCXX.cxx:130:29: error: ‘n’ was not declared in this scope
  183. return static_cast<int>(f(n));
  184. ^
  185. /home/kishore/.cache/pacaur/vtk6/src/VTK-6.3.0/Utilities/KWSys/vtksys/kwsysPlatformTestsCXX.cxx:130:27: error: ‘f’ was not declared in this scope
  186. return static_cast<int>(f(n));
  187. ^
  188. ninja: build stopped: subcommand failed.
  189.  
  190.  
  191. Determining size of __int64 failed with the following output:
  192. Change Dir: /home/kishore/.cache/pacaur/vtk6/src/build/CMakeFiles/CMakeTmp
  193.  
  194. Run Build Command:"/bin/ninja" "cmTC_c8121"
  195. [1/2] Building C object CMakeFiles/cmTC_c8121.dir/KWSYS_SIZEOF___INT64.c.o
  196. FAILED: CMakeFiles/cmTC_c8121.dir/KWSYS_SIZEOF___INT64.c.o
  197. /bin/cc -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -fno-plt -o CMakeFiles/cmTC_c8121.dir/KWSYS_SIZEOF___INT64.c.o -c /home/kishore/.cache/pacaur/vtk6/src/build/CMakeFiles/CheckTypeSize/KWSYS_SIZEOF___INT64.c
  198. /home/kishore/.cache/pacaur/vtk6/src/build/CMakeFiles/CheckTypeSize/KWSYS_SIZEOF___INT64.c:23:22: error: ‘__int64’ undeclared here (not in a function); did you mean ‘__int64_t’?
  199. #define SIZE (sizeof(__int64))
  200. ^
  201. /home/kishore/.cache/pacaur/vtk6/src/build/CMakeFiles/CheckTypeSize/KWSYS_SIZEOF___INT64.c:25:12: note: in expansion of macro ‘SIZE’
  202. ('0' + ((SIZE / 10000)%10)),
  203. ^~~~
  204. ninja: build stopped: subcommand failed.
  205.  
  206. /home/kishore/.cache/pacaur/vtk6/src/build/CMakeFiles/CheckTypeSize/KWSYS_SIZEOF___INT64.c:
  207. #include <sys/types.h>
  208. #include <stdint.h>
  209. #include <stddef.h>
  210.  
  211.  
  212. #undef KEY
  213. #if defined(__i386)
  214. # define KEY '_','_','i','3','8','6'
  215. #elif defined(__x86_64)
  216. # define KEY '_','_','x','8','6','_','6','4'
  217. #elif defined(__ppc__)
  218. # define KEY '_','_','p','p','c','_','_'
  219. #elif defined(__ppc64__)
  220. # define KEY '_','_','p','p','c','6','4','_','_'
  221. #elif defined(__aarch64__)
  222. # define KEY '_','_','a','a','r','c','h','6','4','_','_'
  223. #elif defined(__ARM_ARCH_7A__)
  224. # define KEY '_','_','A','R','M','_','A','R','C','H','_','7','A','_','_'
  225. #elif defined(__ARM_ARCH_7S__)
  226. # define KEY '_','_','A','R','M','_','A','R','C','H','_','7','S','_','_'
  227. #endif
  228.  
  229. #define SIZE (sizeof(__int64))
  230. char info_size[] = {'I', 'N', 'F', 'O', ':', 's','i','z','e','[',
  231. ('0' + ((SIZE / 10000)%10)),
  232. ('0' + ((SIZE / 1000)%10)),
  233. ('0' + ((SIZE / 100)%10)),
  234. ('0' + ((SIZE / 10)%10)),
  235. ('0' + (SIZE % 10)),
  236. ']',
  237. #ifdef KEY
  238. ' ','k','e','y','[', KEY, ']',
  239. #endif
  240. '\0'};
  241.  
  242. #ifdef __CLASSIC_C__
  243. int main(argc, argv) int argc; char *argv[];
  244. #else
  245. int main(int argc, char *argv[])
  246. #endif
  247. {
  248. int require = 0;
  249. require += info_size[argc];
  250. (void)argv;
  251. return require;
  252. }
  253.  
  254.  
  255. Checking whether CXX compiler has environ in stdlib.h failed to compile with the following output:
  256. Change Dir: /home/kishore/.cache/pacaur/vtk6/src/build/Utilities/KWSys/vtksys/CMakeFiles/CMakeTmp
  257.  
  258. Run Build Command:"/bin/ninja" "cmTC_5db07"
  259. [1/2] Building CXX object CMakeFiles/cmTC_5db07.dir/kwsysPlatformTestsCXX.cxx.o
  260. FAILED: CMakeFiles/cmTC_5db07.dir/kwsysPlatformTestsCXX.cxx.o
  261. /bin/c++ -DTEST_KWSYS_CXX_HAS_ENVIRON_IN_STDLIB_H -D__STDC_CONSTANT_MACROS -o CMakeFiles/cmTC_5db07.dir/kwsysPlatformTestsCXX.cxx.o -c /home/kishore/.cache/pacaur/vtk6/src/VTK-6.3.0/Utilities/KWSys/vtksys/kwsysPlatformTestsCXX.cxx
  262. /home/kishore/.cache/pacaur/vtk6/src/VTK-6.3.0/Utilities/KWSys/vtksys/kwsysPlatformTestsCXX.cxx: In function ‘int main()’:
  263. /home/kishore/.cache/pacaur/vtk6/src/VTK-6.3.0/Utilities/KWSys/vtksys/kwsysPlatformTestsCXX.cxx:450:13: error: ‘environ’ was not declared in this scope
  264. char* e = environ[0];
  265. ^~~~~~~
  266. /home/kishore/.cache/pacaur/vtk6/src/VTK-6.3.0/Utilities/KWSys/vtksys/kwsysPlatformTestsCXX.cxx:450:13: note: suggested alternative: ‘union’
  267. char* e = environ[0];
  268. ^~~~~~~
  269. union
  270. ninja: build stopped: subcommand failed.
  271.  
  272.  
  273. Checking whether CXX compiler has _atoi64 failed to compile with the following output:
  274. Change Dir: /home/kishore/.cache/pacaur/vtk6/src/build/Utilities/KWSys/vtksys/CMakeFiles/CMakeTmp
  275.  
  276. Run Build Command:"/bin/ninja" "cmTC_95408"
  277. [1/2] Building CXX object CMakeFiles/cmTC_95408.dir/kwsysPlatformTestsCXX.cxx.o
  278. FAILED: CMakeFiles/cmTC_95408.dir/kwsysPlatformTestsCXX.cxx.o
  279. /bin/c++ -DTEST_KWSYS_CXX_HAS__ATOI64 -D__STDC_CONSTANT_MACROS -o CMakeFiles/cmTC_95408.dir/kwsysPlatformTestsCXX.cxx.o -c /home/kishore/.cache/pacaur/vtk6/src/VTK-6.3.0/Utilities/KWSys/vtksys/kwsysPlatformTestsCXX.cxx
  280. /home/kishore/.cache/pacaur/vtk6/src/VTK-6.3.0/Utilities/KWSys/vtksys/kwsysPlatformTestsCXX.cxx: In function ‘int main()’:
  281. /home/kishore/.cache/pacaur/vtk6/src/VTK-6.3.0/Utilities/KWSys/vtksys/kwsysPlatformTestsCXX.cxx:493:27: error: ‘_atoi64’ was not declared in this scope
  282. return static_cast<int>(_atoi64(str));
  283. ^~~~~~~
  284. /home/kishore/.cache/pacaur/vtk6/src/VTK-6.3.0/Utilities/KWSys/vtksys/kwsysPlatformTestsCXX.cxx:493:27: note: suggested alternative: ‘atoi’
  285. return static_cast<int>(_atoi64(str));
  286. ^~~~~~~
  287. atoi
  288. ninja: build stopped: subcommand failed.
  289.  
  290.  
  291. Performing C SOURCE FILE Test GLX_DEFINES_TYPE_GLXextFuncPtr_AS_EMPTY failed with the following output:
  292. Change Dir: /home/kishore/.cache/pacaur/vtk6/src/build/CMakeFiles/CMakeTmp
  293.  
  294. Run Build Command:"/bin/ninja" "cmTC_2fe84"
  295. [1/2] Building C object CMakeFiles/cmTC_2fe84.dir/src.c.o
  296. FAILED: CMakeFiles/cmTC_2fe84.dir/src.c.o
  297. /bin/cc -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -fno-plt -DGLX_DEFINES_TYPE_GLXextFuncPtr_AS_EMPTY -o CMakeFiles/cmTC_2fe84.dir/src.c.o -c src.c
  298. src.c: In function ‘main’:
  299. src.c:8:2: error: too many arguments to function ‘f’
  300. f(x); /* fails if prototype is void, pass if prototype is empty. */
  301. ^
  302. ninja: build stopped: subcommand failed.
  303.  
  304. Source file was:
  305.  
  306. #define GLX_GLXEXT_LEGACY
  307. #include <GL/glx.h>
  308. int main()
  309. {
  310. __GLXextFuncPtr f;
  311. int x;
  312. f(x); /* fails if prototype is void, pass if prototype is empty. */
  313.  
  314. return 0;
  315. }
  316.  
  317. Performing C SOURCE FILE Test GLX_DECLARES_FUNCTION_glXGetProcAddressARB_AS_EMPTY failed with the following output:
  318. Change Dir: /home/kishore/.cache/pacaur/vtk6/src/build/CMakeFiles/CMakeTmp
  319.  
  320. Run Build Command:"/bin/ninja" "cmTC_15fc8"
  321. [1/2] Building C object CMakeFiles/cmTC_15fc8.dir/src.c.o
  322. FAILED: CMakeFiles/cmTC_15fc8.dir/src.c.o
  323. /bin/cc -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -fno-plt -DGLX_DECLARES_FUNCTION_glXGetProcAddressARB_AS_EMPTY -o CMakeFiles/cmTC_15fc8.dir/src.c.o -c src.c
  324. src.c: In function ‘main’:
  325. src.c:8:2: error: too many arguments to function ‘glXGetProcAddressARB((const GLubyte *)"aRandomFunction")’
  326. glXGetProcAddressARB((const GLubyte *)("aRandomFunction"))(x);
  327. ^~~~~~~~~~~~~~~~~~~~
  328. ninja: build stopped: subcommand failed.
  329.  
  330. Source file was:
  331.  
  332. #define GLX_GLXEXT_LEGACY
  333. #include <GL/glx.h>
  334. int main()
  335. {
  336. int x;
  337. /* fails if prototype is void, pass if prototype is empty. */
  338. glXGetProcAddressARB((const GLubyte *)("aRandomFunction"))(x);
  339. return 0;
  340. }
  341.  
  342. Performing C SOURCE FILE Test GLX_DECLARES_FUNCTION_glXGetProcAddress_AS_EMPTY failed with the following output:
  343. Change Dir: /home/kishore/.cache/pacaur/vtk6/src/build/CMakeFiles/CMakeTmp
  344.  
  345. Run Build Command:"/bin/ninja" "cmTC_dc652"
  346. [1/2] Building C object CMakeFiles/cmTC_dc652.dir/src.c.o
  347. FAILED: CMakeFiles/cmTC_dc652.dir/src.c.o
  348. /bin/cc -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -fno-plt -DGLX_DECLARES_FUNCTION_glXGetProcAddress_AS_EMPTY -o CMakeFiles/cmTC_dc652.dir/src.c.o -c src.c
  349. src.c: In function ‘main’:
  350. src.c:8:2: error: too many arguments to function ‘glXGetProcAddress((const GLubyte *)"aRandomFunction")’
  351. glXGetProcAddress((const GLubyte *)("aRandomFunction"))(x);
  352. ^~~~~~~~~~~~~~~~~
  353. ninja: build stopped: subcommand failed.
  354.  
  355. Source file was:
  356.  
  357. #define GLX_GLXEXT_LEGACY
  358. #include <GL/glx.h>
  359. int main()
  360. {
  361. int x;
  362. /* fails if prototype is void, pass if prototype is empty. */
  363. glXGetProcAddress((const GLubyte *)("aRandomFunction"))(x);
  364. return 0;
  365. }
  366.  
  367. Determining if the function WSAStartup exists in the ws2_32;m;dl failed with the following output:
  368. Change Dir: /home/kishore/.cache/pacaur/vtk6/src/build/CMakeFiles/CMakeTmp
  369.  
  370. Run Build Command:"/bin/ninja" "cmTC_09dd9"
  371. [1/2] Building C object CMakeFiles/cmTC_09dd9.dir/CheckFunctionExists.c.o
  372. [2/2] Linking C executable cmTC_09dd9
  373. FAILED: cmTC_09dd9
  374. : && /bin/cc -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -fno-plt -w -w -DCHECK_FUNCTION_EXISTS=WSAStartup -Wl,-O1,--sort-common,--as-needed,-z,relro,-z,now -rdynamic CMakeFiles/cmTC_09dd9.dir/CheckFunctionExists.c.o -o cmTC_09dd9 -lws2_32 -lm -ldl && :
  375. /bin/ld: cannot find -lws2_32
  376. collect2: error: ld returned 1 exit status
  377. ninja: build stopped: subcommand failed.
  378.  
  379.  
  380. Determining if the function gethostbyname exists in the wsock32;m;dl failed with the following output:
  381. Change Dir: /home/kishore/.cache/pacaur/vtk6/src/build/CMakeFiles/CMakeTmp
  382.  
  383. Run Build Command:"/bin/ninja" "cmTC_12745"
  384. [1/2] Building C object CMakeFiles/cmTC_12745.dir/CheckFunctionExists.c.o
  385. [2/2] Linking C executable cmTC_12745
  386. FAILED: cmTC_12745
  387. : && /bin/cc -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -fno-plt -w -w -DCHECK_FUNCTION_EXISTS=gethostbyname -Wl,-O1,--sort-common,--as-needed,-z,relro,-z,now -rdynamic CMakeFiles/cmTC_12745.dir/CheckFunctionExists.c.o -o cmTC_12745 -lwsock32 -lm -ldl && :
  388. /bin/ld: cannot find -lwsock32
  389. collect2: error: ld returned 1 exit status
  390. ninja: build stopped: subcommand failed.
  391.  
  392.  
  393. Determining if the function gethostname exists in the ucb;m;dl failed with the following output:
  394. Change Dir: /home/kishore/.cache/pacaur/vtk6/src/build/CMakeFiles/CMakeTmp
  395.  
  396. Run Build Command:"/bin/ninja" "cmTC_ab5f2"
  397. [1/2] Building C object CMakeFiles/cmTC_ab5f2.dir/CheckFunctionExists.c.o
  398. [2/2] Linking C executable cmTC_ab5f2
  399. FAILED: cmTC_ab5f2
  400. : && /bin/cc -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -fno-plt -w -w -DCHECK_FUNCTION_EXISTS=gethostname -Wl,-O1,--sort-common,--as-needed,-z,relro,-z,now -rdynamic CMakeFiles/cmTC_ab5f2.dir/CheckFunctionExists.c.o -o cmTC_ab5f2 -lucb -lm -ldl && :
  401. /bin/ld: cannot find -lucb
  402. collect2: error: ld returned 1 exit status
  403. ninja: build stopped: subcommand failed.
  404.  
  405.  
  406. Determining if the function connect exists in the socket;m;dl failed with the following output:
  407. Change Dir: /home/kishore/.cache/pacaur/vtk6/src/build/CMakeFiles/CMakeTmp
  408.  
  409. Run Build Command:"/bin/ninja" "cmTC_5dd4f"
  410. [1/2] Building C object CMakeFiles/cmTC_5dd4f.dir/CheckFunctionExists.c.o
  411. [2/2] Linking C executable cmTC_5dd4f
  412. FAILED: cmTC_5dd4f
  413. : && /bin/cc -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -fno-plt -w -w -DCHECK_FUNCTION_EXISTS=connect -Wl,-O1,--sort-common,--as-needed,-z,relro,-z,now -rdynamic CMakeFiles/cmTC_5dd4f.dir/CheckFunctionExists.c.o -o cmTC_5dd4f -lsocket -lm -ldl && :
  414. /bin/ld: cannot find -lsocket
  415. collect2: error: ld returned 1 exit status
  416. ninja: build stopped: subcommand failed.
  417.  
  418.  
  419. Determining if the function clock_gettime exists in the posix4 failed with the following output:
  420. Change Dir: /home/kishore/.cache/pacaur/vtk6/src/build/CMakeFiles/CMakeTmp
  421.  
  422. Run Build Command:"/bin/ninja" "cmTC_94ce5"
  423. [1/2] Building C object CMakeFiles/cmTC_94ce5.dir/CheckFunctionExists.c.o
  424. [2/2] Linking C executable cmTC_94ce5
  425. FAILED: cmTC_94ce5
  426. : && /bin/cc -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -fno-plt -w -w -DCHECK_FUNCTION_EXISTS=clock_gettime -Wl,-O1,--sort-common,--as-needed,-z,relro,-z,now -rdynamic CMakeFiles/cmTC_94ce5.dir/CheckFunctionExists.c.o -o cmTC_94ce5 -lposix4 -lm -ldl && :
  427. /bin/ld: cannot find -lposix4
  428. collect2: error: ld returned 1 exit status
  429. ninja: build stopped: subcommand failed.
  430.  
  431.  
  432. Determining if files sys/resource.h;sys/time.h;unistd.h;sys/ioctl.h;sys/stat.h;sys/socket.h;sys/types.h;stddef.h;setjmp.h;features.h;dirent.h;stdint.h;mach/mach_time.h exist failed with the following output:
  433. Change Dir: /home/kishore/.cache/pacaur/vtk6/src/build/CMakeFiles/CMakeTmp
  434.  
  435. Run Build Command:"/bin/ninja" "cmTC_c8ef2"
  436. [1/2] Building C object CMakeFiles/cmTC_c8ef2.dir/CheckIncludeFiles.c.o
  437. FAILED: CMakeFiles/cmTC_c8ef2.dir/CheckIncludeFiles.c.o
  438. /bin/cc -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -fno-plt -w -w -o CMakeFiles/cmTC_c8ef2.dir/CheckIncludeFiles.c.o -c CheckIncludeFiles.c
  439. CheckIncludeFiles.c:14:10: fatal error: mach/mach_time.h: No such file or directory
  440. #include <mach/mach_time.h>
  441. ^~~~~~~~~~~~~~~~~~
  442. compilation terminated.
  443. ninja: build stopped: subcommand failed.
  444.  
  445. Source:
  446. /* */
  447. #include <sys/resource.h>
  448. #include <sys/time.h>
  449. #include <unistd.h>
  450. #include <sys/ioctl.h>
  451. #include <sys/stat.h>
  452. #include <sys/socket.h>
  453. #include <sys/types.h>
  454. #include <stddef.h>
  455. #include <setjmp.h>
  456. #include <features.h>
  457. #include <dirent.h>
  458. #include <stdint.h>
  459. #include <mach/mach_time.h>
  460.  
  461.  
  462. int main(void){return 0;}
  463.  
  464. Determining if files sys/resource.h;sys/time.h;unistd.h;sys/ioctl.h;sys/stat.h;sys/socket.h;sys/types.h;stddef.h;setjmp.h;features.h;dirent.h;stdint.h;io.h exist failed with the following output:
  465. Change Dir: /home/kishore/.cache/pacaur/vtk6/src/build/CMakeFiles/CMakeTmp
  466.  
  467. Run Build Command:"/bin/ninja" "cmTC_7a1d2"
  468. [1/2] Building C object CMakeFiles/cmTC_7a1d2.dir/CheckIncludeFiles.c.o
  469. FAILED: CMakeFiles/cmTC_7a1d2.dir/CheckIncludeFiles.c.o
  470. /bin/cc -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -fno-plt -w -w -o CMakeFiles/cmTC_7a1d2.dir/CheckIncludeFiles.c.o -c CheckIncludeFiles.c
  471. CheckIncludeFiles.c:14:10: fatal error: io.h: No such file or directory
  472. #include <io.h>
  473. ^~~~~~
  474. compilation terminated.
  475. ninja: build stopped: subcommand failed.
  476.  
  477. Source:
  478. /* */
  479. #include <sys/resource.h>
  480. #include <sys/time.h>
  481. #include <unistd.h>
  482. #include <sys/ioctl.h>
  483. #include <sys/stat.h>
  484. #include <sys/socket.h>
  485. #include <sys/types.h>
  486. #include <stddef.h>
  487. #include <setjmp.h>
  488. #include <features.h>
  489. #include <dirent.h>
  490. #include <stdint.h>
  491. #include <io.h>
  492.  
  493.  
  494. int main(void){return 0;}
  495.  
  496. Determining if files sys/resource.h;sys/time.h;unistd.h;sys/ioctl.h;sys/stat.h;sys/socket.h;sys/types.h;stddef.h;setjmp.h;features.h;dirent.h;stdint.h;winsock2.h exist failed with the following output:
  497. Change Dir: /home/kishore/.cache/pacaur/vtk6/src/build/CMakeFiles/CMakeTmp
  498.  
  499. Run Build Command:"/bin/ninja" "cmTC_d0c6a"
  500. [1/2] Building C object CMakeFiles/cmTC_d0c6a.dir/CheckIncludeFiles.c.o
  501. FAILED: CMakeFiles/cmTC_d0c6a.dir/CheckIncludeFiles.c.o
  502. /bin/cc -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -fno-plt -w -w -o CMakeFiles/cmTC_d0c6a.dir/CheckIncludeFiles.c.o -c CheckIncludeFiles.c
  503. CheckIncludeFiles.c:14:10: fatal error: winsock2.h: No such file or directory
  504. #include <winsock2.h>
  505. ^~~~~~~~~~~~
  506. compilation terminated.
  507. ninja: build stopped: subcommand failed.
  508.  
  509. Source:
  510. /* */
  511. #include <sys/resource.h>
  512. #include <sys/time.h>
  513. #include <unistd.h>
  514. #include <sys/ioctl.h>
  515. #include <sys/stat.h>
  516. #include <sys/socket.h>
  517. #include <sys/types.h>
  518. #include <stddef.h>
  519. #include <setjmp.h>
  520. #include <features.h>
  521. #include <dirent.h>
  522. #include <stdint.h>
  523. #include <winsock2.h>
  524.  
  525.  
  526. int main(void){return 0;}
  527.  
  528. Determining if files sys/resource.h;sys/time.h;unistd.h;sys/ioctl.h;sys/stat.h;sys/socket.h;sys/types.h;stddef.h;setjmp.h;features.h;dirent.h;stdint.h;sys/timeb.h;globus/common.h exist failed with the following output:
  529. Change Dir: /home/kishore/.cache/pacaur/vtk6/src/build/CMakeFiles/CMakeTmp
  530.  
  531. Run Build Command:"/bin/ninja" "cmTC_6cbe8"
  532. [1/2] Building C object CMakeFiles/cmTC_6cbe8.dir/CheckIncludeFiles.c.o
  533. FAILED: CMakeFiles/cmTC_6cbe8.dir/CheckIncludeFiles.c.o
  534. /bin/cc -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -fno-plt -w -w -o CMakeFiles/cmTC_6cbe8.dir/CheckIncludeFiles.c.o -c CheckIncludeFiles.c
  535. CheckIncludeFiles.c:15:10: fatal error: globus/common.h: No such file or directory
  536. #include <globus/common.h>
  537. ^~~~~~~~~~~~~~~~~
  538. compilation terminated.
  539. ninja: build stopped: subcommand failed.
  540.  
  541. Source:
  542. /* */
  543. #include <sys/resource.h>
  544. #include <sys/time.h>
  545. #include <unistd.h>
  546. #include <sys/ioctl.h>
  547. #include <sys/stat.h>
  548. #include <sys/socket.h>
  549. #include <sys/types.h>
  550. #include <stddef.h>
  551. #include <setjmp.h>
  552. #include <features.h>
  553. #include <dirent.h>
  554. #include <stdint.h>
  555. #include <sys/timeb.h>
  556. #include <globus/common.h>
  557.  
  558.  
  559. int main(void){return 0;}
  560.  
  561. Determining if files sys/resource.h;sys/time.h;unistd.h;sys/ioctl.h;sys/stat.h;sys/socket.h;sys/types.h;stddef.h;setjmp.h;features.h;dirent.h;stdint.h;sys/timeb.h;pdb.h exist failed with the following output:
  562. Change Dir: /home/kishore/.cache/pacaur/vtk6/src/build/CMakeFiles/CMakeTmp
  563.  
  564. Run Build Command:"/bin/ninja" "cmTC_36684"
  565. [1/2] Building C object CMakeFiles/cmTC_36684.dir/CheckIncludeFiles.c.o
  566. FAILED: CMakeFiles/cmTC_36684.dir/CheckIncludeFiles.c.o
  567. /bin/cc -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -fno-plt -w -w -o CMakeFiles/cmTC_36684.dir/CheckIncludeFiles.c.o -c CheckIncludeFiles.c
  568. CheckIncludeFiles.c:15:10: fatal error: pdb.h: No such file or directory
  569. #include <pdb.h>
  570. ^~~~~~~
  571. compilation terminated.
  572. ninja: build stopped: subcommand failed.
  573.  
  574. Source:
  575. /* */
  576. #include <sys/resource.h>
  577. #include <sys/time.h>
  578. #include <unistd.h>
  579. #include <sys/ioctl.h>
  580. #include <sys/stat.h>
  581. #include <sys/socket.h>
  582. #include <sys/types.h>
  583. #include <stddef.h>
  584. #include <setjmp.h>
  585. #include <features.h>
  586. #include <dirent.h>
  587. #include <stdint.h>
  588. #include <sys/timeb.h>
  589. #include <pdb.h>
  590.  
  591.  
  592. int main(void){return 0;}
  593.  
  594. Determining if files sys/resource.h;sys/time.h;unistd.h;sys/ioctl.h;sys/stat.h;sys/socket.h;sys/types.h;stddef.h;setjmp.h;features.h;dirent.h;stdint.h;sys/timeb.h;pthread.h;srbclient.h exist failed with the following output:
  595. Change Dir: /home/kishore/.cache/pacaur/vtk6/src/build/CMakeFiles/CMakeTmp
  596.  
  597. Run Build Command:"/bin/ninja" "cmTC_db3ba"
  598. [1/2] Building C object CMakeFiles/cmTC_db3ba.dir/CheckIncludeFiles.c.o
  599. FAILED: CMakeFiles/cmTC_db3ba.dir/CheckIncludeFiles.c.o
  600. /bin/cc -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -fno-plt -w -w -o CMakeFiles/cmTC_db3ba.dir/CheckIncludeFiles.c.o -c CheckIncludeFiles.c
  601. CheckIncludeFiles.c:16:10: fatal error: srbclient.h: No such file or directory
  602. #include <srbclient.h>
  603. ^~~~~~~~~~~~~
  604. compilation terminated.
  605. ninja: build stopped: subcommand failed.
  606.  
  607. Source:
  608. /* */
  609. #include <sys/resource.h>
  610. #include <sys/time.h>
  611. #include <unistd.h>
  612. #include <sys/ioctl.h>
  613. #include <sys/stat.h>
  614. #include <sys/socket.h>
  615. #include <sys/types.h>
  616. #include <stddef.h>
  617. #include <setjmp.h>
  618. #include <features.h>
  619. #include <dirent.h>
  620. #include <stdint.h>
  621. #include <sys/timeb.h>
  622. #include <pthread.h>
  623. #include <srbclient.h>
  624.  
  625.  
  626. int main(void){return 0;}
  627.  
  628. Determining size of __int64 failed with the following output:
  629. Change Dir: /home/kishore/.cache/pacaur/vtk6/src/build/CMakeFiles/CMakeTmp
  630.  
  631. Run Build Command:"/bin/ninja" "cmTC_a786f"
  632. [1/2] Building C object CMakeFiles/cmTC_a786f.dir/H5_SIZEOF___INT64.c.o
  633. FAILED: CMakeFiles/cmTC_a786f.dir/H5_SIZEOF___INT64.c.o
  634. /bin/cc -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE -D_LARGEFILE_SOURCE -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -fno-plt -w -w -o CMakeFiles/cmTC_a786f.dir/H5_SIZEOF___INT64.c.o -c /home/kishore/.cache/pacaur/vtk6/src/build/CMakeFiles/CheckTypeSize/H5_SIZEOF___INT64.c
  635. /home/kishore/.cache/pacaur/vtk6/src/build/CMakeFiles/CheckTypeSize/H5_SIZEOF___INT64.c:23:22: error: ‘__int64’ undeclared here (not in a function); did you mean ‘__int64_t’?
  636. #define SIZE (sizeof(__int64))
  637. ^
  638. /home/kishore/.cache/pacaur/vtk6/src/build/CMakeFiles/CheckTypeSize/H5_SIZEOF___INT64.c:25:12: note: in expansion of macro ‘SIZE’
  639. ('0' + ((SIZE / 10000)%10)),
  640. ^~~~
  641. ninja: build stopped: subcommand failed.
  642.  
  643. /home/kishore/.cache/pacaur/vtk6/src/build/CMakeFiles/CheckTypeSize/H5_SIZEOF___INT64.c:
  644. #include <sys/types.h>
  645. #include <stdint.h>
  646. #include <stddef.h>
  647.  
  648.  
  649. #undef KEY
  650. #if defined(__i386)
  651. # define KEY '_','_','i','3','8','6'
  652. #elif defined(__x86_64)
  653. # define KEY '_','_','x','8','6','_','6','4'
  654. #elif defined(__ppc__)
  655. # define KEY '_','_','p','p','c','_','_'
  656. #elif defined(__ppc64__)
  657. # define KEY '_','_','p','p','c','6','4','_','_'
  658. #elif defined(__aarch64__)
  659. # define KEY '_','_','a','a','r','c','h','6','4','_','_'
  660. #elif defined(__ARM_ARCH_7A__)
  661. # define KEY '_','_','A','R','M','_','A','R','C','H','_','7','A','_','_'
  662. #elif defined(__ARM_ARCH_7S__)
  663. # define KEY '_','_','A','R','M','_','A','R','C','H','_','7','S','_','_'
  664. #endif
  665.  
  666. #define SIZE (sizeof(__int64))
  667. char info_size[] = {'I', 'N', 'F', 'O', ':', 's','i','z','e','[',
  668. ('0' + ((SIZE / 10000)%10)),
  669. ('0' + ((SIZE / 1000)%10)),
  670. ('0' + ((SIZE / 100)%10)),
  671. ('0' + ((SIZE / 10)%10)),
  672. ('0' + (SIZE % 10)),
  673. ']',
  674. #ifdef KEY
  675. ' ','k','e','y','[', KEY, ']',
  676. #endif
  677. '\0'};
  678.  
  679. #ifdef __CLASSIC_C__
  680. int main(argc, argv) int argc; char *argv[];
  681. #else
  682. int main(int argc, char *argv[])
  683. #endif
  684. {
  685. int require = 0;
  686. require += info_size[argc];
  687. (void)argv;
  688. return require;
  689. }
  690.  
  691.  
  692. Determining if the variable CLOCK_MONOTONIC exists failed with the following output:
  693. Change Dir: /home/kishore/.cache/pacaur/vtk6/src/build/CMakeFiles/CMakeTmp
  694.  
  695. Run Build Command:"/bin/ninja" "cmTC_34428"
  696. [1/2] Building C object CMakeFiles/cmTC_34428.dir/CheckVariableExists.c.o
  697. [2/2] Linking C executable cmTC_34428
  698. FAILED: cmTC_34428
  699. : && /bin/cc -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -fno-plt -w -w -DCHECK_VARIABLE_EXISTS=CLOCK_MONOTONIC -Wl,-O1,--sort-common,--as-needed,-z,relro,-z,now -rdynamic CMakeFiles/cmTC_34428.dir/CheckVariableExists.c.o -o cmTC_34428 -lm -ldl && :
  700. CMakeFiles/cmTC_34428.dir/CheckVariableExists.c.o: In function `main':
  701. CheckVariableExists.c:(.text.startup+0x8): undefined reference to `CLOCK_MONOTONIC'
  702. collect2: error: ld returned 1 exit status
  703. ninja: build stopped: subcommand failed.
  704.  
  705.  
  706. Performing Other Test HAVE___TM_GMTOFF failed with the following output:
  707. Change Dir: /home/kishore/.cache/pacaur/vtk6/src/build/CMakeFiles/CMakeTmp
  708.  
  709. Run Build Command:"/bin/ninja" "cmTC_84f7a"
  710. [1/2] Building C object CMakeFiles/cmTC_84f7a.dir/HDF5Tests.c.o
  711. FAILED: CMakeFiles/cmTC_84f7a.dir/HDF5Tests.c.o
  712. /bin/cc -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -fno-plt -w -w -DHAVE___TM_GMTOFF -DHAVE_SYS_TIME_H -DHAVE_UNISTD_H -DHAVE_SYS_TYPES_H -DHAVE_SYS_SOCKET_H -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE -D_LARGEFILE_SOURCE -o CMakeFiles/cmTC_84f7a.dir/HDF5Tests.c.o -c /home/kishore/.cache/pacaur/vtk6/src/VTK-6.3.0/ThirdParty/hdf5/vtkhdf5/config/cmake/HDF5Tests.c
  713. /home/kishore/.cache/pacaur/vtk6/src/VTK-6.3.0/ThirdParty/hdf5/vtkhdf5/config/cmake/HDF5Tests.c: In function ‘main’:
  714. /home/kishore/.cache/pacaur/vtk6/src/VTK-6.3.0/ThirdParty/hdf5/vtkhdf5/config/cmake/HDF5Tests.c:191:30: error: ‘struct tm’ has no member named ‘__tm_gmtoff’; did you mean ‘tm_gmtoff’?
  715. SIMPLE_TEST(struct tm tm; tm.__tm_gmtoff=0);
  716. ^
  717. /home/kishore/.cache/pacaur/vtk6/src/VTK-6.3.0/ThirdParty/hdf5/vtkhdf5/config/cmake/HDF5Tests.c:1:36: note: in definition of macro ‘SIMPLE_TEST’
  718. #define SIMPLE_TEST(x) int main(){ x; return 0; }
  719. ^
  720. ninja: build stopped: subcommand failed.
  721.  
  722. Performing Other Test HAVE_STRUCT_VIDEOCONFIG failed with the following output:
  723. Change Dir: /home/kishore/.cache/pacaur/vtk6/src/build/CMakeFiles/CMakeTmp
  724.  
  725. Run Build Command:"/bin/ninja" "cmTC_d69cb"
  726. [1/2] Building C object CMakeFiles/cmTC_d69cb.dir/HDF5Tests.c.o
  727. FAILED: CMakeFiles/cmTC_d69cb.dir/HDF5Tests.c.o
  728. /bin/cc -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -fno-plt -w -w -DHAVE_STRUCT_VIDEOCONFIG -DHAVE_SYS_TIME_H -DHAVE_UNISTD_H -DHAVE_SYS_TYPES_H -DHAVE_SYS_SOCKET_H -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE -D_LARGEFILE_SOURCE -o CMakeFiles/cmTC_d69cb.dir/HDF5Tests.c.o -c /home/kishore/.cache/pacaur/vtk6/src/VTK-6.3.0/ThirdParty/hdf5/vtkhdf5/config/cmake/HDF5Tests.c
  729. /home/kishore/.cache/pacaur/vtk6/src/VTK-6.3.0/ThirdParty/hdf5/vtkhdf5/config/cmake/HDF5Tests.c: In function ‘main’:
  730. /home/kishore/.cache/pacaur/vtk6/src/VTK-6.3.0/ThirdParty/hdf5/vtkhdf5/config/cmake/HDF5Tests.c:474:32: error: storage size of ‘w’ isn’t known
  731. SIMPLE_TEST(struct videoconfig w; w.numtextcols=0);
  732. ^
  733. /home/kishore/.cache/pacaur/vtk6/src/VTK-6.3.0/ThirdParty/hdf5/vtkhdf5/config/cmake/HDF5Tests.c:1:36: note: in definition of macro ‘SIMPLE_TEST’
  734. #define SIMPLE_TEST(x) int main(){ x; return 0; }
  735. ^
  736. ninja: build stopped: subcommand failed.
  737.  
  738. Performing Other Test HAVE_STRUCT_TEXT_INFO failed with the following output:
  739. Change Dir: /home/kishore/.cache/pacaur/vtk6/src/build/CMakeFiles/CMakeTmp
  740.  
  741. Run Build Command:"/bin/ninja" "cmTC_153c4"
  742. [1/2] Building C object CMakeFiles/cmTC_153c4.dir/HDF5Tests.c.o
  743. FAILED: CMakeFiles/cmTC_153c4.dir/HDF5Tests.c.o
  744. /bin/cc -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -fno-plt -w -w -DHAVE_STRUCT_TEXT_INFO -DHAVE_SYS_TIME_H -DHAVE_UNISTD_H -DHAVE_SYS_TYPES_H -DHAVE_SYS_SOCKET_H -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE -D_LARGEFILE_SOURCE -o CMakeFiles/cmTC_153c4.dir/HDF5Tests.c.o -c /home/kishore/.cache/pacaur/vtk6/src/VTK-6.3.0/ThirdParty/hdf5/vtkhdf5/config/cmake/HDF5Tests.c
  745. /home/kishore/.cache/pacaur/vtk6/src/VTK-6.3.0/ThirdParty/hdf5/vtkhdf5/config/cmake/HDF5Tests.c: In function ‘main’:
  746. /home/kishore/.cache/pacaur/vtk6/src/VTK-6.3.0/ThirdParty/hdf5/vtkhdf5/config/cmake/HDF5Tests.c:480:30: error: storage size of ‘w’ isn’t known
  747. SIMPLE_TEST(struct text_info w; w.screenwidth=0);
  748. ^
  749. /home/kishore/.cache/pacaur/vtk6/src/VTK-6.3.0/ThirdParty/hdf5/vtkhdf5/config/cmake/HDF5Tests.c:1:36: note: in definition of macro ‘SIMPLE_TEST’
  750. #define SIMPLE_TEST(x) int main(){ x; return 0; }
  751. ^
  752. ninja: build stopped: subcommand failed.
  753.  
  754. Determining if the function _getvideoconfig exists failed with the following output:
  755. Change Dir: /home/kishore/.cache/pacaur/vtk6/src/build/CMakeFiles/CMakeTmp
  756.  
  757. Run Build Command:"/bin/ninja" "cmTC_beb58"
  758. [1/2] Building C object CMakeFiles/cmTC_beb58.dir/CheckFunctionExists.c.o
  759. [2/2] Linking C executable cmTC_beb58
  760. FAILED: cmTC_beb58
  761. : && /bin/cc -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -fno-plt -w -w -DCHECK_FUNCTION_EXISTS=_getvideoconfig -Wl,-O1,--sort-common,--as-needed,-z,relro,-z,now -rdynamic CMakeFiles/cmTC_beb58.dir/CheckFunctionExists.c.o -o cmTC_beb58 -lm -ldl && :
  762. CMakeFiles/cmTC_beb58.dir/CheckFunctionExists.c.o: In function `main':
  763. CheckFunctionExists.c:(.text.startup+0xd): undefined reference to `_getvideoconfig'
  764. collect2: error: ld returned 1 exit status
  765. ninja: build stopped: subcommand failed.
  766.  
  767.  
  768. Determining if the function gettextinfo exists failed with the following output:
  769. Change Dir: /home/kishore/.cache/pacaur/vtk6/src/build/CMakeFiles/CMakeTmp
  770.  
  771. Run Build Command:"/bin/ninja" "cmTC_2e811"
  772. [1/2] Building C object CMakeFiles/cmTC_2e811.dir/CheckFunctionExists.c.o
  773. [2/2] Linking C executable cmTC_2e811
  774. FAILED: cmTC_2e811
  775. : && /bin/cc -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -fno-plt -w -w -DCHECK_FUNCTION_EXISTS=gettextinfo -Wl,-O1,--sort-common,--as-needed,-z,relro,-z,now -rdynamic CMakeFiles/cmTC_2e811.dir/CheckFunctionExists.c.o -o cmTC_2e811 -lm -ldl && :
  776. CMakeFiles/cmTC_2e811.dir/CheckFunctionExists.c.o: In function `main':
  777. CheckFunctionExists.c:(.text.startup+0xd): undefined reference to `gettextinfo'
  778. collect2: error: ld returned 1 exit status
  779. ninja: build stopped: subcommand failed.
  780.  
  781.  
  782. Determining if the function _scrsize exists failed with the following output:
  783. Change Dir: /home/kishore/.cache/pacaur/vtk6/src/build/CMakeFiles/CMakeTmp
  784.  
  785. Run Build Command:"/bin/ninja" "cmTC_b9602"
  786. [1/2] Building C object CMakeFiles/cmTC_b9602.dir/CheckFunctionExists.c.o
  787. [2/2] Linking C executable cmTC_b9602
  788. FAILED: cmTC_b9602
  789. : && /bin/cc -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -fno-plt -w -w -DCHECK_FUNCTION_EXISTS=_scrsize -Wl,-O1,--sort-common,--as-needed,-z,relro,-z,now -rdynamic CMakeFiles/cmTC_b9602.dir/CheckFunctionExists.c.o -o cmTC_b9602 -lm -ldl && :
  790. CMakeFiles/cmTC_b9602.dir/CheckFunctionExists.c.o: In function `main':
  791. CheckFunctionExists.c:(.text.startup+0xd): undefined reference to `_scrsize'
  792. collect2: error: ld returned 1 exit status
  793. ninja: build stopped: subcommand failed.
  794.  
  795.  
  796. Determining if the function GetConsoleScreenBufferInfo exists failed with the following output:
  797. Change Dir: /home/kishore/.cache/pacaur/vtk6/src/build/CMakeFiles/CMakeTmp
  798.  
  799. Run Build Command:"/bin/ninja" "cmTC_0257b"
  800. [1/2] Building C object CMakeFiles/cmTC_0257b.dir/CheckFunctionExists.c.o
  801. [2/2] Linking C executable cmTC_0257b
  802. FAILED: cmTC_0257b
  803. : && /bin/cc -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -fno-plt -w -w -DCHECK_FUNCTION_EXISTS=GetConsoleScreenBufferInfo -Wl,-O1,--sort-common,--as-needed,-z,relro,-z,now -rdynamic CMakeFiles/cmTC_0257b.dir/CheckFunctionExists.c.o -o cmTC_0257b -lm -ldl && :
  804. CMakeFiles/cmTC_0257b.dir/CheckFunctionExists.c.o: In function `main':
  805. CheckFunctionExists.c:(.text.startup+0xd): undefined reference to `GetConsoleScreenBufferInfo'
  806. collect2: error: ld returned 1 exit status
  807. ninja: build stopped: subcommand failed.
  808.  
  809.  
  810. Determining if the function setsysinfo exists failed with the following output:
  811. Change Dir: /home/kishore/.cache/pacaur/vtk6/src/build/CMakeFiles/CMakeTmp
  812.  
  813. Run Build Command:"/bin/ninja" "cmTC_dc951"
  814. [1/2] Building C object CMakeFiles/cmTC_dc951.dir/CheckFunctionExists.c.o
  815. [2/2] Linking C executable cmTC_dc951
  816. FAILED: cmTC_dc951
  817. : && /bin/cc -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -fno-plt -w -w -DCHECK_FUNCTION_EXISTS=setsysinfo -Wl,-O1,--sort-common,--as-needed,-z,relro,-z,now -rdynamic CMakeFiles/cmTC_dc951.dir/CheckFunctionExists.c.o -o cmTC_dc951 -lm -ldl && :
  818. CMakeFiles/cmTC_dc951.dir/CheckFunctionExists.c.o: In function `main':
  819. CheckFunctionExists.c:(.text.startup+0xd): undefined reference to `setsysinfo'
  820. collect2: error: ld returned 1 exit status
  821. ninja: build stopped: subcommand failed.
  822.  
  823.  
  824. Determining if the function sigsetjmp exists failed with the following output:
  825. Change Dir: /home/kishore/.cache/pacaur/vtk6/src/build/CMakeFiles/CMakeTmp
  826.  
  827. Run Build Command:"/bin/ninja" "cmTC_49406"
  828. [1/2] Building C object CMakeFiles/cmTC_49406.dir/CheckFunctionExists.c.o
  829. [2/2] Linking C executable cmTC_49406
  830. FAILED: cmTC_49406
  831. : && /bin/cc -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -fno-plt -w -w -DCHECK_FUNCTION_EXISTS=sigsetjmp -Wl,-O1,--sort-common,--as-needed,-z,relro,-z,now -rdynamic CMakeFiles/cmTC_49406.dir/CheckFunctionExists.c.o -o cmTC_49406 -lm -ldl && :
  832. CMakeFiles/cmTC_49406.dir/CheckFunctionExists.c.o: In function `main':
  833. CheckFunctionExists.c:(.text.startup+0xf): undefined reference to `sigsetjmp'
  834. collect2: error: ld returned 1 exit status
  835. ninja: build stopped: subcommand failed.
  836.  
  837.  
  838. Performing CXX Test OLD_HEADER_FILENAME failed with the following output:
  839. Change Dir: /home/kishore/.cache/pacaur/vtk6/src/build/CMakeFiles/CMakeTmp
  840.  
  841. Run Build Command:"/bin/ninja" "cmTC_14e3d"
  842. [1/2] Building CXX object CMakeFiles/cmTC_14e3d.dir/HDF5CXXTests.cpp.o
  843. [2/2] Linking CXX executable cmTC_14e3d
  844.  
  845. Performing CXX Test H5_NO_NAMESPACE failed with the following output:
  846. Change Dir: /home/kishore/.cache/pacaur/vtk6/src/build/CMakeFiles/CMakeTmp
  847.  
  848. Run Build Command:"/bin/ninja" "cmTC_923d4"
  849. [1/2] Building CXX object CMakeFiles/cmTC_923d4.dir/HDF5CXXTests.cpp.o
  850. [2/2] Linking CXX executable cmTC_923d4
  851.  
  852. Performing CXX Test H5_NO_STD failed with the following output:
  853. Change Dir: /home/kishore/.cache/pacaur/vtk6/src/build/CMakeFiles/CMakeTmp
  854.  
  855. Run Build Command:"/bin/ninja" "cmTC_a4d2c"
  856. [1/2] Building CXX object CMakeFiles/cmTC_a4d2c.dir/HDF5CXXTests.cpp.o
  857. [2/2] Linking CXX executable cmTC_a4d2c
  858.  
  859. Performing CXX Test BOOL_NOTDEFINED failed with the following output:
  860. Change Dir: /home/kishore/.cache/pacaur/vtk6/src/build/CMakeFiles/CMakeTmp
  861.  
  862. Run Build Command:"/bin/ninja" "cmTC_d1033"
  863. [1/2] Building CXX object CMakeFiles/cmTC_d1033.dir/HDF5CXXTests.cpp.o
  864. [2/2] Linking CXX executable cmTC_d1033
  865.  
  866. Performing CXX Test NO_STATIC_CAST failed with the following output:
  867. Change Dir: /home/kishore/.cache/pacaur/vtk6/src/build/CMakeFiles/CMakeTmp
  868.  
  869. Run Build Command:"/bin/ninja" "cmTC_fd6a5"
  870. [1/2] Building CXX object CMakeFiles/cmTC_fd6a5.dir/HDF5CXXTests.cpp.o
  871. [2/2] Linking CXX executable cmTC_fd6a5
  872.  
  873. Determining size of uchar failed with the following output:
  874. Change Dir: /home/kishore/.cache/pacaur/vtk6/src/build/CMakeFiles/CMakeTmp
  875.  
  876. Run Build Command:"/bin/ninja" "cmTC_632db"
  877. [1/2] Building C object CMakeFiles/cmTC_632db.dir/SIZEOF_UCHAR.c.o
  878. FAILED: CMakeFiles/cmTC_632db.dir/SIZEOF_UCHAR.c.o
  879. /bin/cc -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -fno-plt -w -w -o CMakeFiles/cmTC_632db.dir/SIZEOF_UCHAR.c.o -c /home/kishore/.cache/pacaur/vtk6/src/build/CMakeFiles/CheckTypeSize/SIZEOF_UCHAR.c
  880. /home/kishore/.cache/pacaur/vtk6/src/build/CMakeFiles/CheckTypeSize/SIZEOF_UCHAR.c:23:22: error: ‘uchar’ undeclared here (not in a function); did you mean ‘u_char’?
  881. #define SIZE (sizeof(uchar))
  882. ^
  883. /home/kishore/.cache/pacaur/vtk6/src/build/CMakeFiles/CheckTypeSize/SIZEOF_UCHAR.c:25:12: note: in expansion of macro ‘SIZE’
  884. ('0' + ((SIZE / 10000)%10)),
  885. ^~~~
  886. ninja: build stopped: subcommand failed.
  887.  
  888. /home/kishore/.cache/pacaur/vtk6/src/build/CMakeFiles/CheckTypeSize/SIZEOF_UCHAR.c:
  889. #include <sys/types.h>
  890. #include <stdint.h>
  891. #include <stddef.h>
  892.  
  893.  
  894. #undef KEY
  895. #if defined(__i386)
  896. # define KEY '_','_','i','3','8','6'
  897. #elif defined(__x86_64)
  898. # define KEY '_','_','x','8','6','_','6','4'
  899. #elif defined(__ppc__)
  900. # define KEY '_','_','p','p','c','_','_'
  901. #elif defined(__ppc64__)
  902. # define KEY '_','_','p','p','c','6','4','_','_'
  903. #elif defined(__aarch64__)
  904. # define KEY '_','_','a','a','r','c','h','6','4','_','_'
  905. #elif defined(__ARM_ARCH_7A__)
  906. # define KEY '_','_','A','R','M','_','A','R','C','H','_','7','A','_','_'
  907. #elif defined(__ARM_ARCH_7S__)
  908. # define KEY '_','_','A','R','M','_','A','R','C','H','_','7','S','_','_'
  909. #endif
  910.  
  911. #define SIZE (sizeof(uchar))
  912. char info_size[] = {'I', 'N', 'F', 'O', ':', 's','i','z','e','[',
  913. ('0' + ((SIZE / 10000)%10)),
  914. ('0' + ((SIZE / 1000)%10)),
  915. ('0' + ((SIZE / 100)%10)),
  916. ('0' + ((SIZE / 10)%10)),
  917. ('0' + (SIZE % 10)),
  918. ']',
  919. #ifdef KEY
  920. ' ','k','e','y','[', KEY, ']',
  921. #endif
  922. '\0'};
  923.  
  924. #ifdef __CLASSIC_C__
  925. int main(argc, argv) int argc; char *argv[];
  926. #else
  927. int main(int argc, char *argv[])
  928. #endif
  929. {
  930. int require = 0;
  931. require += info_size[argc];
  932. (void)argv;
  933. return require;
  934. }
  935.  
  936.  
  937. Performing C SOURCE FILE Test VTK_FFMPEG_HAS_IMG_CONVERT failed with the following output:
  938. Change Dir: /home/kishore/.cache/pacaur/vtk6/src/build/CMakeFiles/CMakeTmp
  939.  
  940. Run Build Command:"/bin/ninja" "cmTC_4cf38"
  941. [1/2] Building C object CMakeFiles/cmTC_4cf38.dir/src.c.o
  942. FAILED: CMakeFiles/cmTC_4cf38.dir/src.c.o
  943. /bin/cc -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -fno-plt -DVTK_FFMPEG_HAS_IMG_CONVERT -o CMakeFiles/cmTC_4cf38.dir/src.c.o -c src.c
  944. src.c: In function ‘main’:
  945. src.c:5:3: warning: implicit declaration of function ‘img_convert’ [-Wimplicit-function-declaration]
  946. img_convert(0, PIX_FMT_RGB24,
  947. ^~~~~~~~~~~
  948. src.c:5:18: error: ‘PIX_FMT_RGB24’ undeclared (first use in this function); did you mean ‘AV_PIX_FMT_RGB24’?
  949. img_convert(0, PIX_FMT_RGB24,
  950. ^~~~~~~~~~~~~
  951. AV_PIX_FMT_RGB24
  952. src.c:5:18: note: each undeclared identifier is reported only once for each function it appears in
  953. ninja: build stopped: subcommand failed.
  954.  
  955. Source file was:
  956.  
  957. #include <libavcodec/avcodec.h>
  958. int main()
  959. {
  960. img_convert(0, PIX_FMT_RGB24,
  961. 0, PIX_FMT_RGB24,
  962. 0, 0);
  963. return 0;
  964. }
  965.  
  966. Performing C++ SOURCE FILE Test HAVE_BOOST_SHARED_DYNAMIC_CAST failed with the following output:
  967. Change Dir: /home/kishore/.cache/pacaur/vtk6/src/build/CMakeFiles/CMakeTmp
  968.  
  969. Run Build Command:"/bin/ninja" "cmTC_f4681"
  970. [1/2] Building CXX object CMakeFiles/cmTC_f4681.dir/src.cxx.o
  971. FAILED: CMakeFiles/cmTC_f4681.dir/src.cxx.o
  972. /bin/c++ -D__STDC_CONSTANT_MACROS -w -w -w -DHAVE_BOOST_SHARED_DYNAMIC_CAST -o CMakeFiles/cmTC_f4681.dir/src.cxx.o -c src.cxx
  973. src.cxx: In function ‘int main(int, char**)’:
  974. src.cxx:10:10: error: ‘shared_dynamic_cast’ is not a member of ‘boost’
  975. boost::shared_dynamic_cast<Derived>(ptr);
  976. ^~~~~~~~~~~~~~~~~~~
  977. src.cxx:10:37: error: expected primary-expression before ‘>’ token
  978. boost::shared_dynamic_cast<Derived>(ptr);
  979. ^
  980. ninja: build stopped: subcommand failed.
  981.  
  982. Source file was:
  983.  
  984. #include <boost/shared_ptr.hpp>
  985.  
  986. struct Base { virtual ~Base(){} };
  987. struct Derived : public Base {};
  988.  
  989. int main(int ac, char * av[])
  990. {
  991. boost::shared_ptr<Base> ptr(new Base());
  992. boost::shared_dynamic_cast<Derived>(ptr);
  993. }
Add Comment
Please, Sign In to add comment