Advertisement
poikilos

lmms 2020-03-17 CMakeError.log

Mar 17th, 2020
155
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 12.46 KB | None | 0 0
  1. Determining if files soundcard.h exist failed with the following output:
  2. Change Dir: /home/owner/src/lmms/build/CMakeFiles/CMakeTmp
  3.  
  4. Run Build Command(s):/usr/bin/gmake cmTC_7445d/fast && /usr/bin/gmake -f CMakeFiles/cmTC_7445d.dir/build.make CMakeFiles/cmTC_7445d.dir/build
  5. gmake[1]: Entering directory '/home/owner/src/lmms/build/CMakeFiles/CMakeTmp'
  6. Building C object CMakeFiles/cmTC_7445d.dir/LMMS_HAVE_SOUNDCARD_H.c.o
  7. /usr/lib64/ccache/cc -o CMakeFiles/cmTC_7445d.dir/LMMS_HAVE_SOUNDCARD_H.c.o -c /home/owner/src/lmms/build/CMakeFiles/CheckIncludeFiles/LMMS_HAVE_SOUNDCARD_H.c
  8. /home/owner/src/lmms/build/CMakeFiles/CheckIncludeFiles/LMMS_HAVE_SOUNDCARD_H.c:2:10: fatal error: soundcard.h: No such file or directory
  9. 2 | #include <soundcard.h>
  10. | ^~~~~~~~~~~~~
  11. compilation terminated.
  12. gmake[1]: *** [CMakeFiles/cmTC_7445d.dir/build.make:66: CMakeFiles/cmTC_7445d.dir/LMMS_HAVE_SOUNDCARD_H.c.o] Error 1
  13. gmake[1]: Leaving directory '/home/owner/src/lmms/build/CMakeFiles/CMakeTmp'
  14. gmake: *** [Makefile:121: cmTC_7445d/fast] Error 2
  15.  
  16.  
  17. Source:
  18. /* */
  19. #include <soundcard.h>
  20.  
  21.  
  22. int main(void){return 0;}
  23.  
  24. Determining if files process.h exist failed with the following output:
  25. Change Dir: /home/owner/src/lmms/build/CMakeFiles/CMakeTmp
  26.  
  27. Run Build Command(s):/usr/bin/gmake cmTC_13c53/fast && /usr/bin/gmake -f CMakeFiles/cmTC_13c53.dir/build.make CMakeFiles/cmTC_13c53.dir/build
  28. gmake[1]: Entering directory '/home/owner/src/lmms/build/CMakeFiles/CMakeTmp'
  29. Building C object CMakeFiles/cmTC_13c53.dir/LMMS_HAVE_PROCESS_H.c.o
  30. /usr/lib64/ccache/cc -o CMakeFiles/cmTC_13c53.dir/LMMS_HAVE_PROCESS_H.c.o -c /home/owner/src/lmms/build/CMakeFiles/CheckIncludeFiles/LMMS_HAVE_PROCESS_H.c
  31. /home/owner/src/lmms/build/CMakeFiles/CheckIncludeFiles/LMMS_HAVE_PROCESS_H.c:2:10: fatal error: process.h: No such file or directory
  32. 2 | #include <process.h>
  33. | ^~~~~~~~~~~
  34. compilation terminated.
  35. gmake[1]: *** [CMakeFiles/cmTC_13c53.dir/build.make:66: CMakeFiles/cmTC_13c53.dir/LMMS_HAVE_PROCESS_H.c.o] Error 1
  36. gmake[1]: Leaving directory '/home/owner/src/lmms/build/CMakeFiles/CMakeTmp'
  37. gmake: *** [Makefile:121: cmTC_13c53/fast] Error 2
  38.  
  39.  
  40. Source:
  41. /* */
  42. #include <process.h>
  43.  
  44.  
  45. int main(void){return 0;}
  46.  
  47. Performing C SOURCE FILE Test CMAKE_HAVE_LIBC_PTHREAD failed with the following output:
  48. Change Dir: /home/owner/src/lmms/build/CMakeFiles/CMakeTmp
  49.  
  50. Run Build Command(s):/usr/bin/gmake cmTC_521cf/fast && /usr/bin/gmake -f CMakeFiles/cmTC_521cf.dir/build.make CMakeFiles/cmTC_521cf.dir/build
  51. gmake[1]: Entering directory '/home/owner/src/lmms/build/CMakeFiles/CMakeTmp'
  52. Building C object CMakeFiles/cmTC_521cf.dir/src.c.o
  53. /usr/lib64/ccache/cc -DCMAKE_HAVE_LIBC_PTHREAD -o CMakeFiles/cmTC_521cf.dir/src.c.o -c /home/owner/src/lmms/build/CMakeFiles/CMakeTmp/src.c
  54. Linking C executable cmTC_521cf
  55. /usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_521cf.dir/link.txt --verbose=1
  56. /usr/lib64/ccache/cc -DCMAKE_HAVE_LIBC_PTHREAD -rdynamic CMakeFiles/cmTC_521cf.dir/src.c.o -o cmTC_521cf
  57. /usr/bin/ld: CMakeFiles/cmTC_521cf.dir/src.c.o: in function `main':
  58. src.c:(.text+0x2d): undefined reference to `pthread_create'
  59. /usr/bin/ld: src.c:(.text+0x39): undefined reference to `pthread_detach'
  60. /usr/bin/ld: src.c:(.text+0x4a): undefined reference to `pthread_join'
  61. collect2: error: ld returned 1 exit status
  62. gmake[1]: *** [CMakeFiles/cmTC_521cf.dir/build.make:87: cmTC_521cf] Error 1
  63. gmake[1]: Leaving directory '/home/owner/src/lmms/build/CMakeFiles/CMakeTmp'
  64. gmake: *** [Makefile:121: cmTC_521cf/fast] Error 2
  65.  
  66.  
  67. Source file was:
  68. #include <pthread.h>
  69.  
  70. void* test_func(void* data)
  71. {
  72. return data;
  73. }
  74.  
  75. int main(void)
  76. {
  77. pthread_t thread;
  78. pthread_create(&thread, NULL, test_func, NULL);
  79. pthread_detach(thread);
  80. pthread_join(thread, NULL);
  81. pthread_atfork(NULL, NULL, NULL);
  82. pthread_exit(NULL);
  83.  
  84. return 0;
  85. }
  86.  
  87. Determining if the function pthread_create exists in the pthreads failed with the following output:
  88. Change Dir: /home/owner/src/lmms/build/CMakeFiles/CMakeTmp
  89.  
  90. Run Build Command(s):/usr/bin/gmake cmTC_8e3ca/fast && /usr/bin/gmake -f CMakeFiles/cmTC_8e3ca.dir/build.make CMakeFiles/cmTC_8e3ca.dir/build
  91. gmake[1]: Entering directory '/home/owner/src/lmms/build/CMakeFiles/CMakeTmp'
  92. Building C object CMakeFiles/cmTC_8e3ca.dir/CheckFunctionExists.c.o
  93. /usr/lib64/ccache/cc -DCHECK_FUNCTION_EXISTS=pthread_create -o CMakeFiles/cmTC_8e3ca.dir/CheckFunctionExists.c.o -c /usr/share/cmake/Modules/CheckFunctionExists.c
  94. Linking C executable cmTC_8e3ca
  95. /usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_8e3ca.dir/link.txt --verbose=1
  96. /usr/lib64/ccache/cc -DCHECK_FUNCTION_EXISTS=pthread_create -rdynamic CMakeFiles/cmTC_8e3ca.dir/CheckFunctionExists.c.o -o cmTC_8e3ca -lpthreads
  97. /usr/bin/ld: cannot find -lpthreads
  98. collect2: error: ld returned 1 exit status
  99. gmake[1]: *** [CMakeFiles/cmTC_8e3ca.dir/build.make:87: cmTC_8e3ca] Error 1
  100. gmake[1]: Leaving directory '/home/owner/src/lmms/build/CMakeFiles/CMakeTmp'
  101. gmake: *** [Makefile:121: cmTC_8e3ca/fast] Error 2
  102.  
  103.  
  104.  
  105. Determining if files machine/soundcard.h exist failed with the following output:
  106. Change Dir: /home/owner/src/lmms/build/CMakeFiles/CMakeTmp
  107.  
  108. Run Build Command(s):/usr/bin/gmake cmTC_463d5/fast && /usr/bin/gmake -f CMakeFiles/cmTC_463d5.dir/build.make CMakeFiles/cmTC_463d5.dir/build
  109. gmake[1]: Entering directory '/home/owner/src/lmms/build/CMakeFiles/CMakeTmp'
  110. Building C object CMakeFiles/cmTC_463d5.dir/LMMS_HAVE_MACHINE_SOUNDCARD_H.c.o
  111. /usr/lib64/ccache/cc -o CMakeFiles/cmTC_463d5.dir/LMMS_HAVE_MACHINE_SOUNDCARD_H.c.o -c /home/owner/src/lmms/build/CMakeFiles/CheckIncludeFiles/LMMS_HAVE_MACHINE_SOUNDCARD_H.c
  112. /home/owner/src/lmms/build/CMakeFiles/CheckIncludeFiles/LMMS_HAVE_MACHINE_SOUNDCARD_H.c:2:10: fatal error: machine/soundcard.h: No such file or directory
  113. 2 | #include <machine/soundcard.h>
  114. | ^~~~~~~~~~~~~~~~~~~~~
  115. compilation terminated.
  116. gmake[1]: *** [CMakeFiles/cmTC_463d5.dir/build.make:66: CMakeFiles/cmTC_463d5.dir/LMMS_HAVE_MACHINE_SOUNDCARD_H.c.o] Error 1
  117. gmake[1]: Leaving directory '/home/owner/src/lmms/build/CMakeFiles/CMakeTmp'
  118. gmake: *** [Makefile:121: cmTC_463d5/fast] Error 2
  119.  
  120.  
  121. Source:
  122. /* */
  123. #include <machine/soundcard.h>
  124.  
  125.  
  126. int main(void){return 0;}
  127.  
  128. Determining if files linux/awe_voice.h exist failed with the following output:
  129. Change Dir: /home/owner/src/lmms/build/CMakeFiles/CMakeTmp
  130.  
  131. Run Build Command(s):/usr/bin/gmake cmTC_29113/fast && /usr/bin/gmake -f CMakeFiles/cmTC_29113.dir/build.make CMakeFiles/cmTC_29113.dir/build
  132. gmake[1]: Entering directory '/home/owner/src/lmms/build/CMakeFiles/CMakeTmp'
  133. Building C object CMakeFiles/cmTC_29113.dir/LMMS_HAVE_LINUX_AWE_VOICE_H.c.o
  134. /usr/lib64/ccache/cc -o CMakeFiles/cmTC_29113.dir/LMMS_HAVE_LINUX_AWE_VOICE_H.c.o -c /home/owner/src/lmms/build/CMakeFiles/CheckIncludeFiles/LMMS_HAVE_LINUX_AWE_VOICE_H.c
  135. /home/owner/src/lmms/build/CMakeFiles/CheckIncludeFiles/LMMS_HAVE_LINUX_AWE_VOICE_H.c:2:10: fatal error: linux/awe_voice.h: No such file or directory
  136. 2 | #include <linux/awe_voice.h>
  137. | ^~~~~~~~~~~~~~~~~~~
  138. compilation terminated.
  139. gmake[1]: *** [CMakeFiles/cmTC_29113.dir/build.make:66: CMakeFiles/cmTC_29113.dir/LMMS_HAVE_LINUX_AWE_VOICE_H.c.o] Error 1
  140. gmake[1]: Leaving directory '/home/owner/src/lmms/build/CMakeFiles/CMakeTmp'
  141. gmake: *** [Makefile:121: cmTC_29113/fast] Error 2
  142.  
  143.  
  144. Source:
  145. /* */
  146. #include <linux/awe_voice.h>
  147.  
  148.  
  149. int main(void){return 0;}
  150.  
  151. Determining if files awe_voice.h exist failed with the following output:
  152. Change Dir: /home/owner/src/lmms/build/CMakeFiles/CMakeTmp
  153.  
  154. Run Build Command(s):/usr/bin/gmake cmTC_e4ad9/fast && /usr/bin/gmake -f CMakeFiles/cmTC_e4ad9.dir/build.make CMakeFiles/cmTC_e4ad9.dir/build
  155. gmake[1]: Entering directory '/home/owner/src/lmms/build/CMakeFiles/CMakeTmp'
  156. Building C object CMakeFiles/cmTC_e4ad9.dir/LMMS_HAVE_AWE_VOICE_H.c.o
  157. /usr/lib64/ccache/cc -o CMakeFiles/cmTC_e4ad9.dir/LMMS_HAVE_AWE_VOICE_H.c.o -c /home/owner/src/lmms/build/CMakeFiles/CheckIncludeFiles/LMMS_HAVE_AWE_VOICE_H.c
  158. /home/owner/src/lmms/build/CMakeFiles/CheckIncludeFiles/LMMS_HAVE_AWE_VOICE_H.c:2:10: fatal error: awe_voice.h: No such file or directory
  159. 2 | #include <awe_voice.h>
  160. | ^~~~~~~~~~~~~
  161. compilation terminated.
  162. gmake[1]: *** [CMakeFiles/cmTC_e4ad9.dir/build.make:66: CMakeFiles/cmTC_e4ad9.dir/LMMS_HAVE_AWE_VOICE_H.c.o] Error 1
  163. gmake[1]: Leaving directory '/home/owner/src/lmms/build/CMakeFiles/CMakeTmp'
  164. gmake: *** [Makefile:121: cmTC_e4ad9/fast] Error 2
  165.  
  166.  
  167. Source:
  168. /* */
  169. #include <awe_voice.h>
  170.  
  171.  
  172. int main(void){return 0;}
  173.  
  174. Determining if files /usr/src/sys/i386/isa/sound/awe_voice.h exist failed with the following output:
  175. Change Dir: /home/owner/src/lmms/build/CMakeFiles/CMakeTmp
  176.  
  177. Run Build Command(s):/usr/bin/gmake cmTC_fdb89/fast && /usr/bin/gmake -f CMakeFiles/cmTC_fdb89.dir/build.make CMakeFiles/cmTC_fdb89.dir/build
  178. gmake[1]: Entering directory '/home/owner/src/lmms/build/CMakeFiles/CMakeTmp'
  179. Building C object CMakeFiles/cmTC_fdb89.dir/LMMS_HAVE__USR_SRC_SYS_I386_ISA_SOUND_AWE_VOICE_H.c.o
  180. /usr/lib64/ccache/cc -o CMakeFiles/cmTC_fdb89.dir/LMMS_HAVE__USR_SRC_SYS_I386_ISA_SOUND_AWE_VOICE_H.c.o -c /home/owner/src/lmms/build/CMakeFiles/CheckIncludeFiles/LMMS_HAVE__USR_SRC_SYS_I386_ISA_SOUND_AWE_VOICE_H.c
  181. /home/owner/src/lmms/build/CMakeFiles/CheckIncludeFiles/LMMS_HAVE__USR_SRC_SYS_I386_ISA_SOUND_AWE_VOICE_H.c:2:10: fatal error: /usr/src/sys/i386/isa/sound/awe_voice.h: No such file or directory
  182. 2 | #include </usr/src/sys/i386/isa/sound/awe_voice.h>
  183. | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  184. compilation terminated.
  185. gmake[1]: *** [CMakeFiles/cmTC_fdb89.dir/build.make:66: CMakeFiles/cmTC_fdb89.dir/LMMS_HAVE__USR_SRC_SYS_I386_ISA_SOUND_AWE_VOICE_H.c.o] Error 1
  186. gmake[1]: Leaving directory '/home/owner/src/lmms/build/CMakeFiles/CMakeTmp'
  187. gmake: *** [Makefile:121: cmTC_fdb89/fast] Error 2
  188.  
  189.  
  190. Source:
  191. /* */
  192. #include </usr/src/sys/i386/isa/sound/awe_voice.h>
  193.  
  194.  
  195. int main(void){return 0;}
  196.  
  197. Determining if files /usr/src/sys/gnu/i386/isa/sound/awe_voice.h exist failed with the following output:
  198. Change Dir: /home/owner/src/lmms/build/CMakeFiles/CMakeTmp
  199.  
  200. Run Build Command(s):/usr/bin/gmake cmTC_74e1e/fast && /usr/bin/gmake -f CMakeFiles/cmTC_74e1e.dir/build.make CMakeFiles/cmTC_74e1e.dir/build
  201. gmake[1]: Entering directory '/home/owner/src/lmms/build/CMakeFiles/CMakeTmp'
  202. Building C object CMakeFiles/cmTC_74e1e.dir/LMMS_HAVE__USR_SRC_SYS_GNU_I386_ISA_SOUND_AWE_VOICE_H.c.o
  203. /usr/lib64/ccache/cc -o CMakeFiles/cmTC_74e1e.dir/LMMS_HAVE__USR_SRC_SYS_GNU_I386_ISA_SOUND_AWE_VOICE_H.c.o -c /home/owner/src/lmms/build/CMakeFiles/CheckIncludeFiles/LMMS_HAVE__USR_SRC_SYS_GNU_I386_ISA_SOUND_AWE_VOICE_H.c
  204. /home/owner/src/lmms/build/CMakeFiles/CheckIncludeFiles/LMMS_HAVE__USR_SRC_SYS_GNU_I386_ISA_SOUND_AWE_VOICE_H.c:2:10: fatal error: /usr/src/sys/gnu/i386/isa/sound/awe_voice.h: No such file or directory
  205. 2 | #include </usr/src/sys/gnu/i386/isa/sound/awe_voice.h>
  206. | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  207. compilation terminated.
  208. gmake[1]: *** [CMakeFiles/cmTC_74e1e.dir/build.make:66: CMakeFiles/cmTC_74e1e.dir/LMMS_HAVE__USR_SRC_SYS_GNU_I386_ISA_SOUND_AWE_VOICE_H.c.o] Error 1
  209. gmake[1]: Leaving directory '/home/owner/src/lmms/build/CMakeFiles/CMakeTmp'
  210. gmake: *** [Makefile:121: cmTC_74e1e/fast] Error 2
  211.  
  212.  
  213. Source:
  214. /* */
  215. #include </usr/src/sys/gnu/i386/isa/sound/awe_voice.h>
  216.  
  217.  
  218. int main(void){return 0;}
  219.  
  220. Determining if the function sio_open exists in the sndio failed with the following output:
  221. Change Dir: /home/owner/src/lmms/build/CMakeFiles/CMakeTmp
  222.  
  223. Run Build Command(s):/usr/bin/gmake cmTC_20c37/fast && /usr/bin/gmake -f CMakeFiles/cmTC_20c37.dir/build.make CMakeFiles/cmTC_20c37.dir/build
  224. gmake[1]: Entering directory '/home/owner/src/lmms/build/CMakeFiles/CMakeTmp'
  225. Building C object CMakeFiles/cmTC_20c37.dir/CheckFunctionExists.c.o
  226. /usr/lib64/ccache/cc -DCHECK_FUNCTION_EXISTS=sio_open -o CMakeFiles/cmTC_20c37.dir/CheckFunctionExists.c.o -c /usr/share/cmake/Modules/CheckFunctionExists.c
  227. Linking C executable cmTC_20c37
  228. /usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_20c37.dir/link.txt --verbose=1
  229. /usr/lib64/ccache/cc -DCHECK_FUNCTION_EXISTS=sio_open -rdynamic CMakeFiles/cmTC_20c37.dir/CheckFunctionExists.c.o -o cmTC_20c37 -lsndio
  230. /usr/bin/ld: cannot find -lsndio
  231. collect2: error: ld returned 1 exit status
  232. gmake[1]: *** [CMakeFiles/cmTC_20c37.dir/build.make:87: cmTC_20c37] Error 1
  233. gmake[1]: Leaving directory '/home/owner/src/lmms/build/CMakeFiles/CMakeTmp'
  234. gmake: *** [Makefile:121: cmTC_20c37/fast] Error 2
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement