Skip to content

Instantly share code, notes, and snippets.

@brycehenley
Created December 21, 2014 16:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save brycehenley/5bfb4217b9773f643ab4 to your computer and use it in GitHub Desktop.
Save brycehenley/5bfb4217b9773f643ab4 to your computer and use it in GitHub Desktop.
Determining if the system is big endian passed with the following output:
Change Dir: /home/bryce/NeoBuild/CMakeFiles/CMakeTmp
Run Build Command:/usr/bin/make "cmTryCompileExec994420158/fast"
/usr/bin/make -f CMakeFiles/cmTryCompileExec994420158.dir/build.make CMakeFiles/cmTryCompileExec994420158.dir/build
make[1]: Entering directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
/usr/bin/cmake -E cmake_progress_report /home/bryce/NeoBuild/CMakeFiles/CMakeTmp/CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec994420158.dir/TestEndianess.c.o
/usr/bin/cc -O3 -fPIC -DLINUX -o CMakeFiles/cmTryCompileExec994420158.dir/TestEndianess.c.o -c /home/bryce/NeoBuild/CMakeFiles/CMakeTmp/TestEndianess.c
Linking C executable cmTryCompileExec994420158
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec994420158.dir/link.txt --verbose=1
/usr/bin/cc -O3 -fPIC -DLINUX CMakeFiles/cmTryCompileExec994420158.dir/TestEndianess.c.o -o cmTryCompileExec994420158 -rdynamic
make[1]: Leaving directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
TestEndianess.c:
/* A 16 bit integer is required. */
typedef unsigned short cmakeint16;
/* On a little endian machine, these 16bit ints will give "THIS IS LITTLE ENDIAN."
On a big endian machine the characters will be exchanged pairwise. */
const cmakeint16 info_little[] = {0x4854, 0x5349, 0x4920, 0x2053, 0x494c, 0x5454, 0x454c, 0x4520, 0x444e, 0x4149, 0x2e4e, 0x0000};
/* on a big endian machine, these 16bit ints will give "THIS IS BIG ENDIAN."
On a little endian machine the characters will be exchanged pairwise. */
const cmakeint16 info_big[] = {0x5448, 0x4953, 0x2049, 0x5320, 0x4249, 0x4720, 0x454e, 0x4449, 0x414e, 0x2e2e, 0x0000};
#ifdef __CLASSIC_C__
int main(argc, argv) int argc; char *argv[];
#else
int main(int argc, char *argv[])
#endif
{
int require = 0;
require += info_little[argc];
require += info_big[argc];
(void)argv;
return require;
}
Determining if the function strlcat exists failed with the following output:
Change Dir: /home/bryce/NeoBuild/CMakeFiles/CMakeTmp
Run Build Command:/usr/bin/make "cmTryCompileExec3666564685/fast"
/usr/bin/make -f CMakeFiles/cmTryCompileExec3666564685.dir/build.make CMakeFiles/cmTryCompileExec3666564685.dir/build
make[1]: Entering directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
/usr/bin/cmake -E cmake_progress_report /home/bryce/NeoBuild/CMakeFiles/CMakeTmp/CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec3666564685.dir/CheckFunctionExists.c.o
/usr/bin/cc -O3 -fPIC -DLINUX -DCHECK_FUNCTION_EXISTS=strlcat -o CMakeFiles/cmTryCompileExec3666564685.dir/CheckFunctionExists.c.o -c /usr/share/cmake-2.8/Modules/CheckFunctionExists.c
Linking C executable cmTryCompileExec3666564685
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec3666564685.dir/link.txt --verbose=1
/usr/bin/cc -O3 -fPIC -DLINUX -DCHECK_FUNCTION_EXISTS=strlcat CMakeFiles/cmTryCompileExec3666564685.dir/CheckFunctionExists.c.o -o cmTryCompileExec3666564685 -rdynamic -lpng
CMakeFiles/cmTryCompileExec3666564685.dir/CheckFunctionExists.c.o: In function `main':
CheckFunctionExists.c:(.text.startup+0xe): undefined reference to `strlcat'
collect2: error: ld returned 1 exit status
CMakeFiles/cmTryCompileExec3666564685.dir/build.make:88: recipe for target 'cmTryCompileExec3666564685' failed
make[1]: *** [cmTryCompileExec3666564685] Error 1
make[1]: Leaving directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
Makefile:114: recipe for target 'cmTryCompileExec3666564685/fast' failed
make: *** [cmTryCompileExec3666564685/fast] Error 2
Determining if the function strlcpy exists failed with the following output:
Change Dir: /home/bryce/NeoBuild/CMakeFiles/CMakeTmp
Run Build Command:/usr/bin/make "cmTryCompileExec38923321/fast"
/usr/bin/make -f CMakeFiles/cmTryCompileExec38923321.dir/build.make CMakeFiles/cmTryCompileExec38923321.dir/build
make[1]: Entering directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
/usr/bin/cmake -E cmake_progress_report /home/bryce/NeoBuild/CMakeFiles/CMakeTmp/CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec38923321.dir/CheckFunctionExists.c.o
/usr/bin/cc -O3 -fPIC -DLINUX -DCHECK_FUNCTION_EXISTS=strlcpy -o CMakeFiles/cmTryCompileExec38923321.dir/CheckFunctionExists.c.o -c /usr/share/cmake-2.8/Modules/CheckFunctionExists.c
Linking C executable cmTryCompileExec38923321
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec38923321.dir/link.txt --verbose=1
/usr/bin/cc -O3 -fPIC -DLINUX -DCHECK_FUNCTION_EXISTS=strlcpy CMakeFiles/cmTryCompileExec38923321.dir/CheckFunctionExists.c.o -o cmTryCompileExec38923321 -rdynamic -lpng
CMakeFiles/cmTryCompileExec38923321.dir/CheckFunctionExists.c.o: In function `main':
CheckFunctionExists.c:(.text.startup+0xe): undefined reference to `strlcpy'
collect2: error: ld returned 1 exit status
CMakeFiles/cmTryCompileExec38923321.dir/build.make:88: recipe for target 'cmTryCompileExec38923321' failed
make[1]: *** [cmTryCompileExec38923321] Error 1
make[1]: Leaving directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
Makefile:114: recipe for target 'cmTryCompileExec38923321/fast' failed
make: *** [cmTryCompileExec38923321/fast] Error 2
Determining if the pthread_create exist failed with the following output:
Change Dir: /home/bryce/NeoBuild/CMakeFiles/CMakeTmp
Run Build Command:/usr/bin/make "cmTryCompileExec4162270345/fast"
/usr/bin/make -f CMakeFiles/cmTryCompileExec4162270345.dir/build.make CMakeFiles/cmTryCompileExec4162270345.dir/build
make[1]: Entering directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
/usr/bin/cmake -E cmake_progress_report /home/bryce/NeoBuild/CMakeFiles/CMakeTmp/CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec4162270345.dir/CheckSymbolExists.c.o
/usr/bin/cc -O3 -fPIC -DLINUX -I/usr/include/GL -o CMakeFiles/cmTryCompileExec4162270345.dir/CheckSymbolExists.c.o -c /home/bryce/NeoBuild/CMakeFiles/CMakeTmp/CheckSymbolExists.c
Linking C executable cmTryCompileExec4162270345
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec4162270345.dir/link.txt --verbose=1
/usr/bin/cc -O3 -fPIC -DLINUX CMakeFiles/cmTryCompileExec4162270345.dir/CheckSymbolExists.c.o -o cmTryCompileExec4162270345 -rdynamic -lGLU -lGL
CMakeFiles/cmTryCompileExec4162270345.dir/CheckSymbolExists.c.o: In function `main':
CheckSymbolExists.c:(.text.startup+0x3): undefined reference to `pthread_create'
collect2: error: ld returned 1 exit status
CMakeFiles/cmTryCompileExec4162270345.dir/build.make:88: recipe for target 'cmTryCompileExec4162270345' failed
make[1]: *** [cmTryCompileExec4162270345] Error 1
make[1]: Leaving directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
Makefile:114: recipe for target 'cmTryCompileExec4162270345/fast' failed
make: *** [cmTryCompileExec4162270345/fast] Error 2
File /home/bryce/NeoBuild/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/bryce/NeoBuild/CMakeFiles/CMakeTmp
Run Build Command:/usr/bin/make "cmTryCompileExec328099142/fast"
/usr/bin/make -f CMakeFiles/cmTryCompileExec328099142.dir/build.make CMakeFiles/cmTryCompileExec328099142.dir/build
make[1]: Entering directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
/usr/bin/cmake -E cmake_progress_report /home/bryce/NeoBuild/CMakeFiles/CMakeTmp/CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec328099142.dir/CheckFunctionExists.c.o
/usr/bin/cc -O3 -fPIC -DLINUX -DCHECK_FUNCTION_EXISTS=pthread_create -o CMakeFiles/cmTryCompileExec328099142.dir/CheckFunctionExists.c.o -c /usr/share/cmake-2.8/Modules/CheckFunctionExists.c
Linking C executable cmTryCompileExec328099142
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec328099142.dir/link.txt --verbose=1
/usr/bin/cc -O3 -fPIC -DLINUX -DCHECK_FUNCTION_EXISTS=pthread_create CMakeFiles/cmTryCompileExec328099142.dir/CheckFunctionExists.c.o -o cmTryCompileExec328099142 -rdynamic -lpthreads -lGLU -lGL
/usr/bin/ld: cannot find -lpthreads
collect2: error: ld returned 1 exit status
CMakeFiles/cmTryCompileExec328099142.dir/build.make:88: recipe for target 'cmTryCompileExec328099142' failed
make[1]: *** [cmTryCompileExec328099142] Error 1
make[1]: Leaving directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
Makefile:114: recipe for target 'cmTryCompileExec328099142/fast' failed
make: *** [cmTryCompileExec328099142/fast] Error 2
Performing C SOURCE FILE Test HAVE_GCC_PREFERRED_STACK_BOUNDARY failed with the following output:
Change Dir: /home/bryce/NeoBuild/CMakeFiles/CMakeTmp
Run Build Command:/usr/bin/make "cmTryCompileExec3952567659/fast"
/usr/bin/make -f CMakeFiles/cmTryCompileExec3952567659.dir/build.make CMakeFiles/cmTryCompileExec3952567659.dir/build
make[1]: Entering directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
/usr/bin/cmake -E cmake_progress_report /home/bryce/NeoBuild/CMakeFiles/CMakeTmp/CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec3952567659.dir/src.c.o
/usr/bin/cc -g -O3 -DHAVE_GCC_PREFERRED_STACK_BOUNDARY -mpreferred-stack-boundary=2 -o CMakeFiles/cmTryCompileExec3952567659.dir/src.c.o -c /home/bryce/NeoBuild/CMakeFiles/CMakeTmp/src.c
/home/bryce/NeoBuild/CMakeFiles/CMakeTmp/src.c:1:0: error: -mpreferred-stack-boundary=2 is not between 4 and 12
int x = 0; int main(int argc, char **argv) {}
^
CMakeFiles/cmTryCompileExec3952567659.dir/build.make:57: recipe for target 'CMakeFiles/cmTryCompileExec3952567659.dir/src.c.o' failed
make[1]: *** [CMakeFiles/cmTryCompileExec3952567659.dir/src.c.o] Error 1
make[1]: Leaving directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
Makefile:114: recipe for target 'cmTryCompileExec3952567659/fast' failed
make: *** [cmTryCompileExec3952567659/fast] Error 2
Source file was:
int x = 0; int main(int argc, char **argv) {}
Performing C SOURCE FILE Test HAVE_ALTIVEC_H_HDR failed with the following output:
Change Dir: /home/bryce/NeoBuild/CMakeFiles/CMakeTmp
Run Build Command:/usr/bin/make "cmTryCompileExec599053346/fast"
/usr/bin/make -f CMakeFiles/cmTryCompileExec599053346.dir/build.make CMakeFiles/cmTryCompileExec599053346.dir/build
make[1]: Entering directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
/usr/bin/cmake -E cmake_progress_report /home/bryce/NeoBuild/CMakeFiles/CMakeTmp/CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec599053346.dir/src.c.o
/usr/bin/cc -g -O3 -DHAVE_ALTIVEC_H_HDR -maltivec -o CMakeFiles/cmTryCompileExec599053346.dir/src.c.o -c /home/bryce/NeoBuild/CMakeFiles/CMakeTmp/src.c
cc: error: unrecognized command line option ‘-maltivec’
CMakeFiles/cmTryCompileExec599053346.dir/build.make:57: recipe for target 'CMakeFiles/cmTryCompileExec599053346.dir/src.c.o' failed
make[1]: *** [CMakeFiles/cmTryCompileExec599053346.dir/src.c.o] Error 1
make[1]: Leaving directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
Makefile:114: recipe for target 'cmTryCompileExec599053346/fast' failed
make: *** [cmTryCompileExec599053346/fast] Error 2
Source file was:
#include <altivec.h>
vector unsigned int vzero() {
return vec_splat_u32(0);
}
int main(int argc, char **argv) { }
Performing C SOURCE FILE Test HAVE_ALTIVEC failed with the following output:
Change Dir: /home/bryce/NeoBuild/CMakeFiles/CMakeTmp
Run Build Command:/usr/bin/make "cmTryCompileExec430328703/fast"
/usr/bin/make -f CMakeFiles/cmTryCompileExec430328703.dir/build.make CMakeFiles/cmTryCompileExec430328703.dir/build
make[1]: Entering directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
/usr/bin/cmake -E cmake_progress_report /home/bryce/NeoBuild/CMakeFiles/CMakeTmp/CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec430328703.dir/src.c.o
/usr/bin/cc -g -O3 -DHAVE_ALTIVEC -maltivec -o CMakeFiles/cmTryCompileExec430328703.dir/src.c.o -c /home/bryce/NeoBuild/CMakeFiles/CMakeTmp/src.c
cc: error: unrecognized command line option ‘-maltivec’
CMakeFiles/cmTryCompileExec430328703.dir/build.make:57: recipe for target 'CMakeFiles/cmTryCompileExec430328703.dir/src.c.o' failed
make[1]: *** [CMakeFiles/cmTryCompileExec430328703.dir/src.c.o] Error 1
make[1]: Leaving directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
Makefile:114: recipe for target 'cmTryCompileExec430328703/fast' failed
make: *** [cmTryCompileExec430328703/fast] Error 2
Source file was:
vector unsigned int vzero() {
return vec_splat_u32(0);
}
int main(int argc, char **argv) { }
Determining if the function _strrev exists failed with the following output:
Change Dir: /home/bryce/NeoBuild/CMakeFiles/CMakeTmp
Run Build Command:/usr/bin/make "cmTryCompileExec4084153132/fast"
/usr/bin/make -f CMakeFiles/cmTryCompileExec4084153132.dir/build.make CMakeFiles/cmTryCompileExec4084153132.dir/build
make[1]: Entering directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
/usr/bin/cmake -E cmake_progress_report /home/bryce/NeoBuild/CMakeFiles/CMakeTmp/CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec4084153132.dir/CheckFunctionExists.c.o
/usr/bin/cc -g -O3 -DCHECK_FUNCTION_EXISTS=_strrev -o CMakeFiles/cmTryCompileExec4084153132.dir/CheckFunctionExists.c.o -c /usr/share/cmake-2.8/Modules/CheckFunctionExists.c
Linking C executable cmTryCompileExec4084153132
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec4084153132.dir/link.txt --verbose=1
/usr/bin/cc -g -O3 -DCHECK_FUNCTION_EXISTS=_strrev CMakeFiles/cmTryCompileExec4084153132.dir/CheckFunctionExists.c.o -o cmTryCompileExec4084153132 -rdynamic
CMakeFiles/cmTryCompileExec4084153132.dir/CheckFunctionExists.c.o: In function `main':
/usr/share/cmake-2.8/Modules/CheckFunctionExists.c:11: undefined reference to `_strrev'
collect2: error: ld returned 1 exit status
CMakeFiles/cmTryCompileExec4084153132.dir/build.make:88: recipe for target 'cmTryCompileExec4084153132' failed
make[1]: *** [cmTryCompileExec4084153132] Error 1
make[1]: Leaving directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
Makefile:114: recipe for target 'cmTryCompileExec4084153132/fast' failed
make: *** [cmTryCompileExec4084153132/fast] Error 2
Determining if the function _strupr exists failed with the following output:
Change Dir: /home/bryce/NeoBuild/CMakeFiles/CMakeTmp
Run Build Command:/usr/bin/make "cmTryCompileExec3258204971/fast"
/usr/bin/make -f CMakeFiles/cmTryCompileExec3258204971.dir/build.make CMakeFiles/cmTryCompileExec3258204971.dir/build
make[1]: Entering directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
/usr/bin/cmake -E cmake_progress_report /home/bryce/NeoBuild/CMakeFiles/CMakeTmp/CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec3258204971.dir/CheckFunctionExists.c.o
/usr/bin/cc -g -O3 -DCHECK_FUNCTION_EXISTS=_strupr -o CMakeFiles/cmTryCompileExec3258204971.dir/CheckFunctionExists.c.o -c /usr/share/cmake-2.8/Modules/CheckFunctionExists.c
Linking C executable cmTryCompileExec3258204971
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec3258204971.dir/link.txt --verbose=1
/usr/bin/cc -g -O3 -DCHECK_FUNCTION_EXISTS=_strupr CMakeFiles/cmTryCompileExec3258204971.dir/CheckFunctionExists.c.o -o cmTryCompileExec3258204971 -rdynamic
CMakeFiles/cmTryCompileExec3258204971.dir/CheckFunctionExists.c.o: In function `main':
/usr/share/cmake-2.8/Modules/CheckFunctionExists.c:11: undefined reference to `_strupr'
collect2: error: ld returned 1 exit status
CMakeFiles/cmTryCompileExec3258204971.dir/build.make:88: recipe for target 'cmTryCompileExec3258204971' failed
make[1]: Leaving directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
make[1]: *** [cmTryCompileExec3258204971] Error 1
Makefile:114: recipe for target 'cmTryCompileExec3258204971/fast' failed
make: *** [cmTryCompileExec3258204971/fast] Error 2
Determining if the function _strlwr exists failed with the following output:
Change Dir: /home/bryce/NeoBuild/CMakeFiles/CMakeTmp
Run Build Command:/usr/bin/make "cmTryCompileExec2711853297/fast"
/usr/bin/make -f CMakeFiles/cmTryCompileExec2711853297.dir/build.make CMakeFiles/cmTryCompileExec2711853297.dir/build
make[1]: Entering directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
/usr/bin/cmake -E cmake_progress_report /home/bryce/NeoBuild/CMakeFiles/CMakeTmp/CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec2711853297.dir/CheckFunctionExists.c.o
/usr/bin/cc -g -O3 -DCHECK_FUNCTION_EXISTS=_strlwr -o CMakeFiles/cmTryCompileExec2711853297.dir/CheckFunctionExists.c.o -c /usr/share/cmake-2.8/Modules/CheckFunctionExists.c
Linking C executable cmTryCompileExec2711853297
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec2711853297.dir/link.txt --verbose=1
/usr/bin/cc -g -O3 -DCHECK_FUNCTION_EXISTS=_strlwr CMakeFiles/cmTryCompileExec2711853297.dir/CheckFunctionExists.c.o -o cmTryCompileExec2711853297 -rdynamic
CMakeFiles/cmTryCompileExec2711853297.dir/CheckFunctionExists.c.o: In function `main':
/usr/share/cmake-2.8/Modules/CheckFunctionExists.c:11: undefined reference to `_strlwr'
collect2: error: ld returned 1 exit status
CMakeFiles/cmTryCompileExec2711853297.dir/build.make:88: recipe for target 'cmTryCompileExec2711853297' failed
make[1]: *** [cmTryCompileExec2711853297] Error 1
make[1]: Leaving directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
Makefile:114: recipe for target 'cmTryCompileExec2711853297/fast' failed
make: *** [cmTryCompileExec2711853297/fast] Error 2
Determining if the function itoa exists failed with the following output:
Change Dir: /home/bryce/NeoBuild/CMakeFiles/CMakeTmp
Run Build Command:/usr/bin/make "cmTryCompileExec414652401/fast"
/usr/bin/make -f CMakeFiles/cmTryCompileExec414652401.dir/build.make CMakeFiles/cmTryCompileExec414652401.dir/build
make[1]: Entering directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
/usr/bin/cmake -E cmake_progress_report /home/bryce/NeoBuild/CMakeFiles/CMakeTmp/CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec414652401.dir/CheckFunctionExists.c.o
/usr/bin/cc -g -O3 -DCHECK_FUNCTION_EXISTS=itoa -o CMakeFiles/cmTryCompileExec414652401.dir/CheckFunctionExists.c.o -c /usr/share/cmake-2.8/Modules/CheckFunctionExists.c
Linking C executable cmTryCompileExec414652401
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec414652401.dir/link.txt --verbose=1
/usr/bin/cc -g -O3 -DCHECK_FUNCTION_EXISTS=itoa CMakeFiles/cmTryCompileExec414652401.dir/CheckFunctionExists.c.o -o cmTryCompileExec414652401 -rdynamic
CMakeFiles/cmTryCompileExec414652401.dir/CheckFunctionExists.c.o: In function `main':
/usr/share/cmake-2.8/Modules/CheckFunctionExists.c:11: undefined reference to `itoa'
collect2: error: ld returned 1 exit status
CMakeFiles/cmTryCompileExec414652401.dir/build.make:88: recipe for target 'cmTryCompileExec414652401' failed
make[1]: *** [cmTryCompileExec414652401] Error 1
make[1]: Leaving directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
Makefile:114: recipe for target 'cmTryCompileExec414652401/fast' failed
make: *** [cmTryCompileExec414652401/fast] Error 2
Determining if the function _ltoa exists failed with the following output:
Change Dir: /home/bryce/NeoBuild/CMakeFiles/CMakeTmp
Run Build Command:/usr/bin/make "cmTryCompileExec636347/fast"
/usr/bin/make -f CMakeFiles/cmTryCompileExec636347.dir/build.make CMakeFiles/cmTryCompileExec636347.dir/build
make[1]: Entering directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
/usr/bin/cmake -E cmake_progress_report /home/bryce/NeoBuild/CMakeFiles/CMakeTmp/CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec636347.dir/CheckFunctionExists.c.o
/usr/bin/cc -g -O3 -DCHECK_FUNCTION_EXISTS=_ltoa -o CMakeFiles/cmTryCompileExec636347.dir/CheckFunctionExists.c.o -c /usr/share/cmake-2.8/Modules/CheckFunctionExists.c
Linking C executable cmTryCompileExec636347
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec636347.dir/link.txt --verbose=1
/usr/bin/cc -g -O3 -DCHECK_FUNCTION_EXISTS=_ltoa CMakeFiles/cmTryCompileExec636347.dir/CheckFunctionExists.c.o -o cmTryCompileExec636347 -rdynamic
CMakeFiles/cmTryCompileExec636347.dir/CheckFunctionExists.c.o: In function `main':
/usr/share/cmake-2.8/Modules/CheckFunctionExists.c:11: undefined reference to `_ltoa'
collect2: error: ld returned 1 exit status
CMakeFiles/cmTryCompileExec636347.dir/build.make:88: recipe for target 'cmTryCompileExec636347' failed
make[1]: *** [cmTryCompileExec636347] Error 1
make[1]: Leaving directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
Makefile:114: recipe for target 'cmTryCompileExec636347/fast' failed
make: *** [cmTryCompileExec636347/fast] Error 2
Determining if the function _uitoa exists failed with the following output:
Change Dir: /home/bryce/NeoBuild/CMakeFiles/CMakeTmp
Run Build Command:/usr/bin/make "cmTryCompileExec1014977562/fast"
/usr/bin/make -f CMakeFiles/cmTryCompileExec1014977562.dir/build.make CMakeFiles/cmTryCompileExec1014977562.dir/build
make[1]: Entering directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
/usr/bin/cmake -E cmake_progress_report /home/bryce/NeoBuild/CMakeFiles/CMakeTmp/CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec1014977562.dir/CheckFunctionExists.c.o
/usr/bin/cc -g -O3 -DCHECK_FUNCTION_EXISTS=_uitoa -o CMakeFiles/cmTryCompileExec1014977562.dir/CheckFunctionExists.c.o -c /usr/share/cmake-2.8/Modules/CheckFunctionExists.c
Linking C executable cmTryCompileExec1014977562
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec1014977562.dir/link.txt --verbose=1
/usr/bin/cc -g -O3 -DCHECK_FUNCTION_EXISTS=_uitoa CMakeFiles/cmTryCompileExec1014977562.dir/CheckFunctionExists.c.o -o cmTryCompileExec1014977562 -rdynamic
CMakeFiles/cmTryCompileExec1014977562.dir/CheckFunctionExists.c.o: In function `main':
/usr/share/cmake-2.8/Modules/CheckFunctionExists.c:11: undefined reference to `_uitoa'
collect2: error: ld returned 1 exit status
CMakeFiles/cmTryCompileExec1014977562.dir/build.make:88: recipe for target 'cmTryCompileExec1014977562' failed
make[1]: Leaving directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
make[1]: *** [cmTryCompileExec1014977562] Error 1
Makefile:114: recipe for target 'cmTryCompileExec1014977562/fast' failed
make: *** [cmTryCompileExec1014977562/fast] Error 2
Determining if the function _ultoa exists failed with the following output:
Change Dir: /home/bryce/NeoBuild/CMakeFiles/CMakeTmp
Run Build Command:/usr/bin/make "cmTryCompileExec1604678203/fast"
/usr/bin/make -f CMakeFiles/cmTryCompileExec1604678203.dir/build.make CMakeFiles/cmTryCompileExec1604678203.dir/build
make[1]: Entering directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
/usr/bin/cmake -E cmake_progress_report /home/bryce/NeoBuild/CMakeFiles/CMakeTmp/CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec1604678203.dir/CheckFunctionExists.c.o
/usr/bin/cc -g -O3 -DCHECK_FUNCTION_EXISTS=_ultoa -o CMakeFiles/cmTryCompileExec1604678203.dir/CheckFunctionExists.c.o -c /usr/share/cmake-2.8/Modules/CheckFunctionExists.c
Linking C executable cmTryCompileExec1604678203
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec1604678203.dir/link.txt --verbose=1
/usr/bin/cc -g -O3 -DCHECK_FUNCTION_EXISTS=_ultoa CMakeFiles/cmTryCompileExec1604678203.dir/CheckFunctionExists.c.o -o cmTryCompileExec1604678203 -rdynamic
CMakeFiles/cmTryCompileExec1604678203.dir/CheckFunctionExists.c.o: In function `main':
/usr/share/cmake-2.8/Modules/CheckFunctionExists.c:11: undefined reference to `_ultoa'
collect2: error: ld returned 1 exit status
CMakeFiles/cmTryCompileExec1604678203.dir/build.make:88: recipe for target 'cmTryCompileExec1604678203' failed
make[1]: *** [cmTryCompileExec1604678203] Error 1
make[1]: Leaving directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
Makefile:114: recipe for target 'cmTryCompileExec1604678203/fast' failed
make: *** [cmTryCompileExec1604678203/fast] Error 2
Determining if the function _i64toa exists failed with the following output:
Change Dir: /home/bryce/NeoBuild/CMakeFiles/CMakeTmp
Run Build Command:/usr/bin/make "cmTryCompileExec3195464805/fast"
/usr/bin/make -f CMakeFiles/cmTryCompileExec3195464805.dir/build.make CMakeFiles/cmTryCompileExec3195464805.dir/build
make[1]: Entering directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
/usr/bin/cmake -E cmake_progress_report /home/bryce/NeoBuild/CMakeFiles/CMakeTmp/CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec3195464805.dir/CheckFunctionExists.c.o
/usr/bin/cc -g -O3 -DCHECK_FUNCTION_EXISTS=_i64toa -o CMakeFiles/cmTryCompileExec3195464805.dir/CheckFunctionExists.c.o -c /usr/share/cmake-2.8/Modules/CheckFunctionExists.c
Linking C executable cmTryCompileExec3195464805
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec3195464805.dir/link.txt --verbose=1
/usr/bin/cc -g -O3 -DCHECK_FUNCTION_EXISTS=_i64toa CMakeFiles/cmTryCompileExec3195464805.dir/CheckFunctionExists.c.o -o cmTryCompileExec3195464805 -rdynamic
CMakeFiles/cmTryCompileExec3195464805.dir/CheckFunctionExists.c.o: In function `main':
/usr/share/cmake-2.8/Modules/CheckFunctionExists.c:11: undefined reference to `_i64toa'
collect2: error: ld returned 1 exit status
CMakeFiles/cmTryCompileExec3195464805.dir/build.make:88: recipe for target 'cmTryCompileExec3195464805' failed
make[1]: *** [cmTryCompileExec3195464805] Error 1
make[1]: Leaving directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
Makefile:114: recipe for target 'cmTryCompileExec3195464805/fast' failed
make: *** [cmTryCompileExec3195464805/fast] Error 2
Determining if the function _ui64toa exists failed with the following output:
Change Dir: /home/bryce/NeoBuild/CMakeFiles/CMakeTmp
Run Build Command:/usr/bin/make "cmTryCompileExec3860182809/fast"
/usr/bin/make -f CMakeFiles/cmTryCompileExec3860182809.dir/build.make CMakeFiles/cmTryCompileExec3860182809.dir/build
make[1]: Entering directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
/usr/bin/cmake -E cmake_progress_report /home/bryce/NeoBuild/CMakeFiles/CMakeTmp/CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec3860182809.dir/CheckFunctionExists.c.o
/usr/bin/cc -g -O3 -DCHECK_FUNCTION_EXISTS=_ui64toa -o CMakeFiles/cmTryCompileExec3860182809.dir/CheckFunctionExists.c.o -c /usr/share/cmake-2.8/Modules/CheckFunctionExists.c
Linking C executable cmTryCompileExec3860182809
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec3860182809.dir/link.txt --verbose=1
/usr/bin/cc -g -O3 -DCHECK_FUNCTION_EXISTS=_ui64toa CMakeFiles/cmTryCompileExec3860182809.dir/CheckFunctionExists.c.o -o cmTryCompileExec3860182809 -rdynamic
CMakeFiles/cmTryCompileExec3860182809.dir/CheckFunctionExists.c.o: In function `main':
/usr/share/cmake-2.8/Modules/CheckFunctionExists.c:11: undefined reference to `_ui64toa'
collect2: error: ld returned 1 exit status
CMakeFiles/cmTryCompileExec3860182809.dir/build.make:88: recipe for target 'cmTryCompileExec3860182809' failed
make[1]: *** [cmTryCompileExec3860182809] Error 1
make[1]: Leaving directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
Makefile:114: recipe for target 'cmTryCompileExec3860182809/fast' failed
make: *** [cmTryCompileExec3860182809/fast] Error 2
Determining if the function _stricmp exists failed with the following output:
Change Dir: /home/bryce/NeoBuild/CMakeFiles/CMakeTmp
Run Build Command:/usr/bin/make "cmTryCompileExec1362479515/fast"
/usr/bin/make -f CMakeFiles/cmTryCompileExec1362479515.dir/build.make CMakeFiles/cmTryCompileExec1362479515.dir/build
make[1]: Entering directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
/usr/bin/cmake -E cmake_progress_report /home/bryce/NeoBuild/CMakeFiles/CMakeTmp/CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec1362479515.dir/CheckFunctionExists.c.o
/usr/bin/cc -g -O3 -DCHECK_FUNCTION_EXISTS=_stricmp -o CMakeFiles/cmTryCompileExec1362479515.dir/CheckFunctionExists.c.o -c /usr/share/cmake-2.8/Modules/CheckFunctionExists.c
Linking C executable cmTryCompileExec1362479515
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec1362479515.dir/link.txt --verbose=1
/usr/bin/cc -g -O3 -DCHECK_FUNCTION_EXISTS=_stricmp CMakeFiles/cmTryCompileExec1362479515.dir/CheckFunctionExists.c.o -o cmTryCompileExec1362479515 -rdynamic
CMakeFiles/cmTryCompileExec1362479515.dir/CheckFunctionExists.c.o: In function `main':
/usr/share/cmake-2.8/Modules/CheckFunctionExists.c:11: undefined reference to `_stricmp'
collect2: error: ld returned 1 exit status
CMakeFiles/cmTryCompileExec1362479515.dir/build.make:88: recipe for target 'cmTryCompileExec1362479515' failed
make[1]: *** [cmTryCompileExec1362479515] Error 1
make[1]: Leaving directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
Makefile:114: recipe for target 'cmTryCompileExec1362479515/fast' failed
make: *** [cmTryCompileExec1362479515/fast] Error 2
Determining if the function _strnicmp exists failed with the following output:
Change Dir: /home/bryce/NeoBuild/CMakeFiles/CMakeTmp
Run Build Command:/usr/bin/make "cmTryCompileExec2619716722/fast"
/usr/bin/make -f CMakeFiles/cmTryCompileExec2619716722.dir/build.make CMakeFiles/cmTryCompileExec2619716722.dir/build
make[1]: Entering directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
/usr/bin/cmake -E cmake_progress_report /home/bryce/NeoBuild/CMakeFiles/CMakeTmp/CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec2619716722.dir/CheckFunctionExists.c.o
/usr/bin/cc -g -O3 -DCHECK_FUNCTION_EXISTS=_strnicmp -o CMakeFiles/cmTryCompileExec2619716722.dir/CheckFunctionExists.c.o -c /usr/share/cmake-2.8/Modules/CheckFunctionExists.c
Linking C executable cmTryCompileExec2619716722
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec2619716722.dir/link.txt --verbose=1
/usr/bin/cc -g -O3 -DCHECK_FUNCTION_EXISTS=_strnicmp CMakeFiles/cmTryCompileExec2619716722.dir/CheckFunctionExists.c.o -o cmTryCompileExec2619716722 -rdynamic
CMakeFiles/cmTryCompileExec2619716722.dir/CheckFunctionExists.c.o: In function `main':
/usr/share/cmake-2.8/Modules/CheckFunctionExists.c:11: undefined reference to `_strnicmp'
collect2: error: ld returned 1 exit status
CMakeFiles/cmTryCompileExec2619716722.dir/build.make:88: recipe for target 'cmTryCompileExec2619716722' failed
make[1]: *** [cmTryCompileExec2619716722] Error 1
make[1]: Leaving directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
Makefile:114: recipe for target 'cmTryCompileExec2619716722/fast' failed
make: *** [cmTryCompileExec2619716722/fast] Error 2
Determining if the function sysctlbyname exists failed with the following output:
Change Dir: /home/bryce/NeoBuild/CMakeFiles/CMakeTmp
Run Build Command:/usr/bin/make "cmTryCompileExec3499960533/fast"
/usr/bin/make -f CMakeFiles/cmTryCompileExec3499960533.dir/build.make CMakeFiles/cmTryCompileExec3499960533.dir/build
make[1]: Entering directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
/usr/bin/cmake -E cmake_progress_report /home/bryce/NeoBuild/CMakeFiles/CMakeTmp/CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec3499960533.dir/CheckFunctionExists.c.o
/usr/bin/cc -g -O3 -DCHECK_FUNCTION_EXISTS=sysctlbyname -o CMakeFiles/cmTryCompileExec3499960533.dir/CheckFunctionExists.c.o -c /usr/share/cmake-2.8/Modules/CheckFunctionExists.c
Linking C executable cmTryCompileExec3499960533
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec3499960533.dir/link.txt --verbose=1
/usr/bin/cc -g -O3 -DCHECK_FUNCTION_EXISTS=sysctlbyname CMakeFiles/cmTryCompileExec3499960533.dir/CheckFunctionExists.c.o -o cmTryCompileExec3499960533 -rdynamic
CMakeFiles/cmTryCompileExec3499960533.dir/CheckFunctionExists.c.o: In function `main':
/usr/share/cmake-2.8/Modules/CheckFunctionExists.c:11: undefined reference to `sysctlbyname'
collect2: error: ld returned 1 exit status
CMakeFiles/cmTryCompileExec3499960533.dir/build.make:88: recipe for target 'cmTryCompileExec3499960533' failed
make[1]: *** [cmTryCompileExec3499960533] Error 1
make[1]: Leaving directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
Makefile:114: recipe for target 'cmTryCompileExec3499960533/fast' failed
make: *** [cmTryCompileExec3499960533/fast] Error 2
Determining if the function iconv_open exists in the iconv failed with the following output:
Change Dir: /home/bryce/NeoBuild/CMakeFiles/CMakeTmp
Run Build Command:/usr/bin/make "cmTryCompileExec3727316301/fast"
/usr/bin/make -f CMakeFiles/cmTryCompileExec3727316301.dir/build.make CMakeFiles/cmTryCompileExec3727316301.dir/build
make[1]: Entering directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
/usr/bin/cmake -E cmake_progress_report /home/bryce/NeoBuild/CMakeFiles/CMakeTmp/CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec3727316301.dir/CheckFunctionExists.c.o
/usr/bin/cc -g -O3 -DCHECK_FUNCTION_EXISTS=iconv_open -o CMakeFiles/cmTryCompileExec3727316301.dir/CheckFunctionExists.c.o -c /usr/share/cmake-2.8/Modules/CheckFunctionExists.c
Linking C executable cmTryCompileExec3727316301
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec3727316301.dir/link.txt --verbose=1
/usr/bin/cc -g -O3 -DCHECK_FUNCTION_EXISTS=iconv_open CMakeFiles/cmTryCompileExec3727316301.dir/CheckFunctionExists.c.o -o cmTryCompileExec3727316301 -rdynamic -liconv
/usr/bin/ld: cannot find -liconv
collect2: error: ld returned 1 exit status
CMakeFiles/cmTryCompileExec3727316301.dir/build.make:88: recipe for target 'cmTryCompileExec3727316301' failed
make[1]: *** [cmTryCompileExec3727316301] Error 1
make[1]: Leaving directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
Makefile:114: recipe for target 'cmTryCompileExec3727316301/fast' failed
make: *** [cmTryCompileExec3727316301/fast] Error 2
Determining if the function dlopen exists failed with the following output:
Change Dir: /home/bryce/NeoBuild/CMakeFiles/CMakeTmp
Run Build Command:/usr/bin/make "cmTryCompileExec3138256432/fast"
/usr/bin/make -f CMakeFiles/cmTryCompileExec3138256432.dir/build.make CMakeFiles/cmTryCompileExec3138256432.dir/build
make[1]: Entering directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
/usr/bin/cmake -E cmake_progress_report /home/bryce/NeoBuild/CMakeFiles/CMakeTmp/CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec3138256432.dir/CheckFunctionExists.c.o
/usr/bin/cc -g -O3 -DCHECK_FUNCTION_EXISTS=dlopen -o CMakeFiles/cmTryCompileExec3138256432.dir/CheckFunctionExists.c.o -c /usr/share/cmake-2.8/Modules/CheckFunctionExists.c
Linking C executable cmTryCompileExec3138256432
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec3138256432.dir/link.txt --verbose=1
/usr/bin/cc -g -O3 -DCHECK_FUNCTION_EXISTS=dlopen CMakeFiles/cmTryCompileExec3138256432.dir/CheckFunctionExists.c.o -o cmTryCompileExec3138256432 -rdynamic
CMakeFiles/cmTryCompileExec3138256432.dir/CheckFunctionExists.c.o: In function `main':
/usr/share/cmake-2.8/Modules/CheckFunctionExists.c:11: undefined reference to `dlopen'
collect2: error: ld returned 1 exit status
CMakeFiles/cmTryCompileExec3138256432.dir/build.make:88: recipe for target 'cmTryCompileExec3138256432' failed
make[1]: *** [cmTryCompileExec3138256432] Error 1
make[1]: Leaving directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
Makefile:114: recipe for target 'cmTryCompileExec3138256432/fast' failed
make: *** [cmTryCompileExec3138256432/fast] Error 2
Determining if the include file audio/audiolib.h exists failed with the following output:
Change Dir: /home/bryce/NeoBuild/CMakeFiles/CMakeTmp
Run Build Command:/usr/bin/make "cmTryCompileExec2391964818/fast"
/usr/bin/make -f CMakeFiles/cmTryCompileExec2391964818.dir/build.make CMakeFiles/cmTryCompileExec2391964818.dir/build
make[1]: Entering directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
/usr/bin/cmake -E cmake_progress_report /home/bryce/NeoBuild/CMakeFiles/CMakeTmp/CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec2391964818.dir/CheckIncludeFile.c.o
/usr/bin/cc -g -O3 -o CMakeFiles/cmTryCompileExec2391964818.dir/CheckIncludeFile.c.o -c /home/bryce/NeoBuild/CMakeFiles/CMakeTmp/CheckIncludeFile.c
/home/bryce/NeoBuild/CMakeFiles/CMakeTmp/CheckIncludeFile.c:1:28: fatal error: audio/audiolib.h: No such file or directory
#include <audio/audiolib.h>
^
compilation terminated.
CMakeFiles/cmTryCompileExec2391964818.dir/build.make:57: recipe for target 'CMakeFiles/cmTryCompileExec2391964818.dir/CheckIncludeFile.c.o' failed
make[1]: Leaving directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
make[1]: *** [CMakeFiles/cmTryCompileExec2391964818.dir/CheckIncludeFile.c.o] Error 1
Makefile:114: recipe for target 'cmTryCompileExec2391964818/fast' failed
make: *** [cmTryCompileExec2391964818/fast] Error 2
Determining if the include file sndio.h exists failed with the following output:
Change Dir: /home/bryce/NeoBuild/CMakeFiles/CMakeTmp
Run Build Command:/usr/bin/make "cmTryCompileExec2951593894/fast"
/usr/bin/make -f CMakeFiles/cmTryCompileExec2951593894.dir/build.make CMakeFiles/cmTryCompileExec2951593894.dir/build
make[1]: Entering directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
/usr/bin/cmake -E cmake_progress_report /home/bryce/NeoBuild/CMakeFiles/CMakeTmp/CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec2951593894.dir/CheckIncludeFile.c.o
/usr/bin/cc -g -O3 -o CMakeFiles/cmTryCompileExec2951593894.dir/CheckIncludeFile.c.o -c /home/bryce/NeoBuild/CMakeFiles/CMakeTmp/CheckIncludeFile.c
/home/bryce/NeoBuild/CMakeFiles/CMakeTmp/CheckIncludeFile.c:1:19: fatal error: sndio.h: No such file or directory
#include <sndio.h>
^
compilation terminated.
CMakeFiles/cmTryCompileExec2951593894.dir/build.make:57: recipe for target 'CMakeFiles/cmTryCompileExec2951593894.dir/CheckIncludeFile.c.o' failed
make[1]: *** [CMakeFiles/cmTryCompileExec2951593894.dir/CheckIncludeFile.c.o] Error 1
make[1]: Leaving directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
Makefile:114: recipe for target 'cmTryCompileExec2951593894/fast' failed
make: *** [cmTryCompileExec2951593894/fast] Error 2
Performing C SOURCE FILE Test HAVE_VIDEO_OPENGL_EGL failed with the following output:
Change Dir: /home/bryce/NeoBuild/CMakeFiles/CMakeTmp
Run Build Command:/usr/bin/make "cmTryCompileExec3802837320/fast"
/usr/bin/make -f CMakeFiles/cmTryCompileExec3802837320.dir/build.make CMakeFiles/cmTryCompileExec3802837320.dir/build
make[1]: Entering directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
/usr/bin/cmake -E cmake_progress_report /home/bryce/NeoBuild/CMakeFiles/CMakeTmp/CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec3802837320.dir/src.c.o
/usr/bin/cc -g -O3 -DHAVE_VIDEO_OPENGL_EGL -o CMakeFiles/cmTryCompileExec3802837320.dir/src.c.o -c /home/bryce/NeoBuild/CMakeFiles/CMakeTmp/src.c
/home/bryce/NeoBuild/CMakeFiles/CMakeTmp/src.c:2:29: fatal error: EGL/egl.h: No such file or directory
#include <EGL/egl.h>
^
compilation terminated.
CMakeFiles/cmTryCompileExec3802837320.dir/build.make:57: recipe for target 'CMakeFiles/cmTryCompileExec3802837320.dir/src.c.o' failed
make[1]: *** [CMakeFiles/cmTryCompileExec3802837320.dir/src.c.o] Error 1
make[1]: Leaving directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
Makefile:114: recipe for target 'cmTryCompileExec3802837320/fast' failed
make: *** [cmTryCompileExec3802837320/fast] Error 2
Source file was:
#include <EGL/egl.h>
int main (int argc, char** argv) {}
Performing C SOURCE FILE Test HAVE_VIDEO_OPENGLES_V1 failed with the following output:
Change Dir: /home/bryce/NeoBuild/CMakeFiles/CMakeTmp
Run Build Command:/usr/bin/make "cmTryCompileExec2112501726/fast"
/usr/bin/make -f CMakeFiles/cmTryCompileExec2112501726.dir/build.make CMakeFiles/cmTryCompileExec2112501726.dir/build
make[1]: Entering directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
/usr/bin/cmake -E cmake_progress_report /home/bryce/NeoBuild/CMakeFiles/CMakeTmp/CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec2112501726.dir/src.c.o
/usr/bin/cc -g -O3 -DHAVE_VIDEO_OPENGLES_V1 -o CMakeFiles/cmTryCompileExec2112501726.dir/src.c.o -c /home/bryce/NeoBuild/CMakeFiles/CMakeTmp/src.c
/home/bryce/NeoBuild/CMakeFiles/CMakeTmp/src.c:2:27: fatal error: GLES/gl.h: No such file or directory
#include <GLES/gl.h>
^
compilation terminated.
CMakeFiles/cmTryCompileExec2112501726.dir/build.make:57: recipe for target 'CMakeFiles/cmTryCompileExec2112501726.dir/src.c.o' failed
make[1]: *** [CMakeFiles/cmTryCompileExec2112501726.dir/src.c.o] Error 1
make[1]: Leaving directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
Makefile:114: recipe for target 'cmTryCompileExec2112501726/fast' failed
make: *** [cmTryCompileExec2112501726/fast] Error 2
Source file was:
#include <GLES/gl.h>
#include <GLES/glext.h>
int main (int argc, char** argv) {}
Performing C SOURCE FILE Test HAVE_VIDEO_OPENGLES_V2 failed with the following output:
Change Dir: /home/bryce/NeoBuild/CMakeFiles/CMakeTmp
Run Build Command:/usr/bin/make "cmTryCompileExec367957610/fast"
/usr/bin/make -f CMakeFiles/cmTryCompileExec367957610.dir/build.make CMakeFiles/cmTryCompileExec367957610.dir/build
make[1]: Entering directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
/usr/bin/cmake -E cmake_progress_report /home/bryce/NeoBuild/CMakeFiles/CMakeTmp/CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec367957610.dir/src.c.o
/usr/bin/cc -g -O3 -DHAVE_VIDEO_OPENGLES_V2 -o CMakeFiles/cmTryCompileExec367957610.dir/src.c.o -c /home/bryce/NeoBuild/CMakeFiles/CMakeTmp/src.c
/home/bryce/NeoBuild/CMakeFiles/CMakeTmp/src.c:2:29: fatal error: GLES2/gl2.h: No such file or directory
#include <GLES2/gl2.h>
^
compilation terminated.
CMakeFiles/cmTryCompileExec367957610.dir/build.make:57: recipe for target 'CMakeFiles/cmTryCompileExec367957610.dir/src.c.o' failed
make[1]: *** [CMakeFiles/cmTryCompileExec367957610.dir/src.c.o] Error 1
make[1]: Leaving directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
Makefile:114: recipe for target 'cmTryCompileExec367957610/fast' failed
make: *** [cmTryCompileExec367957610/fast] Error 2
Source file was:
#include <GLES2/gl2.h>
#include <GLES2/gl2ext.h>
int main (int argc, char** argv) {}
Determining if the include file dbus/dbus.h exists failed with the following output:
Change Dir: /home/bryce/NeoBuild/CMakeFiles/CMakeTmp
Run Build Command:/usr/bin/make "cmTryCompileExec4111148467/fast"
/usr/bin/make -f CMakeFiles/cmTryCompileExec4111148467.dir/build.make CMakeFiles/cmTryCompileExec4111148467.dir/build
make[1]: Entering directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
/usr/bin/cmake -E cmake_progress_report /home/bryce/NeoBuild/CMakeFiles/CMakeTmp/CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec4111148467.dir/CheckIncludeFile.c.o
/usr/bin/cc -g -O3 -o CMakeFiles/cmTryCompileExec4111148467.dir/CheckIncludeFile.c.o -c /home/bryce/NeoBuild/CMakeFiles/CMakeTmp/CheckIncludeFile.c
/home/bryce/NeoBuild/CMakeFiles/CMakeTmp/CheckIncludeFile.c:1:23: fatal error: dbus/dbus.h: No such file or directory
#include <dbus/dbus.h>
^
compilation terminated.
CMakeFiles/cmTryCompileExec4111148467.dir/build.make:57: recipe for target 'CMakeFiles/cmTryCompileExec4111148467.dir/CheckIncludeFile.c.o' failed
make[1]: *** [CMakeFiles/cmTryCompileExec4111148467.dir/CheckIncludeFile.c.o] Error 1
make[1]: Leaving directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
Makefile:114: recipe for target 'cmTryCompileExec4111148467/fast' failed
make: *** [cmTryCompileExec4111148467/fast] Error 2
Determining if the function hid_init exists in the usbhid failed with the following output:
Change Dir: /home/bryce/NeoBuild/CMakeFiles/CMakeTmp
Run Build Command:/usr/bin/make "cmTryCompileExec2097964299/fast"
/usr/bin/make -f CMakeFiles/cmTryCompileExec2097964299.dir/build.make CMakeFiles/cmTryCompileExec2097964299.dir/build
make[1]: Entering directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
/usr/bin/cmake -E cmake_progress_report /home/bryce/NeoBuild/CMakeFiles/CMakeTmp/CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec2097964299.dir/CheckFunctionExists.c.o
/usr/bin/cc -g -O3 -DCHECK_FUNCTION_EXISTS=hid_init -o CMakeFiles/cmTryCompileExec2097964299.dir/CheckFunctionExists.c.o -c /usr/share/cmake-2.8/Modules/CheckFunctionExists.c
Linking C executable cmTryCompileExec2097964299
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec2097964299.dir/link.txt --verbose=1
/usr/bin/cc -g -O3 -DCHECK_FUNCTION_EXISTS=hid_init CMakeFiles/cmTryCompileExec2097964299.dir/CheckFunctionExists.c.o -o cmTryCompileExec2097964299 -rdynamic -lusbhid
/usr/bin/ld: cannot find -lusbhid
collect2: error: ld returned 1 exit status
CMakeFiles/cmTryCompileExec2097964299.dir/build.make:88: recipe for target 'cmTryCompileExec2097964299' failed
make[1]: *** [cmTryCompileExec2097964299] Error 1
make[1]: Leaving directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
Makefile:114: recipe for target 'cmTryCompileExec2097964299/fast' failed
make: *** [cmTryCompileExec2097964299/fast] Error 2
Determining if the include file libusb.h exists failed with the following output:
Change Dir: /home/bryce/NeoBuild/CMakeFiles/CMakeTmp
Run Build Command:/usr/bin/make "cmTryCompileExec1457933904/fast"
/usr/bin/make -f CMakeFiles/cmTryCompileExec1457933904.dir/build.make CMakeFiles/cmTryCompileExec1457933904.dir/build
make[1]: Entering directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
/usr/bin/cmake -E cmake_progress_report /home/bryce/NeoBuild/CMakeFiles/CMakeTmp/CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec1457933904.dir/CheckIncludeFile.c.o
/usr/bin/cc -g -O3 -o CMakeFiles/cmTryCompileExec1457933904.dir/CheckIncludeFile.c.o -c /home/bryce/NeoBuild/CMakeFiles/CMakeTmp/CheckIncludeFile.c
/home/bryce/NeoBuild/CMakeFiles/CMakeTmp/CheckIncludeFile.c:1:20: fatal error: libusb.h: No such file or directory
#include <libusb.h>
^
compilation terminated.
CMakeFiles/cmTryCompileExec1457933904.dir/build.make:57: recipe for target 'CMakeFiles/cmTryCompileExec1457933904.dir/CheckIncludeFile.c.o' failed
make[1]: *** [CMakeFiles/cmTryCompileExec1457933904.dir/CheckIncludeFile.c.o] Error 1
make[1]: Leaving directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
Makefile:114: recipe for target 'cmTryCompileExec1457933904/fast' failed
make: *** [cmTryCompileExec1457933904/fast] Error 2
Determining if the function hid_init exists in the usb failed with the following output:
Change Dir: /home/bryce/NeoBuild/CMakeFiles/CMakeTmp
Run Build Command:/usr/bin/make "cmTryCompileExec1874803301/fast"
/usr/bin/make -f CMakeFiles/cmTryCompileExec1874803301.dir/build.make CMakeFiles/cmTryCompileExec1874803301.dir/build
make[1]: Entering directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
/usr/bin/cmake -E cmake_progress_report /home/bryce/NeoBuild/CMakeFiles/CMakeTmp/CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec1874803301.dir/CheckFunctionExists.c.o
/usr/bin/cc -g -O3 -DCHECK_FUNCTION_EXISTS=hid_init -o CMakeFiles/cmTryCompileExec1874803301.dir/CheckFunctionExists.c.o -c /usr/share/cmake-2.8/Modules/CheckFunctionExists.c
Linking C executable cmTryCompileExec1874803301
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec1874803301.dir/link.txt --verbose=1
/usr/bin/cc -g -O3 -DCHECK_FUNCTION_EXISTS=hid_init CMakeFiles/cmTryCompileExec1874803301.dir/CheckFunctionExists.c.o -o cmTryCompileExec1874803301 -rdynamic -lusb
CMakeFiles/cmTryCompileExec1874803301.dir/CheckFunctionExists.c.o: In function `main':
/usr/share/cmake-2.8/Modules/CheckFunctionExists.c:11: undefined reference to `hid_init'
collect2: error: ld returned 1 exit status
CMakeFiles/cmTryCompileExec1874803301.dir/build.make:88: recipe for target 'cmTryCompileExec1874803301' failed
make[1]: *** [cmTryCompileExec1874803301] Error 1
make[1]: Leaving directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
Makefile:114: recipe for target 'cmTryCompileExec1874803301/fast' failed
make: *** [cmTryCompileExec1874803301/fast] Error 2
Performing C SOURCE FILE Test HAVE_USBHID failed with the following output:
Change Dir: /home/bryce/NeoBuild/CMakeFiles/CMakeTmp
Run Build Command:/usr/bin/make "cmTryCompileExec3616449251/fast"
/usr/bin/make -f CMakeFiles/cmTryCompileExec3616449251.dir/build.make CMakeFiles/cmTryCompileExec3616449251.dir/build
make[1]: Entering directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
/usr/bin/cmake -E cmake_progress_report /home/bryce/NeoBuild/CMakeFiles/CMakeTmp/CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec3616449251.dir/src.c.o
/usr/bin/cc -g -O3 -DHAVE_USBHID -DHAVE_USB_H -o CMakeFiles/cmTryCompileExec3616449251.dir/src.c.o -c /home/bryce/NeoBuild/CMakeFiles/CMakeTmp/src.c
/home/bryce/NeoBuild/CMakeFiles/CMakeTmp/src.c:10:34: fatal error: dev/usb/usb.h: No such file or directory
# include <dev/usb/usb.h>
^
compilation terminated.
CMakeFiles/cmTryCompileExec3616449251.dir/build.make:57: recipe for target 'CMakeFiles/cmTryCompileExec3616449251.dir/src.c.o' failed
make[1]: *** [CMakeFiles/cmTryCompileExec3616449251.dir/src.c.o] Error 1
make[1]: Leaving directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
Makefile:114: recipe for target 'cmTryCompileExec3616449251/fast' failed
make: *** [cmTryCompileExec3616449251/fast] Error 2
Source file was:
#include <sys/types.h>
#if defined(HAVE_USB_H)
#include <usb.h>
#endif
#ifdef __DragonFly__
# include <bus/usb/usb.h>
# include <bus/usb/usbhid.h>
#else
# include <dev/usb/usb.h>
# include <dev/usb/usbhid.h>
#endif
#if defined(HAVE_USBHID_H)
#include <usbhid.h>
#elif defined(HAVE_LIBUSB_H)
#include <libusb.h>
#elif defined(HAVE_LIBUSBHID_H)
#include <libusbhid.h>
#endif
int main(int argc, char **argv) {
struct report_desc *repdesc;
struct usb_ctl_report *repbuf;
hid_kind_t hidkind;
return 0;
}
Performing C SOURCE FILE Test HAVE_PTHREAD_NP_H failed with the following output:
Change Dir: /home/bryce/NeoBuild/CMakeFiles/CMakeTmp
Run Build Command:/usr/bin/make "cmTryCompileExec2458259676/fast"
/usr/bin/make -f CMakeFiles/cmTryCompileExec2458259676.dir/build.make CMakeFiles/cmTryCompileExec2458259676.dir/build
make[1]: Entering directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
/usr/bin/cmake -E cmake_progress_report /home/bryce/NeoBuild/CMakeFiles/CMakeTmp/CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec2458259676.dir/src.c.o
/usr/bin/cc -g -O3 -DHAVE_PTHREAD_NP_H -D_REENTRANT -pthread -o CMakeFiles/cmTryCompileExec2458259676.dir/src.c.o -c /home/bryce/NeoBuild/CMakeFiles/CMakeTmp/src.c
/home/bryce/NeoBuild/CMakeFiles/CMakeTmp/src.c:3:34: fatal error: pthread_np.h: No such file or directory
#include <pthread_np.h>
^
compilation terminated.
CMakeFiles/cmTryCompileExec2458259676.dir/build.make:57: recipe for target 'CMakeFiles/cmTryCompileExec2458259676.dir/src.c.o' failed
make[1]: *** [CMakeFiles/cmTryCompileExec2458259676.dir/src.c.o] Error 1
make[1]: Leaving directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
Makefile:114: recipe for target 'cmTryCompileExec2458259676/fast' failed
make: *** [cmTryCompileExec2458259676/fast] Error 2
Source file was:
#include <pthread.h>
#include <pthread_np.h>
int main(int argc, char** argv) { return 0; }
Determining if the function pthread_set_name_np exists failed with the following output:
Change Dir: /home/bryce/NeoBuild/CMakeFiles/CMakeTmp
Run Build Command:/usr/bin/make "cmTryCompileExec2229403292/fast"
/usr/bin/make -f CMakeFiles/cmTryCompileExec2229403292.dir/build.make CMakeFiles/cmTryCompileExec2229403292.dir/build
make[1]: Entering directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
/usr/bin/cmake -E cmake_progress_report /home/bryce/NeoBuild/CMakeFiles/CMakeTmp/CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec2229403292.dir/CheckFunctionExists.c.o
/usr/bin/cc -g -O3 -DCHECK_FUNCTION_EXISTS=pthread_set_name_np -D_REENTRANT -pthread -o CMakeFiles/cmTryCompileExec2229403292.dir/CheckFunctionExists.c.o -c /usr/share/cmake-2.8/Modules/CheckFunctionExists.c
Linking C executable cmTryCompileExec2229403292
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec2229403292.dir/link.txt --verbose=1
/usr/bin/cc -g -O3 -DCHECK_FUNCTION_EXISTS=pthread_set_name_np -D_REENTRANT -pthread CMakeFiles/cmTryCompileExec2229403292.dir/CheckFunctionExists.c.o -o cmTryCompileExec2229403292 -rdynamic
CMakeFiles/cmTryCompileExec2229403292.dir/CheckFunctionExists.c.o: In function `main':
/usr/share/cmake-2.8/Modules/CheckFunctionExists.c:11: undefined reference to `pthread_set_name_np'
collect2: error: ld returned 1 exit status
CMakeFiles/cmTryCompileExec2229403292.dir/build.make:88: recipe for target 'cmTryCompileExec2229403292' failed
make[1]: *** [cmTryCompileExec2229403292] Error 1
make[1]: Leaving directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
Makefile:114: recipe for target 'cmTryCompileExec2229403292/fast' failed
make: *** [cmTryCompileExec2229403292/fast] Error 2
Determining if the include file io.h exists failed with the following output:
Change Dir: /home/bryce/NeoBuild/CMakeFiles/CMakeTmp
Run Build Command:/usr/bin/make "cmTryCompileExec2971943348/fast"
/usr/bin/make -f CMakeFiles/cmTryCompileExec2971943348.dir/build.make CMakeFiles/cmTryCompileExec2971943348.dir/build
make[1]: Entering directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
/usr/bin/cmake -E cmake_progress_report /home/bryce/NeoBuild/CMakeFiles/CMakeTmp/CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec2971943348.dir/CheckIncludeFile.c.o
/usr/bin/cc -std=c99 -O3 -fPIC -DLINUX -D_GNU_SOURCE=1 -D_POSIX_C_SOURCE=200809L -D_XOPEN_SOURCE=700 -D_LARGEFILE_SOURCE -D_LARGE_FILES -o CMakeFiles/cmTryCompileExec2971943348.dir/CheckIncludeFile.c.o -c /home/bryce/NeoBuild/CMakeFiles/CMakeTmp/CheckIncludeFile.c
/home/bryce/NeoBuild/CMakeFiles/CMakeTmp/CheckIncludeFile.c:1:16: fatal error: io.h: No such file or directory
#include <io.h>
^
compilation terminated.
CMakeFiles/cmTryCompileExec2971943348.dir/build.make:57: recipe for target 'CMakeFiles/cmTryCompileExec2971943348.dir/CheckIncludeFile.c.o' failed
make[1]: *** [CMakeFiles/cmTryCompileExec2971943348.dir/CheckIncludeFile.c.o] Error 1
make[1]: Leaving directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
Makefile:114: recipe for target 'cmTryCompileExec2971943348/fast' failed
make: *** [cmTryCompileExec2971943348/fast] Error 2
Determining if the include file intrin.h exists failed with the following output:
Change Dir: /home/bryce/NeoBuild/CMakeFiles/CMakeTmp
Run Build Command:/usr/bin/make "cmTryCompileExec1176006875/fast"
/usr/bin/make -f CMakeFiles/cmTryCompileExec1176006875.dir/build.make CMakeFiles/cmTryCompileExec1176006875.dir/build
make[1]: Entering directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
/usr/bin/cmake -E cmake_progress_report /home/bryce/NeoBuild/CMakeFiles/CMakeTmp/CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec1176006875.dir/CheckIncludeFile.c.o
/usr/bin/cc -std=c99 -O3 -fPIC -DLINUX -D_GNU_SOURCE=1 -D_POSIX_C_SOURCE=200809L -D_XOPEN_SOURCE=700 -D_LARGEFILE_SOURCE -D_LARGE_FILES -o CMakeFiles/cmTryCompileExec1176006875.dir/CheckIncludeFile.c.o -c /home/bryce/NeoBuild/CMakeFiles/CMakeTmp/CheckIncludeFile.c
/home/bryce/NeoBuild/CMakeFiles/CMakeTmp/CheckIncludeFile.c:1:20: fatal error: intrin.h: No such file or directory
#include <intrin.h>
^
compilation terminated.
CMakeFiles/cmTryCompileExec1176006875.dir/build.make:57: recipe for target 'CMakeFiles/cmTryCompileExec1176006875.dir/CheckIncludeFile.c.o' failed
make[1]: *** [CMakeFiles/cmTryCompileExec1176006875.dir/CheckIncludeFile.c.o] Error 1
make[1]: Leaving directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
Makefile:114: recipe for target 'cmTryCompileExec1176006875/fast' failed
make: *** [cmTryCompileExec1176006875/fast] Error 2
Determining if the include file sys/sysconf.h exists failed with the following output:
Change Dir: /home/bryce/NeoBuild/CMakeFiles/CMakeTmp
Run Build Command:/usr/bin/make "cmTryCompileExec3704614328/fast"
/usr/bin/make -f CMakeFiles/cmTryCompileExec3704614328.dir/build.make CMakeFiles/cmTryCompileExec3704614328.dir/build
make[1]: Entering directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
/usr/bin/cmake -E cmake_progress_report /home/bryce/NeoBuild/CMakeFiles/CMakeTmp/CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec3704614328.dir/CheckIncludeFile.c.o
/usr/bin/cc -std=c99 -O3 -fPIC -DLINUX -D_GNU_SOURCE=1 -D_POSIX_C_SOURCE=200809L -D_XOPEN_SOURCE=700 -D_LARGEFILE_SOURCE -D_LARGE_FILES -o CMakeFiles/cmTryCompileExec3704614328.dir/CheckIncludeFile.c.o -c /home/bryce/NeoBuild/CMakeFiles/CMakeTmp/CheckIncludeFile.c
/home/bryce/NeoBuild/CMakeFiles/CMakeTmp/CheckIncludeFile.c:1:25: fatal error: sys/sysconf.h: No such file or directory
#include <sys/sysconf.h>
^
compilation terminated.
CMakeFiles/cmTryCompileExec3704614328.dir/build.make:57: recipe for target 'CMakeFiles/cmTryCompileExec3704614328.dir/CheckIncludeFile.c.o' failed
make[1]: *** [CMakeFiles/cmTryCompileExec3704614328.dir/CheckIncludeFile.c.o] Error 1
make[1]: Leaving directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
Makefile:114: recipe for target 'cmTryCompileExec3704614328/fast' failed
make: *** [cmTryCompileExec3704614328/fast] Error 2
Determining if the include file ieeefp.h exists failed with the following output:
Change Dir: /home/bryce/NeoBuild/CMakeFiles/CMakeTmp
Run Build Command:/usr/bin/make "cmTryCompileExec1317906284/fast"
/usr/bin/make -f CMakeFiles/cmTryCompileExec1317906284.dir/build.make CMakeFiles/cmTryCompileExec1317906284.dir/build
make[1]: Entering directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
/usr/bin/cmake -E cmake_progress_report /home/bryce/NeoBuild/CMakeFiles/CMakeTmp/CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec1317906284.dir/CheckIncludeFile.c.o
/usr/bin/cc -std=c99 -O3 -fPIC -DLINUX -D_GNU_SOURCE=1 -D_POSIX_C_SOURCE=200809L -D_XOPEN_SOURCE=700 -D_LARGEFILE_SOURCE -D_LARGE_FILES -o CMakeFiles/cmTryCompileExec1317906284.dir/CheckIncludeFile.c.o -c /home/bryce/NeoBuild/CMakeFiles/CMakeTmp/CheckIncludeFile.c
/home/bryce/NeoBuild/CMakeFiles/CMakeTmp/CheckIncludeFile.c:1:20: fatal error: ieeefp.h: No such file or directory
#include <ieeefp.h>
^
compilation terminated.
CMakeFiles/cmTryCompileExec1317906284.dir/build.make:57: recipe for target 'CMakeFiles/cmTryCompileExec1317906284.dir/CheckIncludeFile.c.o' failed
make[1]: *** [CMakeFiles/cmTryCompileExec1317906284.dir/CheckIncludeFile.c.o] Error 1
make[1]: Leaving directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
Makefile:114: recipe for target 'cmTryCompileExec1317906284/fast' failed
make: *** [cmTryCompileExec1317906284/fast] Error 2
Determining if the include file guiddef.h exists failed with the following output:
Change Dir: /home/bryce/NeoBuild/CMakeFiles/CMakeTmp
Run Build Command:/usr/bin/make "cmTryCompileExec3641200440/fast"
/usr/bin/make -f CMakeFiles/cmTryCompileExec3641200440.dir/build.make CMakeFiles/cmTryCompileExec3641200440.dir/build
make[1]: Entering directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
/usr/bin/cmake -E cmake_progress_report /home/bryce/NeoBuild/CMakeFiles/CMakeTmp/CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec3641200440.dir/CheckIncludeFile.c.o
/usr/bin/cc -std=c99 -O3 -fPIC -DLINUX -D_GNU_SOURCE=1 -D_POSIX_C_SOURCE=200809L -D_XOPEN_SOURCE=700 -D_LARGEFILE_SOURCE -D_LARGE_FILES -o CMakeFiles/cmTryCompileExec3641200440.dir/CheckIncludeFile.c.o -c /home/bryce/NeoBuild/CMakeFiles/CMakeTmp/CheckIncludeFile.c
/home/bryce/NeoBuild/CMakeFiles/CMakeTmp/CheckIncludeFile.c:1:21: fatal error: guiddef.h: No such file or directory
#include <guiddef.h>
^
compilation terminated.
CMakeFiles/cmTryCompileExec3641200440.dir/build.make:57: recipe for target 'CMakeFiles/cmTryCompileExec3641200440.dir/CheckIncludeFile.c.o' failed
make[1]: *** [CMakeFiles/cmTryCompileExec3641200440.dir/CheckIncludeFile.c.o] Error 1
make[1]: Leaving directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
Makefile:114: recipe for target 'cmTryCompileExec3641200440/fast' failed
make: *** [cmTryCompileExec3641200440/fast] Error 2
Determining if the include file initguid.h exists failed with the following output:
Change Dir: /home/bryce/NeoBuild/CMakeFiles/CMakeTmp
Run Build Command:/usr/bin/make "cmTryCompileExec1799459609/fast"
/usr/bin/make -f CMakeFiles/cmTryCompileExec1799459609.dir/build.make CMakeFiles/cmTryCompileExec1799459609.dir/build
make[1]: Entering directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
/usr/bin/cmake -E cmake_progress_report /home/bryce/NeoBuild/CMakeFiles/CMakeTmp/CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec1799459609.dir/CheckIncludeFile.c.o
/usr/bin/cc -std=c99 -O3 -fPIC -DLINUX -D_GNU_SOURCE=1 -D_POSIX_C_SOURCE=200809L -D_XOPEN_SOURCE=700 -D_LARGEFILE_SOURCE -D_LARGE_FILES -o CMakeFiles/cmTryCompileExec1799459609.dir/CheckIncludeFile.c.o -c /home/bryce/NeoBuild/CMakeFiles/CMakeTmp/CheckIncludeFile.c
/home/bryce/NeoBuild/CMakeFiles/CMakeTmp/CheckIncludeFile.c:1:22: fatal error: initguid.h: No such file or directory
#include <initguid.h>
^
compilation terminated.
CMakeFiles/cmTryCompileExec1799459609.dir/build.make:57: recipe for target 'CMakeFiles/cmTryCompileExec1799459609.dir/CheckIncludeFile.c.o' failed
make[1]: *** [CMakeFiles/cmTryCompileExec1799459609.dir/CheckIncludeFile.c.o] Error 1
make[1]: Leaving directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
Makefile:114: recipe for target 'cmTryCompileExec1799459609/fast' failed
make: *** [cmTryCompileExec1799459609/fast] Error 2
Determining if the _aligned_malloc exist failed with the following output:
Change Dir: /home/bryce/NeoBuild/CMakeFiles/CMakeTmp
Run Build Command:/usr/bin/make "cmTryCompileExec637147209/fast"
/usr/bin/make -f CMakeFiles/cmTryCompileExec637147209.dir/build.make CMakeFiles/cmTryCompileExec637147209.dir/build
make[1]: Entering directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
/usr/bin/cmake -E cmake_progress_report /home/bryce/NeoBuild/CMakeFiles/CMakeTmp/CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec637147209.dir/CheckSymbolExists.c.o
/usr/bin/cc -std=c99 -O3 -fPIC -DLINUX -D_GNU_SOURCE=1 -D_POSIX_C_SOURCE=200809L -D_XOPEN_SOURCE=700 -D_LARGEFILE_SOURCE -D_LARGE_FILES -o CMakeFiles/cmTryCompileExec637147209.dir/CheckSymbolExists.c.o -c /home/bryce/NeoBuild/CMakeFiles/CMakeTmp/CheckSymbolExists.c
/home/bryce/NeoBuild/CMakeFiles/CMakeTmp/CheckSymbolExists.c: In function ‘main’:
/home/bryce/NeoBuild/CMakeFiles/CMakeTmp/CheckSymbolExists.c:8:19: error: ‘_aligned_malloc’ undeclared (first use in this function)
return ((int*)(&_aligned_malloc))[argc];
^
/home/bryce/NeoBuild/CMakeFiles/CMakeTmp/CheckSymbolExists.c:8:19: note: each undeclared identifier is reported only once for each function it appears in
CMakeFiles/cmTryCompileExec637147209.dir/build.make:57: recipe for target 'CMakeFiles/cmTryCompileExec637147209.dir/CheckSymbolExists.c.o' failed
make[1]: *** [CMakeFiles/cmTryCompileExec637147209.dir/CheckSymbolExists.c.o] Error 1
make[1]: Leaving directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
Makefile:114: recipe for target 'cmTryCompileExec637147209/fast' failed
make: *** [cmTryCompileExec637147209/fast] Error 2
File /home/bryce/NeoBuild/CMakeFiles/CMakeTmp/CheckSymbolExists.c:
/* */
#include <malloc.h>
int main(int argc, char** argv)
{
(void)argv;
#ifndef _aligned_malloc
return ((int*)(&_aligned_malloc))[argc];
#else
(void)argc;
return 0;
#endif
}
Determining if the _controlfp exist failed with the following output:
Change Dir: /home/bryce/NeoBuild/CMakeFiles/CMakeTmp
Run Build Command:/usr/bin/make "cmTryCompileExec1807076006/fast"
/usr/bin/make -f CMakeFiles/cmTryCompileExec1807076006.dir/build.make CMakeFiles/cmTryCompileExec1807076006.dir/build
make[1]: Entering directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
/usr/bin/cmake -E cmake_progress_report /home/bryce/NeoBuild/CMakeFiles/CMakeTmp/CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec1807076006.dir/CheckSymbolExists.c.o
/usr/bin/cc -std=c99 -O3 -fPIC -DLINUX -D_GNU_SOURCE=1 -D_POSIX_C_SOURCE=200809L -D_XOPEN_SOURCE=700 -D_LARGEFILE_SOURCE -D_LARGE_FILES -o CMakeFiles/cmTryCompileExec1807076006.dir/CheckSymbolExists.c.o -c /home/bryce/NeoBuild/CMakeFiles/CMakeTmp/CheckSymbolExists.c
/home/bryce/NeoBuild/CMakeFiles/CMakeTmp/CheckSymbolExists.c: In function ‘main’:
/home/bryce/NeoBuild/CMakeFiles/CMakeTmp/CheckSymbolExists.c:8:19: error: ‘_controlfp’ undeclared (first use in this function)
return ((int*)(&_controlfp))[argc];
^
/home/bryce/NeoBuild/CMakeFiles/CMakeTmp/CheckSymbolExists.c:8:19: note: each undeclared identifier is reported only once for each function it appears in
CMakeFiles/cmTryCompileExec1807076006.dir/build.make:57: recipe for target 'CMakeFiles/cmTryCompileExec1807076006.dir/CheckSymbolExists.c.o' failed
make[1]: *** [CMakeFiles/cmTryCompileExec1807076006.dir/CheckSymbolExists.c.o] Error 1
make[1]: Leaving directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
Makefile:114: recipe for target 'cmTryCompileExec1807076006/fast' failed
make: *** [cmTryCompileExec1807076006/fast] Error 2
File /home/bryce/NeoBuild/CMakeFiles/CMakeTmp/CheckSymbolExists.c:
/* */
#include <float.h>
int main(int argc, char** argv)
{
(void)argv;
#ifndef _controlfp
return ((int*)(&_controlfp))[argc];
#else
(void)argc;
return 0;
#endif
}
Determining if the __control87_2 exist failed with the following output:
Change Dir: /home/bryce/NeoBuild/CMakeFiles/CMakeTmp
Run Build Command:/usr/bin/make "cmTryCompileExec2905730260/fast"
/usr/bin/make -f CMakeFiles/cmTryCompileExec2905730260.dir/build.make CMakeFiles/cmTryCompileExec2905730260.dir/build
make[1]: Entering directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
/usr/bin/cmake -E cmake_progress_report /home/bryce/NeoBuild/CMakeFiles/CMakeTmp/CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec2905730260.dir/CheckSymbolExists.c.o
/usr/bin/cc -std=c99 -O3 -fPIC -DLINUX -D_GNU_SOURCE=1 -D_POSIX_C_SOURCE=200809L -D_XOPEN_SOURCE=700 -D_LARGEFILE_SOURCE -D_LARGE_FILES -o CMakeFiles/cmTryCompileExec2905730260.dir/CheckSymbolExists.c.o -c /home/bryce/NeoBuild/CMakeFiles/CMakeTmp/CheckSymbolExists.c
/home/bryce/NeoBuild/CMakeFiles/CMakeTmp/CheckSymbolExists.c: In function ‘main’:
/home/bryce/NeoBuild/CMakeFiles/CMakeTmp/CheckSymbolExists.c:8:19: error: ‘__control87_2’ undeclared (first use in this function)
return ((int*)(&__control87_2))[argc];
^
/home/bryce/NeoBuild/CMakeFiles/CMakeTmp/CheckSymbolExists.c:8:19: note: each undeclared identifier is reported only once for each function it appears in
CMakeFiles/cmTryCompileExec2905730260.dir/build.make:57: recipe for target 'CMakeFiles/cmTryCompileExec2905730260.dir/CheckSymbolExists.c.o' failed
make[1]: *** [CMakeFiles/cmTryCompileExec2905730260.dir/CheckSymbolExists.c.o] Error 1
make[1]: Leaving directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
Makefile:114: recipe for target 'cmTryCompileExec2905730260/fast' failed
make: *** [cmTryCompileExec2905730260/fast] Error 2
File /home/bryce/NeoBuild/CMakeFiles/CMakeTmp/CheckSymbolExists.c:
/* */
#include <float.h>
int main(int argc, char** argv)
{
(void)argv;
#ifndef __control87_2
return ((int*)(&__control87_2))[argc];
#else
(void)argc;
return 0;
#endif
}
Determining if the include file windows.h exists failed with the following output:
Change Dir: /home/bryce/NeoBuild/CMakeFiles/CMakeTmp
Run Build Command:/usr/bin/make "cmTryCompileExec2516097035/fast"
/usr/bin/make -f CMakeFiles/cmTryCompileExec2516097035.dir/build.make CMakeFiles/cmTryCompileExec2516097035.dir/build
make[1]: Entering directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
/usr/bin/cmake -E cmake_progress_report /home/bryce/NeoBuild/CMakeFiles/CMakeTmp/CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec2516097035.dir/CheckIncludeFile.c.o
/usr/bin/cc -std=c99 -O3 -fPIC -DLINUX -D_WIN32_WINNT=0x0502 -D_GNU_SOURCE=1 -D_POSIX_C_SOURCE=200809L -D_XOPEN_SOURCE=700 -D_LARGEFILE_SOURCE -D_LARGE_FILES -o CMakeFiles/cmTryCompileExec2516097035.dir/CheckIncludeFile.c.o -c /home/bryce/NeoBuild/CMakeFiles/CMakeTmp/CheckIncludeFile.c
/home/bryce/NeoBuild/CMakeFiles/CMakeTmp/CheckIncludeFile.c:1:21: fatal error: windows.h: No such file or directory
#include <windows.h>
^
compilation terminated.
CMakeFiles/cmTryCompileExec2516097035.dir/build.make:57: recipe for target 'CMakeFiles/cmTryCompileExec2516097035.dir/CheckIncludeFile.c.o' failed
make[1]: *** [CMakeFiles/cmTryCompileExec2516097035.dir/CheckIncludeFile.c.o] Error 1
make[1]: Leaving directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
Makefile:114: recipe for target 'cmTryCompileExec2516097035/fast' failed
make: *** [cmTryCompileExec2516097035/fast] Error 2
Determining if the include file arm_neon.h exists failed with the following output:
Change Dir: /home/bryce/NeoBuild/CMakeFiles/CMakeTmp
Run Build Command:/usr/bin/make "cmTryCompileExec1824523807/fast"
/usr/bin/make -f CMakeFiles/cmTryCompileExec1824523807.dir/build.make CMakeFiles/cmTryCompileExec1824523807.dir/build
make[1]: Entering directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
/usr/bin/cmake -E cmake_progress_report /home/bryce/NeoBuild/CMakeFiles/CMakeTmp/CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec1824523807.dir/CheckIncludeFile.c.o
/usr/bin/cc -std=c99 -O3 -fPIC -DLINUX -D_GNU_SOURCE=1 -D_POSIX_C_SOURCE=200809L -D_XOPEN_SOURCE=700 -D_LARGEFILE_SOURCE -D_LARGE_FILES -pthread -o CMakeFiles/cmTryCompileExec1824523807.dir/CheckIncludeFile.c.o -c /home/bryce/NeoBuild/CMakeFiles/CMakeTmp/CheckIncludeFile.c
/home/bryce/NeoBuild/CMakeFiles/CMakeTmp/CheckIncludeFile.c:1:22: fatal error: arm_neon.h: No such file or directory
#include <arm_neon.h>
^
compilation terminated.
CMakeFiles/cmTryCompileExec1824523807.dir/build.make:57: recipe for target 'CMakeFiles/cmTryCompileExec1824523807.dir/CheckIncludeFile.c.o' failed
make[1]: Leaving directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
make[1]: *** [CMakeFiles/cmTryCompileExec1824523807.dir/CheckIncludeFile.c.o] Error 1
Makefile:114: recipe for target 'cmTryCompileExec1824523807/fast' failed
make: *** [cmTryCompileExec1824523807/fast] Error 2
Determining if files SLES/OpenSLES.h;SLES/OpenSLES_Android.h exist failed with the following output:
Change Dir: /home/bryce/NeoBuild/CMakeFiles/CMakeTmp
Run Build Command:/usr/bin/make "cmTryCompileExec1427604753/fast"
/usr/bin/make -f CMakeFiles/cmTryCompileExec1427604753.dir/build.make CMakeFiles/cmTryCompileExec1427604753.dir/build
make[1]: Entering directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
/usr/bin/cmake -E cmake_progress_report /home/bryce/NeoBuild/CMakeFiles/CMakeTmp/CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec1427604753.dir/CheckIncludeFiles.c.o
/usr/bin/cc -std=c99 -O3 -fPIC -DLINUX -D_GNU_SOURCE=1 -D_POSIX_C_SOURCE=200809L -D_XOPEN_SOURCE=700 -D_LARGEFILE_SOURCE -D_LARGE_FILES -pthread -o CMakeFiles/cmTryCompileExec1427604753.dir/CheckIncludeFiles.c.o -c /home/bryce/NeoBuild/CMakeFiles/CMakeTmp/CheckIncludeFiles.c
/home/bryce/NeoBuild/CMakeFiles/CMakeTmp/CheckIncludeFiles.c:2:27: fatal error: SLES/OpenSLES.h: No such file or directory
#include <SLES/OpenSLES.h>
^
compilation terminated.
CMakeFiles/cmTryCompileExec1427604753.dir/build.make:57: recipe for target 'CMakeFiles/cmTryCompileExec1427604753.dir/CheckIncludeFiles.c.o' failed
make[1]: Leaving directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
make[1]: *** [CMakeFiles/cmTryCompileExec1427604753.dir/CheckIncludeFiles.c.o] Error 1
Makefile:114: recipe for target 'cmTryCompileExec1427604753/fast' failed
make: *** [cmTryCompileExec1427604753/fast] Error 2
Source:
/* */
#include <SLES/OpenSLES.h>
#include <SLES/OpenSLES_Android.h>
int main(){return 0;}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment