Advertisement
Guest User

Untitled

a guest
Jun 19th, 2018
192
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 11.36 KB | None | 0 0
  1. Performing C++ SOURCE FILE Test HAVE_SHARED_PTR_IN_STD_NAMESPACE failed with the following output:
  2. Change Dir: /home/ubuntu/blender-git/27/CMakeFiles/CMakeTmp
  3.  
  4. Run Build Command:"/usr/bin/make" "cmTC_78c41/fast"
  5. /usr/bin/make -f CMakeFiles/cmTC_78c41.dir/build.make CMakeFiles/cmTC_78c41.dir/build
  6. make[1]: se entra en el directorio '/home/ubuntu/blender-git/27/CMakeFiles/CMakeTmp'
  7. Building CXX object CMakeFiles/cmTC_78c41.dir/src.cxx.o
  8. /usr/bin/c++ -DHAVE_SHARED_PTR_IN_STD_NAMESPACE -o CMakeFiles/cmTC_78c41.dir/src.cxx.o -c /home/ubuntu/blender-git/27/CMakeFiles/CMakeTmp/src.cxx
  9. /home/ubuntu/blender-git/27/CMakeFiles/CMakeTmp/src.cxx: In function ‘int main()’:
  10. /home/ubuntu/blender-git/27/CMakeFiles/CMakeTmp/src.cxx:3:32: error: ‘shared_ptr’ is not a member of ‘std’
  11. std::shared_ptr<int> int_ptr;
  12. ^
  13. /home/ubuntu/blender-git/27/CMakeFiles/CMakeTmp/src.cxx:3:48: error: expected primary-expression before ‘int’
  14. std::shared_ptr<int> int_ptr;
  15. ^
  16. CMakeFiles/cmTC_78c41.dir/build.make:65: fallo en las instrucciones para el objetivo 'CMakeFiles/cmTC_78c41.dir/src.cxx.o'
  17. make[1]: *** [CMakeFiles/cmTC_78c41.dir/src.cxx.o] Error 1
  18. make[1]: se sale del directorio '/home/ubuntu/blender-git/27/CMakeFiles/CMakeTmp'
  19. Makefile:126: fallo en las instrucciones para el objetivo 'cmTC_78c41/fast'
  20. make: *** [cmTC_78c41/fast] Error 2
  21.  
  22. Source file was:
  23. #include <memory>
  24. int main() {
  25. std::shared_ptr<int> int_ptr;
  26. return 0;
  27. }
  28. Performing C++ SOURCE FILE Test HAVE_SHARED_PTR_IN_TR1_NAMESPACE failed with the following output:
  29. Change Dir: /home/ubuntu/blender-git/27/CMakeFiles/CMakeTmp
  30.  
  31. Run Build Command:"/usr/bin/make" "cmTC_99eb6/fast"
  32. /usr/bin/make -f CMakeFiles/cmTC_99eb6.dir/build.make CMakeFiles/cmTC_99eb6.dir/build
  33. make[1]: se entra en el directorio '/home/ubuntu/blender-git/27/CMakeFiles/CMakeTmp'
  34. Building CXX object CMakeFiles/cmTC_99eb6.dir/src.cxx.o
  35. /usr/bin/c++ -DHAVE_SHARED_PTR_IN_TR1_NAMESPACE -o CMakeFiles/cmTC_99eb6.dir/src.cxx.o -c /home/ubuntu/blender-git/27/CMakeFiles/CMakeTmp/src.cxx
  36. /home/ubuntu/blender-git/27/CMakeFiles/CMakeTmp/src.cxx: In function ‘int main()’:
  37. /home/ubuntu/blender-git/27/CMakeFiles/CMakeTmp/src.cxx:3:36: error: ‘std::tr1’ has not been declared
  38. std::tr1::shared_ptr<int> int_ptr;
  39. ^
  40. /home/ubuntu/blender-git/27/CMakeFiles/CMakeTmp/src.cxx:3:52: error: expected primary-expression before ‘int’
  41. std::tr1::shared_ptr<int> int_ptr;
  42. ^
  43. CMakeFiles/cmTC_99eb6.dir/build.make:65: fallo en las instrucciones para el objetivo 'CMakeFiles/cmTC_99eb6.dir/src.cxx.o'
  44. make[1]: *** [CMakeFiles/cmTC_99eb6.dir/src.cxx.o] Error 1
  45. make[1]: se sale del directorio '/home/ubuntu/blender-git/27/CMakeFiles/CMakeTmp'
  46. Makefile:126: fallo en las instrucciones para el objetivo 'cmTC_99eb6/fast'
  47. make: *** [cmTC_99eb6/fast] Error 2
  48.  
  49. Source file was:
  50. #include <memory>
  51. int main() {
  52. std::tr1::shared_ptr<int> int_ptr;
  53. return 0;
  54. }
  55. Determining if the include file unordered_map exists failed with the following output:
  56. Change Dir: /home/ubuntu/blender-git/27/CMakeFiles/CMakeTmp
  57.  
  58. Run Build Command:"/usr/bin/make" "cmTC_ca593/fast"
  59. /usr/bin/make -f CMakeFiles/cmTC_ca593.dir/build.make CMakeFiles/cmTC_ca593.dir/build
  60. make[1]: se entra en el directorio '/home/ubuntu/blender-git/27/CMakeFiles/CMakeTmp'
  61. Building CXX object CMakeFiles/cmTC_ca593.dir/CheckIncludeFile.cxx.o
  62. /usr/bin/c++ -o CMakeFiles/cmTC_ca593.dir/CheckIncludeFile.cxx.o -c /home/ubuntu/blender-git/27/CMakeFiles/CMakeTmp/CheckIncludeFile.cxx
  63. In file included from /usr/include/c++/5/unordered_map:35:0,
  64. from /home/ubuntu/blender-git/27/CMakeFiles/CMakeTmp/CheckIncludeFile.cxx:1:
  65. /usr/include/c++/5/bits/c++0x_warning.h:32:2: error: #error This file requires compiler and library support for the ISO C++ 2011 standard. This support must be enabled with the -std=c++11 or -std=gnu++11 compiler options.
  66. #error This file requires compiler and library support \
  67. ^
  68. CMakeFiles/cmTC_ca593.dir/build.make:65: fallo en las instrucciones para el objetivo 'CMakeFiles/cmTC_ca593.dir/CheckIncludeFile.cxx.o'
  69. make[1]: *** [CMakeFiles/cmTC_ca593.dir/CheckIncludeFile.cxx.o] Error 1
  70. make[1]: se sale del directorio '/home/ubuntu/blender-git/27/CMakeFiles/CMakeTmp'
  71. Makefile:126: fallo en las instrucciones para el objetivo 'cmTC_ca593/fast'
  72. make: *** [cmTC_ca593/fast] Error 2
  73.  
  74.  
  75. Determining if the pthread_create exist failed with the following output:
  76. Change Dir: /home/ubuntu/blender-git/27/CMakeFiles/CMakeTmp
  77.  
  78. Run Build Command:"/usr/bin/make" "cmTC_3beec/fast"
  79. /usr/bin/make -f CMakeFiles/cmTC_3beec.dir/build.make CMakeFiles/cmTC_3beec.dir/build
  80. make[1]: se entra en el directorio '/home/ubuntu/blender-git/27/CMakeFiles/CMakeTmp'
  81. Building C object CMakeFiles/cmTC_3beec.dir/CheckSymbolExists.c.o
  82. /usr/bin/cc -o CMakeFiles/cmTC_3beec.dir/CheckSymbolExists.c.o -c /home/ubuntu/blender-git/27/CMakeFiles/CMakeTmp/CheckSymbolExists.c
  83. Linking C executable cmTC_3beec
  84. /usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_3beec.dir/link.txt --verbose=1
  85. /usr/bin/cc CMakeFiles/cmTC_3beec.dir/CheckSymbolExists.c.o -o cmTC_3beec
  86. CMakeFiles/cmTC_3beec.dir/CheckSymbolExists.c.o: En la función `main':
  87. CheckSymbolExists.c:(.text+0x16): referencia a `pthread_create' sin definir
  88. collect2: error: ld returned 1 exit status
  89. CMakeFiles/cmTC_3beec.dir/build.make:97: fallo en las instrucciones para el objetivo 'cmTC_3beec'
  90. make[1]: *** [cmTC_3beec] Error 1
  91. make[1]: se sale del directorio '/home/ubuntu/blender-git/27/CMakeFiles/CMakeTmp'
  92. Makefile:126: fallo en las instrucciones para el objetivo 'cmTC_3beec/fast'
  93. make: *** [cmTC_3beec/fast] Error 2
  94.  
  95. File /home/ubuntu/blender-git/27/CMakeFiles/CMakeTmp/CheckSymbolExists.c:
  96. /* */
  97. #include <pthread.h>
  98.  
  99. int main(int argc, char** argv)
  100. {
  101. (void)argv;
  102. #ifndef pthread_create
  103. return ((int*)(&pthread_create))[argc];
  104. #else
  105. (void)argc;
  106. return 0;
  107. #endif
  108. }
  109.  
  110. Determining if the function pthread_create exists in the pthreads failed with the following output:
  111. Change Dir: /home/ubuntu/blender-git/27/CMakeFiles/CMakeTmp
  112.  
  113. Run Build Command:"/usr/bin/make" "cmTC_dae2a/fast"
  114. /usr/bin/make -f CMakeFiles/cmTC_dae2a.dir/build.make CMakeFiles/cmTC_dae2a.dir/build
  115. make[1]: se entra en el directorio '/home/ubuntu/blender-git/27/CMakeFiles/CMakeTmp'
  116. Building C object CMakeFiles/cmTC_dae2a.dir/CheckFunctionExists.c.o
  117. /usr/bin/cc -DCHECK_FUNCTION_EXISTS=pthread_create -o CMakeFiles/cmTC_dae2a.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.5/Modules/CheckFunctionExists.c
  118. Linking C executable cmTC_dae2a
  119. /usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_dae2a.dir/link.txt --verbose=1
  120. /usr/bin/cc -DCHECK_FUNCTION_EXISTS=pthread_create CMakeFiles/cmTC_dae2a.dir/CheckFunctionExists.c.o -o cmTC_dae2a -lpthreads
  121. /usr/bin/ld: no se puede encontrar -lpthreads
  122. collect2: error: ld returned 1 exit status
  123. CMakeFiles/cmTC_dae2a.dir/build.make:97: fallo en las instrucciones para el objetivo 'cmTC_dae2a'
  124. make[1]: *** [cmTC_dae2a] Error 1
  125. make[1]: se sale del directorio '/home/ubuntu/blender-git/27/CMakeFiles/CMakeTmp'
  126. Makefile:126: fallo en las instrucciones para el objetivo 'cmTC_dae2a/fast'
  127. make: *** [cmTC_dae2a/fast] Error 2
  128.  
  129.  
  130. Determining if the system is big endian passed with the following output:
  131. Change Dir: /home/ubuntu/blender-git/27/CMakeFiles/CMakeTmp
  132.  
  133. Run Build Command:"/usr/bin/make" "cmTC_1f5f8/fast"
  134. /usr/bin/make -f CMakeFiles/cmTC_1f5f8.dir/build.make CMakeFiles/cmTC_1f5f8.dir/build
  135. make[1]: se entra en el directorio '/home/ubuntu/blender-git/27/CMakeFiles/CMakeTmp'
  136. Building C object CMakeFiles/cmTC_1f5f8.dir/TestEndianess.c.o
  137. /usr/bin/cc -fuse-ld=gold -o CMakeFiles/cmTC_1f5f8.dir/TestEndianess.c.o -c /home/ubuntu/blender-git/27/CMakeFiles/CMakeTmp/TestEndianess.c
  138. Linking C executable cmTC_1f5f8
  139. /usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_1f5f8.dir/link.txt --verbose=1
  140. /usr/bin/cc -fuse-ld=gold CMakeFiles/cmTC_1f5f8.dir/TestEndianess.c.o -o cmTC_1f5f8
  141. make[1]: se sale del directorio '/home/ubuntu/blender-git/27/CMakeFiles/CMakeTmp'
  142.  
  143. TestEndianess.c:
  144. /* A 16 bit integer is required. */
  145. typedef unsigned short cmakeint16;
  146.  
  147. /* On a little endian machine, these 16bit ints will give "THIS IS LITTLE ENDIAN."
  148. On a big endian machine the characters will be exchanged pairwise. */
  149. const cmakeint16 info_little[] = {0x4854, 0x5349, 0x4920, 0x2053, 0x494c, 0x5454, 0x454c, 0x4520, 0x444e, 0x4149, 0x2e4e, 0x0000};
  150.  
  151. /* on a big endian machine, these 16bit ints will give "THIS IS BIG ENDIAN."
  152. On a little endian machine the characters will be exchanged pairwise. */
  153. const cmakeint16 info_big[] = {0x5448, 0x4953, 0x2049, 0x5320, 0x4249, 0x4720, 0x454e, 0x4449, 0x414e, 0x2e2e, 0x0000};
  154.  
  155. #ifdef __CLASSIC_C__
  156. int main(argc, argv) int argc; char *argv[];
  157. #else
  158. int main(int argc, char *argv[])
  159. #endif
  160. {
  161. int require = 0;
  162. require += info_little[argc];
  163. require += info_big[argc];
  164. (void)argv;
  165. return require;
  166. }
  167.  
  168.  
  169. Performing C SOURCE FILE Test C_WARN_RESTRICT failed with the following output:
  170. Change Dir: /home/ubuntu/blender-git/27/CMakeFiles/CMakeTmp
  171.  
  172. Run Build Command:"/usr/bin/make" "cmTC_86bf4/fast"
  173. /usr/bin/make -f CMakeFiles/cmTC_86bf4.dir/build.make CMakeFiles/cmTC_86bf4.dir/build
  174. make[1]: Entering directory '/home/ubuntu/blender-git/27/CMakeFiles/CMakeTmp'
  175. Building C object CMakeFiles/cmTC_86bf4.dir/src.c.o
  176. /usr/bin/cc -fuse-ld=gold -fopenmp -DC_WARN_RESTRICT -Wrestrict -o CMakeFiles/cmTC_86bf4.dir/src.c.o -c /home/ubuntu/blender-git/27/CMakeFiles/CMakeTmp/src.c
  177. cc: error: unrecognized command line option '-Wrestrict'
  178. CMakeFiles/cmTC_86bf4.dir/build.make:65: recipe for target 'CMakeFiles/cmTC_86bf4.dir/src.c.o' failed
  179. make[1]: *** [CMakeFiles/cmTC_86bf4.dir/src.c.o] Error 1
  180. make[1]: Leaving directory '/home/ubuntu/blender-git/27/CMakeFiles/CMakeTmp'
  181. Makefile:126: recipe for target 'cmTC_86bf4/fast' failed
  182. make: *** [cmTC_86bf4/fast] Error 2
  183.  
  184. Source file was:
  185. int main(void) { return 0; }
  186. Performing C++ SOURCE FILE Test CXX_WARN_RESTRICT failed with the following output:
  187. Change Dir: /home/ubuntu/blender-git/27/CMakeFiles/CMakeTmp
  188.  
  189. Run Build Command:"/usr/bin/make" "cmTC_f7889/fast"
  190. /usr/bin/make -f CMakeFiles/cmTC_f7889.dir/build.make CMakeFiles/cmTC_f7889.dir/build
  191. make[1]: Entering directory '/home/ubuntu/blender-git/27/CMakeFiles/CMakeTmp'
  192. Building CXX object CMakeFiles/cmTC_f7889.dir/src.cxx.o
  193. /usr/bin/c++ -fuse-ld=gold -fopenmp -DCXX_WARN_RESTRICT -Wrestrict -o CMakeFiles/cmTC_f7889.dir/src.cxx.o -c /home/ubuntu/blender-git/27/CMakeFiles/CMakeTmp/src.cxx
  194. c++: error: unrecognized command line option '-Wrestrict'
  195. CMakeFiles/cmTC_f7889.dir/build.make:65: recipe for target 'CMakeFiles/cmTC_f7889.dir/src.cxx.o' failed
  196. make[1]: *** [CMakeFiles/cmTC_f7889.dir/src.cxx.o] Error 1
  197. make[1]: Leaving directory '/home/ubuntu/blender-git/27/CMakeFiles/CMakeTmp'
  198. Makefile:126: recipe for target 'cmTC_f7889/fast' failed
  199. make: *** [cmTC_f7889/fast] Error 2
  200.  
  201. Source file was:
  202. int main() { return 0; }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement