Skip to content

Instantly share code, notes, and snippets.

@brycehenley
Created December 24, 2014 22:34
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/03cc498bc2fab9cd3c3a to your computer and use it in GitHub Desktop.
Save brycehenley/03cc498bc2fab9cd3c3a 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 "cmTryCompileExec804480846/fast"
/usr/bin/make -f CMakeFiles/cmTryCompileExec804480846.dir/build.make CMakeFiles/cmTryCompileExec804480846.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/cmTryCompileExec804480846.dir/TestEndianess.c.o
/usr/bin/cc -O3 -fPIC -DLINUX -o CMakeFiles/cmTryCompileExec804480846.dir/TestEndianess.c.o -c /home/bryce/NeoBuild/CMakeFiles/CMakeTmp/TestEndianess.c
Linking C executable cmTryCompileExec804480846
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec804480846.dir/link.txt --verbose=1
/usr/bin/cc -O3 -fPIC -DLINUX CMakeFiles/cmTryCompileExec804480846.dir/TestEndianess.c.o -o cmTryCompileExec804480846 -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 "cmTryCompileExec165113758/fast"
/usr/bin/make -f CMakeFiles/cmTryCompileExec165113758.dir/build.make CMakeFiles/cmTryCompileExec165113758.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/cmTryCompileExec165113758.dir/CheckFunctionExists.c.o
/usr/bin/cc -O3 -fPIC -DLINUX -DCHECK_FUNCTION_EXISTS=strlcat -o CMakeFiles/cmTryCompileExec165113758.dir/CheckFunctionExists.c.o -c /usr/share/cmake-2.8/Modules/CheckFunctionExists.c
Linking C executable cmTryCompileExec165113758
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec165113758.dir/link.txt --verbose=1
/usr/bin/cc -O3 -fPIC -DLINUX -DCHECK_FUNCTION_EXISTS=strlcat CMakeFiles/cmTryCompileExec165113758.dir/CheckFunctionExists.c.o -o cmTryCompileExec165113758 -rdynamic -lpng
CMakeFiles/cmTryCompileExec165113758.dir/CheckFunctionExists.c.o: In function `main':
CheckFunctionExists.c:(.text.startup+0xe): undefined reference to `strlcat'
collect2: error: ld returned 1 exit status
CMakeFiles/cmTryCompileExec165113758.dir/build.make:88: recipe for target 'cmTryCompileExec165113758' failed
make[1]: *** [cmTryCompileExec165113758] Error 1
make[1]: Leaving directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
Makefile:114: recipe for target 'cmTryCompileExec165113758/fast' failed
make: *** [cmTryCompileExec165113758/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 "cmTryCompileExec1476626575/fast"
/usr/bin/make -f CMakeFiles/cmTryCompileExec1476626575.dir/build.make CMakeFiles/cmTryCompileExec1476626575.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/cmTryCompileExec1476626575.dir/CheckFunctionExists.c.o
/usr/bin/cc -O3 -fPIC -DLINUX -DCHECK_FUNCTION_EXISTS=strlcpy -o CMakeFiles/cmTryCompileExec1476626575.dir/CheckFunctionExists.c.o -c /usr/share/cmake-2.8/Modules/CheckFunctionExists.c
Linking C executable cmTryCompileExec1476626575
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec1476626575.dir/link.txt --verbose=1
/usr/bin/cc -O3 -fPIC -DLINUX -DCHECK_FUNCTION_EXISTS=strlcpy CMakeFiles/cmTryCompileExec1476626575.dir/CheckFunctionExists.c.o -o cmTryCompileExec1476626575 -rdynamic -lpng
CMakeFiles/cmTryCompileExec1476626575.dir/CheckFunctionExists.c.o: In function `main':
CheckFunctionExists.c:(.text.startup+0xe): undefined reference to `strlcpy'
collect2: error: ld returned 1 exit status
CMakeFiles/cmTryCompileExec1476626575.dir/build.make:88: recipe for target 'cmTryCompileExec1476626575' failed
make[1]: *** [cmTryCompileExec1476626575] Error 1
make[1]: Leaving directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
Makefile:114: recipe for target 'cmTryCompileExec1476626575/fast' failed
make: *** [cmTryCompileExec1476626575/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 "cmTryCompileExec676630507/fast"
/usr/bin/make -f CMakeFiles/cmTryCompileExec676630507.dir/build.make CMakeFiles/cmTryCompileExec676630507.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/cmTryCompileExec676630507.dir/CheckSymbolExists.c.o
/usr/bin/cc -O3 -fPIC -DLINUX -I/usr/include/GL -o CMakeFiles/cmTryCompileExec676630507.dir/CheckSymbolExists.c.o -c /home/bryce/NeoBuild/CMakeFiles/CMakeTmp/CheckSymbolExists.c
Linking C executable cmTryCompileExec676630507
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec676630507.dir/link.txt --verbose=1
/usr/bin/cc -O3 -fPIC -DLINUX CMakeFiles/cmTryCompileExec676630507.dir/CheckSymbolExists.c.o -o cmTryCompileExec676630507 -rdynamic -lGLU -lGL
CMakeFiles/cmTryCompileExec676630507.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/cmTryCompileExec676630507.dir/build.make:88: recipe for target 'cmTryCompileExec676630507' failed
make[1]: *** [cmTryCompileExec676630507] Error 1
make[1]: Leaving directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
Makefile:114: recipe for target 'cmTryCompileExec676630507/fast' failed
make: *** [cmTryCompileExec676630507/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 "cmTryCompileExec1741385664/fast"
/usr/bin/make -f CMakeFiles/cmTryCompileExec1741385664.dir/build.make CMakeFiles/cmTryCompileExec1741385664.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/cmTryCompileExec1741385664.dir/CheckFunctionExists.c.o
/usr/bin/cc -O3 -fPIC -DLINUX -DCHECK_FUNCTION_EXISTS=pthread_create -o CMakeFiles/cmTryCompileExec1741385664.dir/CheckFunctionExists.c.o -c /usr/share/cmake-2.8/Modules/CheckFunctionExists.c
Linking C executable cmTryCompileExec1741385664
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec1741385664.dir/link.txt --verbose=1
/usr/bin/cc -O3 -fPIC -DLINUX -DCHECK_FUNCTION_EXISTS=pthread_create CMakeFiles/cmTryCompileExec1741385664.dir/CheckFunctionExists.c.o -o cmTryCompileExec1741385664 -rdynamic -lpthreads -lGLU -lGL
/usr/bin/ld: cannot find -lpthreads
collect2: error: ld returned 1 exit status
CMakeFiles/cmTryCompileExec1741385664.dir/build.make:88: recipe for target 'cmTryCompileExec1741385664' failed
make[1]: Leaving directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
make[1]: *** [cmTryCompileExec1741385664] Error 1
Makefile:114: recipe for target 'cmTryCompileExec1741385664/fast' failed
make: *** [cmTryCompileExec1741385664/fast] Error 2
Determining if the function _open exists failed with the following output:
Change Dir: /home/bryce/NeoBuild/CMakeFiles/CMakeTmp
Run Build Command:/usr/bin/make "cmTryCompileExec2887345375/fast"
/usr/bin/make -f CMakeFiles/cmTryCompileExec2887345375.dir/build.make CMakeFiles/cmTryCompileExec2887345375.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/cmTryCompileExec2887345375.dir/CheckFunctionExists.c.o
/usr/bin/cc -O3 -fPIC -DLINUX -DCHECK_FUNCTION_EXISTS=_open -o CMakeFiles/cmTryCompileExec2887345375.dir/CheckFunctionExists.c.o -c /usr/share/cmake-2.8/Modules/CheckFunctionExists.c
Linking C executable cmTryCompileExec2887345375
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec2887345375.dir/link.txt --verbose=1
/usr/bin/cc -O3 -fPIC -DLINUX -DCHECK_FUNCTION_EXISTS=_open CMakeFiles/cmTryCompileExec2887345375.dir/CheckFunctionExists.c.o -o cmTryCompileExec2887345375 -rdynamic
CMakeFiles/cmTryCompileExec2887345375.dir/CheckFunctionExists.c.o: In function `main':
CheckFunctionExists.c:(.text.startup+0xe): undefined reference to `_open'
collect2: error: ld returned 1 exit status
CMakeFiles/cmTryCompileExec2887345375.dir/build.make:88: recipe for target 'cmTryCompileExec2887345375' failed
make[1]: Leaving directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
make[1]: *** [cmTryCompileExec2887345375] Error 1
Makefile:114: recipe for target 'cmTryCompileExec2887345375/fast' failed
make: *** [cmTryCompileExec2887345375/fast] Error 2
Determining if the function _snprintf exists failed with the following output:
Change Dir: /home/bryce/NeoBuild/CMakeFiles/CMakeTmp
Run Build Command:/usr/bin/make "cmTryCompileExec2100931476/fast"
/usr/bin/make -f CMakeFiles/cmTryCompileExec2100931476.dir/build.make CMakeFiles/cmTryCompileExec2100931476.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/cmTryCompileExec2100931476.dir/CheckFunctionExists.c.o
/usr/bin/cc -O3 -fPIC -DLINUX -DCHECK_FUNCTION_EXISTS=_snprintf -o CMakeFiles/cmTryCompileExec2100931476.dir/CheckFunctionExists.c.o -c /usr/share/cmake-2.8/Modules/CheckFunctionExists.c
Linking C executable cmTryCompileExec2100931476
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec2100931476.dir/link.txt --verbose=1
/usr/bin/cc -O3 -fPIC -DLINUX -DCHECK_FUNCTION_EXISTS=_snprintf CMakeFiles/cmTryCompileExec2100931476.dir/CheckFunctionExists.c.o -o cmTryCompileExec2100931476 -rdynamic
CMakeFiles/cmTryCompileExec2100931476.dir/CheckFunctionExists.c.o: In function `main':
CheckFunctionExists.c:(.text.startup+0xe): undefined reference to `_snprintf'
collect2: error: ld returned 1 exit status
CMakeFiles/cmTryCompileExec2100931476.dir/build.make:88: recipe for target 'cmTryCompileExec2100931476' failed
make[1]: Leaving directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
make[1]: *** [cmTryCompileExec2100931476] Error 1
Makefile:114: recipe for target 'cmTryCompileExec2100931476/fast' failed
make: *** [cmTryCompileExec2100931476/fast] Error 2
Determining if the function _strcmpi exists failed with the following output:
Change Dir: /home/bryce/NeoBuild/CMakeFiles/CMakeTmp
Run Build Command:/usr/bin/make "cmTryCompileExec3413546317/fast"
/usr/bin/make -f CMakeFiles/cmTryCompileExec3413546317.dir/build.make CMakeFiles/cmTryCompileExec3413546317.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/cmTryCompileExec3413546317.dir/CheckFunctionExists.c.o
/usr/bin/cc -O3 -fPIC -DLINUX -DCHECK_FUNCTION_EXISTS=_strcmpi -o CMakeFiles/cmTryCompileExec3413546317.dir/CheckFunctionExists.c.o -c /usr/share/cmake-2.8/Modules/CheckFunctionExists.c
Linking C executable cmTryCompileExec3413546317
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec3413546317.dir/link.txt --verbose=1
/usr/bin/cc -O3 -fPIC -DLINUX -DCHECK_FUNCTION_EXISTS=_strcmpi CMakeFiles/cmTryCompileExec3413546317.dir/CheckFunctionExists.c.o -o cmTryCompileExec3413546317 -rdynamic
CMakeFiles/cmTryCompileExec3413546317.dir/CheckFunctionExists.c.o: In function `main':
CheckFunctionExists.c:(.text.startup+0xe): undefined reference to `_strcmpi'
collect2: error: ld returned 1 exit status
CMakeFiles/cmTryCompileExec3413546317.dir/build.make:88: recipe for target 'cmTryCompileExec3413546317' failed
make[1]: Leaving directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
make[1]: *** [cmTryCompileExec3413546317] Error 1
Makefile:114: recipe for target 'cmTryCompileExec3413546317/fast' failed
make: *** [cmTryCompileExec3413546317/fast] Error 2
Determining if the function _strdup exists failed with the following output:
Change Dir: /home/bryce/NeoBuild/CMakeFiles/CMakeTmp
Run Build Command:/usr/bin/make "cmTryCompileExec758132898/fast"
/usr/bin/make -f CMakeFiles/cmTryCompileExec758132898.dir/build.make CMakeFiles/cmTryCompileExec758132898.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/cmTryCompileExec758132898.dir/CheckFunctionExists.c.o
/usr/bin/cc -O3 -fPIC -DLINUX -DCHECK_FUNCTION_EXISTS=_strdup -o CMakeFiles/cmTryCompileExec758132898.dir/CheckFunctionExists.c.o -c /usr/share/cmake-2.8/Modules/CheckFunctionExists.c
Linking C executable cmTryCompileExec758132898
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec758132898.dir/link.txt --verbose=1
/usr/bin/cc -O3 -fPIC -DLINUX -DCHECK_FUNCTION_EXISTS=_strdup CMakeFiles/cmTryCompileExec758132898.dir/CheckFunctionExists.c.o -o cmTryCompileExec758132898 -rdynamic
CMakeFiles/cmTryCompileExec758132898.dir/CheckFunctionExists.c.o: In function `main':
CheckFunctionExists.c:(.text.startup+0xe): undefined reference to `_strdup'
collect2: error: ld returned 1 exit status
CMakeFiles/cmTryCompileExec758132898.dir/build.make:88: recipe for target 'cmTryCompileExec758132898' failed
make[1]: *** [cmTryCompileExec758132898] Error 1
make[1]: Leaving directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
Makefile:114: recipe for target 'cmTryCompileExec758132898/fast' failed
make: *** [cmTryCompileExec758132898/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 "cmTryCompileExec334235350/fast"
/usr/bin/make -f CMakeFiles/cmTryCompileExec334235350.dir/build.make CMakeFiles/cmTryCompileExec334235350.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/cmTryCompileExec334235350.dir/CheckFunctionExists.c.o
/usr/bin/cc -O3 -fPIC -DLINUX -DCHECK_FUNCTION_EXISTS=_stricmp -o CMakeFiles/cmTryCompileExec334235350.dir/CheckFunctionExists.c.o -c /usr/share/cmake-2.8/Modules/CheckFunctionExists.c
Linking C executable cmTryCompileExec334235350
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec334235350.dir/link.txt --verbose=1
/usr/bin/cc -O3 -fPIC -DLINUX -DCHECK_FUNCTION_EXISTS=_stricmp CMakeFiles/cmTryCompileExec334235350.dir/CheckFunctionExists.c.o -o cmTryCompileExec334235350 -rdynamic
CMakeFiles/cmTryCompileExec334235350.dir/CheckFunctionExists.c.o: In function `main':
CheckFunctionExists.c:(.text.startup+0xe): undefined reference to `_stricmp'
collect2: error: ld returned 1 exit status
CMakeFiles/cmTryCompileExec334235350.dir/build.make:88: recipe for target 'cmTryCompileExec334235350' failed
make[1]: Leaving directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
make[1]: *** [cmTryCompileExec334235350] Error 1
Makefile:114: recipe for target 'cmTryCompileExec334235350/fast' failed
make: *** [cmTryCompileExec334235350/fast] Error 2
Determining if the MoveFileExA exist failed with the following output:
Change Dir: /home/bryce/NeoBuild/CMakeFiles/CMakeTmp
Run Build Command:/usr/bin/make "cmTryCompileExec3488054425/fast"
/usr/bin/make -f CMakeFiles/cmTryCompileExec3488054425.dir/build.make CMakeFiles/cmTryCompileExec3488054425.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/cmTryCompileExec3488054425.dir/CheckSymbolExists.c.o
/usr/bin/cc -O3 -fPIC -DLINUX -o CMakeFiles/cmTryCompileExec3488054425.dir/CheckSymbolExists.c.o -c /home/bryce/NeoBuild/CMakeFiles/CMakeTmp/CheckSymbolExists.c
/home/bryce/NeoBuild/CMakeFiles/CMakeTmp/CheckSymbolExists.c:2:21: fatal error: windows.h: No such file or directory
#include <windows.h>
^
compilation terminated.
CMakeFiles/cmTryCompileExec3488054425.dir/build.make:57: recipe for target 'CMakeFiles/cmTryCompileExec3488054425.dir/CheckSymbolExists.c.o' failed
make[1]: Leaving directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
make[1]: *** [CMakeFiles/cmTryCompileExec3488054425.dir/CheckSymbolExists.c.o] Error 1
Makefile:114: recipe for target 'cmTryCompileExec3488054425/fast' failed
make: *** [cmTryCompileExec3488054425/fast] Error 2
File /home/bryce/NeoBuild/CMakeFiles/CMakeTmp/CheckSymbolExists.c:
/* */
#include <windows.h>
int main(int argc, char** argv)
{
(void)argv;
#ifndef MoveFileExA
return ((int*)(&MoveFileExA))[argc];
#else
(void)argc;
return 0;
#endif
}
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 "cmTryCompileExec4168098869/fast"
/usr/bin/make -f CMakeFiles/cmTryCompileExec4168098869.dir/build.make CMakeFiles/cmTryCompileExec4168098869.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/cmTryCompileExec4168098869.dir/src.c.o
/usr/bin/cc -g -O3 -DHAVE_GCC_PREFERRED_STACK_BOUNDARY -mpreferred-stack-boundary=2 -o CMakeFiles/cmTryCompileExec4168098869.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/cmTryCompileExec4168098869.dir/build.make:57: recipe for target 'CMakeFiles/cmTryCompileExec4168098869.dir/src.c.o' failed
make[1]: Leaving directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
make[1]: *** [CMakeFiles/cmTryCompileExec4168098869.dir/src.c.o] Error 1
Makefile:114: recipe for target 'cmTryCompileExec4168098869/fast' failed
make: *** [cmTryCompileExec4168098869/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 "cmTryCompileExec267396391/fast"
/usr/bin/make -f CMakeFiles/cmTryCompileExec267396391.dir/build.make CMakeFiles/cmTryCompileExec267396391.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/cmTryCompileExec267396391.dir/src.c.o
/usr/bin/cc -g -O3 -DHAVE_ALTIVEC_H_HDR -maltivec -o CMakeFiles/cmTryCompileExec267396391.dir/src.c.o -c /home/bryce/NeoBuild/CMakeFiles/CMakeTmp/src.c
cc: error: unrecognized command line option ‘-maltivec’
CMakeFiles/cmTryCompileExec267396391.dir/build.make:57: recipe for target 'CMakeFiles/cmTryCompileExec267396391.dir/src.c.o' failed
make[1]: Leaving directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
make[1]: *** [CMakeFiles/cmTryCompileExec267396391.dir/src.c.o] Error 1
Makefile:114: recipe for target 'cmTryCompileExec267396391/fast' failed
make: *** [cmTryCompileExec267396391/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 "cmTryCompileExec1984846789/fast"
/usr/bin/make -f CMakeFiles/cmTryCompileExec1984846789.dir/build.make CMakeFiles/cmTryCompileExec1984846789.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/cmTryCompileExec1984846789.dir/src.c.o
/usr/bin/cc -g -O3 -DHAVE_ALTIVEC -maltivec -o CMakeFiles/cmTryCompileExec1984846789.dir/src.c.o -c /home/bryce/NeoBuild/CMakeFiles/CMakeTmp/src.c
cc: error: unrecognized command line option ‘-maltivec’
CMakeFiles/cmTryCompileExec1984846789.dir/build.make:57: recipe for target 'CMakeFiles/cmTryCompileExec1984846789.dir/src.c.o' failed
make[1]: Leaving directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
make[1]: *** [CMakeFiles/cmTryCompileExec1984846789.dir/src.c.o] Error 1
Makefile:114: recipe for target 'cmTryCompileExec1984846789/fast' failed
make: *** [cmTryCompileExec1984846789/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 "cmTryCompileExec1857301922/fast"
/usr/bin/make -f CMakeFiles/cmTryCompileExec1857301922.dir/build.make CMakeFiles/cmTryCompileExec1857301922.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/cmTryCompileExec1857301922.dir/CheckFunctionExists.c.o
/usr/bin/cc -g -O3 -DCHECK_FUNCTION_EXISTS=_strrev -o CMakeFiles/cmTryCompileExec1857301922.dir/CheckFunctionExists.c.o -c /usr/share/cmake-2.8/Modules/CheckFunctionExists.c
Linking C executable cmTryCompileExec1857301922
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec1857301922.dir/link.txt --verbose=1
/usr/bin/cc -g -O3 -DCHECK_FUNCTION_EXISTS=_strrev CMakeFiles/cmTryCompileExec1857301922.dir/CheckFunctionExists.c.o -o cmTryCompileExec1857301922 -rdynamic
CMakeFiles/cmTryCompileExec1857301922.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/cmTryCompileExec1857301922.dir/build.make:88: recipe for target 'cmTryCompileExec1857301922' failed
make[1]: Leaving directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
make[1]: *** [cmTryCompileExec1857301922] Error 1
Makefile:114: recipe for target 'cmTryCompileExec1857301922/fast' failed
make: *** [cmTryCompileExec1857301922/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 "cmTryCompileExec3387239014/fast"
/usr/bin/make -f CMakeFiles/cmTryCompileExec3387239014.dir/build.make CMakeFiles/cmTryCompileExec3387239014.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/cmTryCompileExec3387239014.dir/CheckFunctionExists.c.o
/usr/bin/cc -g -O3 -DCHECK_FUNCTION_EXISTS=_strupr -o CMakeFiles/cmTryCompileExec3387239014.dir/CheckFunctionExists.c.o -c /usr/share/cmake-2.8/Modules/CheckFunctionExists.c
Linking C executable cmTryCompileExec3387239014
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec3387239014.dir/link.txt --verbose=1
/usr/bin/cc -g -O3 -DCHECK_FUNCTION_EXISTS=_strupr CMakeFiles/cmTryCompileExec3387239014.dir/CheckFunctionExists.c.o -o cmTryCompileExec3387239014 -rdynamic
CMakeFiles/cmTryCompileExec3387239014.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/cmTryCompileExec3387239014.dir/build.make:88: recipe for target 'cmTryCompileExec3387239014' failed
make[1]: Leaving directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
make[1]: *** [cmTryCompileExec3387239014] Error 1
Makefile:114: recipe for target 'cmTryCompileExec3387239014/fast' failed
make: *** [cmTryCompileExec3387239014/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 "cmTryCompileExec2096876321/fast"
/usr/bin/make -f CMakeFiles/cmTryCompileExec2096876321.dir/build.make CMakeFiles/cmTryCompileExec2096876321.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/cmTryCompileExec2096876321.dir/CheckFunctionExists.c.o
/usr/bin/cc -g -O3 -DCHECK_FUNCTION_EXISTS=_strlwr -o CMakeFiles/cmTryCompileExec2096876321.dir/CheckFunctionExists.c.o -c /usr/share/cmake-2.8/Modules/CheckFunctionExists.c
Linking C executable cmTryCompileExec2096876321
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec2096876321.dir/link.txt --verbose=1
/usr/bin/cc -g -O3 -DCHECK_FUNCTION_EXISTS=_strlwr CMakeFiles/cmTryCompileExec2096876321.dir/CheckFunctionExists.c.o -o cmTryCompileExec2096876321 -rdynamic
CMakeFiles/cmTryCompileExec2096876321.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/cmTryCompileExec2096876321.dir/build.make:88: recipe for target 'cmTryCompileExec2096876321' failed
make[1]: Leaving directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
make[1]: *** [cmTryCompileExec2096876321] Error 1
Makefile:114: recipe for target 'cmTryCompileExec2096876321/fast' failed
make: *** [cmTryCompileExec2096876321/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 "cmTryCompileExec2865575540/fast"
/usr/bin/make -f CMakeFiles/cmTryCompileExec2865575540.dir/build.make CMakeFiles/cmTryCompileExec2865575540.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/cmTryCompileExec2865575540.dir/CheckFunctionExists.c.o
/usr/bin/cc -g -O3 -DCHECK_FUNCTION_EXISTS=itoa -o CMakeFiles/cmTryCompileExec2865575540.dir/CheckFunctionExists.c.o -c /usr/share/cmake-2.8/Modules/CheckFunctionExists.c
Linking C executable cmTryCompileExec2865575540
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec2865575540.dir/link.txt --verbose=1
/usr/bin/cc -g -O3 -DCHECK_FUNCTION_EXISTS=itoa CMakeFiles/cmTryCompileExec2865575540.dir/CheckFunctionExists.c.o -o cmTryCompileExec2865575540 -rdynamic
CMakeFiles/cmTryCompileExec2865575540.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/cmTryCompileExec2865575540.dir/build.make:88: recipe for target 'cmTryCompileExec2865575540' failed
make[1]: Leaving directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
make[1]: *** [cmTryCompileExec2865575540] Error 1
Makefile:114: recipe for target 'cmTryCompileExec2865575540/fast' failed
make: *** [cmTryCompileExec2865575540/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 "cmTryCompileExec2503578409/fast"
/usr/bin/make -f CMakeFiles/cmTryCompileExec2503578409.dir/build.make CMakeFiles/cmTryCompileExec2503578409.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/cmTryCompileExec2503578409.dir/CheckFunctionExists.c.o
/usr/bin/cc -g -O3 -DCHECK_FUNCTION_EXISTS=_ltoa -o CMakeFiles/cmTryCompileExec2503578409.dir/CheckFunctionExists.c.o -c /usr/share/cmake-2.8/Modules/CheckFunctionExists.c
Linking C executable cmTryCompileExec2503578409
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec2503578409.dir/link.txt --verbose=1
/usr/bin/cc -g -O3 -DCHECK_FUNCTION_EXISTS=_ltoa CMakeFiles/cmTryCompileExec2503578409.dir/CheckFunctionExists.c.o -o cmTryCompileExec2503578409 -rdynamic
CMakeFiles/cmTryCompileExec2503578409.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/cmTryCompileExec2503578409.dir/build.make:88: recipe for target 'cmTryCompileExec2503578409' failed
make[1]: *** [cmTryCompileExec2503578409] Error 1
make[1]: Leaving directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
Makefile:114: recipe for target 'cmTryCompileExec2503578409/fast' failed
make: *** [cmTryCompileExec2503578409/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 "cmTryCompileExec2243588051/fast"
/usr/bin/make -f CMakeFiles/cmTryCompileExec2243588051.dir/build.make CMakeFiles/cmTryCompileExec2243588051.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/cmTryCompileExec2243588051.dir/CheckFunctionExists.c.o
/usr/bin/cc -g -O3 -DCHECK_FUNCTION_EXISTS=_uitoa -o CMakeFiles/cmTryCompileExec2243588051.dir/CheckFunctionExists.c.o -c /usr/share/cmake-2.8/Modules/CheckFunctionExists.c
Linking C executable cmTryCompileExec2243588051
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec2243588051.dir/link.txt --verbose=1
/usr/bin/cc -g -O3 -DCHECK_FUNCTION_EXISTS=_uitoa CMakeFiles/cmTryCompileExec2243588051.dir/CheckFunctionExists.c.o -o cmTryCompileExec2243588051 -rdynamic
CMakeFiles/cmTryCompileExec2243588051.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/cmTryCompileExec2243588051.dir/build.make:88: recipe for target 'cmTryCompileExec2243588051' failed
make[1]: Leaving directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
make[1]: *** [cmTryCompileExec2243588051] Error 1
Makefile:114: recipe for target 'cmTryCompileExec2243588051/fast' failed
make: *** [cmTryCompileExec2243588051/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 "cmTryCompileExec2258488518/fast"
/usr/bin/make -f CMakeFiles/cmTryCompileExec2258488518.dir/build.make CMakeFiles/cmTryCompileExec2258488518.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/cmTryCompileExec2258488518.dir/CheckFunctionExists.c.o
/usr/bin/cc -g -O3 -DCHECK_FUNCTION_EXISTS=_ultoa -o CMakeFiles/cmTryCompileExec2258488518.dir/CheckFunctionExists.c.o -c /usr/share/cmake-2.8/Modules/CheckFunctionExists.c
Linking C executable cmTryCompileExec2258488518
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec2258488518.dir/link.txt --verbose=1
/usr/bin/cc -g -O3 -DCHECK_FUNCTION_EXISTS=_ultoa CMakeFiles/cmTryCompileExec2258488518.dir/CheckFunctionExists.c.o -o cmTryCompileExec2258488518 -rdynamic
CMakeFiles/cmTryCompileExec2258488518.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/cmTryCompileExec2258488518.dir/build.make:88: recipe for target 'cmTryCompileExec2258488518' failed
make[1]: Leaving directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
make[1]: *** [cmTryCompileExec2258488518] Error 1
Makefile:114: recipe for target 'cmTryCompileExec2258488518/fast' failed
make: *** [cmTryCompileExec2258488518/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 "cmTryCompileExec2454870526/fast"
/usr/bin/make -f CMakeFiles/cmTryCompileExec2454870526.dir/build.make CMakeFiles/cmTryCompileExec2454870526.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/cmTryCompileExec2454870526.dir/CheckFunctionExists.c.o
/usr/bin/cc -g -O3 -DCHECK_FUNCTION_EXISTS=_i64toa -o CMakeFiles/cmTryCompileExec2454870526.dir/CheckFunctionExists.c.o -c /usr/share/cmake-2.8/Modules/CheckFunctionExists.c
Linking C executable cmTryCompileExec2454870526
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec2454870526.dir/link.txt --verbose=1
/usr/bin/cc -g -O3 -DCHECK_FUNCTION_EXISTS=_i64toa CMakeFiles/cmTryCompileExec2454870526.dir/CheckFunctionExists.c.o -o cmTryCompileExec2454870526 -rdynamic
CMakeFiles/cmTryCompileExec2454870526.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/cmTryCompileExec2454870526.dir/build.make:88: recipe for target 'cmTryCompileExec2454870526' failed
make[1]: Leaving directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
make[1]: *** [cmTryCompileExec2454870526] Error 1
Makefile:114: recipe for target 'cmTryCompileExec2454870526/fast' failed
make: *** [cmTryCompileExec2454870526/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 "cmTryCompileExec3655672552/fast"
/usr/bin/make -f CMakeFiles/cmTryCompileExec3655672552.dir/build.make CMakeFiles/cmTryCompileExec3655672552.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/cmTryCompileExec3655672552.dir/CheckFunctionExists.c.o
/usr/bin/cc -g -O3 -DCHECK_FUNCTION_EXISTS=_ui64toa -o CMakeFiles/cmTryCompileExec3655672552.dir/CheckFunctionExists.c.o -c /usr/share/cmake-2.8/Modules/CheckFunctionExists.c
Linking C executable cmTryCompileExec3655672552
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec3655672552.dir/link.txt --verbose=1
/usr/bin/cc -g -O3 -DCHECK_FUNCTION_EXISTS=_ui64toa CMakeFiles/cmTryCompileExec3655672552.dir/CheckFunctionExists.c.o -o cmTryCompileExec3655672552 -rdynamic
CMakeFiles/cmTryCompileExec3655672552.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/cmTryCompileExec3655672552.dir/build.make:88: recipe for target 'cmTryCompileExec3655672552' failed
make[1]: Leaving directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
make[1]: *** [cmTryCompileExec3655672552] Error 1
Makefile:114: recipe for target 'cmTryCompileExec3655672552/fast' failed
make: *** [cmTryCompileExec3655672552/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 "cmTryCompileExec3492377447/fast"
/usr/bin/make -f CMakeFiles/cmTryCompileExec3492377447.dir/build.make CMakeFiles/cmTryCompileExec3492377447.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/cmTryCompileExec3492377447.dir/CheckFunctionExists.c.o
/usr/bin/cc -g -O3 -DCHECK_FUNCTION_EXISTS=_strnicmp -o CMakeFiles/cmTryCompileExec3492377447.dir/CheckFunctionExists.c.o -c /usr/share/cmake-2.8/Modules/CheckFunctionExists.c
Linking C executable cmTryCompileExec3492377447
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec3492377447.dir/link.txt --verbose=1
/usr/bin/cc -g -O3 -DCHECK_FUNCTION_EXISTS=_strnicmp CMakeFiles/cmTryCompileExec3492377447.dir/CheckFunctionExists.c.o -o cmTryCompileExec3492377447 -rdynamic
CMakeFiles/cmTryCompileExec3492377447.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/cmTryCompileExec3492377447.dir/build.make:88: recipe for target 'cmTryCompileExec3492377447' failed
make[1]: Leaving directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
make[1]: *** [cmTryCompileExec3492377447] Error 1
Makefile:114: recipe for target 'cmTryCompileExec3492377447/fast' failed
make: *** [cmTryCompileExec3492377447/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 "cmTryCompileExec1800701861/fast"
/usr/bin/make -f CMakeFiles/cmTryCompileExec1800701861.dir/build.make CMakeFiles/cmTryCompileExec1800701861.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/cmTryCompileExec1800701861.dir/CheckFunctionExists.c.o
/usr/bin/cc -g -O3 -DCHECK_FUNCTION_EXISTS=sysctlbyname -o CMakeFiles/cmTryCompileExec1800701861.dir/CheckFunctionExists.c.o -c /usr/share/cmake-2.8/Modules/CheckFunctionExists.c
Linking C executable cmTryCompileExec1800701861
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec1800701861.dir/link.txt --verbose=1
/usr/bin/cc -g -O3 -DCHECK_FUNCTION_EXISTS=sysctlbyname CMakeFiles/cmTryCompileExec1800701861.dir/CheckFunctionExists.c.o -o cmTryCompileExec1800701861 -rdynamic
CMakeFiles/cmTryCompileExec1800701861.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/cmTryCompileExec1800701861.dir/build.make:88: recipe for target 'cmTryCompileExec1800701861' failed
make[1]: Leaving directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
make[1]: *** [cmTryCompileExec1800701861] Error 1
Makefile:114: recipe for target 'cmTryCompileExec1800701861/fast' failed
make: *** [cmTryCompileExec1800701861/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 "cmTryCompileExec3991924861/fast"
/usr/bin/make -f CMakeFiles/cmTryCompileExec3991924861.dir/build.make CMakeFiles/cmTryCompileExec3991924861.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/cmTryCompileExec3991924861.dir/CheckFunctionExists.c.o
/usr/bin/cc -g -O3 -DCHECK_FUNCTION_EXISTS=iconv_open -o CMakeFiles/cmTryCompileExec3991924861.dir/CheckFunctionExists.c.o -c /usr/share/cmake-2.8/Modules/CheckFunctionExists.c
Linking C executable cmTryCompileExec3991924861
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec3991924861.dir/link.txt --verbose=1
/usr/bin/cc -g -O3 -DCHECK_FUNCTION_EXISTS=iconv_open CMakeFiles/cmTryCompileExec3991924861.dir/CheckFunctionExists.c.o -o cmTryCompileExec3991924861 -rdynamic -liconv
/usr/bin/ld: cannot find -liconv
collect2: error: ld returned 1 exit status
CMakeFiles/cmTryCompileExec3991924861.dir/build.make:88: recipe for target 'cmTryCompileExec3991924861' failed
make[1]: Leaving directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
make[1]: *** [cmTryCompileExec3991924861] Error 1
Makefile:114: recipe for target 'cmTryCompileExec3991924861/fast' failed
make: *** [cmTryCompileExec3991924861/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 "cmTryCompileExec2214734084/fast"
/usr/bin/make -f CMakeFiles/cmTryCompileExec2214734084.dir/build.make CMakeFiles/cmTryCompileExec2214734084.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/cmTryCompileExec2214734084.dir/CheckFunctionExists.c.o
/usr/bin/cc -g -O3 -DCHECK_FUNCTION_EXISTS=dlopen -o CMakeFiles/cmTryCompileExec2214734084.dir/CheckFunctionExists.c.o -c /usr/share/cmake-2.8/Modules/CheckFunctionExists.c
Linking C executable cmTryCompileExec2214734084
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec2214734084.dir/link.txt --verbose=1
/usr/bin/cc -g -O3 -DCHECK_FUNCTION_EXISTS=dlopen CMakeFiles/cmTryCompileExec2214734084.dir/CheckFunctionExists.c.o -o cmTryCompileExec2214734084 -rdynamic
CMakeFiles/cmTryCompileExec2214734084.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/cmTryCompileExec2214734084.dir/build.make:88: recipe for target 'cmTryCompileExec2214734084' failed
make[1]: Leaving directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
make[1]: *** [cmTryCompileExec2214734084] Error 1
Makefile:114: recipe for target 'cmTryCompileExec2214734084/fast' failed
make: *** [cmTryCompileExec2214734084/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 "cmTryCompileExec4251626429/fast"
/usr/bin/make -f CMakeFiles/cmTryCompileExec4251626429.dir/build.make CMakeFiles/cmTryCompileExec4251626429.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/cmTryCompileExec4251626429.dir/CheckIncludeFile.c.o
/usr/bin/cc -g -O3 -o CMakeFiles/cmTryCompileExec4251626429.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/cmTryCompileExec4251626429.dir/build.make:57: recipe for target 'CMakeFiles/cmTryCompileExec4251626429.dir/CheckIncludeFile.c.o' failed
make[1]: Leaving directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
make[1]: *** [CMakeFiles/cmTryCompileExec4251626429.dir/CheckIncludeFile.c.o] Error 1
Makefile:114: recipe for target 'cmTryCompileExec4251626429/fast' failed
make: *** [cmTryCompileExec4251626429/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 "cmTryCompileExec3047875017/fast"
/usr/bin/make -f CMakeFiles/cmTryCompileExec3047875017.dir/build.make CMakeFiles/cmTryCompileExec3047875017.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/cmTryCompileExec3047875017.dir/CheckIncludeFile.c.o
/usr/bin/cc -g -O3 -o CMakeFiles/cmTryCompileExec3047875017.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/cmTryCompileExec3047875017.dir/build.make:57: recipe for target 'CMakeFiles/cmTryCompileExec3047875017.dir/CheckIncludeFile.c.o' failed
make[1]: Leaving directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
make[1]: *** [CMakeFiles/cmTryCompileExec3047875017.dir/CheckIncludeFile.c.o] Error 1
Makefile:114: recipe for target 'cmTryCompileExec3047875017/fast' failed
make: *** [cmTryCompileExec3047875017/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 "cmTryCompileExec1530899683/fast"
/usr/bin/make -f CMakeFiles/cmTryCompileExec1530899683.dir/build.make CMakeFiles/cmTryCompileExec1530899683.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/cmTryCompileExec1530899683.dir/src.c.o
/usr/bin/cc -g -O3 -DHAVE_VIDEO_OPENGL_EGL -o CMakeFiles/cmTryCompileExec1530899683.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/cmTryCompileExec1530899683.dir/build.make:57: recipe for target 'CMakeFiles/cmTryCompileExec1530899683.dir/src.c.o' failed
make[1]: Leaving directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
make[1]: *** [CMakeFiles/cmTryCompileExec1530899683.dir/src.c.o] Error 1
Makefile:114: recipe for target 'cmTryCompileExec1530899683/fast' failed
make: *** [cmTryCompileExec1530899683/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 "cmTryCompileExec1351393438/fast"
/usr/bin/make -f CMakeFiles/cmTryCompileExec1351393438.dir/build.make CMakeFiles/cmTryCompileExec1351393438.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/cmTryCompileExec1351393438.dir/src.c.o
/usr/bin/cc -g -O3 -DHAVE_VIDEO_OPENGLES_V1 -o CMakeFiles/cmTryCompileExec1351393438.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/cmTryCompileExec1351393438.dir/build.make:57: recipe for target 'CMakeFiles/cmTryCompileExec1351393438.dir/src.c.o' failed
make[1]: Leaving directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
make[1]: *** [CMakeFiles/cmTryCompileExec1351393438.dir/src.c.o] Error 1
Makefile:114: recipe for target 'cmTryCompileExec1351393438/fast' failed
make: *** [cmTryCompileExec1351393438/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 "cmTryCompileExec2439744790/fast"
/usr/bin/make -f CMakeFiles/cmTryCompileExec2439744790.dir/build.make CMakeFiles/cmTryCompileExec2439744790.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/cmTryCompileExec2439744790.dir/src.c.o
/usr/bin/cc -g -O3 -DHAVE_VIDEO_OPENGLES_V2 -o CMakeFiles/cmTryCompileExec2439744790.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/cmTryCompileExec2439744790.dir/build.make:57: recipe for target 'CMakeFiles/cmTryCompileExec2439744790.dir/src.c.o' failed
make[1]: Leaving directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
make[1]: *** [CMakeFiles/cmTryCompileExec2439744790.dir/src.c.o] Error 1
Makefile:114: recipe for target 'cmTryCompileExec2439744790/fast' failed
make: *** [cmTryCompileExec2439744790/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 "cmTryCompileExec1407139846/fast"
/usr/bin/make -f CMakeFiles/cmTryCompileExec1407139846.dir/build.make CMakeFiles/cmTryCompileExec1407139846.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/cmTryCompileExec1407139846.dir/CheckIncludeFile.c.o
/usr/bin/cc -g -O3 -o CMakeFiles/cmTryCompileExec1407139846.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/cmTryCompileExec1407139846.dir/build.make:57: recipe for target 'CMakeFiles/cmTryCompileExec1407139846.dir/CheckIncludeFile.c.o' failed
make[1]: Leaving directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
make[1]: *** [CMakeFiles/cmTryCompileExec1407139846.dir/CheckIncludeFile.c.o] Error 1
Makefile:114: recipe for target 'cmTryCompileExec1407139846/fast' failed
make: *** [cmTryCompileExec1407139846/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 "cmTryCompileExec306344363/fast"
/usr/bin/make -f CMakeFiles/cmTryCompileExec306344363.dir/build.make CMakeFiles/cmTryCompileExec306344363.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/cmTryCompileExec306344363.dir/CheckFunctionExists.c.o
/usr/bin/cc -g -O3 -DCHECK_FUNCTION_EXISTS=hid_init -o CMakeFiles/cmTryCompileExec306344363.dir/CheckFunctionExists.c.o -c /usr/share/cmake-2.8/Modules/CheckFunctionExists.c
Linking C executable cmTryCompileExec306344363
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec306344363.dir/link.txt --verbose=1
/usr/bin/cc -g -O3 -DCHECK_FUNCTION_EXISTS=hid_init CMakeFiles/cmTryCompileExec306344363.dir/CheckFunctionExists.c.o -o cmTryCompileExec306344363 -rdynamic -lusbhid
/usr/bin/ld: cannot find -lusbhid
collect2: error: ld returned 1 exit status
CMakeFiles/cmTryCompileExec306344363.dir/build.make:88: recipe for target 'cmTryCompileExec306344363' failed
make[1]: Leaving directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
make[1]: *** [cmTryCompileExec306344363] Error 1
Makefile:114: recipe for target 'cmTryCompileExec306344363/fast' failed
make: *** [cmTryCompileExec306344363/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 "cmTryCompileExec3736522801/fast"
/usr/bin/make -f CMakeFiles/cmTryCompileExec3736522801.dir/build.make CMakeFiles/cmTryCompileExec3736522801.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/cmTryCompileExec3736522801.dir/CheckIncludeFile.c.o
/usr/bin/cc -g -O3 -o CMakeFiles/cmTryCompileExec3736522801.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/cmTryCompileExec3736522801.dir/build.make:57: recipe for target 'CMakeFiles/cmTryCompileExec3736522801.dir/CheckIncludeFile.c.o' failed
make[1]: Leaving directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
make[1]: *** [CMakeFiles/cmTryCompileExec3736522801.dir/CheckIncludeFile.c.o] Error 1
Makefile:114: recipe for target 'cmTryCompileExec3736522801/fast' failed
make: *** [cmTryCompileExec3736522801/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 "cmTryCompileExec54215617/fast"
/usr/bin/make -f CMakeFiles/cmTryCompileExec54215617.dir/build.make CMakeFiles/cmTryCompileExec54215617.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/cmTryCompileExec54215617.dir/CheckFunctionExists.c.o
/usr/bin/cc -g -O3 -DCHECK_FUNCTION_EXISTS=hid_init -o CMakeFiles/cmTryCompileExec54215617.dir/CheckFunctionExists.c.o -c /usr/share/cmake-2.8/Modules/CheckFunctionExists.c
Linking C executable cmTryCompileExec54215617
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec54215617.dir/link.txt --verbose=1
/usr/bin/cc -g -O3 -DCHECK_FUNCTION_EXISTS=hid_init CMakeFiles/cmTryCompileExec54215617.dir/CheckFunctionExists.c.o -o cmTryCompileExec54215617 -rdynamic -lusb
CMakeFiles/cmTryCompileExec54215617.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/cmTryCompileExec54215617.dir/build.make:88: recipe for target 'cmTryCompileExec54215617' failed
make[1]: *** [cmTryCompileExec54215617] Error 1
make[1]: Leaving directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
Makefile:114: recipe for target 'cmTryCompileExec54215617/fast' failed
make: *** [cmTryCompileExec54215617/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 "cmTryCompileExec2661479197/fast"
/usr/bin/make -f CMakeFiles/cmTryCompileExec2661479197.dir/build.make CMakeFiles/cmTryCompileExec2661479197.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/cmTryCompileExec2661479197.dir/src.c.o
/usr/bin/cc -g -O3 -DHAVE_USBHID -DHAVE_USB_H -o CMakeFiles/cmTryCompileExec2661479197.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/cmTryCompileExec2661479197.dir/build.make:57: recipe for target 'CMakeFiles/cmTryCompileExec2661479197.dir/src.c.o' failed
make[1]: Leaving directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
make[1]: *** [CMakeFiles/cmTryCompileExec2661479197.dir/src.c.o] Error 1
Makefile:114: recipe for target 'cmTryCompileExec2661479197/fast' failed
make: *** [cmTryCompileExec2661479197/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 "cmTryCompileExec517383415/fast"
/usr/bin/make -f CMakeFiles/cmTryCompileExec517383415.dir/build.make CMakeFiles/cmTryCompileExec517383415.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/cmTryCompileExec517383415.dir/src.c.o
/usr/bin/cc -g -O3 -DHAVE_PTHREAD_NP_H -D_REENTRANT -pthread -o CMakeFiles/cmTryCompileExec517383415.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/cmTryCompileExec517383415.dir/build.make:57: recipe for target 'CMakeFiles/cmTryCompileExec517383415.dir/src.c.o' failed
make[1]: Leaving directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
make[1]: *** [CMakeFiles/cmTryCompileExec517383415.dir/src.c.o] Error 1
Makefile:114: recipe for target 'cmTryCompileExec517383415/fast' failed
make: *** [cmTryCompileExec517383415/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 "cmTryCompileExec990982815/fast"
/usr/bin/make -f CMakeFiles/cmTryCompileExec990982815.dir/build.make CMakeFiles/cmTryCompileExec990982815.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/cmTryCompileExec990982815.dir/CheckFunctionExists.c.o
/usr/bin/cc -g -O3 -DCHECK_FUNCTION_EXISTS=pthread_set_name_np -D_REENTRANT -pthread -o CMakeFiles/cmTryCompileExec990982815.dir/CheckFunctionExists.c.o -c /usr/share/cmake-2.8/Modules/CheckFunctionExists.c
Linking C executable cmTryCompileExec990982815
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec990982815.dir/link.txt --verbose=1
/usr/bin/cc -g -O3 -DCHECK_FUNCTION_EXISTS=pthread_set_name_np -D_REENTRANT -pthread CMakeFiles/cmTryCompileExec990982815.dir/CheckFunctionExists.c.o -o cmTryCompileExec990982815 -rdynamic
CMakeFiles/cmTryCompileExec990982815.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/cmTryCompileExec990982815.dir/build.make:88: recipe for target 'cmTryCompileExec990982815' failed
make[1]: Leaving directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
make[1]: *** [cmTryCompileExec990982815] Error 1
Makefile:114: recipe for target 'cmTryCompileExec990982815/fast' failed
make: *** [cmTryCompileExec990982815/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 "cmTryCompileExec1338105864/fast"
/usr/bin/make -f CMakeFiles/cmTryCompileExec1338105864.dir/build.make CMakeFiles/cmTryCompileExec1338105864.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/cmTryCompileExec1338105864.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/cmTryCompileExec1338105864.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/cmTryCompileExec1338105864.dir/build.make:57: recipe for target 'CMakeFiles/cmTryCompileExec1338105864.dir/CheckIncludeFile.c.o' failed
make[1]: Leaving directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
make[1]: *** [CMakeFiles/cmTryCompileExec1338105864.dir/CheckIncludeFile.c.o] Error 1
Makefile:114: recipe for target 'cmTryCompileExec1338105864/fast' failed
make: *** [cmTryCompileExec1338105864/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 "cmTryCompileExec2771212006/fast"
/usr/bin/make -f CMakeFiles/cmTryCompileExec2771212006.dir/build.make CMakeFiles/cmTryCompileExec2771212006.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/cmTryCompileExec2771212006.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/cmTryCompileExec2771212006.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/cmTryCompileExec2771212006.dir/build.make:57: recipe for target 'CMakeFiles/cmTryCompileExec2771212006.dir/CheckIncludeFile.c.o' failed
make[1]: Leaving directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
make[1]: *** [CMakeFiles/cmTryCompileExec2771212006.dir/CheckIncludeFile.c.o] Error 1
Makefile:114: recipe for target 'cmTryCompileExec2771212006/fast' failed
make: *** [cmTryCompileExec2771212006/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 "cmTryCompileExec2424710260/fast"
/usr/bin/make -f CMakeFiles/cmTryCompileExec2424710260.dir/build.make CMakeFiles/cmTryCompileExec2424710260.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/cmTryCompileExec2424710260.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/cmTryCompileExec2424710260.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/cmTryCompileExec2424710260.dir/build.make:57: recipe for target 'CMakeFiles/cmTryCompileExec2424710260.dir/CheckIncludeFile.c.o' failed
make[1]: Leaving directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
make[1]: *** [CMakeFiles/cmTryCompileExec2424710260.dir/CheckIncludeFile.c.o] Error 1
Makefile:114: recipe for target 'cmTryCompileExec2424710260/fast' failed
make: *** [cmTryCompileExec2424710260/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 "cmTryCompileExec2329879225/fast"
/usr/bin/make -f CMakeFiles/cmTryCompileExec2329879225.dir/build.make CMakeFiles/cmTryCompileExec2329879225.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/cmTryCompileExec2329879225.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/cmTryCompileExec2329879225.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/cmTryCompileExec2329879225.dir/build.make:57: recipe for target 'CMakeFiles/cmTryCompileExec2329879225.dir/CheckIncludeFile.c.o' failed
make[1]: Leaving directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
make[1]: *** [CMakeFiles/cmTryCompileExec2329879225.dir/CheckIncludeFile.c.o] Error 1
Makefile:114: recipe for target 'cmTryCompileExec2329879225/fast' failed
make: *** [cmTryCompileExec2329879225/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 "cmTryCompileExec392376460/fast"
/usr/bin/make -f CMakeFiles/cmTryCompileExec392376460.dir/build.make CMakeFiles/cmTryCompileExec392376460.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/cmTryCompileExec392376460.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/cmTryCompileExec392376460.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/cmTryCompileExec392376460.dir/build.make:57: recipe for target 'CMakeFiles/cmTryCompileExec392376460.dir/CheckIncludeFile.c.o' failed
make[1]: Leaving directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
make[1]: *** [CMakeFiles/cmTryCompileExec392376460.dir/CheckIncludeFile.c.o] Error 1
Makefile:114: recipe for target 'cmTryCompileExec392376460/fast' failed
make: *** [cmTryCompileExec392376460/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 "cmTryCompileExec4051588788/fast"
/usr/bin/make -f CMakeFiles/cmTryCompileExec4051588788.dir/build.make CMakeFiles/cmTryCompileExec4051588788.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/cmTryCompileExec4051588788.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/cmTryCompileExec4051588788.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/cmTryCompileExec4051588788.dir/build.make:57: recipe for target 'CMakeFiles/cmTryCompileExec4051588788.dir/CheckIncludeFile.c.o' failed
make[1]: Leaving directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
make[1]: *** [CMakeFiles/cmTryCompileExec4051588788.dir/CheckIncludeFile.c.o] Error 1
Makefile:114: recipe for target 'cmTryCompileExec4051588788/fast' failed
make: *** [cmTryCompileExec4051588788/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 "cmTryCompileExec2110829235/fast"
/usr/bin/make -f CMakeFiles/cmTryCompileExec2110829235.dir/build.make CMakeFiles/cmTryCompileExec2110829235.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/cmTryCompileExec2110829235.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/cmTryCompileExec2110829235.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/cmTryCompileExec2110829235.dir/build.make:57: recipe for target 'CMakeFiles/cmTryCompileExec2110829235.dir/CheckSymbolExists.c.o' failed
make[1]: *** [CMakeFiles/cmTryCompileExec2110829235.dir/CheckSymbolExists.c.o] Error 1
make[1]: Leaving directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
Makefile:114: recipe for target 'cmTryCompileExec2110829235/fast' failed
make: *** [cmTryCompileExec2110829235/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 "cmTryCompileExec3346502776/fast"
/usr/bin/make -f CMakeFiles/cmTryCompileExec3346502776.dir/build.make CMakeFiles/cmTryCompileExec3346502776.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/cmTryCompileExec3346502776.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/cmTryCompileExec3346502776.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/cmTryCompileExec3346502776.dir/build.make:57: recipe for target 'CMakeFiles/cmTryCompileExec3346502776.dir/CheckSymbolExists.c.o' failed
make[1]: Leaving directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
make[1]: *** [CMakeFiles/cmTryCompileExec3346502776.dir/CheckSymbolExists.c.o] Error 1
Makefile:114: recipe for target 'cmTryCompileExec3346502776/fast' failed
make: *** [cmTryCompileExec3346502776/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 "cmTryCompileExec4286065733/fast"
/usr/bin/make -f CMakeFiles/cmTryCompileExec4286065733.dir/build.make CMakeFiles/cmTryCompileExec4286065733.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/cmTryCompileExec4286065733.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/cmTryCompileExec4286065733.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/cmTryCompileExec4286065733.dir/build.make:57: recipe for target 'CMakeFiles/cmTryCompileExec4286065733.dir/CheckSymbolExists.c.o' failed
make[1]: *** [CMakeFiles/cmTryCompileExec4286065733.dir/CheckSymbolExists.c.o] Error 1
make[1]: Leaving directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
Makefile:114: recipe for target 'cmTryCompileExec4286065733/fast' failed
make: *** [cmTryCompileExec4286065733/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 "cmTryCompileExec2683819479/fast"
/usr/bin/make -f CMakeFiles/cmTryCompileExec2683819479.dir/build.make CMakeFiles/cmTryCompileExec2683819479.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/cmTryCompileExec2683819479.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/cmTryCompileExec2683819479.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/cmTryCompileExec2683819479.dir/build.make:57: recipe for target 'CMakeFiles/cmTryCompileExec2683819479.dir/CheckIncludeFile.c.o' failed
make[1]: Leaving directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
make[1]: *** [CMakeFiles/cmTryCompileExec2683819479.dir/CheckIncludeFile.c.o] Error 1
Makefile:114: recipe for target 'cmTryCompileExec2683819479/fast' failed
make: *** [cmTryCompileExec2683819479/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 "cmTryCompileExec4126480547/fast"
/usr/bin/make -f CMakeFiles/cmTryCompileExec4126480547.dir/build.make CMakeFiles/cmTryCompileExec4126480547.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/cmTryCompileExec4126480547.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/cmTryCompileExec4126480547.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/cmTryCompileExec4126480547.dir/build.make:57: recipe for target 'CMakeFiles/cmTryCompileExec4126480547.dir/CheckIncludeFile.c.o' failed
make[1]: Leaving directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
make[1]: *** [CMakeFiles/cmTryCompileExec4126480547.dir/CheckIncludeFile.c.o] Error 1
Makefile:114: recipe for target 'cmTryCompileExec4126480547/fast' failed
make: *** [cmTryCompileExec4126480547/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 "cmTryCompileExec2109275698/fast"
/usr/bin/make -f CMakeFiles/cmTryCompileExec2109275698.dir/build.make CMakeFiles/cmTryCompileExec2109275698.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/cmTryCompileExec2109275698.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/cmTryCompileExec2109275698.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/cmTryCompileExec2109275698.dir/build.make:57: recipe for target 'CMakeFiles/cmTryCompileExec2109275698.dir/CheckIncludeFiles.c.o' failed
make[1]: Leaving directory '/home/bryce/NeoBuild/CMakeFiles/CMakeTmp'
make[1]: *** [CMakeFiles/cmTryCompileExec2109275698.dir/CheckIncludeFiles.c.o] Error 1
Makefile:114: recipe for target 'cmTryCompileExec2109275698/fast' failed
make: *** [cmTryCompileExec2109275698/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