saikatbsk

CMakeError.log

Apr 2nd, 2019
30
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 9.40 KB | None | 0 0
  1. Determining if the system is big endian passed with the following output:
  2. Change Dir: /new-data-volume/saikat/opencv-with-cuda/opencv-3.1.0/build/CMakeFiles/CMakeTmp
  3.  
  4. Run Build Command:"/usr/bin/make" "cmTC_6258d/fast"
  5. /usr/bin/make -f CMakeFiles/cmTC_6258d.dir/build.make CMakeFiles/cmTC_6258d.dir/build
  6. make[1]: Entering directory '/new-data-volume/saikat/opencv-with-cuda/opencv-3.1.0/build/CMakeFiles/CMakeTmp'
  7. Building C object CMakeFiles/cmTC_6258d.dir/TestEndianess.c.o
  8. /usr/bin/cc -fsigned-char -W -Wall -Werror=return-type -Werror=non-virtual-dtor -Werror=address -Werror=sequence-point -Wformat -Werror=format-security -Wmissing-declarations -Wmissing-prototypes -Wstrict-prototypes -Wundef -Winit-self -Wpointer-arith -Wshadow -Wno-narrowing -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -msse -msse2 -mno-avx -msse3 -mno-ssse3 -mno-sse4.1 -mno-sse4.2 -ffunction-sections -fvisibility=hidden -O3 -DNDEBUG -o CMakeFiles/cmTC_6258d.dir/TestEndianess.c.o -c /new-data-volume/saikat/opencv-with-cuda/opencv-3.1.0/build/CMakeFiles/CMakeTmp/TestEndianess.c
  9. Linking C executable cmTC_6258d
  10. /usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_6258d.dir/link.txt --verbose=1
  11. /usr/bin/cc -fsigned-char -W -Wall -Werror=return-type -Werror=non-virtual-dtor -Werror=address -Werror=sequence-point -Wformat -Werror=format-security -Wmissing-declarations -Wmissing-prototypes -Wstrict-prototypes -Wundef -Winit-self -Wpointer-arith -Wshadow -Wno-narrowing -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -msse -msse2 -mno-avx -msse3 -mno-ssse3 -mno-sse4.1 -mno-sse4.2 -ffunction-sections -fvisibility=hidden -O3 -DNDEBUG CMakeFiles/cmTC_6258d.dir/TestEndianess.c.o -o cmTC_6258d -rdynamic
  12. make[1]: Leaving directory '/new-data-volume/saikat/opencv-with-cuda/opencv-3.1.0/build/CMakeFiles/CMakeTmp'
  13.  
  14. TestEndianess.c:
  15. /* A 16 bit integer is required. */
  16. typedef unsigned short cmakeint16;
  17.  
  18. /* On a little endian machine, these 16bit ints will give "THIS IS LITTLE ENDIAN."
  19. On a big endian machine the characters will be exchanged pairwise. */
  20. const cmakeint16 info_little[] = {0x4854, 0x5349, 0x4920, 0x2053, 0x494c, 0x5454, 0x454c, 0x4520, 0x444e, 0x4149, 0x2e4e, 0x0000};
  21.  
  22. /* on a big endian machine, these 16bit ints will give "THIS IS BIG ENDIAN."
  23. On a little endian machine the characters will be exchanged pairwise. */
  24. const cmakeint16 info_big[] = {0x5448, 0x4953, 0x2049, 0x5320, 0x4249, 0x4720, 0x454e, 0x4449, 0x414e, 0x2e2e, 0x0000};
  25.  
  26. #ifdef __CLASSIC_C__
  27. int main(argc, argv) int argc; char *argv[];
  28. #else
  29. int main(int argc, char *argv[])
  30. #endif
  31. {
  32. int require = 0;
  33. require += info_little[argc];
  34. require += info_big[argc];
  35. (void)argv;
  36. return require;
  37. }
  38.  
  39.  
  40. Determining if the include file linux/videodev.h exists failed with the following output:
  41. Change Dir: /new-data-volume/saikat/opencv-with-cuda/opencv-3.1.0/build/CMakeFiles/CMakeTmp
  42.  
  43. Run Build Command:"/usr/bin/make" "cmTC_f018f/fast"
  44. /usr/bin/make -f CMakeFiles/cmTC_f018f.dir/build.make CMakeFiles/cmTC_f018f.dir/build
  45. make[1]: Entering directory '/new-data-volume/saikat/opencv-with-cuda/opencv-3.1.0/build/CMakeFiles/CMakeTmp'
  46. Building C object CMakeFiles/cmTC_f018f.dir/CheckIncludeFile.c.o
  47. /usr/bin/cc -fsigned-char -W -Wall -Werror=return-type -Werror=non-virtual-dtor -Werror=address -Werror=sequence-point -Wformat -Werror=format-security -Wmissing-declarations -Wmissing-prototypes -Wstrict-prototypes -Wundef -Winit-self -Wpointer-arith -Wshadow -Wno-narrowing -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -msse -msse2 -mno-avx -msse3 -mno-ssse3 -mno-sse4.1 -mno-sse4.2 -ffunction-sections -fvisibility=hidden -O3 -DNDEBUG -o CMakeFiles/cmTC_f018f.dir/CheckIncludeFile.c.o -c /new-data-volume/saikat/opencv-with-cuda/opencv-3.1.0/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
  48. /new-data-volume/saikat/opencv-with-cuda/opencv-3.1.0/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c:1:28: fatal error: linux/videodev.h: No such file or directory
  49. compilation terminated.
  50. CMakeFiles/cmTC_f018f.dir/build.make:65: recipe for target 'CMakeFiles/cmTC_f018f.dir/CheckIncludeFile.c.o' failed
  51. make[1]: *** [CMakeFiles/cmTC_f018f.dir/CheckIncludeFile.c.o] Error 1
  52. make[1]: Leaving directory '/new-data-volume/saikat/opencv-with-cuda/opencv-3.1.0/build/CMakeFiles/CMakeTmp'
  53. Makefile:126: recipe for target 'cmTC_f018f/fast' failed
  54. make: *** [cmTC_f018f/fast] Error 2
  55.  
  56.  
  57. Determining if the include file sys/videoio.h exists failed with the following output:
  58. Change Dir: /new-data-volume/saikat/opencv-with-cuda/opencv-3.1.0/build/CMakeFiles/CMakeTmp
  59.  
  60. Run Build Command:"/usr/bin/make" "cmTC_cc018/fast"
  61. /usr/bin/make -f CMakeFiles/cmTC_cc018.dir/build.make CMakeFiles/cmTC_cc018.dir/build
  62. make[1]: Entering directory '/new-data-volume/saikat/opencv-with-cuda/opencv-3.1.0/build/CMakeFiles/CMakeTmp'
  63. Building C object CMakeFiles/cmTC_cc018.dir/CheckIncludeFile.c.o
  64. /usr/bin/cc -fsigned-char -W -Wall -Werror=return-type -Werror=non-virtual-dtor -Werror=address -Werror=sequence-point -Wformat -Werror=format-security -Wmissing-declarations -Wmissing-prototypes -Wstrict-prototypes -Wundef -Winit-self -Wpointer-arith -Wshadow -Wno-narrowing -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -msse -msse2 -mno-avx -msse3 -mno-ssse3 -mno-sse4.1 -mno-sse4.2 -ffunction-sections -fvisibility=hidden -O3 -DNDEBUG -o CMakeFiles/cmTC_cc018.dir/CheckIncludeFile.c.o -c /new-data-volume/saikat/opencv-with-cuda/opencv-3.1.0/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
  65. /new-data-volume/saikat/opencv-with-cuda/opencv-3.1.0/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c:1:25: fatal error: sys/videoio.h: No such file or directory
  66. compilation terminated.
  67. CMakeFiles/cmTC_cc018.dir/build.make:65: recipe for target 'CMakeFiles/cmTC_cc018.dir/CheckIncludeFile.c.o' failed
  68. make[1]: *** [CMakeFiles/cmTC_cc018.dir/CheckIncludeFile.c.o] Error 1
  69. make[1]: Leaving directory '/new-data-volume/saikat/opencv-with-cuda/opencv-3.1.0/build/CMakeFiles/CMakeTmp'
  70. Makefile:126: recipe for target 'cmTC_cc018/fast' failed
  71. make: *** [cmTC_cc018/fast] Error 2
  72.  
  73.  
  74. Determining if the include file linux/videodev.h exists failed with the following output:
  75. Change Dir: /new-data-volume/saikat/opencv-with-cuda/opencv-3.1.0/build/CMakeFiles/CMakeTmp
  76.  
  77. Run Build Command:"/usr/bin/make" "cmTC_4a226/fast"
  78. /usr/bin/make -f CMakeFiles/cmTC_4a226.dir/build.make CMakeFiles/cmTC_4a226.dir/build
  79. make[1]: Entering directory '/new-data-volume/saikat/opencv-with-cuda/opencv-3.1.0/build/CMakeFiles/CMakeTmp'
  80. Building C object CMakeFiles/cmTC_4a226.dir/CheckIncludeFile.c.o
  81. /usr/bin/cc -fsigned-char -W -Wall -Werror=return-type -Werror=non-virtual-dtor -Werror=address -Werror=sequence-point -Wformat -Werror=format-security -Wmissing-declarations -Wmissing-prototypes -Wstrict-prototypes -Wundef -Winit-self -Wpointer-arith -Wshadow -Wno-narrowing -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -msse -msse2 -mno-avx -msse3 -mno-ssse3 -mno-sse4.1 -mno-sse4.2 -ffunction-sections -fvisibility=hidden -O3 -DNDEBUG -o CMakeFiles/cmTC_4a226.dir/CheckIncludeFile.c.o -c /new-data-volume/saikat/opencv-with-cuda/opencv-3.1.0/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
  82. /new-data-volume/saikat/opencv-with-cuda/opencv-3.1.0/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c:1:28: fatal error: linux/videodev.h: No such file or directory
  83. compilation terminated.
  84. CMakeFiles/cmTC_4a226.dir/build.make:65: recipe for target 'CMakeFiles/cmTC_4a226.dir/CheckIncludeFile.c.o' failed
  85. make[1]: *** [CMakeFiles/cmTC_4a226.dir/CheckIncludeFile.c.o] Error 1
  86. make[1]: Leaving directory '/new-data-volume/saikat/opencv-with-cuda/opencv-3.1.0/build/CMakeFiles/CMakeTmp'
  87. Makefile:126: recipe for target 'cmTC_4a226/fast' failed
  88. make: *** [cmTC_4a226/fast] Error 2
  89.  
  90.  
  91. Determining if the include file sys/videoio.h exists failed with the following output:
  92. Change Dir: /new-data-volume/saikat/opencv-with-cuda/opencv-3.1.0/build/CMakeFiles/CMakeTmp
  93.  
  94. Run Build Command:"/usr/bin/make" "cmTC_421e8/fast"
  95. /usr/bin/make -f CMakeFiles/cmTC_421e8.dir/build.make CMakeFiles/cmTC_421e8.dir/build
  96. make[1]: Entering directory '/new-data-volume/saikat/opencv-with-cuda/opencv-3.1.0/build/CMakeFiles/CMakeTmp'
  97. Building C object CMakeFiles/cmTC_421e8.dir/CheckIncludeFile.c.o
  98. /usr/bin/cc -fsigned-char -W -Wall -Werror=return-type -Werror=non-virtual-dtor -Werror=address -Werror=sequence-point -Wformat -Werror=format-security -Wmissing-declarations -Wmissing-prototypes -Wstrict-prototypes -Wundef -Winit-self -Wpointer-arith -Wshadow -Wno-narrowing -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -msse -msse2 -mno-avx -msse3 -mno-ssse3 -mno-sse4.1 -mno-sse4.2 -ffunction-sections -fvisibility=hidden -O3 -DNDEBUG -o CMakeFiles/cmTC_421e8.dir/CheckIncludeFile.c.o -c /new-data-volume/saikat/opencv-with-cuda/opencv-3.1.0/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
  99. /new-data-volume/saikat/opencv-with-cuda/opencv-3.1.0/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c:1:25: fatal error: sys/videoio.h: No such file or directory
  100. compilation terminated.
  101. CMakeFiles/cmTC_421e8.dir/build.make:65: recipe for target 'CMakeFiles/cmTC_421e8.dir/CheckIncludeFile.c.o' failed
  102. make[1]: *** [CMakeFiles/cmTC_421e8.dir/CheckIncludeFile.c.o] Error 1
  103. make[1]: Leaving directory '/new-data-volume/saikat/opencv-with-cuda/opencv-3.1.0/build/CMakeFiles/CMakeTmp'
  104. Makefile:126: recipe for target 'cmTC_421e8/fast' failed
  105. make: *** [cmTC_421e8/fast] Error 2
Add Comment
Please, Sign In to add comment