Skip to content

Instantly share code, notes, and snippets.

@Ragmaanir
Last active August 23, 2017 23:42
Show Gist options
  • Save Ragmaanir/895c732dd50b28a05069afc9fa7bc6ea to your computer and use it in GitHub Desktop.
Save Ragmaanir/895c732dd50b28a05069afc9fa7bc6ea to your computer and use it in GitHub Desktop.
compile lmms
> cat CMakeFiles/CMakeError.log Determining if files soundcard.h exist failed with the following output:
Change Dir: /home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_e7912/fast"
/usr/bin/make -f CMakeFiles/cmTC_e7912.dir/build.make CMakeFiles/cmTC_e7912.dir/build
make[1]: Entering directory '/home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_e7912.dir/CheckIncludeFiles.c.o
/usr/bin/cc -o CMakeFiles/cmTC_e7912.dir/CheckIncludeFiles.c.o -c /home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp/CheckIncludeFiles.c
/home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp/CheckIncludeFiles.c:2:23: fatal error: soundcard.h: No such file or directory
compilation terminated.
CMakeFiles/cmTC_e7912.dir/build.make:65: recipe for target 'CMakeFiles/cmTC_e7912.dir/CheckIncludeFiles.c.o' failed
make[1]: *** [CMakeFiles/cmTC_e7912.dir/CheckIncludeFiles.c.o] Error 1
make[1]: Leaving directory '/home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp'
Makefile:126: recipe for target 'cmTC_e7912/fast' failed
make: *** [cmTC_e7912/fast] Error 2
Source:
/* */
#include <soundcard.h>
int main(void){return 0;}
Determining if files process.h exist failed with the following output:
Change Dir: /home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_524d5/fast"
/usr/bin/make -f CMakeFiles/cmTC_524d5.dir/build.make CMakeFiles/cmTC_524d5.dir/build
make[1]: Entering directory '/home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_524d5.dir/CheckIncludeFiles.c.o
/usr/bin/cc -o CMakeFiles/cmTC_524d5.dir/CheckIncludeFiles.c.o -c /home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp/CheckIncludeFiles.c
/home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp/CheckIncludeFiles.c:2:21: fatal error: process.h: No such file or directory
compilation terminated.
CMakeFiles/cmTC_524d5.dir/build.make:65: recipe for target 'CMakeFiles/cmTC_524d5.dir/CheckIncludeFiles.c.o' failed
make[1]: *** [CMakeFiles/cmTC_524d5.dir/CheckIncludeFiles.c.o] Error 1
make[1]: Leaving directory '/home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp'
Makefile:126: recipe for target 'cmTC_524d5/fast' failed
make: *** [cmTC_524d5/fast] Error 2
Source:
/* */
#include <process.h>
int main(void){return 0;}
Determining if the pthread_create exist failed with the following output:
Change Dir: /home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_cb9e7/fast"
/usr/bin/make -f CMakeFiles/cmTC_cb9e7.dir/build.make CMakeFiles/cmTC_cb9e7.dir/build
make[1]: Entering directory '/home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_cb9e7.dir/CheckSymbolExists.c.o
/usr/bin/cc -o CMakeFiles/cmTC_cb9e7.dir/CheckSymbolExists.c.o -c /home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp/CheckSymbolExists.c
Linking C executable cmTC_cb9e7
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_cb9e7.dir/link.txt --verbose=1
/usr/bin/cc CMakeFiles/cmTC_cb9e7.dir/CheckSymbolExists.c.o -o cmTC_cb9e7 -rdynamic
CMakeFiles/cmTC_cb9e7.dir/CheckSymbolExists.c.o: In function `main':
CheckSymbolExists.c:(.text+0x16): undefined reference to `pthread_create'
collect2: error: ld returned 1 exit status
CMakeFiles/cmTC_cb9e7.dir/build.make:97: recipe for target 'cmTC_cb9e7' failed
make[1]: *** [cmTC_cb9e7] Error 1
make[1]: Leaving directory '/home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp'
Makefile:126: recipe for target 'cmTC_cb9e7/fast' failed
make: *** [cmTC_cb9e7/fast] Error 2
File /home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp/CheckSymbolExists.c:
/* */
#include <pthread.h>
int main(int argc, char** argv)
{
(void)argv;
#ifndef pthread_create
return ((int*)(&pthread_create))[argc];
#else
(void)argc;
return 0;
#endif
}
Determining if the function pthread_create exists in the pthreads failed with the following output:
Change Dir: /home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_2014c/fast"
/usr/bin/make -f CMakeFiles/cmTC_2014c.dir/build.make CMakeFiles/cmTC_2014c.dir/build
make[1]: Entering directory '/home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_2014c.dir/CheckFunctionExists.c.o
/usr/bin/cc -DCHECK_FUNCTION_EXISTS=pthread_create -o CMakeFiles/cmTC_2014c.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.5/Modules/CheckFunctionExists.c
Linking C executable cmTC_2014c
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_2014c.dir/link.txt --verbose=1
/usr/bin/cc -DCHECK_FUNCTION_EXISTS=pthread_create CMakeFiles/cmTC_2014c.dir/CheckFunctionExists.c.o -o cmTC_2014c -rdynamic -lpthreads
/usr/bin/ld: cannot find -lpthreads
collect2: error: ld returned 1 exit status
CMakeFiles/cmTC_2014c.dir/build.make:97: recipe for target 'cmTC_2014c' failed
make[1]: *** [cmTC_2014c] Error 1
make[1]: Leaving directory '/home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp'
Makefile:126: recipe for target 'cmTC_2014c/fast' failed
make: *** [cmTC_2014c/fast] Error 2
Determining if files machine/soundcard.h exist failed with the following output:
Change Dir: /home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_efe32/fast"
/usr/bin/make -f CMakeFiles/cmTC_efe32.dir/build.make CMakeFiles/cmTC_efe32.dir/build
make[1]: Entering directory '/home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_efe32.dir/CheckIncludeFiles.c.o
/usr/bin/cc -o CMakeFiles/cmTC_efe32.dir/CheckIncludeFiles.c.o -c /home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp/CheckIncludeFiles.c
/home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp/CheckIncludeFiles.c:2:31: fatal error: machine/soundcard.h: No such file or directory
compilation terminated.
CMakeFiles/cmTC_efe32.dir/build.make:65: recipe for target 'CMakeFiles/cmTC_efe32.dir/CheckIncludeFiles.c.o' failed
make[1]: *** [CMakeFiles/cmTC_efe32.dir/CheckIncludeFiles.c.o] Error 1
make[1]: Leaving directory '/home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp'
Makefile:126: recipe for target 'cmTC_efe32/fast' failed
make: *** [cmTC_efe32/fast] Error 2
Source:
/* */
#include <machine/soundcard.h>
int main(void){return 0;}
Determining if files linux/awe_voice.h exist failed with the following output:
Change Dir: /home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_2c1ba/fast"
/usr/bin/make -f CMakeFiles/cmTC_2c1ba.dir/build.make CMakeFiles/cmTC_2c1ba.dir/build
make[1]: Entering directory '/home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_2c1ba.dir/CheckIncludeFiles.c.o
/usr/bin/cc -o CMakeFiles/cmTC_2c1ba.dir/CheckIncludeFiles.c.o -c /home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp/CheckIncludeFiles.c
/home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp/CheckIncludeFiles.c:2:29: fatal error: linux/awe_voice.h: No such file or directory
compilation terminated.
CMakeFiles/cmTC_2c1ba.dir/build.make:65: recipe for target 'CMakeFiles/cmTC_2c1ba.dir/CheckIncludeFiles.c.o' failed
make[1]: *** [CMakeFiles/cmTC_2c1ba.dir/CheckIncludeFiles.c.o] Error 1
make[1]: Leaving directory '/home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp'
Makefile:126: recipe for target 'cmTC_2c1ba/fast' failed
make: *** [cmTC_2c1ba/fast] Error 2
Source:
/* */
#include <linux/awe_voice.h>
int main(void){return 0;}
Determining if files awe_voice.h exist failed with the following output:
Change Dir: /home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_0b922/fast"
/usr/bin/make -f CMakeFiles/cmTC_0b922.dir/build.make CMakeFiles/cmTC_0b922.dir/build
make[1]: Entering directory '/home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_0b922.dir/CheckIncludeFiles.c.o
/usr/bin/cc -o CMakeFiles/cmTC_0b922.dir/CheckIncludeFiles.c.o -c /home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp/CheckIncludeFiles.c
/home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp/CheckIncludeFiles.c:2:23: fatal error: awe_voice.h: No such file or directory
compilation terminated.
CMakeFiles/cmTC_0b922.dir/build.make:65: recipe for target 'CMakeFiles/cmTC_0b922.dir/CheckIncludeFiles.c.o' failed
make[1]: *** [CMakeFiles/cmTC_0b922.dir/CheckIncludeFiles.c.o] Error 1
make[1]: Leaving directory '/home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp'
Makefile:126: recipe for target 'cmTC_0b922/fast' failed
make: *** [cmTC_0b922/fast] Error 2
Source:
/* */
#include <awe_voice.h>
int main(void){return 0;}
Determining if files /usr/src/sys/i386/isa/sound/awe_voice.h exist failed with the following output:
Change Dir: /home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_d0692/fast"
/usr/bin/make -f CMakeFiles/cmTC_d0692.dir/build.make CMakeFiles/cmTC_d0692.dir/build
make[1]: Entering directory '/home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_d0692.dir/CheckIncludeFiles.c.o
/usr/bin/cc -o CMakeFiles/cmTC_d0692.dir/CheckIncludeFiles.c.o -c /home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp/CheckIncludeFiles.c
/home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp/CheckIncludeFiles.c:2:51: fatal error: /usr/src/sys/i386/isa/sound/awe_voice.h: No such file or directory
compilation terminated.
CMakeFiles/cmTC_d0692.dir/build.make:65: recipe for target 'CMakeFiles/cmTC_d0692.dir/CheckIncludeFiles.c.o' failed
make[1]: *** [CMakeFiles/cmTC_d0692.dir/CheckIncludeFiles.c.o] Error 1
make[1]: Leaving directory '/home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp'
Makefile:126: recipe for target 'cmTC_d0692/fast' failed
make: *** [cmTC_d0692/fast] Error 2
Source:
/* */
#include </usr/src/sys/i386/isa/sound/awe_voice.h>
int main(void){return 0;}
Determining if files /usr/src/sys/gnu/i386/isa/sound/awe_voice.h exist failed with the following output:
Change Dir: /home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_f9de6/fast"
/usr/bin/make -f CMakeFiles/cmTC_f9de6.dir/build.make CMakeFiles/cmTC_f9de6.dir/build
make[1]: Entering directory '/home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_f9de6.dir/CheckIncludeFiles.c.o
/usr/bin/cc -o CMakeFiles/cmTC_f9de6.dir/CheckIncludeFiles.c.o -c /home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp/CheckIncludeFiles.c
/home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp/CheckIncludeFiles.c:2:55: fatal error: /usr/src/sys/gnu/i386/isa/sound/awe_voice.h: No such file or directory
compilation terminated.
CMakeFiles/cmTC_f9de6.dir/build.make:65: recipe for target 'CMakeFiles/cmTC_f9de6.dir/CheckIncludeFiles.c.o' failed
make[1]: *** [CMakeFiles/cmTC_f9de6.dir/CheckIncludeFiles.c.o] Error 1
make[1]: Leaving directory '/home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp'
Makefile:126: recipe for target 'cmTC_f9de6/fast' failed
make: *** [cmTC_f9de6/fast] Error 2
Source:
/* */
#include </usr/src/sys/gnu/i386/isa/sound/awe_voice.h>
int main(void){return 0;}
Determining if files soundcard.h exist failed with the following output:
Change Dir: /home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_1577a/fast"
/usr/bin/make -f CMakeFiles/cmTC_1577a.dir/build.make CMakeFiles/cmTC_1577a.dir/build
make[1]: Entering directory '/home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_1577a.dir/CheckIncludeFiles.c.o
/usr/bin/cc -o CMakeFiles/cmTC_1577a.dir/CheckIncludeFiles.c.o -c /home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp/CheckIncludeFiles.c
/home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp/CheckIncludeFiles.c:2:23: fatal error: soundcard.h: No such file or directory
compilation terminated.
CMakeFiles/cmTC_1577a.dir/build.make:65: recipe for target 'CMakeFiles/cmTC_1577a.dir/CheckIncludeFiles.c.o' failed
make[1]: *** [CMakeFiles/cmTC_1577a.dir/CheckIncludeFiles.c.o] Error 1
make[1]: Leaving directory '/home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp'
Makefile:126: recipe for target 'cmTC_1577a/fast' failed
make: *** [cmTC_1577a/fast] Error 2
Source:
/* */
#include <soundcard.h>
int main(void){return 0;}
Determining if files process.h exist failed with the following output:
Change Dir: /home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_b2391/fast"
/usr/bin/make -f CMakeFiles/cmTC_b2391.dir/build.make CMakeFiles/cmTC_b2391.dir/build
make[1]: Entering directory '/home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_b2391.dir/CheckIncludeFiles.c.o
/usr/bin/cc -o CMakeFiles/cmTC_b2391.dir/CheckIncludeFiles.c.o -c /home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp/CheckIncludeFiles.c
/home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp/CheckIncludeFiles.c:2:21: fatal error: process.h: No such file or directory
compilation terminated.
CMakeFiles/cmTC_b2391.dir/build.make:65: recipe for target 'CMakeFiles/cmTC_b2391.dir/CheckIncludeFiles.c.o' failed
make[1]: *** [CMakeFiles/cmTC_b2391.dir/CheckIncludeFiles.c.o] Error 1
make[1]: Leaving directory '/home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp'
Makefile:126: recipe for target 'cmTC_b2391/fast' failed
make: *** [cmTC_b2391/fast] Error 2
Source:
/* */
#include <process.h>
int main(void){return 0;}
Determining if the Q_WS_WIN exist failed with the following output:
Change Dir: /home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_eaa11/fast"
/usr/bin/make -f CMakeFiles/cmTC_eaa11.dir/build.make CMakeFiles/cmTC_eaa11.dir/build
make[1]: Entering directory '/home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_eaa11.dir/CheckSymbolExists.cxx.o
/usr/bin/c++ -I/usr/include/qt4 -o CMakeFiles/cmTC_eaa11.dir/CheckSymbolExists.cxx.o -c /home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp/CheckSymbolExists.cxx
/home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp/CheckSymbolExists.cxx: In function ‘int main(int, char**)’:
/home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp/CheckSymbolExists.cxx:8:19: error: ‘Q_WS_WIN’ was not declared in this scope
return ((int*)(&Q_WS_WIN))[argc];
^
CMakeFiles/cmTC_eaa11.dir/build.make:65: recipe for target 'CMakeFiles/cmTC_eaa11.dir/CheckSymbolExists.cxx.o' failed
make[1]: *** [CMakeFiles/cmTC_eaa11.dir/CheckSymbolExists.cxx.o] Error 1
make[1]: Leaving directory '/home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp'
Makefile:126: recipe for target 'cmTC_eaa11/fast' failed
make: *** [cmTC_eaa11/fast] Error 2
File /home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp/CheckSymbolExists.cxx:
/* */
#include <QtCore/qglobal.h>
int main(int argc, char** argv)
{
(void)argv;
#ifndef Q_WS_WIN
return ((int*)(&Q_WS_WIN))[argc];
#else
(void)argc;
return 0;
#endif
}
Determining if the Q_WS_QWS exist failed with the following output:
Change Dir: /home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_1749f/fast"
/usr/bin/make -f CMakeFiles/cmTC_1749f.dir/build.make CMakeFiles/cmTC_1749f.dir/build
make[1]: Entering directory '/home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_1749f.dir/CheckSymbolExists.cxx.o
/usr/bin/c++ -I/usr/include/qt4 -o CMakeFiles/cmTC_1749f.dir/CheckSymbolExists.cxx.o -c /home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp/CheckSymbolExists.cxx
/home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp/CheckSymbolExists.cxx: In function ‘int main(int, char**)’:
/home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp/CheckSymbolExists.cxx:8:19: error: ‘Q_WS_QWS’ was not declared in this scope
return ((int*)(&Q_WS_QWS))[argc];
^
CMakeFiles/cmTC_1749f.dir/build.make:65: recipe for target 'CMakeFiles/cmTC_1749f.dir/CheckSymbolExists.cxx.o' failed
make[1]: *** [CMakeFiles/cmTC_1749f.dir/CheckSymbolExists.cxx.o] Error 1
make[1]: Leaving directory '/home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp'
Makefile:126: recipe for target 'cmTC_1749f/fast' failed
make: *** [cmTC_1749f/fast] Error 2
File /home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp/CheckSymbolExists.cxx:
/* */
#include <QtCore/qglobal.h>
int main(int argc, char** argv)
{
(void)argv;
#ifndef Q_WS_QWS
return ((int*)(&Q_WS_QWS))[argc];
#else
(void)argc;
return 0;
#endif
}
Determining if the Q_WS_MAC exist failed with the following output:
Change Dir: /home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_8762b/fast"
/usr/bin/make -f CMakeFiles/cmTC_8762b.dir/build.make CMakeFiles/cmTC_8762b.dir/build
make[1]: Entering directory '/home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_8762b.dir/CheckSymbolExists.cxx.o
/usr/bin/c++ -I/usr/include/qt4 -o CMakeFiles/cmTC_8762b.dir/CheckSymbolExists.cxx.o -c /home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp/CheckSymbolExists.cxx
/home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp/CheckSymbolExists.cxx: In function ‘int main(int, char**)’:
/home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp/CheckSymbolExists.cxx:8:19: error: ‘Q_WS_MAC’ was not declared in this scope
return ((int*)(&Q_WS_MAC))[argc];
^
CMakeFiles/cmTC_8762b.dir/build.make:65: recipe for target 'CMakeFiles/cmTC_8762b.dir/CheckSymbolExists.cxx.o' failed
make[1]: *** [CMakeFiles/cmTC_8762b.dir/CheckSymbolExists.cxx.o] Error 1
make[1]: Leaving directory '/home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp'
Makefile:126: recipe for target 'cmTC_8762b/fast' failed
make: *** [cmTC_8762b/fast] Error 2
File /home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp/CheckSymbolExists.cxx:
/* */
#include <QtCore/qglobal.h>
int main(int argc, char** argv)
{
(void)argv;
#ifndef Q_WS_MAC
return ((int*)(&Q_WS_MAC))[argc];
#else
(void)argc;
return 0;
#endif
}
Determining if the pthread_create exist failed with the following output:
Change Dir: /home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_c9680/fast"
/usr/bin/make -f CMakeFiles/cmTC_c9680.dir/build.make CMakeFiles/cmTC_c9680.dir/build
make[1]: Entering directory '/home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_c9680.dir/CheckSymbolExists.c.o
/usr/bin/cc -o CMakeFiles/cmTC_c9680.dir/CheckSymbolExists.c.o -c /home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp/CheckSymbolExists.c
Linking C executable cmTC_c9680
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_c9680.dir/link.txt --verbose=1
/usr/bin/cc CMakeFiles/cmTC_c9680.dir/CheckSymbolExists.c.o -o cmTC_c9680 -rdynamic
CMakeFiles/cmTC_c9680.dir/CheckSymbolExists.c.o: In function `main':
CheckSymbolExists.c:(.text+0x16): undefined reference to `pthread_create'
collect2: error: ld returned 1 exit status
CMakeFiles/cmTC_c9680.dir/build.make:97: recipe for target 'cmTC_c9680' failed
make[1]: *** [cmTC_c9680] Error 1
make[1]: Leaving directory '/home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp'
Makefile:126: recipe for target 'cmTC_c9680/fast' failed
make: *** [cmTC_c9680/fast] Error 2
File /home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp/CheckSymbolExists.c:
/* */
#include <pthread.h>
int main(int argc, char** argv)
{
(void)argv;
#ifndef pthread_create
return ((int*)(&pthread_create))[argc];
#else
(void)argc;
return 0;
#endif
}
Determining if the function pthread_create exists in the pthreads failed with the following output:
Change Dir: /home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_24965/fast"
/usr/bin/make -f CMakeFiles/cmTC_24965.dir/build.make CMakeFiles/cmTC_24965.dir/build
make[1]: Entering directory '/home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_24965.dir/CheckFunctionExists.c.o
/usr/bin/cc -DCHECK_FUNCTION_EXISTS=pthread_create -o CMakeFiles/cmTC_24965.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.5/Modules/CheckFunctionExists.c
Linking C executable cmTC_24965
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_24965.dir/link.txt --verbose=1
/usr/bin/cc -DCHECK_FUNCTION_EXISTS=pthread_create CMakeFiles/cmTC_24965.dir/CheckFunctionExists.c.o -o cmTC_24965 -rdynamic -lpthreads
/usr/bin/ld: cannot find -lpthreads
collect2: error: ld returned 1 exit status
CMakeFiles/cmTC_24965.dir/build.make:97: recipe for target 'cmTC_24965' failed
make[1]: *** [cmTC_24965] Error 1
make[1]: Leaving directory '/home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp'
Makefile:126: recipe for target 'cmTC_24965/fast' failed
make: *** [cmTC_24965/fast] Error 2
Determining if files machine/soundcard.h exist failed with the following output:
Change Dir: /home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_b35a9/fast"
/usr/bin/make -f CMakeFiles/cmTC_b35a9.dir/build.make CMakeFiles/cmTC_b35a9.dir/build
make[1]: Entering directory '/home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_b35a9.dir/CheckIncludeFiles.c.o
/usr/bin/cc -o CMakeFiles/cmTC_b35a9.dir/CheckIncludeFiles.c.o -c /home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp/CheckIncludeFiles.c
/home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp/CheckIncludeFiles.c:2:31: fatal error: machine/soundcard.h: No such file or directory
compilation terminated.
CMakeFiles/cmTC_b35a9.dir/build.make:65: recipe for target 'CMakeFiles/cmTC_b35a9.dir/CheckIncludeFiles.c.o' failed
make[1]: *** [CMakeFiles/cmTC_b35a9.dir/CheckIncludeFiles.c.o] Error 1
make[1]: Leaving directory '/home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp'
Makefile:126: recipe for target 'cmTC_b35a9/fast' failed
make: *** [cmTC_b35a9/fast] Error 2
Source:
/* */
#include <machine/soundcard.h>
int main(void){return 0;}
Determining if files linux/awe_voice.h exist failed with the following output:
Change Dir: /home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_3ab5b/fast"
/usr/bin/make -f CMakeFiles/cmTC_3ab5b.dir/build.make CMakeFiles/cmTC_3ab5b.dir/build
make[1]: Entering directory '/home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_3ab5b.dir/CheckIncludeFiles.c.o
/usr/bin/cc -o CMakeFiles/cmTC_3ab5b.dir/CheckIncludeFiles.c.o -c /home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp/CheckIncludeFiles.c
/home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp/CheckIncludeFiles.c:2:29: fatal error: linux/awe_voice.h: No such file or directory
compilation terminated.
CMakeFiles/cmTC_3ab5b.dir/build.make:65: recipe for target 'CMakeFiles/cmTC_3ab5b.dir/CheckIncludeFiles.c.o' failed
make[1]: *** [CMakeFiles/cmTC_3ab5b.dir/CheckIncludeFiles.c.o] Error 1
make[1]: Leaving directory '/home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp'
Makefile:126: recipe for target 'cmTC_3ab5b/fast' failed
make: *** [cmTC_3ab5b/fast] Error 2
Source:
/* */
#include <linux/awe_voice.h>
int main(void){return 0;}
Determining if files awe_voice.h exist failed with the following output:
Change Dir: /home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_90ba3/fast"
/usr/bin/make -f CMakeFiles/cmTC_90ba3.dir/build.make CMakeFiles/cmTC_90ba3.dir/build
make[1]: Entering directory '/home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_90ba3.dir/CheckIncludeFiles.c.o
/usr/bin/cc -o CMakeFiles/cmTC_90ba3.dir/CheckIncludeFiles.c.o -c /home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp/CheckIncludeFiles.c
/home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp/CheckIncludeFiles.c:2:23: fatal error: awe_voice.h: No such file or directory
compilation terminated.
CMakeFiles/cmTC_90ba3.dir/build.make:65: recipe for target 'CMakeFiles/cmTC_90ba3.dir/CheckIncludeFiles.c.o' failed
make[1]: *** [CMakeFiles/cmTC_90ba3.dir/CheckIncludeFiles.c.o] Error 1
make[1]: Leaving directory '/home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp'
Makefile:126: recipe for target 'cmTC_90ba3/fast' failed
make: *** [cmTC_90ba3/fast] Error 2
Source:
/* */
#include <awe_voice.h>
int main(void){return 0;}
Determining if files /usr/src/sys/i386/isa/sound/awe_voice.h exist failed with the following output:
Change Dir: /home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_a9ad4/fast"
/usr/bin/make -f CMakeFiles/cmTC_a9ad4.dir/build.make CMakeFiles/cmTC_a9ad4.dir/build
make[1]: Entering directory '/home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_a9ad4.dir/CheckIncludeFiles.c.o
/usr/bin/cc -o CMakeFiles/cmTC_a9ad4.dir/CheckIncludeFiles.c.o -c /home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp/CheckIncludeFiles.c
/home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp/CheckIncludeFiles.c:2:51: fatal error: /usr/src/sys/i386/isa/sound/awe_voice.h: No such file or directory
compilation terminated.
CMakeFiles/cmTC_a9ad4.dir/build.make:65: recipe for target 'CMakeFiles/cmTC_a9ad4.dir/CheckIncludeFiles.c.o' failed
make[1]: *** [CMakeFiles/cmTC_a9ad4.dir/CheckIncludeFiles.c.o] Error 1
make[1]: Leaving directory '/home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp'
Makefile:126: recipe for target 'cmTC_a9ad4/fast' failed
make: *** [cmTC_a9ad4/fast] Error 2
Source:
/* */
#include </usr/src/sys/i386/isa/sound/awe_voice.h>
int main(void){return 0;}
Determining if files /usr/src/sys/gnu/i386/isa/sound/awe_voice.h exist failed with the following output:
Change Dir: /home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_e94f5/fast"
/usr/bin/make -f CMakeFiles/cmTC_e94f5.dir/build.make CMakeFiles/cmTC_e94f5.dir/build
make[1]: Entering directory '/home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_e94f5.dir/CheckIncludeFiles.c.o
/usr/bin/cc -o CMakeFiles/cmTC_e94f5.dir/CheckIncludeFiles.c.o -c /home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp/CheckIncludeFiles.c
/home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp/CheckIncludeFiles.c:2:55: fatal error: /usr/src/sys/gnu/i386/isa/sound/awe_voice.h: No such file or directory
compilation terminated.
CMakeFiles/cmTC_e94f5.dir/build.make:65: recipe for target 'CMakeFiles/cmTC_e94f5.dir/CheckIncludeFiles.c.o' failed
make[1]: *** [CMakeFiles/cmTC_e94f5.dir/CheckIncludeFiles.c.o] Error 1
make[1]: Leaving directory '/home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp'
Makefile:126: recipe for target 'cmTC_e94f5/fast' failed
make: *** [cmTC_e94f5/fast] Error 2
Source:
/* */
#include </usr/src/sys/gnu/i386/isa/sound/awe_voice.h>
int main(void){return 0;}
Determining if files soundcard.h exist failed with the following output:
Change Dir: /home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_2f54f/fast"
/usr/bin/make -f CMakeFiles/cmTC_2f54f.dir/build.make CMakeFiles/cmTC_2f54f.dir/build
make[1]: Entering directory '/home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_2f54f.dir/CheckIncludeFiles.c.o
/usr/bin/cc -o CMakeFiles/cmTC_2f54f.dir/CheckIncludeFiles.c.o -c /home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp/CheckIncludeFiles.c
/home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp/CheckIncludeFiles.c:2:23: fatal error: soundcard.h: No such file or directory
compilation terminated.
CMakeFiles/cmTC_2f54f.dir/build.make:65: recipe for target 'CMakeFiles/cmTC_2f54f.dir/CheckIncludeFiles.c.o' failed
make[1]: *** [CMakeFiles/cmTC_2f54f.dir/CheckIncludeFiles.c.o] Error 1
make[1]: Leaving directory '/home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp'
Makefile:126: recipe for target 'cmTC_2f54f/fast' failed
make: *** [cmTC_2f54f/fast] Error 2
Source:
/* */
#include <soundcard.h>
int main(void){return 0;}
Determining if files process.h exist failed with the following output:
Change Dir: /home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_baa0a/fast"
/usr/bin/make -f CMakeFiles/cmTC_baa0a.dir/build.make CMakeFiles/cmTC_baa0a.dir/build
make[1]: Entering directory '/home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_baa0a.dir/CheckIncludeFiles.c.o
/usr/bin/cc -o CMakeFiles/cmTC_baa0a.dir/CheckIncludeFiles.c.o -c /home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp/CheckIncludeFiles.c
/home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp/CheckIncludeFiles.c:2:21: fatal error: process.h: No such file or directory
compilation terminated.
CMakeFiles/cmTC_baa0a.dir/build.make:65: recipe for target 'CMakeFiles/cmTC_baa0a.dir/CheckIncludeFiles.c.o' failed
make[1]: *** [CMakeFiles/cmTC_baa0a.dir/CheckIncludeFiles.c.o] Error 1
make[1]: Leaving directory '/home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp'
Makefile:126: recipe for target 'cmTC_baa0a/fast' failed
make: *** [cmTC_baa0a/fast] Error 2
Source:
/* */
#include <process.h>
int main(void){return 0;}
Determining if the pthread_create exist failed with the following output:
Change Dir: /home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_5468a/fast"
/usr/bin/make -f CMakeFiles/cmTC_5468a.dir/build.make CMakeFiles/cmTC_5468a.dir/build
make[1]: Entering directory '/home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_5468a.dir/CheckSymbolExists.c.o
/usr/bin/cc -o CMakeFiles/cmTC_5468a.dir/CheckSymbolExists.c.o -c /home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp/CheckSymbolExists.c
Linking C executable cmTC_5468a
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_5468a.dir/link.txt --verbose=1
/usr/bin/cc CMakeFiles/cmTC_5468a.dir/CheckSymbolExists.c.o -o cmTC_5468a -rdynamic
CMakeFiles/cmTC_5468a.dir/CheckSymbolExists.c.o: In function `main':
CheckSymbolExists.c:(.text+0x16): undefined reference to `pthread_create'
collect2: error: ld returned 1 exit status
CMakeFiles/cmTC_5468a.dir/build.make:97: recipe for target 'cmTC_5468a' failed
make[1]: *** [cmTC_5468a] Error 1
make[1]: Leaving directory '/home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp'
Makefile:126: recipe for target 'cmTC_5468a/fast' failed
make: *** [cmTC_5468a/fast] Error 2
File /home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp/CheckSymbolExists.c:
/* */
#include <pthread.h>
int main(int argc, char** argv)
{
(void)argv;
#ifndef pthread_create
return ((int*)(&pthread_create))[argc];
#else
(void)argc;
return 0;
#endif
}
Determining if the function pthread_create exists in the pthreads failed with the following output:
Change Dir: /home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_6d50e/fast"
/usr/bin/make -f CMakeFiles/cmTC_6d50e.dir/build.make CMakeFiles/cmTC_6d50e.dir/build
make[1]: Entering directory '/home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_6d50e.dir/CheckFunctionExists.c.o
/usr/bin/cc -DCHECK_FUNCTION_EXISTS=pthread_create -o CMakeFiles/cmTC_6d50e.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.5/Modules/CheckFunctionExists.c
Linking C executable cmTC_6d50e
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_6d50e.dir/link.txt --verbose=1
/usr/bin/cc -DCHECK_FUNCTION_EXISTS=pthread_create CMakeFiles/cmTC_6d50e.dir/CheckFunctionExists.c.o -o cmTC_6d50e -rdynamic -lpthreads
/usr/bin/ld: cannot find -lpthreads
collect2: error: ld returned 1 exit status
CMakeFiles/cmTC_6d50e.dir/build.make:97: recipe for target 'cmTC_6d50e' failed
make[1]: *** [cmTC_6d50e] Error 1
make[1]: Leaving directory '/home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp'
Makefile:126: recipe for target 'cmTC_6d50e/fast' failed
make: *** [cmTC_6d50e/fast] Error 2
Determining if files machine/soundcard.h exist failed with the following output:
Change Dir: /home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_c914e/fast"
/usr/bin/make -f CMakeFiles/cmTC_c914e.dir/build.make CMakeFiles/cmTC_c914e.dir/build
make[1]: Entering directory '/home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_c914e.dir/CheckIncludeFiles.c.o
/usr/bin/cc -o CMakeFiles/cmTC_c914e.dir/CheckIncludeFiles.c.o -c /home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp/CheckIncludeFiles.c
/home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp/CheckIncludeFiles.c:2:31: fatal error: machine/soundcard.h: No such file or directory
compilation terminated.
CMakeFiles/cmTC_c914e.dir/build.make:65: recipe for target 'CMakeFiles/cmTC_c914e.dir/CheckIncludeFiles.c.o' failed
make[1]: *** [CMakeFiles/cmTC_c914e.dir/CheckIncludeFiles.c.o] Error 1
make[1]: Leaving directory '/home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp'
Makefile:126: recipe for target 'cmTC_c914e/fast' failed
make: *** [cmTC_c914e/fast] Error 2
Source:
/* */
#include <machine/soundcard.h>
int main(void){return 0;}
Determining if files linux/awe_voice.h exist failed with the following output:
Change Dir: /home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_c647d/fast"
/usr/bin/make -f CMakeFiles/cmTC_c647d.dir/build.make CMakeFiles/cmTC_c647d.dir/build
make[1]: Entering directory '/home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_c647d.dir/CheckIncludeFiles.c.o
/usr/bin/cc -o CMakeFiles/cmTC_c647d.dir/CheckIncludeFiles.c.o -c /home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp/CheckIncludeFiles.c
/home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp/CheckIncludeFiles.c:2:29: fatal error: linux/awe_voice.h: No such file or directory
compilation terminated.
CMakeFiles/cmTC_c647d.dir/build.make:65: recipe for target 'CMakeFiles/cmTC_c647d.dir/CheckIncludeFiles.c.o' failed
make[1]: *** [CMakeFiles/cmTC_c647d.dir/CheckIncludeFiles.c.o] Error 1
make[1]: Leaving directory '/home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp'
Makefile:126: recipe for target 'cmTC_c647d/fast' failed
make: *** [cmTC_c647d/fast] Error 2
Source:
/* */
#include <linux/awe_voice.h>
int main(void){return 0;}
Determining if files awe_voice.h exist failed with the following output:
Change Dir: /home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_72089/fast"
/usr/bin/make -f CMakeFiles/cmTC_72089.dir/build.make CMakeFiles/cmTC_72089.dir/build
make[1]: Entering directory '/home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_72089.dir/CheckIncludeFiles.c.o
/usr/bin/cc -o CMakeFiles/cmTC_72089.dir/CheckIncludeFiles.c.o -c /home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp/CheckIncludeFiles.c
/home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp/CheckIncludeFiles.c:2:23: fatal error: awe_voice.h: No such file or directory
compilation terminated.
CMakeFiles/cmTC_72089.dir/build.make:65: recipe for target 'CMakeFiles/cmTC_72089.dir/CheckIncludeFiles.c.o' failed
make[1]: *** [CMakeFiles/cmTC_72089.dir/CheckIncludeFiles.c.o] Error 1
make[1]: Leaving directory '/home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp'
Makefile:126: recipe for target 'cmTC_72089/fast' failed
make: *** [cmTC_72089/fast] Error 2
Source:
/* */
#include <awe_voice.h>
int main(void){return 0;}
Determining if files /usr/src/sys/i386/isa/sound/awe_voice.h exist failed with the following output:
Change Dir: /home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_9cfc9/fast"
/usr/bin/make -f CMakeFiles/cmTC_9cfc9.dir/build.make CMakeFiles/cmTC_9cfc9.dir/build
make[1]: Entering directory '/home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_9cfc9.dir/CheckIncludeFiles.c.o
/usr/bin/cc -o CMakeFiles/cmTC_9cfc9.dir/CheckIncludeFiles.c.o -c /home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp/CheckIncludeFiles.c
/home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp/CheckIncludeFiles.c:2:51: fatal error: /usr/src/sys/i386/isa/sound/awe_voice.h: No such file or directory
compilation terminated.
CMakeFiles/cmTC_9cfc9.dir/build.make:65: recipe for target 'CMakeFiles/cmTC_9cfc9.dir/CheckIncludeFiles.c.o' failed
make[1]: *** [CMakeFiles/cmTC_9cfc9.dir/CheckIncludeFiles.c.o] Error 1
make[1]: Leaving directory '/home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp'
Makefile:126: recipe for target 'cmTC_9cfc9/fast' failed
make: *** [cmTC_9cfc9/fast] Error 2
Source:
/* */
#include </usr/src/sys/i386/isa/sound/awe_voice.h>
int main(void){return 0;}
Determining if files /usr/src/sys/gnu/i386/isa/sound/awe_voice.h exist failed with the following output:
Change Dir: /home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_0e111/fast"
/usr/bin/make -f CMakeFiles/cmTC_0e111.dir/build.make CMakeFiles/cmTC_0e111.dir/build
make[1]: Entering directory '/home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_0e111.dir/CheckIncludeFiles.c.o
/usr/bin/cc -o CMakeFiles/cmTC_0e111.dir/CheckIncludeFiles.c.o -c /home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp/CheckIncludeFiles.c
/home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp/CheckIncludeFiles.c:2:55: fatal error: /usr/src/sys/gnu/i386/isa/sound/awe_voice.h: No such file or directory
compilation terminated.
CMakeFiles/cmTC_0e111.dir/build.make:65: recipe for target 'CMakeFiles/cmTC_0e111.dir/CheckIncludeFiles.c.o' failed
make[1]: *** [CMakeFiles/cmTC_0e111.dir/CheckIncludeFiles.c.o] Error 1
make[1]: Leaving directory '/home/ragmaanir/applications/lmms/build/CMakeFiles/CMakeTmp'
Makefile:126: recipe for target 'cmTC_0e111/fast' failed
make: *** [cmTC_0e111/fast] Error 2
Source:
/* */
#include </usr/src/sys/gnu/i386/isa/sound/awe_voice.h>
int main(void){return 0;}
> cmake .. -DWANT_QT5=ON -DCMAKE_INSTALL_PREFIX=../target/
-- Found PkgConfig: /usr/bin/pkg-config (found version "0.29.1")
-- Found Git: /usr/bin/git (found version "2.7.4")
Configuring LMMS
--------------------------
* Project version : 1.2.0-rc3
* Major version : 1
* Minor version : 2
* Release version : 0
* Stage version : rc3
* Build version : 0
*
Optional Version Usage:
--------------------------
* Override version: -DFORCE_VERSION=x.x.x-x
* Ignore Git information: -DFORCE_VERSION=internal
PROCESSOR: x86_64
Machine: x86_64-linux-gnu
-- Target host is 64 bit
-- Looking for include file stdint.h
-- Looking for include file stdint.h - found
-- Looking for include file stdlib.h
-- Looking for include file stdlib.h - found
-- Looking for include file pthread.h
-- Looking for include file pthread.h - found
-- Looking for include file semaphore.h
-- Looking for include file semaphore.h - found
-- Looking for include file unistd.h
-- Looking for include file unistd.h - found
-- Looking for include file sys/types.h
-- Looking for include file sys/types.h - found
-- Looking for include file sys/ipc.h
-- Looking for include file sys/ipc.h - found
-- Looking for include file sys/shm.h
-- Looking for include file sys/shm.h - found
-- Looking for include file sys/time.h
-- Looking for include file sys/time.h - found
-- Looking for include file sched.h
-- Looking for include file sched.h - found
-- Looking for include file sys/soundcard.h
-- Looking for include file sys/soundcard.h - found
-- Looking for include file soundcard.h
-- Looking for include file soundcard.h - not found
-- Looking for include file fcntl.h
-- Looking for include file fcntl.h - found
-- Looking for include file sys/ioctl.h
-- Looking for include file sys/ioctl.h - found
-- Looking for include file ctype.h
-- Looking for include file ctype.h - found
-- Looking for include file string.h
-- Looking for include file string.h - found
-- Looking for include file process.h
-- Looking for include file process.h - not found
-- Looking for include file locale.h
-- Looking for include file locale.h - found
CMake Warning at CMakeLists.txt:136 (FIND_PACKAGE):
By not providing "FindQt5LinguistTools.cmake" in CMAKE_MODULE_PATH this
project has asked CMake to find a package configuration file provided by
"Qt5LinguistTools", but CMake did not find one.
Could not find a package configuration file provided by "Qt5LinguistTools"
with any of the following names:
Qt5LinguistToolsConfig.cmake
qt5linguisttools-config.cmake
Add the installation prefix of "Qt5LinguistTools" to CMAKE_PREFIX_PATH or
set "Qt5LinguistTools_DIR" to a directory containing one of the above
files. If "Qt5LinguistTools" provides a separate development package or
SDK, be sure it has been installed.
-- Checking for module 'sndfile>=1.0.11'
-- Found sndfile, version 1.0.25
-- Checking for module 'carla-standalone>=1.9.5'
--
-- Looking for pthread.h
-- Looking for pthread.h - found
-- Looking for pthread_create
-- Looking for pthread_create - not found
-- Looking for pthread_create in pthreads
-- Looking for pthread_create in pthreads - not found
-- Looking for pthread_create in pthread
-- Looking for pthread_create in pthread - found
-- Found Threads: TRUE
-- Found SDL: /usr/lib/x86_64-linux-gnu/libSDL.so;-lpthread (found version "1.2.15")
-- Checking for module 'portaudio-2.0'
-- Found portaudio-2.0, version 19
-- Found Portaudio: portaudio;asound;m;pthread
-- Found SOUNDIO: /usr/lib/x86_64-linux-gnu/libsoundio.so
-- Checking for module 'libpulse'
-- Found libpulse, version 8.0
-- Found PulseAudio Simple: /usr/lib/x86_64-linux-gnu/libpulse.so
-- Looking for vorbis_bitrate_addblock in vorbis
-- Looking for vorbis_bitrate_addblock in vorbis - found
-- Found OggVorbis: /usr/lib/x86_64-linux-gnu/libogg.so;/usr/lib/x86_64-linux-gnu/libvorbis.so;/usr/lib/x86_64-linux-gnu/libvorbisfile.so;/usr/lib/x86_64-linux-gnu/libvorbisenc.so
-- Looking for snd_seq_create_simple_port in asound
-- Looking for snd_seq_create_simple_port in asound - found
-- Found ALSA: /usr/lib/x86_64-linux-gnu/libasound.so
-- Looking for include file machine/soundcard.h
-- Looking for include file machine/soundcard.h - not found
-- Looking for include file linux/awe_voice.h
-- Looking for include file linux/awe_voice.h - not found
-- Looking for include file awe_voice.h
-- Looking for include file awe_voice.h - not found
-- Looking for include file /usr/src/sys/i386/isa/sound/awe_voice.h
-- Looking for include file /usr/src/sys/i386/isa/sound/awe_voice.h - not found
-- Looking for include file /usr/src/sys/gnu/i386/isa/sound/awe_voice.h
-- Looking for include file /usr/src/sys/gnu/i386/isa/sound/awe_voice.h - not found
-- Looking for C++ include sys/asoundlib.h
-- Looking for C++ include sys/asoundlib.h - found
-- Looking for C++ include alsa/asoundlib.h
-- Looking for C++ include alsa/asoundlib.h - found
-- Looking for snd_pcm_resume in asound
-- Looking for snd_pcm_resume in asound - found
-- Checking for module 'jack>=0.77'
-- Found jack, version 1.9.11-RC1
-- Checking for module 'fftw3f>=3.0.0'
-- Found fftw3f, version 3.3.4
-- Found OpenGL: /usr/lib/x86_64-linux-gnu/libGL.so
-- Looking for XOpenDisplay in /usr/lib/x86_64-linux-gnu/libX11.so;/usr/lib/x86_64-linux-gnu/libXext.so
-- Looking for XOpenDisplay in /usr/lib/x86_64-linux-gnu/libX11.so;/usr/lib/x86_64-linux-gnu/libXext.so - found
-- Looking for gethostbyname
-- Looking for gethostbyname - found
-- Looking for connect
-- Looking for connect - found
-- Looking for remove
-- Looking for remove - found
-- Looking for shmat
-- Looking for shmat - found
-- Found X11: /usr/lib/x86_64-linux-gnu/libX11.so
-- Found FLTK: fltk_images;fltk_forms;fltk_gl;/usr/lib/x86_64-linux-gnu/libGL.so;fltk
-- Checking for module 'fluidsynth>=1.0.7'
--
-- Checking for module 'gig'
-- No package 'gig' found
-- Could NOT find Wine (missing: WINE_LIBRARIES WINE_INCLUDE_DIRS)
-- Checking for module 'samplerate>=0.1.8'
--
CMake Error at /usr/share/cmake-3.5/Modules/FindPkgConfig.cmake:367 (message):
A required package was not found
Call Stack (most recent call first):
/usr/share/cmake-3.5/Modules/FindPkgConfig.cmake:532 (_pkg_check_modules_internal)
CMakeLists.txt:426 (PKG_CHECK_MODULES)
-- Configuring incomplete, errors occurred!
See also "xxx/applications/lmms/build/CMakeFiles/CMakeOutput.log".
See also "xxx/applications/lmms/build/CMakeFiles/CMakeError.log".
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment