Skip to content

Instantly share code, notes, and snippets.

@brycehenley
Created November 16, 2014 16:19
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/511bddde15fdeed070ca to your computer and use it in GitHub Desktop.
Save brycehenley/511bddde15fdeed070ca to your computer and use it in GitHub Desktop.
Determining if the system is big endian passed with the following output:
Change Dir: C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp
Run Build Command:"C:/MinGW/bin/mingw32-make.exe" "cmTryCompileExec3350088566/fast"
C:/MinGW/bin/mingw32-make.exe -f CMakeFiles\cmTryCompileExec3350088566.dir\build.make CMakeFiles/cmTryCompileExec3350088566.dir/build
mingw32-make.exe[1]: Entering directory 'C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp'
"C:\Program Files (x86)\CMake\bin\cmake.exe" -E cmake_progress_report C:\Users\Bryce.WIN-MA226DOSFHD\Desktop\Skyland\NeoBuild\CMakeFiles\CMakeTmp\CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec3350088566.dir/TestEndianess.c.obj
C:\MinGW\bin\gcc.exe -O2 -DWIN32 -I"/Include" -o CMakeFiles\cmTryCompileExec3350088566.dir\TestEndianess.c.obj -c C:\Users\Bryce.WIN-MA226DOSFHD\Desktop\Skyland\NeoBuild\CMakeFiles\CMakeTmp\TestEndianess.c
Linking C executable cmTryCompileExec3350088566.exe
"C:\Program Files (x86)\CMake\bin\cmake.exe" -E cmake_link_script CMakeFiles\cmTryCompileExec3350088566.dir\link.txt --verbose=1
"C:\Program Files (x86)\CMake\bin\cmake.exe" -E remove -f CMakeFiles\cmTryCompileExec3350088566.dir/objects.a
C:\MinGW\bin\ar.exe cr CMakeFiles\cmTryCompileExec3350088566.dir/objects.a @CMakeFiles\cmTryCompileExec3350088566.dir\objects1.rsp
C:\MinGW\bin\gcc.exe -O2 -DWIN32 -I"/Include" -Wl,--whole-archive CMakeFiles\cmTryCompileExec3350088566.dir/objects.a -Wl,--no-whole-archive -o cmTryCompileExec3350088566.exe -Wl,--out-implib,libcmTryCompileExec3350088566.dll.a -Wl,--major-image-version,0,--minor-image-version,0 -lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32
mingw32-make.exe[1]: Leaving directory 'C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/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 dlsym exists failed with the following output:
Change Dir: C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp
Run Build Command:"C:/MinGW/bin/mingw32-make.exe" "cmTryCompileExec2758121363/fast"
C:/MinGW/bin/mingw32-make.exe -f CMakeFiles\cmTryCompileExec2758121363.dir\build.make CMakeFiles/cmTryCompileExec2758121363.dir/build
mingw32-make.exe[1]: Entering directory 'C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp'
"C:\Program Files (x86)\CMake\bin\cmake.exe" -E cmake_progress_report C:\Users\Bryce.WIN-MA226DOSFHD\Desktop\Skyland\NeoBuild\CMakeFiles\CMakeTmp\CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec2758121363.dir/CheckFunctionExists.c.obj
C:\MinGW\bin\gcc.exe -O2 -DWIN32 -I"/Include" -DCHECK_FUNCTION_EXISTS=dlsym -o CMakeFiles\cmTryCompileExec2758121363.dir\CheckFunctionExists.c.obj -c "C:\Program Files (x86)\CMake\share\cmake-3.0\Modules\CheckFunctionExists.c"
Linking C executable cmTryCompileExec2758121363.exe
"C:\Program Files (x86)\CMake\bin\cmake.exe" -E cmake_link_script CMakeFiles\cmTryCompileExec2758121363.dir\link.txt --verbose=1
"C:\Program Files (x86)\CMake\bin\cmake.exe" -E remove -f CMakeFiles\cmTryCompileExec2758121363.dir/objects.a
C:\MinGW\bin\ar.exe cr CMakeFiles\cmTryCompileExec2758121363.dir/objects.a @CMakeFiles\cmTryCompileExec2758121363.dir\objects1.rsp
C:\MinGW\bin\gcc.exe -O2 -DWIN32 -I"/Include" -DCHECK_FUNCTION_EXISTS=dlsym -Wl,--whole-archive CMakeFiles\cmTryCompileExec2758121363.dir/objects.a -Wl,--no-whole-archive -o cmTryCompileExec2758121363.exe -Wl,--out-implib,libcmTryCompileExec2758121363.dll.a -Wl,--major-image-version,0,--minor-image-version,0 -lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32
CMakeFiles\cmTryCompileExec2758121363.dir/objects.a(CheckFunctionExists.c.obj):CheckFunctionExists.c:(.text.startup+0xc): undefined reference to `dlsym'
collect2.exe: error: ld returned 1 exit status
CMakeFiles\cmTryCompileExec2758121363.dir\build.make:88: recipe for target 'cmTryCompileExec2758121363.exe' failed
mingw32-make.exe[1]: *** [cmTryCompileExec2758121363.exe] Error 1
mingw32-make.exe[1]: Leaving directory 'C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp'
Makefile:117: recipe for target 'cmTryCompileExec2758121363/fast' failed
mingw32-make.exe: *** [cmTryCompileExec2758121363/fast] Error 2
Determining if the function png_get_valid exists failed with the following output:
Change Dir: C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp
Run Build Command:"C:/MinGW/bin/mingw32-make.exe" "cmTryCompileExec274454384/fast"
C:/MinGW/bin/mingw32-make.exe -f CMakeFiles\cmTryCompileExec274454384.dir\build.make CMakeFiles/cmTryCompileExec274454384.dir/build
mingw32-make.exe[1]: Entering directory 'C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp'
"C:\Program Files (x86)\CMake\bin\cmake.exe" -E cmake_progress_report C:\Users\Bryce.WIN-MA226DOSFHD\Desktop\Skyland\NeoBuild\CMakeFiles\CMakeTmp\CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec274454384.dir/CheckFunctionExists.c.obj
C:\MinGW\bin\gcc.exe -O2 -DWIN32 -I"/Include" -DCHECK_FUNCTION_EXISTS=png_get_valid -o CMakeFiles\cmTryCompileExec274454384.dir\CheckFunctionExists.c.obj -c "C:\Program Files (x86)\CMake\share\cmake-3.0\Modules\CheckFunctionExists.c"
Linking C executable cmTryCompileExec274454384.exe
"C:\Program Files (x86)\CMake\bin\cmake.exe" -E cmake_link_script CMakeFiles\cmTryCompileExec274454384.dir\link.txt --verbose=1
"C:\Program Files (x86)\CMake\bin\cmake.exe" -E remove -f CMakeFiles\cmTryCompileExec274454384.dir/objects.a
C:\MinGW\bin\ar.exe cr CMakeFiles\cmTryCompileExec274454384.dir/objects.a @CMakeFiles\cmTryCompileExec274454384.dir\objects1.rsp
C:\MinGW\bin\gcc.exe -O2 -DWIN32 -I"/Include" -DCHECK_FUNCTION_EXISTS=png_get_valid -Wl,--whole-archive CMakeFiles\cmTryCompileExec274454384.dir/objects.a -Wl,--no-whole-archive -o cmTryCompileExec274454384.exe -Wl,--out-implib,libcmTryCompileExec274454384.dll.a -Wl,--major-image-version,0,--minor-image-version,0 -lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32
CMakeFiles\cmTryCompileExec274454384.dir/objects.a(CheckFunctionExists.c.obj):CheckFunctionExists.c:(.text.startup+0xc): undefined reference to `png_get_valid'
collect2.exe: error: ld returned 1 exit status
CMakeFiles\cmTryCompileExec274454384.dir\build.make:88: recipe for target 'cmTryCompileExec274454384.exe' failed
mingw32-make.exe[1]: *** [cmTryCompileExec274454384.exe] Error 1
mingw32-make.exe[1]: Leaving directory 'C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp'
Makefile:117: recipe for target 'cmTryCompileExec274454384/fast' failed
mingw32-make.exe: *** [cmTryCompileExec274454384/fast] Error 2
Determining if the function png_set_tRNS_to_alpha exists failed with the following output:
Change Dir: C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp
Run Build Command:"C:/MinGW/bin/mingw32-make.exe" "cmTryCompileExec65155883/fast"
C:/MinGW/bin/mingw32-make.exe -f CMakeFiles\cmTryCompileExec65155883.dir\build.make CMakeFiles/cmTryCompileExec65155883.dir/build
mingw32-make.exe[1]: Entering directory 'C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp'
"C:\Program Files (x86)\CMake\bin\cmake.exe" -E cmake_progress_report C:\Users\Bryce.WIN-MA226DOSFHD\Desktop\Skyland\NeoBuild\CMakeFiles\CMakeTmp\CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec65155883.dir/CheckFunctionExists.c.obj
C:\MinGW\bin\gcc.exe -O2 -DWIN32 -I"/Include" -DCHECK_FUNCTION_EXISTS=png_set_tRNS_to_alpha -o CMakeFiles\cmTryCompileExec65155883.dir\CheckFunctionExists.c.obj -c "C:\Program Files (x86)\CMake\share\cmake-3.0\Modules\CheckFunctionExists.c"
Linking C executable cmTryCompileExec65155883.exe
"C:\Program Files (x86)\CMake\bin\cmake.exe" -E cmake_link_script CMakeFiles\cmTryCompileExec65155883.dir\link.txt --verbose=1
"C:\Program Files (x86)\CMake\bin\cmake.exe" -E remove -f CMakeFiles\cmTryCompileExec65155883.dir/objects.a
C:\MinGW\bin\ar.exe cr CMakeFiles\cmTryCompileExec65155883.dir/objects.a @CMakeFiles\cmTryCompileExec65155883.dir\objects1.rsp
C:\MinGW\bin\gcc.exe -O2 -DWIN32 -I"/Include" -DCHECK_FUNCTION_EXISTS=png_set_tRNS_to_alpha -Wl,--whole-archive CMakeFiles\cmTryCompileExec65155883.dir/objects.a -Wl,--no-whole-archive -o cmTryCompileExec65155883.exe -Wl,--out-implib,libcmTryCompileExec65155883.dll.a -Wl,--major-image-version,0,--minor-image-version,0 -lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32
CMakeFiles\cmTryCompileExec65155883.dir/objects.a(CheckFunctionExists.c.obj):CheckFunctionExists.c:(.text.startup+0xc): undefined reference to `png_set_tRNS_to_alpha'
collect2.exe: error: ld returned 1 exit status
CMakeFiles\cmTryCompileExec65155883.dir\build.make:88: recipe for target 'cmTryCompileExec65155883.exe' failed
mingw32-make.exe[1]: *** [cmTryCompileExec65155883.exe] Error 1
mingw32-make.exe[1]: Leaving directory 'C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp'
Makefile:117: recipe for target 'cmTryCompileExec65155883/fast' failed
mingw32-make.exe: *** [cmTryCompileExec65155883/fast] Error 2
Determining if the function scandir exists failed with the following output:
Change Dir: C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp
Run Build Command:"C:/MinGW/bin/mingw32-make.exe" "cmTryCompileExec106329364/fast"
C:/MinGW/bin/mingw32-make.exe -f CMakeFiles\cmTryCompileExec106329364.dir\build.make CMakeFiles/cmTryCompileExec106329364.dir/build
mingw32-make.exe[1]: Entering directory 'C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp'
"C:\Program Files (x86)\CMake\bin\cmake.exe" -E cmake_progress_report C:\Users\Bryce.WIN-MA226DOSFHD\Desktop\Skyland\NeoBuild\CMakeFiles\CMakeTmp\CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec106329364.dir/CheckFunctionExists.c.obj
C:\MinGW\bin\gcc.exe -O2 -DWIN32 -I"/Include" -DCHECK_FUNCTION_EXISTS=scandir -o CMakeFiles\cmTryCompileExec106329364.dir\CheckFunctionExists.c.obj -c "C:\Program Files (x86)\CMake\share\cmake-3.0\Modules\CheckFunctionExists.c"
Linking C executable cmTryCompileExec106329364.exe
"C:\Program Files (x86)\CMake\bin\cmake.exe" -E cmake_link_script CMakeFiles\cmTryCompileExec106329364.dir\link.txt --verbose=1
"C:\Program Files (x86)\CMake\bin\cmake.exe" -E remove -f CMakeFiles\cmTryCompileExec106329364.dir/objects.a
C:\MinGW\bin\ar.exe cr CMakeFiles\cmTryCompileExec106329364.dir/objects.a @CMakeFiles\cmTryCompileExec106329364.dir\objects1.rsp
C:\MinGW\bin\gcc.exe -O2 -DWIN32 -I"/Include" -DCHECK_FUNCTION_EXISTS=scandir -Wl,--whole-archive CMakeFiles\cmTryCompileExec106329364.dir/objects.a -Wl,--no-whole-archive -o cmTryCompileExec106329364.exe -Wl,--out-implib,libcmTryCompileExec106329364.dll.a -Wl,--major-image-version,0,--minor-image-version,0 -lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32
CMakeFiles\cmTryCompileExec106329364.dir/objects.a(CheckFunctionExists.c.obj):CheckFunctionExists.c:(.text.startup+0xc): undefined reference to `scandir'
collect2.exe: error: ld returned 1 exit status
CMakeFiles\cmTryCompileExec106329364.dir\build.make:88: recipe for target 'cmTryCompileExec106329364.exe' failed
mingw32-make.exe[1]: *** [cmTryCompileExec106329364.exe] Error 1
mingw32-make.exe[1]: Leaving directory 'C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp'
Makefile:117: recipe for target 'cmTryCompileExec106329364/fast' failed
mingw32-make.exe: *** [cmTryCompileExec106329364/fast] Error 2
Determining if the function strlcat exists failed with the following output:
Change Dir: C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp
Run Build Command:"C:/MinGW/bin/mingw32-make.exe" "cmTryCompileExec3483740416/fast"
C:/MinGW/bin/mingw32-make.exe -f CMakeFiles\cmTryCompileExec3483740416.dir\build.make CMakeFiles/cmTryCompileExec3483740416.dir/build
mingw32-make.exe[1]: Entering directory 'C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp'
"C:\Program Files (x86)\CMake\bin\cmake.exe" -E cmake_progress_report C:\Users\Bryce.WIN-MA226DOSFHD\Desktop\Skyland\NeoBuild\CMakeFiles\CMakeTmp\CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec3483740416.dir/CheckFunctionExists.c.obj
C:\MinGW\bin\gcc.exe -O2 -DWIN32 -I"/Include" -DCHECK_FUNCTION_EXISTS=strlcat -o CMakeFiles\cmTryCompileExec3483740416.dir\CheckFunctionExists.c.obj -c "C:\Program Files (x86)\CMake\share\cmake-3.0\Modules\CheckFunctionExists.c"
Linking C executable cmTryCompileExec3483740416.exe
"C:\Program Files (x86)\CMake\bin\cmake.exe" -E cmake_link_script CMakeFiles\cmTryCompileExec3483740416.dir\link.txt --verbose=1
"C:\Program Files (x86)\CMake\bin\cmake.exe" -E remove -f CMakeFiles\cmTryCompileExec3483740416.dir/objects.a
C:\MinGW\bin\ar.exe cr CMakeFiles\cmTryCompileExec3483740416.dir/objects.a @CMakeFiles\cmTryCompileExec3483740416.dir\objects1.rsp
C:\MinGW\bin\gcc.exe -O2 -DWIN32 -I"/Include" -DCHECK_FUNCTION_EXISTS=strlcat -Wl,--whole-archive CMakeFiles\cmTryCompileExec3483740416.dir/objects.a -Wl,--no-whole-archive -o cmTryCompileExec3483740416.exe -Wl,--out-implib,libcmTryCompileExec3483740416.dll.a -Wl,--major-image-version,0,--minor-image-version,0 -lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32
CMakeFiles\cmTryCompileExec3483740416.dir/objects.a(CheckFunctionExists.c.obj):CheckFunctionExists.c:(.text.startup+0xc): undefined reference to `strlcat'
collect2.exe: error: ld returned 1 exit status
CMakeFiles\cmTryCompileExec3483740416.dir\build.make:88: recipe for target 'cmTryCompileExec3483740416.exe' failed
mingw32-make.exe[1]: *** [cmTryCompileExec3483740416.exe] Error 1
mingw32-make.exe[1]: Leaving directory 'C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp'
Makefile:117: recipe for target 'cmTryCompileExec3483740416/fast' failed
mingw32-make.exe: *** [cmTryCompileExec3483740416/fast] Error 2
Determining if the function strlcpy exists failed with the following output:
Change Dir: C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp
Run Build Command:"C:/MinGW/bin/mingw32-make.exe" "cmTryCompileExec3059884399/fast"
C:/MinGW/bin/mingw32-make.exe -f CMakeFiles\cmTryCompileExec3059884399.dir\build.make CMakeFiles/cmTryCompileExec3059884399.dir/build
mingw32-make.exe[1]: Entering directory 'C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp'
"C:\Program Files (x86)\CMake\bin\cmake.exe" -E cmake_progress_report C:\Users\Bryce.WIN-MA226DOSFHD\Desktop\Skyland\NeoBuild\CMakeFiles\CMakeTmp\CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec3059884399.dir/CheckFunctionExists.c.obj
C:\MinGW\bin\gcc.exe -O2 -DWIN32 -I"/Include" -DCHECK_FUNCTION_EXISTS=strlcpy -o CMakeFiles\cmTryCompileExec3059884399.dir\CheckFunctionExists.c.obj -c "C:\Program Files (x86)\CMake\share\cmake-3.0\Modules\CheckFunctionExists.c"
Linking C executable cmTryCompileExec3059884399.exe
"C:\Program Files (x86)\CMake\bin\cmake.exe" -E cmake_link_script CMakeFiles\cmTryCompileExec3059884399.dir\link.txt --verbose=1
"C:\Program Files (x86)\CMake\bin\cmake.exe" -E remove -f CMakeFiles\cmTryCompileExec3059884399.dir/objects.a
C:\MinGW\bin\ar.exe cr CMakeFiles\cmTryCompileExec3059884399.dir/objects.a @CMakeFiles\cmTryCompileExec3059884399.dir\objects1.rsp
C:\MinGW\bin\gcc.exe -O2 -DWIN32 -I"/Include" -DCHECK_FUNCTION_EXISTS=strlcpy -Wl,--whole-archive CMakeFiles\cmTryCompileExec3059884399.dir/objects.a -Wl,--no-whole-archive -o cmTryCompileExec3059884399.exe -Wl,--out-implib,libcmTryCompileExec3059884399.dll.a -Wl,--major-image-version,0,--minor-image-version,0 -lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32
CMakeFiles\cmTryCompileExec3059884399.dir/objects.a(CheckFunctionExists.c.obj):CheckFunctionExists.c:(.text.startup+0xc): undefined reference to `strlcpy'
collect2.exe: error: ld returned 1 exit status
CMakeFiles\cmTryCompileExec3059884399.dir\build.make:88: recipe for target 'cmTryCompileExec3059884399.exe' failed
mingw32-make.exe[1]: *** [cmTryCompileExec3059884399.exe] Error 1
mingw32-make.exe[1]: Leaving directory 'C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp'
Makefile:117: recipe for target 'cmTryCompileExec3059884399/fast' failed
mingw32-make.exe: *** [cmTryCompileExec3059884399/fast] Error 2
Determining if the function glXGetProcAddressARB exists failed with the following output:
Change Dir: C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp
Run Build Command:"C:/MinGW/bin/mingw32-make.exe" "cmTryCompileExec235839821/fast"
C:/MinGW/bin/mingw32-make.exe -f CMakeFiles\cmTryCompileExec235839821.dir\build.make CMakeFiles/cmTryCompileExec235839821.dir/build
mingw32-make.exe[1]: Entering directory 'C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp'
"C:\Program Files (x86)\CMake\bin\cmake.exe" -E cmake_progress_report C:\Users\Bryce.WIN-MA226DOSFHD\Desktop\Skyland\NeoBuild\CMakeFiles\CMakeTmp\CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec235839821.dir/CheckFunctionExists.c.obj
C:\MinGW\bin\gcc.exe -O2 -DWIN32 -I"/Include" -DCHECK_FUNCTION_EXISTS=glXGetProcAddressARB @CMakeFiles/cmTryCompileExec235839821.dir/includes_C.rsp -o CMakeFiles\cmTryCompileExec235839821.dir\CheckFunctionExists.c.obj -c "C:\Program Files (x86)\CMake\share\cmake-3.0\Modules\CheckFunctionExists.c"
Linking C executable cmTryCompileExec235839821.exe
"C:\Program Files (x86)\CMake\bin\cmake.exe" -E cmake_link_script CMakeFiles\cmTryCompileExec235839821.dir\link.txt --verbose=1
"C:\Program Files (x86)\CMake\bin\cmake.exe" -E remove -f CMakeFiles\cmTryCompileExec235839821.dir/objects.a
C:\MinGW\bin\ar.exe cr CMakeFiles\cmTryCompileExec235839821.dir/objects.a @CMakeFiles\cmTryCompileExec235839821.dir\objects1.rsp
C:\MinGW\bin\gcc.exe -O2 -DWIN32 -I"/Include" -DCHECK_FUNCTION_EXISTS=glXGetProcAddressARB -Wl,--whole-archive CMakeFiles\cmTryCompileExec235839821.dir/objects.a -Wl,--no-whole-archive -o cmTryCompileExec235839821.exe -Wl,--out-implib,libcmTryCompileExec235839821.dll.a -Wl,--major-image-version,0,--minor-image-version,0 -lGLU -lGL -lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32
c:/mingw/bin/../lib/gcc/mingw32/4.8.1/../../../../mingw32/bin/ld.exe: cannot find -lGLU
c:/mingw/bin/../lib/gcc/mingw32/4.8.1/../../../../mingw32/bin/ld.exe: cannot find -lGL
collect2.exe: error: ld returned 1 exit status
CMakeFiles\cmTryCompileExec235839821.dir\build.make:89: recipe for target 'cmTryCompileExec235839821.exe' failed
mingw32-make.exe[1]: *** [cmTryCompileExec235839821.exe] Error 1
mingw32-make.exe[1]: Leaving directory 'C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp'
Makefile:117: recipe for target 'cmTryCompileExec235839821/fast' failed
mingw32-make.exe: *** [cmTryCompileExec235839821/fast] Error 2
Determining if files pthread.h exist failed with the following output:
Change Dir: C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp
Run Build Command:"C:/MinGW/bin/mingw32-make.exe" "cmTryCompileExec2200059700/fast"
C:/MinGW/bin/mingw32-make.exe -f CMakeFiles\cmTryCompileExec2200059700.dir\build.make CMakeFiles/cmTryCompileExec2200059700.dir/build
mingw32-make.exe[1]: Entering directory 'C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp'
"C:\Program Files (x86)\CMake\bin\cmake.exe" -E cmake_progress_report C:\Users\Bryce.WIN-MA226DOSFHD\Desktop\Skyland\NeoBuild\CMakeFiles\CMakeTmp\CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec2200059700.dir/CheckIncludeFiles.c.obj
C:\MinGW\bin\gcc.exe -O2 -DWIN32 -I"/Include" @CMakeFiles/cmTryCompileExec2200059700.dir/includes_C.rsp -o CMakeFiles\cmTryCompileExec2200059700.dir\CheckIncludeFiles.c.obj -c C:\Users\Bryce.WIN-MA226DOSFHD\Desktop\Skyland\NeoBuild\CMakeFiles\CMakeTmp\CheckIncludeFiles.c
C:\Users\Bryce.WIN-MA226DOSFHD\Desktop\Skyland\NeoBuild\CMakeFiles\CMakeTmp\CheckIncludeFiles.c:2:21: fatal error: pthread.h: No such file or directory
#include <pthread.h>
^
compilation terminated.
CMakeFiles\cmTryCompileExec2200059700.dir\build.make:57: recipe for target 'CMakeFiles/cmTryCompileExec2200059700.dir/CheckIncludeFiles.c.obj' failed
mingw32-make.exe[1]: *** [CMakeFiles/cmTryCompileExec2200059700.dir/CheckIncludeFiles.c.obj] Error 1
mingw32-make.exe[1]: Leaving directory 'C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp'
Makefile:117: recipe for target 'cmTryCompileExec2200059700/fast' failed
mingw32-make.exe: *** [cmTryCompileExec2200059700/fast] Error 2
Source:
/* */
#include <pthread.h>
int main(){return 0;}
Performing C SOURCE FILE Test HAVE_ALTIVEC_H_HDR failed with the following output:
Change Dir: C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp
Run Build Command:"C:/MinGW/bin/mingw32-make.exe" "cmTryCompileExec577637516/fast"
C:/MinGW/bin/mingw32-make.exe -f CMakeFiles\cmTryCompileExec577637516.dir\build.make CMakeFiles/cmTryCompileExec577637516.dir/build
mingw32-make.exe[1]: Entering directory 'C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp'
"C:\Program Files (x86)\CMake\bin\cmake.exe" -E cmake_progress_report C:\Users\Bryce.WIN-MA226DOSFHD\Desktop\Skyland\NeoBuild\CMakeFiles\CMakeTmp\CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec577637516.dir/src.c.obj
C:\MinGW\bin\gcc.exe -g -O3 -DHAVE_ALTIVEC_H_HDR -maltivec -o CMakeFiles\cmTryCompileExec577637516.dir\src.c.obj -c C:\Users\Bryce.WIN-MA226DOSFHD\Desktop\Skyland\NeoBuild\CMakeFiles\CMakeTmp\src.c
gcc.exe: error: unrecognized command line option '-maltivec'
CMakeFiles\cmTryCompileExec577637516.dir\build.make:56: recipe for target 'CMakeFiles/cmTryCompileExec577637516.dir/src.c.obj' failed
mingw32-make.exe[1]: *** [CMakeFiles/cmTryCompileExec577637516.dir/src.c.obj] Error 1
mingw32-make.exe[1]: Leaving directory 'C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp'
Makefile:117: recipe for target 'cmTryCompileExec577637516/fast' failed
mingw32-make.exe: *** [cmTryCompileExec577637516/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: C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp
Run Build Command:"C:/MinGW/bin/mingw32-make.exe" "cmTryCompileExec2375223479/fast"
C:/MinGW/bin/mingw32-make.exe -f CMakeFiles\cmTryCompileExec2375223479.dir\build.make CMakeFiles/cmTryCompileExec2375223479.dir/build
mingw32-make.exe[1]: Entering directory 'C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp'
"C:\Program Files (x86)\CMake\bin\cmake.exe" -E cmake_progress_report C:\Users\Bryce.WIN-MA226DOSFHD\Desktop\Skyland\NeoBuild\CMakeFiles\CMakeTmp\CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec2375223479.dir/src.c.obj
C:\MinGW\bin\gcc.exe -g -O3 -DHAVE_ALTIVEC -maltivec -o CMakeFiles\cmTryCompileExec2375223479.dir\src.c.obj -c C:\Users\Bryce.WIN-MA226DOSFHD\Desktop\Skyland\NeoBuild\CMakeFiles\CMakeTmp\src.c
gcc.exe: error: unrecognized command line option '-maltivec'
CMakeFiles\cmTryCompileExec2375223479.dir\build.make:56: recipe for target 'CMakeFiles/cmTryCompileExec2375223479.dir/src.c.obj' failed
mingw32-make.exe[1]: *** [CMakeFiles/cmTryCompileExec2375223479.dir/src.c.obj] Error 1
mingw32-make.exe[1]: Leaving directory 'C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp'
Makefile:117: recipe for target 'cmTryCompileExec2375223479/fast' failed
mingw32-make.exe: *** [cmTryCompileExec2375223479/fast] Error 2
Source file was:
vector unsigned int vzero() {
return vec_splat_u32(0);
}
int main(int argc, char **argv) { }
Determining if files dlfcn.h;stdint.h;stddef.h;inttypes.h;stdlib.h;strings.h;string.h;float.h exist failed with the following output:
Change Dir: C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp
Run Build Command:"C:/MinGW/bin/mingw32-make.exe" "cmTryCompileExec1860701812/fast"
C:/MinGW/bin/mingw32-make.exe -f CMakeFiles\cmTryCompileExec1860701812.dir\build.make CMakeFiles/cmTryCompileExec1860701812.dir/build
mingw32-make.exe[1]: Entering directory 'C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp'
"C:\Program Files (x86)\CMake\bin\cmake.exe" -E cmake_progress_report C:\Users\Bryce.WIN-MA226DOSFHD\Desktop\Skyland\NeoBuild\CMakeFiles\CMakeTmp\CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec1860701812.dir/CheckIncludeFiles.c.obj
C:\MinGW\bin\gcc.exe -g -O3 -o CMakeFiles\cmTryCompileExec1860701812.dir\CheckIncludeFiles.c.obj -c C:\Users\Bryce.WIN-MA226DOSFHD\Desktop\Skyland\NeoBuild\CMakeFiles\CMakeTmp\CheckIncludeFiles.c
C:\Users\Bryce.WIN-MA226DOSFHD\Desktop\Skyland\NeoBuild\CMakeFiles\CMakeTmp\CheckIncludeFiles.c:2:19: fatal error: dlfcn.h: No such file or directory
#include <dlfcn.h>
^
compilation terminated.
CMakeFiles\cmTryCompileExec1860701812.dir\build.make:56: recipe for target 'CMakeFiles/cmTryCompileExec1860701812.dir/CheckIncludeFiles.c.obj' failed
mingw32-make.exe[1]: *** [CMakeFiles/cmTryCompileExec1860701812.dir/CheckIncludeFiles.c.obj] Error 1
mingw32-make.exe[1]: Leaving directory 'C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp'
Makefile:117: recipe for target 'cmTryCompileExec1860701812/fast' failed
mingw32-make.exe: *** [cmTryCompileExec1860701812/fast] Error 2
Source:
/* */
#include <dlfcn.h>
#include <stdint.h>
#include <stddef.h>
#include <inttypes.h>
#include <stdlib.h>
#include <strings.h>
#include <string.h>
#include <float.h>
int main(){return 0;}
Performing C SOURCE FILE Test HAVE_MPROTECT failed with the following output:
Change Dir: C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp
Run Build Command:"C:/MinGW/bin/mingw32-make.exe" "cmTryCompileExec849370448/fast"
C:/MinGW/bin/mingw32-make.exe -f CMakeFiles\cmTryCompileExec849370448.dir\build.make CMakeFiles/cmTryCompileExec849370448.dir/build
mingw32-make.exe[1]: Entering directory 'C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp'
"C:\Program Files (x86)\CMake\bin\cmake.exe" -E cmake_progress_report C:\Users\Bryce.WIN-MA226DOSFHD\Desktop\Skyland\NeoBuild\CMakeFiles\CMakeTmp\CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec849370448.dir/src.c.obj
C:\MinGW\bin\gcc.exe -g -O3 -DHAVE_MPROTECT -o CMakeFiles\cmTryCompileExec849370448.dir\src.c.obj -c C:\Users\Bryce.WIN-MA226DOSFHD\Desktop\Skyland\NeoBuild\CMakeFiles\CMakeTmp\src.c
C:\Users\Bryce.WIN-MA226DOSFHD\Desktop\Skyland\NeoBuild\CMakeFiles\CMakeTmp\src.c:2:51: fatal error: sys/mman.h: No such file or directory
#include <sys/mman.h>
^
compilation terminated.
CMakeFiles\cmTryCompileExec849370448.dir\build.make:56: recipe for target 'CMakeFiles/cmTryCompileExec849370448.dir/src.c.obj' failed
mingw32-make.exe[1]: *** [CMakeFiles/cmTryCompileExec849370448.dir/src.c.obj] Error 1
mingw32-make.exe[1]: Leaving directory 'C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp'
Makefile:117: recipe for target 'cmTryCompileExec849370448/fast' failed
mingw32-make.exe: *** [cmTryCompileExec849370448/fast] Error 2
Source file was:
#include <sys/types.h>
#include <sys/mman.h>
int main() { }
Determining if the function setenv exists failed with the following output:
Change Dir: C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp
Run Build Command:"C:/MinGW/bin/mingw32-make.exe" "cmTryCompileExec4110770062/fast"
C:/MinGW/bin/mingw32-make.exe -f CMakeFiles\cmTryCompileExec4110770062.dir\build.make CMakeFiles/cmTryCompileExec4110770062.dir/build
mingw32-make.exe[1]: Entering directory 'C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp'
"C:\Program Files (x86)\CMake\bin\cmake.exe" -E cmake_progress_report C:\Users\Bryce.WIN-MA226DOSFHD\Desktop\Skyland\NeoBuild\CMakeFiles\CMakeTmp\CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec4110770062.dir/CheckFunctionExists.c.obj
C:\MinGW\bin\gcc.exe -g -O3 -DCHECK_FUNCTION_EXISTS=setenv -o CMakeFiles\cmTryCompileExec4110770062.dir\CheckFunctionExists.c.obj -c "C:\Program Files (x86)\CMake\share\cmake-3.0\Modules\CheckFunctionExists.c"
Linking C executable cmTryCompileExec4110770062.exe
"C:\Program Files (x86)\CMake\bin\cmake.exe" -E cmake_link_script CMakeFiles\cmTryCompileExec4110770062.dir\link.txt --verbose=1
"C:\Program Files (x86)\CMake\bin\cmake.exe" -E remove -f CMakeFiles\cmTryCompileExec4110770062.dir/objects.a
C:\MinGW\bin\ar.exe cr CMakeFiles\cmTryCompileExec4110770062.dir/objects.a @CMakeFiles\cmTryCompileExec4110770062.dir\objects1.rsp
C:\MinGW\bin\gcc.exe -g -O3 -DCHECK_FUNCTION_EXISTS=setenv -Wl,--whole-archive CMakeFiles\cmTryCompileExec4110770062.dir/objects.a -Wl,--no-whole-archive -o cmTryCompileExec4110770062.exe -Wl,--out-implib,libcmTryCompileExec4110770062.dll.a -Wl,--major-image-version,0,--minor-image-version,0 -lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32
CMakeFiles\cmTryCompileExec4110770062.dir/objects.a(CheckFunctionExists.c.obj): In function `main':
C:/Program Files (x86)/CMake/share/cmake-3.0/Modules/CheckFunctionExists.c:11: undefined reference to `setenv'
collect2.exe: error: ld returned 1 exit status
CMakeFiles\cmTryCompileExec4110770062.dir\build.make:88: recipe for target 'cmTryCompileExec4110770062.exe' failed
mingw32-make.exe[1]: *** [cmTryCompileExec4110770062.exe] Error 1
mingw32-make.exe[1]: Leaving directory 'C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp'
Makefile:117: recipe for target 'cmTryCompileExec4110770062/fast' failed
mingw32-make.exe: *** [cmTryCompileExec4110770062/fast] Error 2
Determining if the function unsetenv exists failed with the following output:
Change Dir: C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp
Run Build Command:"C:/MinGW/bin/mingw32-make.exe" "cmTryCompileExec3554277346/fast"
C:/MinGW/bin/mingw32-make.exe -f CMakeFiles\cmTryCompileExec3554277346.dir\build.make CMakeFiles/cmTryCompileExec3554277346.dir/build
mingw32-make.exe[1]: Entering directory 'C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp'
"C:\Program Files (x86)\CMake\bin\cmake.exe" -E cmake_progress_report C:\Users\Bryce.WIN-MA226DOSFHD\Desktop\Skyland\NeoBuild\CMakeFiles\CMakeTmp\CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec3554277346.dir/CheckFunctionExists.c.obj
C:\MinGW\bin\gcc.exe -g -O3 -DCHECK_FUNCTION_EXISTS=unsetenv -o CMakeFiles\cmTryCompileExec3554277346.dir\CheckFunctionExists.c.obj -c "C:\Program Files (x86)\CMake\share\cmake-3.0\Modules\CheckFunctionExists.c"
Linking C executable cmTryCompileExec3554277346.exe
"C:\Program Files (x86)\CMake\bin\cmake.exe" -E cmake_link_script CMakeFiles\cmTryCompileExec3554277346.dir\link.txt --verbose=1
"C:\Program Files (x86)\CMake\bin\cmake.exe" -E remove -f CMakeFiles\cmTryCompileExec3554277346.dir/objects.a
C:\MinGW\bin\ar.exe cr CMakeFiles\cmTryCompileExec3554277346.dir/objects.a @CMakeFiles\cmTryCompileExec3554277346.dir\objects1.rsp
C:\MinGW\bin\gcc.exe -g -O3 -DCHECK_FUNCTION_EXISTS=unsetenv -Wl,--whole-archive CMakeFiles\cmTryCompileExec3554277346.dir/objects.a -Wl,--no-whole-archive -o cmTryCompileExec3554277346.exe -Wl,--out-implib,libcmTryCompileExec3554277346.dll.a -Wl,--major-image-version,0,--minor-image-version,0 -lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32
CMakeFiles\cmTryCompileExec3554277346.dir/objects.a(CheckFunctionExists.c.obj): In function `main':
C:/Program Files (x86)/CMake/share/cmake-3.0/Modules/CheckFunctionExists.c:11: undefined reference to `unsetenv'
collect2.exe: error: ld returned 1 exit status
CMakeFiles\cmTryCompileExec3554277346.dir\build.make:88: recipe for target 'cmTryCompileExec3554277346.exe' failed
mingw32-make.exe[1]: *** [cmTryCompileExec3554277346.exe] Error 1
mingw32-make.exe[1]: Leaving directory 'C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp'
Makefile:117: recipe for target 'cmTryCompileExec3554277346/fast' failed
mingw32-make.exe: *** [cmTryCompileExec3554277346/fast] Error 2
Determining if the function bcopy exists failed with the following output:
Change Dir: C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp
Run Build Command:"C:/MinGW/bin/mingw32-make.exe" "cmTryCompileExec2767032652/fast"
C:/MinGW/bin/mingw32-make.exe -f CMakeFiles\cmTryCompileExec2767032652.dir\build.make CMakeFiles/cmTryCompileExec2767032652.dir/build
mingw32-make.exe[1]: Entering directory 'C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp'
"C:\Program Files (x86)\CMake\bin\cmake.exe" -E cmake_progress_report C:\Users\Bryce.WIN-MA226DOSFHD\Desktop\Skyland\NeoBuild\CMakeFiles\CMakeTmp\CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec2767032652.dir/CheckFunctionExists.c.obj
C:\MinGW\bin\gcc.exe -g -O3 -DCHECK_FUNCTION_EXISTS=bcopy -o CMakeFiles\cmTryCompileExec2767032652.dir\CheckFunctionExists.c.obj -c "C:\Program Files (x86)\CMake\share\cmake-3.0\Modules\CheckFunctionExists.c"
<command-line>:0:23: warning: conflicting types for built-in function 'bcopy' [enabled by default]
C:\Program Files (x86)\CMake\share\cmake-3.0\Modules\CheckFunctionExists.c:3:6: note: in expansion of macro 'CHECK_FUNCTION_EXISTS'
char CHECK_FUNCTION_EXISTS();
^
Linking C executable cmTryCompileExec2767032652.exe
"C:\Program Files (x86)\CMake\bin\cmake.exe" -E cmake_link_script CMakeFiles\cmTryCompileExec2767032652.dir\link.txt --verbose=1
"C:\Program Files (x86)\CMake\bin\cmake.exe" -E remove -f CMakeFiles\cmTryCompileExec2767032652.dir/objects.a
C:\MinGW\bin\ar.exe cr CMakeFiles\cmTryCompileExec2767032652.dir/objects.a @CMakeFiles\cmTryCompileExec2767032652.dir\objects1.rsp
C:\MinGW\bin\gcc.exe -g -O3 -DCHECK_FUNCTION_EXISTS=bcopy -Wl,--whole-archive CMakeFiles\cmTryCompileExec2767032652.dir/objects.a -Wl,--no-whole-archive -o cmTryCompileExec2767032652.exe -Wl,--out-implib,libcmTryCompileExec2767032652.dll.a -Wl,--major-image-version,0,--minor-image-version,0 -lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32
CMakeFiles\cmTryCompileExec2767032652.dir/objects.a(CheckFunctionExists.c.obj): In function `main':
C:/Program Files (x86)/CMake/share/cmake-3.0/Modules/CheckFunctionExists.c:11: undefined reference to `bcopy'
collect2.exe: error: ld returned 1 exit status
CMakeFiles\cmTryCompileExec2767032652.dir\build.make:88: recipe for target 'cmTryCompileExec2767032652.exe' failed
mingw32-make.exe[1]: *** [cmTryCompileExec2767032652.exe] Error 1
mingw32-make.exe[1]: Leaving directory 'C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp'
Makefile:117: recipe for target 'cmTryCompileExec2767032652/fast' failed
mingw32-make.exe: *** [cmTryCompileExec2767032652/fast] Error 2
Determining if the function _uitoa exists failed with the following output:
Change Dir: C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp
Run Build Command:"C:/MinGW/bin/mingw32-make.exe" "cmTryCompileExec1424286285/fast"
C:/MinGW/bin/mingw32-make.exe -f CMakeFiles\cmTryCompileExec1424286285.dir\build.make CMakeFiles/cmTryCompileExec1424286285.dir/build
mingw32-make.exe[1]: Entering directory 'C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp'
"C:\Program Files (x86)\CMake\bin\cmake.exe" -E cmake_progress_report C:\Users\Bryce.WIN-MA226DOSFHD\Desktop\Skyland\NeoBuild\CMakeFiles\CMakeTmp\CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec1424286285.dir/CheckFunctionExists.c.obj
C:\MinGW\bin\gcc.exe -g -O3 -DCHECK_FUNCTION_EXISTS=_uitoa -o CMakeFiles\cmTryCompileExec1424286285.dir\CheckFunctionExists.c.obj -c "C:\Program Files (x86)\CMake\share\cmake-3.0\Modules\CheckFunctionExists.c"
Linking C executable cmTryCompileExec1424286285.exe
"C:\Program Files (x86)\CMake\bin\cmake.exe" -E cmake_link_script CMakeFiles\cmTryCompileExec1424286285.dir\link.txt --verbose=1
"C:\Program Files (x86)\CMake\bin\cmake.exe" -E remove -f CMakeFiles\cmTryCompileExec1424286285.dir/objects.a
C:\MinGW\bin\ar.exe cr CMakeFiles\cmTryCompileExec1424286285.dir/objects.a @CMakeFiles\cmTryCompileExec1424286285.dir\objects1.rsp
C:\MinGW\bin\gcc.exe -g -O3 -DCHECK_FUNCTION_EXISTS=_uitoa -Wl,--whole-archive CMakeFiles\cmTryCompileExec1424286285.dir/objects.a -Wl,--no-whole-archive -o cmTryCompileExec1424286285.exe -Wl,--out-implib,libcmTryCompileExec1424286285.dll.a -Wl,--major-image-version,0,--minor-image-version,0 -lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32
CMakeFiles\cmTryCompileExec1424286285.dir/objects.a(CheckFunctionExists.c.obj): In function `main':
C:/Program Files (x86)/CMake/share/cmake-3.0/Modules/CheckFunctionExists.c:11: undefined reference to `_uitoa'
collect2.exe: error: ld returned 1 exit status
CMakeFiles\cmTryCompileExec1424286285.dir\build.make:88: recipe for target 'cmTryCompileExec1424286285.exe' failed
mingw32-make.exe[1]: *** [cmTryCompileExec1424286285.exe] Error 1
mingw32-make.exe[1]: Leaving directory 'C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp'
Makefile:117: recipe for target 'cmTryCompileExec1424286285/fast' failed
mingw32-make.exe: *** [cmTryCompileExec1424286285/fast] Error 2
Determining if the function fseeko exists failed with the following output:
Change Dir: C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp
Run Build Command:"C:/MinGW/bin/mingw32-make.exe" "cmTryCompileExec2053244658/fast"
C:/MinGW/bin/mingw32-make.exe -f CMakeFiles\cmTryCompileExec2053244658.dir\build.make CMakeFiles/cmTryCompileExec2053244658.dir/build
mingw32-make.exe[1]: Entering directory 'C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp'
"C:\Program Files (x86)\CMake\bin\cmake.exe" -E cmake_progress_report C:\Users\Bryce.WIN-MA226DOSFHD\Desktop\Skyland\NeoBuild\CMakeFiles\CMakeTmp\CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec2053244658.dir/CheckFunctionExists.c.obj
C:\MinGW\bin\gcc.exe -g -O3 -DCHECK_FUNCTION_EXISTS=fseeko -o CMakeFiles\cmTryCompileExec2053244658.dir\CheckFunctionExists.c.obj -c "C:\Program Files (x86)\CMake\share\cmake-3.0\Modules\CheckFunctionExists.c"
Linking C executable cmTryCompileExec2053244658.exe
"C:\Program Files (x86)\CMake\bin\cmake.exe" -E cmake_link_script CMakeFiles\cmTryCompileExec2053244658.dir\link.txt --verbose=1
"C:\Program Files (x86)\CMake\bin\cmake.exe" -E remove -f CMakeFiles\cmTryCompileExec2053244658.dir/objects.a
C:\MinGW\bin\ar.exe cr CMakeFiles\cmTryCompileExec2053244658.dir/objects.a @CMakeFiles\cmTryCompileExec2053244658.dir\objects1.rsp
C:\MinGW\bin\gcc.exe -g -O3 -DCHECK_FUNCTION_EXISTS=fseeko -Wl,--whole-archive CMakeFiles\cmTryCompileExec2053244658.dir/objects.a -Wl,--no-whole-archive -o cmTryCompileExec2053244658.exe -Wl,--out-implib,libcmTryCompileExec2053244658.dll.a -Wl,--major-image-version,0,--minor-image-version,0 -lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32
CMakeFiles\cmTryCompileExec2053244658.dir/objects.a(CheckFunctionExists.c.obj): In function `main':
C:/Program Files (x86)/CMake/share/cmake-3.0/Modules/CheckFunctionExists.c:11: undefined reference to `fseeko'
collect2.exe: error: ld returned 1 exit status
CMakeFiles\cmTryCompileExec2053244658.dir\build.make:88: recipe for target 'cmTryCompileExec2053244658.exe' failed
mingw32-make.exe[1]: *** [cmTryCompileExec2053244658.exe] Error 1
mingw32-make.exe[1]: Leaving directory 'C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp'
Makefile:117: recipe for target 'cmTryCompileExec2053244658/fast' failed
mingw32-make.exe: *** [cmTryCompileExec2053244658/fast] Error 2
Determining if the function sigaction exists failed with the following output:
Change Dir: C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp
Run Build Command:"C:/MinGW/bin/mingw32-make.exe" "cmTryCompileExec4044616280/fast"
C:/MinGW/bin/mingw32-make.exe -f CMakeFiles\cmTryCompileExec4044616280.dir\build.make CMakeFiles/cmTryCompileExec4044616280.dir/build
mingw32-make.exe[1]: Entering directory 'C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp'
"C:\Program Files (x86)\CMake\bin\cmake.exe" -E cmake_progress_report C:\Users\Bryce.WIN-MA226DOSFHD\Desktop\Skyland\NeoBuild\CMakeFiles\CMakeTmp\CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec4044616280.dir/CheckFunctionExists.c.obj
C:\MinGW\bin\gcc.exe -g -O3 -DCHECK_FUNCTION_EXISTS=sigaction -o CMakeFiles\cmTryCompileExec4044616280.dir\CheckFunctionExists.c.obj -c "C:\Program Files (x86)\CMake\share\cmake-3.0\Modules\CheckFunctionExists.c"
Linking C executable cmTryCompileExec4044616280.exe
"C:\Program Files (x86)\CMake\bin\cmake.exe" -E cmake_link_script CMakeFiles\cmTryCompileExec4044616280.dir\link.txt --verbose=1
"C:\Program Files (x86)\CMake\bin\cmake.exe" -E remove -f CMakeFiles\cmTryCompileExec4044616280.dir/objects.a
C:\MinGW\bin\ar.exe cr CMakeFiles\cmTryCompileExec4044616280.dir/objects.a @CMakeFiles\cmTryCompileExec4044616280.dir\objects1.rsp
C:\MinGW\bin\gcc.exe -g -O3 -DCHECK_FUNCTION_EXISTS=sigaction -Wl,--whole-archive CMakeFiles\cmTryCompileExec4044616280.dir/objects.a -Wl,--no-whole-archive -o cmTryCompileExec4044616280.exe -Wl,--out-implib,libcmTryCompileExec4044616280.dll.a -Wl,--major-image-version,0,--minor-image-version,0 -lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32
CMakeFiles\cmTryCompileExec4044616280.dir/objects.a(CheckFunctionExists.c.obj): In function `main':
C:/Program Files (x86)/CMake/share/cmake-3.0/Modules/CheckFunctionExists.c:11: undefined reference to `sigaction'
collect2.exe: error: ld returned 1 exit status
CMakeFiles\cmTryCompileExec4044616280.dir\build.make:88: recipe for target 'cmTryCompileExec4044616280.exe' failed
mingw32-make.exe[1]: *** [cmTryCompileExec4044616280.exe] Error 1
mingw32-make.exe[1]: Leaving directory 'C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp'
Makefile:117: recipe for target 'cmTryCompileExec4044616280/fast' failed
mingw32-make.exe: *** [cmTryCompileExec4044616280/fast] Error 2
Determining if the function setjmp exists failed with the following output:
Change Dir: C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp
Run Build Command:"C:/MinGW/bin/mingw32-make.exe" "cmTryCompileExec1439485204/fast"
C:/MinGW/bin/mingw32-make.exe -f CMakeFiles\cmTryCompileExec1439485204.dir\build.make CMakeFiles/cmTryCompileExec1439485204.dir/build
mingw32-make.exe[1]: Entering directory 'C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp'
"C:\Program Files (x86)\CMake\bin\cmake.exe" -E cmake_progress_report C:\Users\Bryce.WIN-MA226DOSFHD\Desktop\Skyland\NeoBuild\CMakeFiles\CMakeTmp\CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec1439485204.dir/CheckFunctionExists.c.obj
C:\MinGW\bin\gcc.exe -g -O3 -DCHECK_FUNCTION_EXISTS=setjmp -o CMakeFiles\cmTryCompileExec1439485204.dir\CheckFunctionExists.c.obj -c "C:\Program Files (x86)\CMake\share\cmake-3.0\Modules\CheckFunctionExists.c"
Linking C executable cmTryCompileExec1439485204.exe
"C:\Program Files (x86)\CMake\bin\cmake.exe" -E cmake_link_script CMakeFiles\cmTryCompileExec1439485204.dir\link.txt --verbose=1
"C:\Program Files (x86)\CMake\bin\cmake.exe" -E remove -f CMakeFiles\cmTryCompileExec1439485204.dir/objects.a
C:\MinGW\bin\ar.exe cr CMakeFiles\cmTryCompileExec1439485204.dir/objects.a @CMakeFiles\cmTryCompileExec1439485204.dir\objects1.rsp
C:\MinGW\bin\gcc.exe -g -O3 -DCHECK_FUNCTION_EXISTS=setjmp -Wl,--whole-archive CMakeFiles\cmTryCompileExec1439485204.dir/objects.a -Wl,--no-whole-archive -o cmTryCompileExec1439485204.exe -Wl,--out-implib,libcmTryCompileExec1439485204.dll.a -Wl,--major-image-version,0,--minor-image-version,0 -lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32
CMakeFiles\cmTryCompileExec1439485204.dir/objects.a(CheckFunctionExists.c.obj): In function `main':
C:/Program Files (x86)/CMake/share/cmake-3.0/Modules/CheckFunctionExists.c:11: undefined reference to `setjmp'
collect2.exe: error: ld returned 1 exit status
CMakeFiles\cmTryCompileExec1439485204.dir\build.make:88: recipe for target 'cmTryCompileExec1439485204.exe' failed
mingw32-make.exe[1]: *** [cmTryCompileExec1439485204.exe] Error 1
mingw32-make.exe[1]: Leaving directory 'C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp'
Makefile:117: recipe for target 'cmTryCompileExec1439485204/fast' failed
mingw32-make.exe: *** [cmTryCompileExec1439485204/fast] Error 2
Determining if the function nanosleep exists failed with the following output:
Change Dir: C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp
Run Build Command:"C:/MinGW/bin/mingw32-make.exe" "cmTryCompileExec162567004/fast"
C:/MinGW/bin/mingw32-make.exe -f CMakeFiles\cmTryCompileExec162567004.dir\build.make CMakeFiles/cmTryCompileExec162567004.dir/build
mingw32-make.exe[1]: Entering directory 'C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp'
"C:\Program Files (x86)\CMake\bin\cmake.exe" -E cmake_progress_report C:\Users\Bryce.WIN-MA226DOSFHD\Desktop\Skyland\NeoBuild\CMakeFiles\CMakeTmp\CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec162567004.dir/CheckFunctionExists.c.obj
C:\MinGW\bin\gcc.exe -g -O3 -DCHECK_FUNCTION_EXISTS=nanosleep -o CMakeFiles\cmTryCompileExec162567004.dir\CheckFunctionExists.c.obj -c "C:\Program Files (x86)\CMake\share\cmake-3.0\Modules\CheckFunctionExists.c"
Linking C executable cmTryCompileExec162567004.exe
"C:\Program Files (x86)\CMake\bin\cmake.exe" -E cmake_link_script CMakeFiles\cmTryCompileExec162567004.dir\link.txt --verbose=1
"C:\Program Files (x86)\CMake\bin\cmake.exe" -E remove -f CMakeFiles\cmTryCompileExec162567004.dir/objects.a
C:\MinGW\bin\ar.exe cr CMakeFiles\cmTryCompileExec162567004.dir/objects.a @CMakeFiles\cmTryCompileExec162567004.dir\objects1.rsp
C:\MinGW\bin\gcc.exe -g -O3 -DCHECK_FUNCTION_EXISTS=nanosleep -Wl,--whole-archive CMakeFiles\cmTryCompileExec162567004.dir/objects.a -Wl,--no-whole-archive -o cmTryCompileExec162567004.exe -Wl,--out-implib,libcmTryCompileExec162567004.dll.a -Wl,--major-image-version,0,--minor-image-version,0 -lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32
CMakeFiles\cmTryCompileExec162567004.dir/objects.a(CheckFunctionExists.c.obj): In function `main':
C:/Program Files (x86)/CMake/share/cmake-3.0/Modules/CheckFunctionExists.c:11: undefined reference to `nanosleep'
collect2.exe: error: ld returned 1 exit status
CMakeFiles\cmTryCompileExec162567004.dir\build.make:88: recipe for target 'cmTryCompileExec162567004.exe' failed
mingw32-make.exe[1]: *** [cmTryCompileExec162567004.exe] Error 1
mingw32-make.exe[1]: Leaving directory 'C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp'
Makefile:117: recipe for target 'cmTryCompileExec162567004/fast' failed
mingw32-make.exe: *** [cmTryCompileExec162567004/fast] Error 2
Determining if the function sysconf exists failed with the following output:
Change Dir: C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp
Run Build Command:"C:/MinGW/bin/mingw32-make.exe" "cmTryCompileExec2898592065/fast"
C:/MinGW/bin/mingw32-make.exe -f CMakeFiles\cmTryCompileExec2898592065.dir\build.make CMakeFiles/cmTryCompileExec2898592065.dir/build
mingw32-make.exe[1]: Entering directory 'C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp'
"C:\Program Files (x86)\CMake\bin\cmake.exe" -E cmake_progress_report C:\Users\Bryce.WIN-MA226DOSFHD\Desktop\Skyland\NeoBuild\CMakeFiles\CMakeTmp\CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec2898592065.dir/CheckFunctionExists.c.obj
C:\MinGW\bin\gcc.exe -g -O3 -DCHECK_FUNCTION_EXISTS=sysconf -o CMakeFiles\cmTryCompileExec2898592065.dir\CheckFunctionExists.c.obj -c "C:\Program Files (x86)\CMake\share\cmake-3.0\Modules\CheckFunctionExists.c"
Linking C executable cmTryCompileExec2898592065.exe
"C:\Program Files (x86)\CMake\bin\cmake.exe" -E cmake_link_script CMakeFiles\cmTryCompileExec2898592065.dir\link.txt --verbose=1
"C:\Program Files (x86)\CMake\bin\cmake.exe" -E remove -f CMakeFiles\cmTryCompileExec2898592065.dir/objects.a
C:\MinGW\bin\ar.exe cr CMakeFiles\cmTryCompileExec2898592065.dir/objects.a @CMakeFiles\cmTryCompileExec2898592065.dir\objects1.rsp
C:\MinGW\bin\gcc.exe -g -O3 -DCHECK_FUNCTION_EXISTS=sysconf -Wl,--whole-archive CMakeFiles\cmTryCompileExec2898592065.dir/objects.a -Wl,--no-whole-archive -o cmTryCompileExec2898592065.exe -Wl,--out-implib,libcmTryCompileExec2898592065.dll.a -Wl,--major-image-version,0,--minor-image-version,0 -lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32
CMakeFiles\cmTryCompileExec2898592065.dir/objects.a(CheckFunctionExists.c.obj): In function `main':
C:/Program Files (x86)/CMake/share/cmake-3.0/Modules/CheckFunctionExists.c:11: undefined reference to `sysconf'
collect2.exe: error: ld returned 1 exit status
CMakeFiles\cmTryCompileExec2898592065.dir\build.make:88: recipe for target 'cmTryCompileExec2898592065.exe' failed
mingw32-make.exe[1]: *** [cmTryCompileExec2898592065.exe] Error 1
mingw32-make.exe[1]: Leaving directory 'C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp'
Makefile:117: recipe for target 'cmTryCompileExec2898592065/fast' failed
mingw32-make.exe: *** [cmTryCompileExec2898592065/fast] Error 2
Determining if the function sysctlbyname exists failed with the following output:
Change Dir: C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp
Run Build Command:"C:/MinGW/bin/mingw32-make.exe" "cmTryCompileExec189974566/fast"
C:/MinGW/bin/mingw32-make.exe -f CMakeFiles\cmTryCompileExec189974566.dir\build.make CMakeFiles/cmTryCompileExec189974566.dir/build
mingw32-make.exe[1]: Entering directory 'C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp'
"C:\Program Files (x86)\CMake\bin\cmake.exe" -E cmake_progress_report C:\Users\Bryce.WIN-MA226DOSFHD\Desktop\Skyland\NeoBuild\CMakeFiles\CMakeTmp\CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec189974566.dir/CheckFunctionExists.c.obj
C:\MinGW\bin\gcc.exe -g -O3 -DCHECK_FUNCTION_EXISTS=sysctlbyname -o CMakeFiles\cmTryCompileExec189974566.dir\CheckFunctionExists.c.obj -c "C:\Program Files (x86)\CMake\share\cmake-3.0\Modules\CheckFunctionExists.c"
Linking C executable cmTryCompileExec189974566.exe
"C:\Program Files (x86)\CMake\bin\cmake.exe" -E cmake_link_script CMakeFiles\cmTryCompileExec189974566.dir\link.txt --verbose=1
"C:\Program Files (x86)\CMake\bin\cmake.exe" -E remove -f CMakeFiles\cmTryCompileExec189974566.dir/objects.a
C:\MinGW\bin\ar.exe cr CMakeFiles\cmTryCompileExec189974566.dir/objects.a @CMakeFiles\cmTryCompileExec189974566.dir\objects1.rsp
C:\MinGW\bin\gcc.exe -g -O3 -DCHECK_FUNCTION_EXISTS=sysctlbyname -Wl,--whole-archive CMakeFiles\cmTryCompileExec189974566.dir/objects.a -Wl,--no-whole-archive -o cmTryCompileExec189974566.exe -Wl,--out-implib,libcmTryCompileExec189974566.dll.a -Wl,--major-image-version,0,--minor-image-version,0 -lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32
CMakeFiles\cmTryCompileExec189974566.dir/objects.a(CheckFunctionExists.c.obj): In function `main':
C:/Program Files (x86)/CMake/share/cmake-3.0/Modules/CheckFunctionExists.c:11: undefined reference to `sysctlbyname'
collect2.exe: error: ld returned 1 exit status
CMakeFiles\cmTryCompileExec189974566.dir\build.make:88: recipe for target 'cmTryCompileExec189974566.exe' failed
mingw32-make.exe[1]: *** [cmTryCompileExec189974566.exe] Error 1
mingw32-make.exe[1]: Leaving directory 'C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp'
Makefile:117: recipe for target 'cmTryCompileExec189974566/fast' failed
mingw32-make.exe: *** [cmTryCompileExec189974566/fast] Error 2
Determining if the function iconv_open exists in the iconv failed with the following output:
Change Dir: C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp
Run Build Command:"C:/MinGW/bin/mingw32-make.exe" "cmTryCompileExec1117851225/fast"
C:/MinGW/bin/mingw32-make.exe -f CMakeFiles\cmTryCompileExec1117851225.dir\build.make CMakeFiles/cmTryCompileExec1117851225.dir/build
mingw32-make.exe[1]: Entering directory 'C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp'
"C:\Program Files (x86)\CMake\bin\cmake.exe" -E cmake_progress_report C:\Users\Bryce.WIN-MA226DOSFHD\Desktop\Skyland\NeoBuild\CMakeFiles\CMakeTmp\CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec1117851225.dir/CheckFunctionExists.c.obj
C:\MinGW\bin\gcc.exe -g -O3 -DCHECK_FUNCTION_EXISTS=iconv_open -o CMakeFiles\cmTryCompileExec1117851225.dir\CheckFunctionExists.c.obj -c "C:\Program Files (x86)\CMake\share\cmake-3.0\Modules\CheckFunctionExists.c"
Linking C executable cmTryCompileExec1117851225.exe
"C:\Program Files (x86)\CMake\bin\cmake.exe" -E cmake_link_script CMakeFiles\cmTryCompileExec1117851225.dir\link.txt --verbose=1
"C:\Program Files (x86)\CMake\bin\cmake.exe" -E remove -f CMakeFiles\cmTryCompileExec1117851225.dir/objects.a
C:\MinGW\bin\ar.exe cr CMakeFiles\cmTryCompileExec1117851225.dir/objects.a @CMakeFiles\cmTryCompileExec1117851225.dir\objects1.rsp
C:\MinGW\bin\gcc.exe -g -O3 -DCHECK_FUNCTION_EXISTS=iconv_open -Wl,--whole-archive CMakeFiles\cmTryCompileExec1117851225.dir/objects.a -Wl,--no-whole-archive -o cmTryCompileExec1117851225.exe -Wl,--out-implib,libcmTryCompileExec1117851225.dll.a -Wl,--major-image-version,0,--minor-image-version,0 -liconv -lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32
CMakeFiles\cmTryCompileExec1117851225.dir/objects.a(CheckFunctionExists.c.obj): In function `main':
C:/Program Files (x86)/CMake/share/cmake-3.0/Modules/CheckFunctionExists.c:11: undefined reference to `iconv_open'
collect2.exe: error: ld returned 1 exit status
CMakeFiles\cmTryCompileExec1117851225.dir\build.make:88: recipe for target 'cmTryCompileExec1117851225.exe' failed
mingw32-make.exe[1]: *** [cmTryCompileExec1117851225.exe] Error 1
mingw32-make.exe[1]: Leaving directory 'C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp'
Makefile:117: recipe for target 'cmTryCompileExec1117851225/fast' failed
mingw32-make.exe: *** [cmTryCompileExec1117851225/fast] Error 2
Performing C SOURCE FILE Test HAVE_SA_SIGACTION failed with the following output:
Change Dir: C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp
Run Build Command:"C:/MinGW/bin/mingw32-make.exe" "cmTryCompileExec3443369286/fast"
C:/MinGW/bin/mingw32-make.exe -f CMakeFiles\cmTryCompileExec3443369286.dir\build.make CMakeFiles/cmTryCompileExec3443369286.dir/build
mingw32-make.exe[1]: Entering directory 'C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp'
"C:\Program Files (x86)\CMake\bin\cmake.exe" -E cmake_progress_report C:\Users\Bryce.WIN-MA226DOSFHD\Desktop\Skyland\NeoBuild\CMakeFiles\CMakeTmp\CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec3443369286.dir/src.c.obj
C:\MinGW\bin\gcc.exe -g -O3 -DHAVE_SA_SIGACTION -o CMakeFiles\cmTryCompileExec3443369286.dir\src.c.obj -c C:\Users\Bryce.WIN-MA226DOSFHD\Desktop\Skyland\NeoBuild\CMakeFiles\CMakeTmp\src.c
C:\Users\Bryce.WIN-MA226DOSFHD\Desktop\Skyland\NeoBuild\CMakeFiles\CMakeTmp\src.c: In function 'main':
C:\Users\Bryce.WIN-MA226DOSFHD\Desktop\Skyland\NeoBuild\CMakeFiles\CMakeTmp\src.c:7:7: error: dereferencing pointer to incomplete type
tmp->sa_sigaction;
^
CMakeFiles\cmTryCompileExec3443369286.dir\build.make:56: recipe for target 'CMakeFiles/cmTryCompileExec3443369286.dir/src.c.obj' failed
mingw32-make.exe[1]: *** [CMakeFiles/cmTryCompileExec3443369286.dir/src.c.obj] Error 1
mingw32-make.exe[1]: Leaving directory 'C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp'
Makefile:117: recipe for target 'cmTryCompileExec3443369286/fast' failed
mingw32-make.exe: *** [cmTryCompileExec3443369286/fast] Error 2
Source file was:
#include <signal.h>
int main()
{
struct sigaction* tmp;
tmp->sa_sigaction;
return 0;
}
Determining if the include file d3d9.h exists failed with the following output:
Change Dir: C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp
Run Build Command:"C:/MinGW/bin/mingw32-make.exe" "cmTryCompileExec2233388004/fast"
C:/MinGW/bin/mingw32-make.exe -f CMakeFiles\cmTryCompileExec2233388004.dir\build.make CMakeFiles/cmTryCompileExec2233388004.dir/build
mingw32-make.exe[1]: Entering directory 'C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp'
"C:\Program Files (x86)\CMake\bin\cmake.exe" -E cmake_progress_report C:\Users\Bryce.WIN-MA226DOSFHD\Desktop\Skyland\NeoBuild\CMakeFiles\CMakeTmp\CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec2233388004.dir/CheckIncludeFile.c.obj
C:\MinGW\bin\gcc.exe -g -O3 /I"C:\Program Files (x86)\Microsoft DirectX SDK (June 2010)\\Include" -o CMakeFiles\cmTryCompileExec2233388004.dir\CheckIncludeFile.c.obj -c C:\Users\Bryce.WIN-MA226DOSFHD\Desktop\Skyland\NeoBuild\CMakeFiles\CMakeTmp\CheckIncludeFile.c
gcc.exe: error: /IC:\Program Files (x86)\Microsoft DirectX SDK (June 2010)\\Include: Invalid argument
CMakeFiles\cmTryCompileExec2233388004.dir\build.make:56: recipe for target 'CMakeFiles/cmTryCompileExec2233388004.dir/CheckIncludeFile.c.obj' failed
mingw32-make.exe[1]: *** [CMakeFiles/cmTryCompileExec2233388004.dir/CheckIncludeFile.c.obj] Error 1
mingw32-make.exe[1]: Leaving directory 'C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp'
Makefile:117: recipe for target 'cmTryCompileExec2233388004/fast' failed
mingw32-make.exe: *** [cmTryCompileExec2233388004/fast] Error 2
Determining if the include file d3d11_1.h exists failed with the following output:
Change Dir: C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp
Run Build Command:"C:/MinGW/bin/mingw32-make.exe" "cmTryCompileExec3218461602/fast"
C:/MinGW/bin/mingw32-make.exe -f CMakeFiles\cmTryCompileExec3218461602.dir\build.make CMakeFiles/cmTryCompileExec3218461602.dir/build
mingw32-make.exe[1]: Entering directory 'C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp'
"C:\Program Files (x86)\CMake\bin\cmake.exe" -E cmake_progress_report C:\Users\Bryce.WIN-MA226DOSFHD\Desktop\Skyland\NeoBuild\CMakeFiles\CMakeTmp\CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec3218461602.dir/CheckIncludeFile.c.obj
C:\MinGW\bin\gcc.exe -g -O3 /I"C:\Program Files (x86)\Microsoft DirectX SDK (June 2010)\\Include" -o CMakeFiles\cmTryCompileExec3218461602.dir\CheckIncludeFile.c.obj -c C:\Users\Bryce.WIN-MA226DOSFHD\Desktop\Skyland\NeoBuild\CMakeFiles\CMakeTmp\CheckIncludeFile.c
gcc.exe: error: /IC:\Program Files (x86)\Microsoft DirectX SDK (June 2010)\\Include: Invalid argument
CMakeFiles\cmTryCompileExec3218461602.dir\build.make:56: recipe for target 'CMakeFiles/cmTryCompileExec3218461602.dir/CheckIncludeFile.c.obj' failed
mingw32-make.exe[1]: *** [CMakeFiles/cmTryCompileExec3218461602.dir/CheckIncludeFile.c.obj] Error 1
mingw32-make.exe[1]: Leaving directory 'C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp'
Makefile:117: recipe for target 'cmTryCompileExec3218461602/fast' failed
mingw32-make.exe: *** [cmTryCompileExec3218461602/fast] Error 2
Determining if the include file ddraw.h exists failed with the following output:
Change Dir: C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp
Run Build Command:"C:/MinGW/bin/mingw32-make.exe" "cmTryCompileExec4223966076/fast"
C:/MinGW/bin/mingw32-make.exe -f CMakeFiles\cmTryCompileExec4223966076.dir\build.make CMakeFiles/cmTryCompileExec4223966076.dir/build
mingw32-make.exe[1]: Entering directory 'C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp'
"C:\Program Files (x86)\CMake\bin\cmake.exe" -E cmake_progress_report C:\Users\Bryce.WIN-MA226DOSFHD\Desktop\Skyland\NeoBuild\CMakeFiles\CMakeTmp\CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec4223966076.dir/CheckIncludeFile.c.obj
C:\MinGW\bin\gcc.exe -g -O3 /I"C:\Program Files (x86)\Microsoft DirectX SDK (June 2010)\\Include" -o CMakeFiles\cmTryCompileExec4223966076.dir\CheckIncludeFile.c.obj -c C:\Users\Bryce.WIN-MA226DOSFHD\Desktop\Skyland\NeoBuild\CMakeFiles\CMakeTmp\CheckIncludeFile.c
gcc.exe: error: /IC:\Program Files (x86)\Microsoft DirectX SDK (June 2010)\\Include: Invalid argument
CMakeFiles\cmTryCompileExec4223966076.dir\build.make:56: recipe for target 'CMakeFiles/cmTryCompileExec4223966076.dir/CheckIncludeFile.c.obj' failed
mingw32-make.exe[1]: *** [CMakeFiles/cmTryCompileExec4223966076.dir/CheckIncludeFile.c.obj] Error 1
mingw32-make.exe[1]: Leaving directory 'C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp'
Makefile:117: recipe for target 'cmTryCompileExec4223966076/fast' failed
mingw32-make.exe: *** [cmTryCompileExec4223966076/fast] Error 2
Determining if the include file dsound.h exists failed with the following output:
Change Dir: C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp
Run Build Command:"C:/MinGW/bin/mingw32-make.exe" "cmTryCompileExec3552807427/fast"
C:/MinGW/bin/mingw32-make.exe -f CMakeFiles\cmTryCompileExec3552807427.dir\build.make CMakeFiles/cmTryCompileExec3552807427.dir/build
mingw32-make.exe[1]: Entering directory 'C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp'
"C:\Program Files (x86)\CMake\bin\cmake.exe" -E cmake_progress_report C:\Users\Bryce.WIN-MA226DOSFHD\Desktop\Skyland\NeoBuild\CMakeFiles\CMakeTmp\CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec3552807427.dir/CheckIncludeFile.c.obj
C:\MinGW\bin\gcc.exe -g -O3 /I"C:\Program Files (x86)\Microsoft DirectX SDK (June 2010)\\Include" -o CMakeFiles\cmTryCompileExec3552807427.dir\CheckIncludeFile.c.obj -c C:\Users\Bryce.WIN-MA226DOSFHD\Desktop\Skyland\NeoBuild\CMakeFiles\CMakeTmp\CheckIncludeFile.c
gcc.exe: error: /IC:\Program Files (x86)\Microsoft DirectX SDK (June 2010)\\Include: Invalid argument
CMakeFiles\cmTryCompileExec3552807427.dir\build.make:56: recipe for target 'CMakeFiles/cmTryCompileExec3552807427.dir/CheckIncludeFile.c.obj' failed
mingw32-make.exe[1]: *** [CMakeFiles/cmTryCompileExec3552807427.dir/CheckIncludeFile.c.obj] Error 1
mingw32-make.exe[1]: Leaving directory 'C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp'
Makefile:117: recipe for target 'cmTryCompileExec3552807427/fast' failed
mingw32-make.exe: *** [cmTryCompileExec3552807427/fast] Error 2
Determining if the include file dinput.h exists failed with the following output:
Change Dir: C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp
Run Build Command:"C:/MinGW/bin/mingw32-make.exe" "cmTryCompileExec2480911932/fast"
C:/MinGW/bin/mingw32-make.exe -f CMakeFiles\cmTryCompileExec2480911932.dir\build.make CMakeFiles/cmTryCompileExec2480911932.dir/build
mingw32-make.exe[1]: Entering directory 'C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp'
"C:\Program Files (x86)\CMake\bin\cmake.exe" -E cmake_progress_report C:\Users\Bryce.WIN-MA226DOSFHD\Desktop\Skyland\NeoBuild\CMakeFiles\CMakeTmp\CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec2480911932.dir/CheckIncludeFile.c.obj
C:\MinGW\bin\gcc.exe -g -O3 /I"C:\Program Files (x86)\Microsoft DirectX SDK (June 2010)\\Include" -o CMakeFiles\cmTryCompileExec2480911932.dir\CheckIncludeFile.c.obj -c C:\Users\Bryce.WIN-MA226DOSFHD\Desktop\Skyland\NeoBuild\CMakeFiles\CMakeTmp\CheckIncludeFile.c
gcc.exe: error: /IC:\Program Files (x86)\Microsoft DirectX SDK (June 2010)\\Include: Invalid argument
CMakeFiles\cmTryCompileExec2480911932.dir\build.make:56: recipe for target 'CMakeFiles/cmTryCompileExec2480911932.dir/CheckIncludeFile.c.obj' failed
mingw32-make.exe[1]: *** [CMakeFiles/cmTryCompileExec2480911932.dir/CheckIncludeFile.c.obj] Error 1
mingw32-make.exe[1]: Leaving directory 'C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp'
Makefile:117: recipe for target 'cmTryCompileExec2480911932/fast' failed
mingw32-make.exe: *** [cmTryCompileExec2480911932/fast] Error 2
Determining if the include file xaudio2.h exists failed with the following output:
Change Dir: C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp
Run Build Command:"C:/MinGW/bin/mingw32-make.exe" "cmTryCompileExec917897648/fast"
C:/MinGW/bin/mingw32-make.exe -f CMakeFiles\cmTryCompileExec917897648.dir\build.make CMakeFiles/cmTryCompileExec917897648.dir/build
mingw32-make.exe[1]: Entering directory 'C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp'
"C:\Program Files (x86)\CMake\bin\cmake.exe" -E cmake_progress_report C:\Users\Bryce.WIN-MA226DOSFHD\Desktop\Skyland\NeoBuild\CMakeFiles\CMakeTmp\CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec917897648.dir/CheckIncludeFile.c.obj
C:\MinGW\bin\gcc.exe -g -O3 /I"C:\Program Files (x86)\Microsoft DirectX SDK (June 2010)\\Include" -o CMakeFiles\cmTryCompileExec917897648.dir\CheckIncludeFile.c.obj -c C:\Users\Bryce.WIN-MA226DOSFHD\Desktop\Skyland\NeoBuild\CMakeFiles\CMakeTmp\CheckIncludeFile.c
gcc.exe: error: /IC:\Program Files (x86)\Microsoft DirectX SDK (June 2010)\\Include: Invalid argument
CMakeFiles\cmTryCompileExec917897648.dir\build.make:56: recipe for target 'CMakeFiles/cmTryCompileExec917897648.dir/CheckIncludeFile.c.obj' failed
mingw32-make.exe[1]: *** [CMakeFiles/cmTryCompileExec917897648.dir/CheckIncludeFile.c.obj] Error 1
mingw32-make.exe[1]: Leaving directory 'C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp'
Makefile:117: recipe for target 'cmTryCompileExec917897648/fast' failed
mingw32-make.exe: *** [cmTryCompileExec917897648/fast] Error 2
Determining if the include file alloca.h exists failed with the following output:
Change Dir: C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp
Run Build Command:"C:/MinGW/bin/mingw32-make.exe" "cmTryCompileExec1987476603/fast"
C:/MinGW/bin/mingw32-make.exe -f CMakeFiles\cmTryCompileExec1987476603.dir\build.make CMakeFiles/cmTryCompileExec1987476603.dir/build
mingw32-make.exe[1]: Entering directory 'C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp'
"C:\Program Files (x86)\CMake\bin\cmake.exe" -E cmake_progress_report C:\Users\Bryce.WIN-MA226DOSFHD\Desktop\Skyland\NeoBuild\CMakeFiles\CMakeTmp\CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec1987476603.dir/CheckIncludeFile.c.obj
C:\MinGW\bin\gcc.exe -std=c99 -O2 -DWIN32 -I"C:\Program Files (x86)\Microsoft DirectX SDK (June 2010)\/Include" -o CMakeFiles\cmTryCompileExec1987476603.dir\CheckIncludeFile.c.obj -c C:\Users\Bryce.WIN-MA226DOSFHD\Desktop\Skyland\NeoBuild\CMakeFiles\CMakeTmp\CheckIncludeFile.c
C:\Users\Bryce.WIN-MA226DOSFHD\Desktop\Skyland\NeoBuild\CMakeFiles\CMakeTmp\CheckIncludeFile.c:1:20: fatal error: alloca.h: No such file or directory
#include <alloca.h>
^
compilation terminated.
CMakeFiles\cmTryCompileExec1987476603.dir\build.make:56: recipe for target 'CMakeFiles/cmTryCompileExec1987476603.dir/CheckIncludeFile.c.obj' failed
mingw32-make.exe[1]: *** [CMakeFiles/cmTryCompileExec1987476603.dir/CheckIncludeFile.c.obj] Error 1
mingw32-make.exe[1]: Leaving directory 'C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp'
Makefile:117: recipe for target 'cmTryCompileExec1987476603/fast' failed
mingw32-make.exe: *** [cmTryCompileExec1987476603/fast] Error 2
Determining if the include file sys/sysconf.h exists failed with the following output:
Change Dir: C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp
Run Build Command:"C:/MinGW/bin/mingw32-make.exe" "cmTryCompileExec2530972434/fast"
C:/MinGW/bin/mingw32-make.exe -f CMakeFiles\cmTryCompileExec2530972434.dir\build.make CMakeFiles/cmTryCompileExec2530972434.dir/build
mingw32-make.exe[1]: Entering directory 'C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp'
"C:\Program Files (x86)\CMake\bin\cmake.exe" -E cmake_progress_report C:\Users\Bryce.WIN-MA226DOSFHD\Desktop\Skyland\NeoBuild\CMakeFiles\CMakeTmp\CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec2530972434.dir/CheckIncludeFile.c.obj
C:\MinGW\bin\gcc.exe -std=c99 -O2 -DWIN32 -I"C:\Program Files (x86)\Microsoft DirectX SDK (June 2010)\/Include" -o CMakeFiles\cmTryCompileExec2530972434.dir\CheckIncludeFile.c.obj -c C:\Users\Bryce.WIN-MA226DOSFHD\Desktop\Skyland\NeoBuild\CMakeFiles\CMakeTmp\CheckIncludeFile.c
C:\Users\Bryce.WIN-MA226DOSFHD\Desktop\Skyland\NeoBuild\CMakeFiles\CMakeTmp\CheckIncludeFile.c:1:25: fatal error: sys/sysconf.h: No such file or directory
#include <sys/sysconf.h>
^
compilation terminated.
CMakeFiles\cmTryCompileExec2530972434.dir\build.make:56: recipe for target 'CMakeFiles/cmTryCompileExec2530972434.dir/CheckIncludeFile.c.obj' failed
mingw32-make.exe[1]: *** [CMakeFiles/cmTryCompileExec2530972434.dir/CheckIncludeFile.c.obj] Error 1
mingw32-make.exe[1]: Leaving directory 'C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp'
Makefile:117: recipe for target 'cmTryCompileExec2530972434/fast' failed
mingw32-make.exe: *** [cmTryCompileExec2530972434/fast] Error 2
Determining if the include file ieeefp.h exists failed with the following output:
Change Dir: C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp
Run Build Command:"C:/MinGW/bin/mingw32-make.exe" "cmTryCompileExec399479890/fast"
C:/MinGW/bin/mingw32-make.exe -f CMakeFiles\cmTryCompileExec399479890.dir\build.make CMakeFiles/cmTryCompileExec399479890.dir/build
mingw32-make.exe[1]: Entering directory 'C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp'
"C:\Program Files (x86)\CMake\bin\cmake.exe" -E cmake_progress_report C:\Users\Bryce.WIN-MA226DOSFHD\Desktop\Skyland\NeoBuild\CMakeFiles\CMakeTmp\CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec399479890.dir/CheckIncludeFile.c.obj
C:\MinGW\bin\gcc.exe -std=c99 -O2 -DWIN32 -I"C:\Program Files (x86)\Microsoft DirectX SDK (June 2010)\/Include" -o CMakeFiles\cmTryCompileExec399479890.dir\CheckIncludeFile.c.obj -c C:\Users\Bryce.WIN-MA226DOSFHD\Desktop\Skyland\NeoBuild\CMakeFiles\CMakeTmp\CheckIncludeFile.c
C:\Users\Bryce.WIN-MA226DOSFHD\Desktop\Skyland\NeoBuild\CMakeFiles\CMakeTmp\CheckIncludeFile.c:1:20: fatal error: ieeefp.h: No such file or directory
#include <ieeefp.h>
^
compilation terminated.
CMakeFiles\cmTryCompileExec399479890.dir\build.make:56: recipe for target 'CMakeFiles/cmTryCompileExec399479890.dir/CheckIncludeFile.c.obj' failed
mingw32-make.exe[1]: *** [CMakeFiles/cmTryCompileExec399479890.dir/CheckIncludeFile.c.obj] Error 1
mingw32-make.exe[1]: Leaving directory 'C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp'
Makefile:117: recipe for target 'cmTryCompileExec399479890/fast' failed
mingw32-make.exe: *** [cmTryCompileExec399479890/fast] Error 2
Determining if the include file guiddef.h exists failed with the following output:
Change Dir: C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp
Run Build Command:"C:/MinGW/bin/mingw32-make.exe" "cmTryCompileExec1217658639/fast"
C:/MinGW/bin/mingw32-make.exe -f CMakeFiles\cmTryCompileExec1217658639.dir\build.make CMakeFiles/cmTryCompileExec1217658639.dir/build
mingw32-make.exe[1]: Entering directory 'C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp'
"C:\Program Files (x86)\CMake\bin\cmake.exe" -E cmake_progress_report C:\Users\Bryce.WIN-MA226DOSFHD\Desktop\Skyland\NeoBuild\CMakeFiles\CMakeTmp\CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec1217658639.dir/CheckIncludeFile.c.obj
C:\MinGW\bin\gcc.exe -std=c99 -O2 -DWIN32 -I"C:\Program Files (x86)\Microsoft DirectX SDK (June 2010)\/Include" -o CMakeFiles\cmTryCompileExec1217658639.dir\CheckIncludeFile.c.obj -c C:\Users\Bryce.WIN-MA226DOSFHD\Desktop\Skyland\NeoBuild\CMakeFiles\CMakeTmp\CheckIncludeFile.c
C:\Users\Bryce.WIN-MA226DOSFHD\Desktop\Skyland\NeoBuild\CMakeFiles\CMakeTmp\CheckIncludeFile.c:1:21: fatal error: guiddef.h: No such file or directory
#include <guiddef.h>
^
compilation terminated.
CMakeFiles\cmTryCompileExec1217658639.dir\build.make:56: recipe for target 'CMakeFiles/cmTryCompileExec1217658639.dir/CheckIncludeFile.c.obj' failed
mingw32-make.exe[1]: *** [CMakeFiles/cmTryCompileExec1217658639.dir/CheckIncludeFile.c.obj] Error 1
mingw32-make.exe[1]: Leaving directory 'C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp'
Makefile:117: recipe for target 'cmTryCompileExec1217658639/fast' failed
mingw32-make.exe: *** [cmTryCompileExec1217658639/fast] Error 2
Determining if the aligned_alloc exist failed with the following output:
Change Dir: C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp
Run Build Command:"C:/MinGW/bin/mingw32-make.exe" "cmTryCompileExec2343161115/fast"
C:/MinGW/bin/mingw32-make.exe -f CMakeFiles\cmTryCompileExec2343161115.dir\build.make CMakeFiles/cmTryCompileExec2343161115.dir/build
mingw32-make.exe[1]: Entering directory 'C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp'
"C:\Program Files (x86)\CMake\bin\cmake.exe" -E cmake_progress_report C:\Users\Bryce.WIN-MA226DOSFHD\Desktop\Skyland\NeoBuild\CMakeFiles\CMakeTmp\CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec2343161115.dir/CheckSymbolExists.c.obj
C:\MinGW\bin\gcc.exe -std=c99 -O2 -DWIN32 -I"C:\Program Files (x86)\Microsoft DirectX SDK (June 2010)\/Include" -o CMakeFiles\cmTryCompileExec2343161115.dir\CheckSymbolExists.c.obj -c C:\Users\Bryce.WIN-MA226DOSFHD\Desktop\Skyland\NeoBuild\CMakeFiles\CMakeTmp\CheckSymbolExists.c
C:\Users\Bryce.WIN-MA226DOSFHD\Desktop\Skyland\NeoBuild\CMakeFiles\CMakeTmp\CheckSymbolExists.c: In function 'main':
C:\Users\Bryce.WIN-MA226DOSFHD\Desktop\Skyland\NeoBuild\CMakeFiles\CMakeTmp\CheckSymbolExists.c:8:19: error: 'aligned_alloc' undeclared (first use in this function)
return ((int*)(&aligned_alloc))[argc];
^
C:\Users\Bryce.WIN-MA226DOSFHD\Desktop\Skyland\NeoBuild\CMakeFiles\CMakeTmp\CheckSymbolExists.c:8:19: note: each undeclared identifier is reported only once for each function it appears in
CMakeFiles\cmTryCompileExec2343161115.dir\build.make:56: recipe for target 'CMakeFiles/cmTryCompileExec2343161115.dir/CheckSymbolExists.c.obj' failed
mingw32-make.exe[1]: *** [CMakeFiles/cmTryCompileExec2343161115.dir/CheckSymbolExists.c.obj] Error 1
mingw32-make.exe[1]: Leaving directory 'C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp'
Makefile:117: recipe for target 'cmTryCompileExec2343161115/fast' failed
mingw32-make.exe: *** [cmTryCompileExec2343161115/fast] Error 2
File C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp/CheckSymbolExists.c:
/* */
#include <stdlib.h>
int main(int argc, char** argv)
{
(void)argv;
#ifndef aligned_alloc
return ((int*)(&aligned_alloc))[argc];
#else
(void)argc;
return 0;
#endif
}
Determining if the posix_memalign exist failed with the following output:
Change Dir: C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp
Run Build Command:"C:/MinGW/bin/mingw32-make.exe" "cmTryCompileExec2474706527/fast"
C:/MinGW/bin/mingw32-make.exe -f CMakeFiles\cmTryCompileExec2474706527.dir\build.make CMakeFiles/cmTryCompileExec2474706527.dir/build
mingw32-make.exe[1]: Entering directory 'C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp'
"C:\Program Files (x86)\CMake\bin\cmake.exe" -E cmake_progress_report C:\Users\Bryce.WIN-MA226DOSFHD\Desktop\Skyland\NeoBuild\CMakeFiles\CMakeTmp\CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec2474706527.dir/CheckSymbolExists.c.obj
C:\MinGW\bin\gcc.exe -std=c99 -O2 -DWIN32 -I"C:\Program Files (x86)\Microsoft DirectX SDK (June 2010)\/Include" -o CMakeFiles\cmTryCompileExec2474706527.dir\CheckSymbolExists.c.obj -c C:\Users\Bryce.WIN-MA226DOSFHD\Desktop\Skyland\NeoBuild\CMakeFiles\CMakeTmp\CheckSymbolExists.c
C:\Users\Bryce.WIN-MA226DOSFHD\Desktop\Skyland\NeoBuild\CMakeFiles\CMakeTmp\CheckSymbolExists.c: In function 'main':
C:\Users\Bryce.WIN-MA226DOSFHD\Desktop\Skyland\NeoBuild\CMakeFiles\CMakeTmp\CheckSymbolExists.c:8:19: error: 'posix_memalign' undeclared (first use in this function)
return ((int*)(&posix_memalign))[argc];
^
C:\Users\Bryce.WIN-MA226DOSFHD\Desktop\Skyland\NeoBuild\CMakeFiles\CMakeTmp\CheckSymbolExists.c:8:19: note: each undeclared identifier is reported only once for each function it appears in
CMakeFiles\cmTryCompileExec2474706527.dir\build.make:56: recipe for target 'CMakeFiles/cmTryCompileExec2474706527.dir/CheckSymbolExists.c.obj' failed
mingw32-make.exe[1]: *** [CMakeFiles/cmTryCompileExec2474706527.dir/CheckSymbolExists.c.obj] Error 1
mingw32-make.exe[1]: Leaving directory 'C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp'
Makefile:117: recipe for target 'cmTryCompileExec2474706527/fast' failed
mingw32-make.exe: *** [cmTryCompileExec2474706527/fast] Error 2
File C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp/CheckSymbolExists.c:
/* */
#include <stdlib.h>
int main(int argc, char** argv)
{
(void)argv;
#ifndef posix_memalign
return ((int*)(&posix_memalign))[argc];
#else
(void)argc;
return 0;
#endif
}
Determining if the _aligned_malloc exist failed with the following output:
Change Dir: C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp
Run Build Command:"C:/MinGW/bin/mingw32-make.exe" "cmTryCompileExec2539583552/fast"
C:/MinGW/bin/mingw32-make.exe -f CMakeFiles\cmTryCompileExec2539583552.dir\build.make CMakeFiles/cmTryCompileExec2539583552.dir/build
mingw32-make.exe[1]: Entering directory 'C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp'
"C:\Program Files (x86)\CMake\bin\cmake.exe" -E cmake_progress_report C:\Users\Bryce.WIN-MA226DOSFHD\Desktop\Skyland\NeoBuild\CMakeFiles\CMakeTmp\CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec2539583552.dir/CheckSymbolExists.c.obj
C:\MinGW\bin\gcc.exe -std=c99 -O2 -DWIN32 -I"C:\Program Files (x86)\Microsoft DirectX SDK (June 2010)\/Include" -o CMakeFiles\cmTryCompileExec2539583552.dir\CheckSymbolExists.c.obj -c C:\Users\Bryce.WIN-MA226DOSFHD\Desktop\Skyland\NeoBuild\CMakeFiles\CMakeTmp\CheckSymbolExists.c
C:\Users\Bryce.WIN-MA226DOSFHD\Desktop\Skyland\NeoBuild\CMakeFiles\CMakeTmp\CheckSymbolExists.c: In function 'main':
C:\Users\Bryce.WIN-MA226DOSFHD\Desktop\Skyland\NeoBuild\CMakeFiles\CMakeTmp\CheckSymbolExists.c:8:19: error: '_aligned_malloc' undeclared (first use in this function)
return ((int*)(&_aligned_malloc))[argc];
^
C:\Users\Bryce.WIN-MA226DOSFHD\Desktop\Skyland\NeoBuild\CMakeFiles\CMakeTmp\CheckSymbolExists.c:8:19: note: each undeclared identifier is reported only once for each function it appears in
CMakeFiles\cmTryCompileExec2539583552.dir\build.make:56: recipe for target 'CMakeFiles/cmTryCompileExec2539583552.dir/CheckSymbolExists.c.obj' failed
mingw32-make.exe[1]: *** [CMakeFiles/cmTryCompileExec2539583552.dir/CheckSymbolExists.c.obj] Error 1
mingw32-make.exe[1]: Leaving directory 'C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp'
Makefile:117: recipe for target 'cmTryCompileExec2539583552/fast' failed
mingw32-make.exe: *** [cmTryCompileExec2539583552/fast] Error 2
File C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/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: C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp
Run Build Command:"C:/MinGW/bin/mingw32-make.exe" "cmTryCompileExec3208512312/fast"
C:/MinGW/bin/mingw32-make.exe -f CMakeFiles\cmTryCompileExec3208512312.dir\build.make CMakeFiles/cmTryCompileExec3208512312.dir/build
mingw32-make.exe[1]: Entering directory 'C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp'
"C:\Program Files (x86)\CMake\bin\cmake.exe" -E cmake_progress_report C:\Users\Bryce.WIN-MA226DOSFHD\Desktop\Skyland\NeoBuild\CMakeFiles\CMakeTmp\CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec3208512312.dir/CheckSymbolExists.c.obj
C:\MinGW\bin\gcc.exe -std=c99 -O2 -DWIN32 -I"C:\Program Files (x86)\Microsoft DirectX SDK (June 2010)\/Include" -o CMakeFiles\cmTryCompileExec3208512312.dir\CheckSymbolExists.c.obj -c C:\Users\Bryce.WIN-MA226DOSFHD\Desktop\Skyland\NeoBuild\CMakeFiles\CMakeTmp\CheckSymbolExists.c
C:\Users\Bryce.WIN-MA226DOSFHD\Desktop\Skyland\NeoBuild\CMakeFiles\CMakeTmp\CheckSymbolExists.c: In function 'main':
C:\Users\Bryce.WIN-MA226DOSFHD\Desktop\Skyland\NeoBuild\CMakeFiles\CMakeTmp\CheckSymbolExists.c:8:19: error: '_controlfp' undeclared (first use in this function)
return ((int*)(&_controlfp))[argc];
^
C:\Users\Bryce.WIN-MA226DOSFHD\Desktop\Skyland\NeoBuild\CMakeFiles\CMakeTmp\CheckSymbolExists.c:8:19: note: each undeclared identifier is reported only once for each function it appears in
CMakeFiles\cmTryCompileExec3208512312.dir\build.make:56: recipe for target 'CMakeFiles/cmTryCompileExec3208512312.dir/CheckSymbolExists.c.obj' failed
mingw32-make.exe[1]: *** [CMakeFiles/cmTryCompileExec3208512312.dir/CheckSymbolExists.c.obj] Error 1
mingw32-make.exe[1]: Leaving directory 'C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp'
Makefile:117: recipe for target 'cmTryCompileExec3208512312/fast' failed
mingw32-make.exe: *** [cmTryCompileExec3208512312/fast] Error 2
File C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/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: C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp
Run Build Command:"C:/MinGW/bin/mingw32-make.exe" "cmTryCompileExec3855355014/fast"
C:/MinGW/bin/mingw32-make.exe -f CMakeFiles\cmTryCompileExec3855355014.dir\build.make CMakeFiles/cmTryCompileExec3855355014.dir/build
mingw32-make.exe[1]: Entering directory 'C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp'
"C:\Program Files (x86)\CMake\bin\cmake.exe" -E cmake_progress_report C:\Users\Bryce.WIN-MA226DOSFHD\Desktop\Skyland\NeoBuild\CMakeFiles\CMakeTmp\CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec3855355014.dir/CheckSymbolExists.c.obj
C:\MinGW\bin\gcc.exe -std=c99 -O2 -DWIN32 -I"C:\Program Files (x86)\Microsoft DirectX SDK (June 2010)\/Include" -o CMakeFiles\cmTryCompileExec3855355014.dir\CheckSymbolExists.c.obj -c C:\Users\Bryce.WIN-MA226DOSFHD\Desktop\Skyland\NeoBuild\CMakeFiles\CMakeTmp\CheckSymbolExists.c
C:\Users\Bryce.WIN-MA226DOSFHD\Desktop\Skyland\NeoBuild\CMakeFiles\CMakeTmp\CheckSymbolExists.c: In function 'main':
C:\Users\Bryce.WIN-MA226DOSFHD\Desktop\Skyland\NeoBuild\CMakeFiles\CMakeTmp\CheckSymbolExists.c:8:19: error: '__control87_2' undeclared (first use in this function)
return ((int*)(&__control87_2))[argc];
^
C:\Users\Bryce.WIN-MA226DOSFHD\Desktop\Skyland\NeoBuild\CMakeFiles\CMakeTmp\CheckSymbolExists.c:8:19: note: each undeclared identifier is reported only once for each function it appears in
CMakeFiles\cmTryCompileExec3855355014.dir\build.make:56: recipe for target 'CMakeFiles/cmTryCompileExec3855355014.dir/CheckSymbolExists.c.obj' failed
mingw32-make.exe[1]: *** [CMakeFiles/cmTryCompileExec3855355014.dir/CheckSymbolExists.c.obj] Error 1
mingw32-make.exe[1]: Leaving directory 'C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp'
Makefile:117: recipe for target 'cmTryCompileExec3855355014/fast' failed
mingw32-make.exe: *** [cmTryCompileExec3855355014/fast] Error 2
File C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/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 arm_neon.h exists failed with the following output:
Change Dir: C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp
Run Build Command:"C:/MinGW/bin/mingw32-make.exe" "cmTryCompileExec2223397523/fast"
C:/MinGW/bin/mingw32-make.exe -f CMakeFiles\cmTryCompileExec2223397523.dir\build.make CMakeFiles/cmTryCompileExec2223397523.dir/build
mingw32-make.exe[1]: Entering directory 'C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp'
"C:\Program Files (x86)\CMake\bin\cmake.exe" -E cmake_progress_report C:\Users\Bryce.WIN-MA226DOSFHD\Desktop\Skyland\NeoBuild\CMakeFiles\CMakeTmp\CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec2223397523.dir/CheckIncludeFile.c.obj
C:\MinGW\bin\gcc.exe -std=c99 -O2 -DWIN32 -I"C:\Program Files (x86)\Microsoft DirectX SDK (June 2010)\/Include" -o CMakeFiles\cmTryCompileExec2223397523.dir\CheckIncludeFile.c.obj -c C:\Users\Bryce.WIN-MA226DOSFHD\Desktop\Skyland\NeoBuild\CMakeFiles\CMakeTmp\CheckIncludeFile.c
C:\Users\Bryce.WIN-MA226DOSFHD\Desktop\Skyland\NeoBuild\CMakeFiles\CMakeTmp\CheckIncludeFile.c:1:22: fatal error: arm_neon.h: No such file or directory
#include <arm_neon.h>
^
compilation terminated.
CMakeFiles\cmTryCompileExec2223397523.dir\build.make:56: recipe for target 'CMakeFiles/cmTryCompileExec2223397523.dir/CheckIncludeFile.c.obj' failed
mingw32-make.exe[1]: *** [CMakeFiles/cmTryCompileExec2223397523.dir/CheckIncludeFile.c.obj] Error 1
mingw32-make.exe[1]: Leaving directory 'C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp'
Makefile:117: recipe for target 'cmTryCompileExec2223397523/fast' failed
mingw32-make.exe: *** [cmTryCompileExec2223397523/fast] Error 2
Determining if the include file portaudio.h exists failed with the following output:
Change Dir: C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp
Run Build Command:"C:/MinGW/bin/mingw32-make.exe" "cmTryCompileExec3146475392/fast"
C:/MinGW/bin/mingw32-make.exe -f CMakeFiles\cmTryCompileExec3146475392.dir\build.make CMakeFiles/cmTryCompileExec3146475392.dir/build
mingw32-make.exe[1]: Entering directory 'C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp'
"C:\Program Files (x86)\CMake\bin\cmake.exe" -E cmake_progress_report C:\Users\Bryce.WIN-MA226DOSFHD\Desktop\Skyland\NeoBuild\CMakeFiles\CMakeTmp\CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec3146475392.dir/CheckIncludeFile.c.obj
C:\MinGW\bin\gcc.exe -std=c99 -O2 -DWIN32 -I"C:\Program Files (x86)\Microsoft DirectX SDK (June 2010)\/Include" -o CMakeFiles\cmTryCompileExec3146475392.dir\CheckIncludeFile.c.obj -c C:\Users\Bryce.WIN-MA226DOSFHD\Desktop\Skyland\NeoBuild\CMakeFiles\CMakeTmp\CheckIncludeFile.c
C:\Users\Bryce.WIN-MA226DOSFHD\Desktop\Skyland\NeoBuild\CMakeFiles\CMakeTmp\CheckIncludeFile.c:1:23: fatal error: portaudio.h: No such file or directory
#include <portaudio.h>
^
compilation terminated.
CMakeFiles\cmTryCompileExec3146475392.dir\build.make:56: recipe for target 'CMakeFiles/cmTryCompileExec3146475392.dir/CheckIncludeFile.c.obj' failed
mingw32-make.exe[1]: *** [CMakeFiles/cmTryCompileExec3146475392.dir/CheckIncludeFile.c.obj] Error 1
mingw32-make.exe[1]: Leaving directory 'C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp'
Makefile:117: recipe for target 'cmTryCompileExec3146475392/fast' failed
mingw32-make.exe: *** [cmTryCompileExec3146475392/fast] Error 2
Determining if the include file pulse/pulseaudio.h exists failed with the following output:
Change Dir: C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp
Run Build Command:"C:/MinGW/bin/mingw32-make.exe" "cmTryCompileExec32377493/fast"
C:/MinGW/bin/mingw32-make.exe -f CMakeFiles\cmTryCompileExec32377493.dir\build.make CMakeFiles/cmTryCompileExec32377493.dir/build
mingw32-make.exe[1]: Entering directory 'C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp'
"C:\Program Files (x86)\CMake\bin\cmake.exe" -E cmake_progress_report C:\Users\Bryce.WIN-MA226DOSFHD\Desktop\Skyland\NeoBuild\CMakeFiles\CMakeTmp\CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec32377493.dir/CheckIncludeFile.c.obj
C:\MinGW\bin\gcc.exe -std=c99 -O2 -DWIN32 -I"C:\Program Files (x86)\Microsoft DirectX SDK (June 2010)\/Include" -o CMakeFiles\cmTryCompileExec32377493.dir\CheckIncludeFile.c.obj -c C:\Users\Bryce.WIN-MA226DOSFHD\Desktop\Skyland\NeoBuild\CMakeFiles\CMakeTmp\CheckIncludeFile.c
C:\Users\Bryce.WIN-MA226DOSFHD\Desktop\Skyland\NeoBuild\CMakeFiles\CMakeTmp\CheckIncludeFile.c:1:30: fatal error: pulse/pulseaudio.h: No such file or directory
#include <pulse/pulseaudio.h>
^
compilation terminated.
CMakeFiles\cmTryCompileExec32377493.dir\build.make:56: recipe for target 'CMakeFiles/cmTryCompileExec32377493.dir/CheckIncludeFile.c.obj' failed
mingw32-make.exe[1]: *** [CMakeFiles/cmTryCompileExec32377493.dir/CheckIncludeFile.c.obj] Error 1
mingw32-make.exe[1]: Leaving directory 'C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp'
Makefile:117: recipe for target 'cmTryCompileExec32377493/fast' failed
mingw32-make.exe: *** [cmTryCompileExec32377493/fast] Error 2
Determining if the include file /System/Library/Frameworks/CoreAudio.framework/Headers/CoreAudio.h exists failed with the following output:
Change Dir: C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp
Run Build Command:"C:/MinGW/bin/mingw32-make.exe" "cmTryCompileExec4080983363/fast"
C:/MinGW/bin/mingw32-make.exe -f CMakeFiles\cmTryCompileExec4080983363.dir\build.make CMakeFiles/cmTryCompileExec4080983363.dir/build
mingw32-make.exe[1]: Entering directory 'C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp'
"C:\Program Files (x86)\CMake\bin\cmake.exe" -E cmake_progress_report C:\Users\Bryce.WIN-MA226DOSFHD\Desktop\Skyland\NeoBuild\CMakeFiles\CMakeTmp\CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec4080983363.dir/CheckIncludeFile.c.obj
C:\MinGW\bin\gcc.exe -std=c99 -O2 -DWIN32 -I"C:\Program Files (x86)\Microsoft DirectX SDK (June 2010)\/Include" -o CMakeFiles\cmTryCompileExec4080983363.dir\CheckIncludeFile.c.obj -c C:\Users\Bryce.WIN-MA226DOSFHD\Desktop\Skyland\NeoBuild\CMakeFiles\CMakeTmp\CheckIncludeFile.c
C:\Users\Bryce.WIN-MA226DOSFHD\Desktop\Skyland\NeoBuild\CMakeFiles\CMakeTmp\CheckIncludeFile.c:1:78: fatal error: /System/Library/Frameworks/CoreAudio.framework/Headers/CoreAudio.h: No such file or directory
#include </System/Library/Frameworks/CoreAudio.framework/Headers/CoreAudio.h>
^
compilation terminated.
CMakeFiles\cmTryCompileExec4080983363.dir\build.make:56: recipe for target 'CMakeFiles/cmTryCompileExec4080983363.dir/CheckIncludeFile.c.obj' failed
mingw32-make.exe[1]: *** [CMakeFiles/cmTryCompileExec4080983363.dir/CheckIncludeFile.c.obj] Error 1
mingw32-make.exe[1]: Leaving directory 'C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp'
Makefile:117: recipe for target 'cmTryCompileExec4080983363/fast' failed
mingw32-make.exe: *** [cmTryCompileExec4080983363/fast] Error 2
Determining if files SLES/OpenSLES.h;SLES/OpenSLES_Android.h exist failed with the following output:
Change Dir: C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp
Run Build Command:"C:/MinGW/bin/mingw32-make.exe" "cmTryCompileExec770344787/fast"
C:/MinGW/bin/mingw32-make.exe -f CMakeFiles\cmTryCompileExec770344787.dir\build.make CMakeFiles/cmTryCompileExec770344787.dir/build
mingw32-make.exe[1]: Entering directory 'C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp'
"C:\Program Files (x86)\CMake\bin\cmake.exe" -E cmake_progress_report C:\Users\Bryce.WIN-MA226DOSFHD\Desktop\Skyland\NeoBuild\CMakeFiles\CMakeTmp\CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec770344787.dir/CheckIncludeFiles.c.obj
C:\MinGW\bin\gcc.exe -std=c99 -O2 -DWIN32 -I"C:\Program Files (x86)\Microsoft DirectX SDK (June 2010)\/Include" -o CMakeFiles\cmTryCompileExec770344787.dir\CheckIncludeFiles.c.obj -c C:\Users\Bryce.WIN-MA226DOSFHD\Desktop\Skyland\NeoBuild\CMakeFiles\CMakeTmp\CheckIncludeFiles.c
C:\Users\Bryce.WIN-MA226DOSFHD\Desktop\Skyland\NeoBuild\CMakeFiles\CMakeTmp\CheckIncludeFiles.c:2:27: fatal error: SLES/OpenSLES.h: No such file or directory
#include <SLES/OpenSLES.h>
^
compilation terminated.
CMakeFiles\cmTryCompileExec770344787.dir\build.make:56: recipe for target 'CMakeFiles/cmTryCompileExec770344787.dir/CheckIncludeFiles.c.obj' failed
mingw32-make.exe[1]: *** [CMakeFiles/cmTryCompileExec770344787.dir/CheckIncludeFiles.c.obj] Error 1
mingw32-make.exe[1]: Leaving directory 'C:/Users/Bryce.WIN-MA226DOSFHD/Desktop/Skyland/NeoBuild/CMakeFiles/CMakeTmp'
Makefile:117: recipe for target 'cmTryCompileExec770344787/fast' failed
mingw32-make.exe: *** [cmTryCompileExec770344787/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