Guest User

Untitled

a guest
Apr 22nd, 2015
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 13.05 KB | None | 0 0
  1. Determining size of __int64 failed with the following output:
  2. Change Dir: /home/daniel/Downloads/obs-studio/build/CMakeFiles/CMakeTmp
  3.  
  4. Run Build Command:"/usr/bin/make" "cmTryCompileExec977016597/fast"
  5. /usr/bin/make -f CMakeFiles/cmTryCompileExec977016597.dir/build.make CMakeFiles/cmTryCompileExec977016597.dir/build
  6. make[1]: Entering directory '/home/daniel/Downloads/obs-studio/build/CMakeFiles/CMakeTmp'
  7. /usr/bin/cmake -E cmake_progress_report /home/daniel/Downloads/obs-studio/build/CMakeFiles/CMakeTmp/CMakeFiles 1
  8. Building C object CMakeFiles/cmTryCompileExec977016597.dir/__INT64.c.o
  9. /usr/bin/cc -fPIC -o CMakeFiles/cmTryCompileExec977016597.dir/__INT64.c.o -c /home/daniel/Downloads/obs-studio/build/CMakeFiles/CheckTypeSize/__INT64.c
  10. /home/daniel/Downloads/obs-studio/build/CMakeFiles/CheckTypeSize/__INT64.c:17:22: error: ‘__int64’ undeclared here (not in a function)
  11. #define SIZE (sizeof(__int64))
  12. ^
  13. /home/daniel/Downloads/obs-studio/build/CMakeFiles/CheckTypeSize/__INT64.c:19:12: note: in expansion of macro ‘SIZE’
  14. ('0' + ((SIZE / 10000)%10)),
  15. ^
  16. CMakeFiles/cmTryCompileExec977016597.dir/build.make:57: recipe for target 'CMakeFiles/cmTryCompileExec977016597.dir/__INT64.c.o' failed
  17. make[1]: Leaving directory '/home/daniel/Downloads/obs-studio/build/CMakeFiles/CMakeTmp'
  18. make[1]: *** [CMakeFiles/cmTryCompileExec977016597.dir/__INT64.c.o] Error 1
  19. Makefile:118: recipe for target 'cmTryCompileExec977016597/fast' failed
  20. make: *** [cmTryCompileExec977016597/fast] Error 2
  21.  
  22. /home/daniel/Downloads/obs-studio/build/CMakeFiles/CheckTypeSize/__INT64.c:
  23. #include <sys/types.h>
  24. #include <stdint.h>
  25. #include <stddef.h>
  26.  
  27.  
  28. #undef KEY
  29. #if defined(__i386)
  30. # define KEY '_','_','i','3','8','6'
  31. #elif defined(__x86_64)
  32. # define KEY '_','_','x','8','6','_','6','4'
  33. #elif defined(__ppc__)
  34. # define KEY '_','_','p','p','c','_','_'
  35. #elif defined(__ppc64__)
  36. # define KEY '_','_','p','p','c','6','4','_','_'
  37. #endif
  38.  
  39. #define SIZE (sizeof(__int64))
  40. char info_size[] = {'I', 'N', 'F', 'O', ':', 's','i','z','e','[',
  41. ('0' + ((SIZE / 10000)%10)),
  42. ('0' + ((SIZE / 1000)%10)),
  43. ('0' + ((SIZE / 100)%10)),
  44. ('0' + ((SIZE / 10)%10)),
  45. ('0' + (SIZE % 10)),
  46. ']',
  47. #ifdef KEY
  48. ' ','k','e','y','[', KEY, ']',
  49. #endif
  50. '\0'};
  51.  
  52. #ifdef __CLASSIC_C__
  53. int main(argc, argv) int argc; char *argv[];
  54. #else
  55. int main(int argc, char *argv[])
  56. #endif
  57. {
  58. int require = 0;
  59. require += info_size[argc];
  60. (void)argv;
  61. return require;
  62. }
  63.  
  64.  
  65. Determining size of __int32 failed with the following output:
  66. Change Dir: /home/daniel/Downloads/obs-studio/build/CMakeFiles/CMakeTmp
  67.  
  68. Run Build Command:"/usr/bin/make" "cmTryCompileExec2528608532/fast"
  69. /usr/bin/make -f CMakeFiles/cmTryCompileExec2528608532.dir/build.make CMakeFiles/cmTryCompileExec2528608532.dir/build
  70. make[1]: Entering directory '/home/daniel/Downloads/obs-studio/build/CMakeFiles/CMakeTmp'
  71. /usr/bin/cmake -E cmake_progress_report /home/daniel/Downloads/obs-studio/build/CMakeFiles/CMakeTmp/CMakeFiles 1
  72. Building C object CMakeFiles/cmTryCompileExec2528608532.dir/__INT32.c.o
  73. /usr/bin/cc -fPIC -o CMakeFiles/cmTryCompileExec2528608532.dir/__INT32.c.o -c /home/daniel/Downloads/obs-studio/build/CMakeFiles/CheckTypeSize/__INT32.c
  74. /home/daniel/Downloads/obs-studio/build/CMakeFiles/CheckTypeSize/__INT32.c:17:22: error: ‘__int32’ undeclared here (not in a function)
  75. #define SIZE (sizeof(__int32))
  76. ^
  77. /home/daniel/Downloads/obs-studio/build/CMakeFiles/CheckTypeSize/__INT32.c:19:12: note: in expansion of macro ‘SIZE’
  78. ('0' + ((SIZE / 10000)%10)),
  79. ^
  80. CMakeFiles/cmTryCompileExec2528608532.dir/build.make:57: recipe for target 'CMakeFiles/cmTryCompileExec2528608532.dir/__INT32.c.o' failed
  81. make[1]: Leaving directory '/home/daniel/Downloads/obs-studio/build/CMakeFiles/CMakeTmp'
  82. make[1]: *** [CMakeFiles/cmTryCompileExec2528608532.dir/__INT32.c.o] Error 1
  83. Makefile:118: recipe for target 'cmTryCompileExec2528608532/fast' failed
  84. make: *** [cmTryCompileExec2528608532/fast] Error 2
  85.  
  86. /home/daniel/Downloads/obs-studio/build/CMakeFiles/CheckTypeSize/__INT32.c:
  87. #include <sys/types.h>
  88. #include <stdint.h>
  89. #include <stddef.h>
  90.  
  91.  
  92. #undef KEY
  93. #if defined(__i386)
  94. # define KEY '_','_','i','3','8','6'
  95. #elif defined(__x86_64)
  96. # define KEY '_','_','x','8','6','_','6','4'
  97. #elif defined(__ppc__)
  98. # define KEY '_','_','p','p','c','_','_'
  99. #elif defined(__ppc64__)
  100. # define KEY '_','_','p','p','c','6','4','_','_'
  101. #endif
  102.  
  103. #define SIZE (sizeof(__int32))
  104. char info_size[] = {'I', 'N', 'F', 'O', ':', 's','i','z','e','[',
  105. ('0' + ((SIZE / 10000)%10)),
  106. ('0' + ((SIZE / 1000)%10)),
  107. ('0' + ((SIZE / 100)%10)),
  108. ('0' + ((SIZE / 10)%10)),
  109. ('0' + (SIZE % 10)),
  110. ']',
  111. #ifdef KEY
  112. ' ','k','e','y','[', KEY, ']',
  113. #endif
  114. '\0'};
  115.  
  116. #ifdef __CLASSIC_C__
  117. int main(argc, argv) int argc; char *argv[];
  118. #else
  119. int main(int argc, char *argv[])
  120. #endif
  121. {
  122. int require = 0;
  123. require += info_size[argc];
  124. (void)argv;
  125. return require;
  126. }
  127.  
  128.  
  129. Determining size of SSIZE_T failed with the following output:
  130. Change Dir: /home/daniel/Downloads/obs-studio/build/CMakeFiles/CMakeTmp
  131.  
  132. Run Build Command:"/usr/bin/make" "cmTryCompileExec1700232428/fast"
  133. /usr/bin/make -f CMakeFiles/cmTryCompileExec1700232428.dir/build.make CMakeFiles/cmTryCompileExec1700232428.dir/build
  134. make[1]: Entering directory '/home/daniel/Downloads/obs-studio/build/CMakeFiles/CMakeTmp'
  135. /usr/bin/cmake -E cmake_progress_report /home/daniel/Downloads/obs-studio/build/CMakeFiles/CMakeTmp/CMakeFiles 1
  136. Building C object CMakeFiles/cmTryCompileExec1700232428.dir/UPPERCASE_SSIZE_T.c.o
  137. /usr/bin/cc -fPIC -o CMakeFiles/cmTryCompileExec1700232428.dir/UPPERCASE_SSIZE_T.c.o -c /home/daniel/Downloads/obs-studio/build/CMakeFiles/CheckTypeSize/UPPERCASE_SSIZE_T.c
  138. /home/daniel/Downloads/obs-studio/build/CMakeFiles/CheckTypeSize/UPPERCASE_SSIZE_T.c:17:22: error: ‘SSIZE_T’ undeclared here (not in a function)
  139. #define SIZE (sizeof(SSIZE_T))
  140. ^
  141. /home/daniel/Downloads/obs-studio/build/CMakeFiles/CheckTypeSize/UPPERCASE_SSIZE_T.c:19:12: note: in expansion of macro ‘SIZE’
  142. ('0' + ((SIZE / 10000)%10)),
  143. ^
  144. CMakeFiles/cmTryCompileExec1700232428.dir/build.make:57: recipe for target 'CMakeFiles/cmTryCompileExec1700232428.dir/UPPERCASE_SSIZE_T.c.o' failed
  145. make[1]: Leaving directory '/home/daniel/Downloads/obs-studio/build/CMakeFiles/CMakeTmp'
  146. make[1]: *** [CMakeFiles/cmTryCompileExec1700232428.dir/UPPERCASE_SSIZE_T.c.o] Error 1
  147. Makefile:118: recipe for target 'cmTryCompileExec1700232428/fast' failed
  148. make: *** [cmTryCompileExec1700232428/fast] Error 2
  149.  
  150. /home/daniel/Downloads/obs-studio/build/CMakeFiles/CheckTypeSize/UPPERCASE_SSIZE_T.c:
  151. #include <sys/types.h>
  152. #include <stdint.h>
  153. #include <stddef.h>
  154.  
  155.  
  156. #undef KEY
  157. #if defined(__i386)
  158. # define KEY '_','_','i','3','8','6'
  159. #elif defined(__x86_64)
  160. # define KEY '_','_','x','8','6','_','6','4'
  161. #elif defined(__ppc__)
  162. # define KEY '_','_','p','p','c','_','_'
  163. #elif defined(__ppc64__)
  164. # define KEY '_','_','p','p','c','6','4','_','_'
  165. #endif
  166.  
  167. #define SIZE (sizeof(SSIZE_T))
  168. char info_size[] = {'I', 'N', 'F', 'O', ':', 's','i','z','e','[',
  169. ('0' + ((SIZE / 10000)%10)),
  170. ('0' + ((SIZE / 1000)%10)),
  171. ('0' + ((SIZE / 100)%10)),
  172. ('0' + ((SIZE / 10)%10)),
  173. ('0' + (SIZE % 10)),
  174. ']',
  175. #ifdef KEY
  176. ' ','k','e','y','[', KEY, ']',
  177. #endif
  178. '\0'};
  179.  
  180. #ifdef __CLASSIC_C__
  181. int main(argc, argv) int argc; char *argv[];
  182. #else
  183. int main(int argc, char *argv[])
  184. #endif
  185. {
  186. int require = 0;
  187. require += info_size[argc];
  188. (void)argv;
  189. return require;
  190. }
  191.  
  192.  
  193. Determining if the function _strtoi64 exists failed with the following output:
  194. Change Dir: /home/daniel/Downloads/obs-studio/build/CMakeFiles/CMakeTmp
  195.  
  196. Run Build Command:"/usr/bin/make" "cmTryCompileExec279746730/fast"
  197. /usr/bin/make -f CMakeFiles/cmTryCompileExec279746730.dir/build.make CMakeFiles/cmTryCompileExec279746730.dir/build
  198. make[1]: Entering directory '/home/daniel/Downloads/obs-studio/build/CMakeFiles/CMakeTmp'
  199. /usr/bin/cmake -E cmake_progress_report /home/daniel/Downloads/obs-studio/build/CMakeFiles/CMakeTmp/CMakeFiles 1
  200. Building C object CMakeFiles/cmTryCompileExec279746730.dir/CheckFunctionExists.c.o
  201. /usr/bin/cc -fPIC -DCHECK_FUNCTION_EXISTS=_strtoi64 -o CMakeFiles/cmTryCompileExec279746730.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.0/Modules/CheckFunctionExists.c
  202. Linking C executable cmTryCompileExec279746730
  203. /usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec279746730.dir/link.txt --verbose=1
  204. /usr/bin/cc -fPIC -DCHECK_FUNCTION_EXISTS=_strtoi64 CMakeFiles/cmTryCompileExec279746730.dir/CheckFunctionExists.c.o -o cmTryCompileExec279746730 -rdynamic
  205. CMakeFiles/cmTryCompileExec279746730.dir/CheckFunctionExists.c.o: In function `main':
  206. CheckFunctionExists.c:(.text+0x15): undefined reference to `_strtoi64'
  207. collect2: error: ld returned 1 exit status
  208. CMakeFiles/cmTryCompileExec279746730.dir/build.make:88: recipe for target 'cmTryCompileExec279746730' failed
  209. make[1]: Leaving directory '/home/daniel/Downloads/obs-studio/build/CMakeFiles/CMakeTmp'
  210. make[1]: *** [cmTryCompileExec279746730] Error 1
  211. Makefile:118: recipe for target 'cmTryCompileExec279746730/fast' failed
  212. make: *** [cmTryCompileExec279746730/fast] Error 2
  213.  
  214.  
  215. Determining if the function _snprintf exists failed with the following output:
  216. Change Dir: /home/daniel/Downloads/obs-studio/build/CMakeFiles/CMakeTmp
  217.  
  218. Run Build Command:"/usr/bin/make" "cmTryCompileExec450634995/fast"
  219. /usr/bin/make -f CMakeFiles/cmTryCompileExec450634995.dir/build.make CMakeFiles/cmTryCompileExec450634995.dir/build
  220. make[1]: Entering directory '/home/daniel/Downloads/obs-studio/build/CMakeFiles/CMakeTmp'
  221. /usr/bin/cmake -E cmake_progress_report /home/daniel/Downloads/obs-studio/build/CMakeFiles/CMakeTmp/CMakeFiles 1
  222. Building C object CMakeFiles/cmTryCompileExec450634995.dir/CheckFunctionExists.c.o
  223. /usr/bin/cc -fPIC -DCHECK_FUNCTION_EXISTS=_snprintf -o CMakeFiles/cmTryCompileExec450634995.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.0/Modules/CheckFunctionExists.c
  224. Linking C executable cmTryCompileExec450634995
  225. /usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec450634995.dir/link.txt --verbose=1
  226. /usr/bin/cc -fPIC -DCHECK_FUNCTION_EXISTS=_snprintf CMakeFiles/cmTryCompileExec450634995.dir/CheckFunctionExists.c.o -o cmTryCompileExec450634995 -rdynamic
  227. CMakeFiles/cmTryCompileExec450634995.dir/CheckFunctionExists.c.o: In function `main':
  228. CheckFunctionExists.c:(.text+0x15): undefined reference to `_snprintf'
  229. collect2: error: ld returned 1 exit status
  230. CMakeFiles/cmTryCompileExec450634995.dir/build.make:88: recipe for target 'cmTryCompileExec450634995' failed
  231. make[1]: *** [cmTryCompileExec450634995] Error 1
  232. make[1]: Leaving directory '/home/daniel/Downloads/obs-studio/build/CMakeFiles/CMakeTmp'
  233. Makefile:118: recipe for target 'cmTryCompileExec450634995/fast' failed
  234. make: *** [cmTryCompileExec450634995/fast] Error 2
  235.  
  236.  
  237. Determining if the pthread_create exist failed with the following output:
  238. Change Dir: /home/daniel/Downloads/obs-studio/build/CMakeFiles/CMakeTmp
  239.  
  240. Run Build Command:"/usr/bin/make" "cmTryCompileExec2896750281/fast"
  241. /usr/bin/make -f CMakeFiles/cmTryCompileExec2896750281.dir/build.make CMakeFiles/cmTryCompileExec2896750281.dir/build
  242. make[1]: Entering directory '/home/daniel/Downloads/obs-studio/build/CMakeFiles/CMakeTmp'
  243. /usr/bin/cmake -E cmake_progress_report /home/daniel/Downloads/obs-studio/build/CMakeFiles/CMakeTmp/CMakeFiles 1
  244. Building C object CMakeFiles/cmTryCompileExec2896750281.dir/CheckSymbolExists.c.o
  245. /usr/bin/cc -Wall -Wextra -Wno-unused-function -Werror-implicit-function-declaration -Wno-missing-braces -Wno-missing-field-initializers -std=gnu99 -fno-strict-aliasing -o CMakeFiles/cmTryCompileExec2896750281.dir/CheckSymbolExists.c.o -c /home/daniel/Downloads/obs-studio/build/CMakeFiles/CMakeTmp/CheckSymbolExists.c
  246. Linking C executable cmTryCompileExec2896750281
  247. /usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec2896750281.dir/link.txt --verbose=1
  248. /usr/bin/cc -Wall -Wextra -Wno-unused-function -Werror-implicit-function-declaration -Wno-missing-braces -Wno-missing-field-initializers -std=gnu99 -fno-strict-aliasing CMakeFiles/cmTryCompileExec2896750281.dir/CheckSymbolExists.c.o -o cmTryCompileExec2896750281 -rdynamic
  249. CMakeFiles/cmTryCompileExec2896750281.dir/CheckSymbolExists.c.o: In function `main':
  250. CheckSymbolExists.c:(.text+0x16): undefined reference to `pthread_create'
  251. collect2: error: ld returned 1 exit status
  252. CMakeFiles/cmTryCompileExec2896750281.dir/build.make:88: recipe for target 'cmTryCompileExec2896750281' failed
  253. make[1]: Leaving directory '/home/daniel/Downloads/obs-studio/build/CMakeFiles/CMakeTmp'
  254. make[1]: *** [cmTryCompileExec2896750281] Error 1
  255. Makefile:118: recipe for target 'cmTryCompileExec2896750281/fast' failed
  256. make: *** [cmTryCompileExec2896750281/fast] Error 2
  257.  
  258. File /home/daniel/Downloads/obs-studio/build/CMakeFiles/CMakeTmp/CheckSymbolExists.c:
  259. /* */
  260. #include <pthread.h>
  261.  
  262. int main(int argc, char** argv)
  263. {
  264. (void)argv;
  265. #ifndef pthread_create
  266. return ((int*)(&pthread_create))[argc];
  267. #else
  268. (void)argc;
  269. return 0;
  270. #endif
  271. }
Advertisement
Add Comment
Please, Sign In to add comment