You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@quickstep.apache.org by Robert Claus <ro...@gmail.com> on 2018/01/08 03:41:32 UTC

CMake Issues After iOS Upgrade

Hi Quickstep Team,

I finally upgraded my Mac to 10.13.1 this weekend but I can't get cmake to
succeed anymore.  I'm guessing it's a flag I'm missing, but I'm having
trouble figuring out what exactly and could use some help.  Any ideas what
could be causing the issue?

CMakeError and Output are attached.

Thanks!
-Robert

Re: CMake Issues After iOS Upgrade

Posted by Robert Claus <ro...@gmail.com>.
Thanks for the help!  Jianqiao ended up setting me on the right path
investigating bison.

FYI in case someone else encounters this:

It ended up being an issue with bison after the MacOS upgrade.  I got past
it by reinstalling bison.  The patched version of bison installed to a
slightly different path so for now I also used a cmake flag to the patched
version of bison.

brew update
brew uninstall bison
brew install bison
brew upgrade

cmake -D CMAKE_BUILD_TYPE=Debug -D USE_LINENOISE=0 -D
QUICKSTEP_HAVE_OPEN_MEMSTREAM=0 *-D
BISON_EXECUTABLE=/usr/local/opt/bison/bin/bison* -G "Xcode" ..


-Robert

On Mon, Jan 8, 2018 at 10:16 AM, Harshad Deshmukh <ha...@cs.wisc.edu>
wrote:

> Looks like some of the system libraries needed by Quickstep are not
> supported/present on MacOS. A cursory google search showed this issue which
> is similar to ours: https://github.com/fireice-uk/xmr-stak-cpu/issues/20
>
> I don't have a Mac, so I'm afraid I can't help much. However, can you try
> installing the missing libraries through brew and give another shot?
>
>
> Thanks,
>
> Harshad
>
> ________________________________
> From: Robert Claus <ro...@gmail.com>
> Sent: Monday, January 8, 2018 8:24:08 AM
> To: dev@quickstep.incubator.apache.org
> Subject: Re: CMake Issues After iOS Upgrade
>
> Attaching again and adding to email body.
>
>
>
> CMakeError.log
>
> Determining if files hdfs/hdfs.h exist failed with the following output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_df941/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_df941.dir/build.make CMakeFiles/cmTC_df941.dir/build
> Building C object CMakeFiles/cmTC_df941.dir/CheckIncludeFiles.c.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
>  -o CMakeFiles/cmTC_df941.dir/CheckIncludeFiles.c.o   -c
> /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/
> CheckIncludeFiles.c
> /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckIncludeFiles.c:2:10:
> fatal error: 'hdfs/hdfs.h' file not found
> #include <hdfs/hdfs.h>
>          ^~~~~~~~~~~~~
> 1 error generated.
> make[1]: *** [CMakeFiles/cmTC_df941.dir/CheckIncludeFiles.c.o] Error 1
> make: *** [cmTC_df941/fast] Error 2
>
> Source:
> /* */
> #include <hdfs/hdfs.h>
>
>
> int main(void){return 0;}
>
> Performing C++ SOURCE FILE Test HAVE_CXX_FLAG_WZERO_AS_NULL_POINTER_CONSTANT
> failed with the following output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_312d6/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_312d6.dir/build.make CMakeFiles/cmTC_312d6.dir/build
> Building CXX object CMakeFiles/cmTC_312d6.dir/src.cxx.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -std=c++11 -Wall -Wextra -Wshadow -pedantic -pedantic-errors
> -Wshorten-64-to-32 -Wfloat-equal -fstrict-aliasing
> -DHAVE_CXX_FLAG_WZERO_AS_NULL_POINTER_CONSTANT -Wzero-as-null-pointer-constant
> -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/
> MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -Wzero-as-null-pointer-constant
> -o CMakeFiles/cmTC_312d6.dir/src.cxx.o -c /Users/robertclaus/
> Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
> warning: unknown warning option '-Wzero-as-null-pointer-constant'; did
> you mean '-Wint-to-void-pointer-cast'? [-Wunknown-warning-option]
> warning: unknown warning option '-Wzero-as-null-pointer-constant'; did
> you mean '-Wint-to-void-pointer-cast'? [-Wunknown-warning-option]
> 2 warnings generated.
> Linking CXX executable cmTC_312d6
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_312d6.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -std=c++11 -Wall -Wextra -Wshadow -pedantic -pedantic-errors
> -Wshorten-64-to-32 -Wfloat-equal -fstrict-aliasing
> -DHAVE_CXX_FLAG_WZERO_AS_NULL_POINTER_CONSTANT -Wzero-as-null-pointer-constant
> -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/
> MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first
> -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_312d6.dir/src.cxx.o
> -o cmTC_312d6
>
> Source file was:
> int main() { return 0; }
> Determining if the include file syscall.h exists failed with the following
> output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_f8ddd/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_f8ddd.dir/build.make CMakeFiles/cmTC_f8ddd.dir/build
> Building C object CMakeFiles/cmTC_f8ddd.dir/CheckIncludeFile.c.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
>  -o CMakeFiles/cmTC_f8ddd.dir/CheckIncludeFile.c.o   -c
> /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/
> CheckIncludeFile.c
> /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c:1:10:
> fatal error: 'syscall.h' file not found
> #include <syscall.h>
>          ^~~~~~~~~~~
> 1 error generated.
> make[1]: *** [CMakeFiles/cmTC_f8ddd.dir/CheckIncludeFile.c.o] Error 1
> make: *** [cmTC_f8ddd/fast] Error 2
>
>
> Determining if the include file ucontext.h exists failed with the
> following output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_98a6d/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_98a6d.dir/build.make CMakeFiles/cmTC_98a6d.dir/build
> Building C object CMakeFiles/cmTC_98a6d.dir/CheckIncludeFile.c.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
>  -o CMakeFiles/cmTC_98a6d.dir/CheckIncludeFile.c.o   -c
> /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/
> CheckIncludeFile.c
> In file included from /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp/CheckIncludeFile.c:1:
> /Applications/Xcode.app/Contents/Developer/Platforms/
> MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/usr/include/ucontext.h:43:2:
> error: The deprecated ucontext routines require _XOPEN_SOURCE to be defined
> #error The deprecated ucontext routines require _XOPEN_SOURCE to be defined
>  ^
> 1 error generated.
> make[1]: *** [CMakeFiles/cmTC_98a6d.dir/CheckIncludeFile.c.o] Error 1
> make: *** [cmTC_98a6d/fast] Error 2
>
>
> Determining if the include file ext/slist exists failed with the following
> output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_cef81/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_cef81.dir/build.make CMakeFiles/cmTC_cef81.dir/build
> Building CXX object CMakeFiles/cmTC_cef81.dir/CheckIncludeFile.cxx.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/
> MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o
> CMakeFiles/cmTC_cef81.dir/CheckIncludeFile.cxx.o -c /Users/robertclaus/
> Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckIncludeFile.cxx
> /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckIncludeFile.cxx:1:10:
> fatal error: 'ext/slist' file not found
> #include <ext/slist>
>          ^~~~~~~~~~~
> 1 error generated.
> make[1]: *** [CMakeFiles/cmTC_cef81.dir/CheckIncludeFile.cxx.o] Error 1
> make: *** [cmTC_cef81/fast] Error 2
>
>
> Determining if the include file tr1/unordered_map exists failed with the
> following output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_c39b5/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_c39b5.dir/build.make CMakeFiles/cmTC_c39b5.dir/build
> Building CXX object CMakeFiles/cmTC_c39b5.dir/CheckIncludeFile.cxx.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/
> MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o
> CMakeFiles/cmTC_c39b5.dir/CheckIncludeFile.cxx.o -c /Users/robertclaus/
> Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckIncludeFile.cxx
> /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckIncludeFile.cxx:1:10:
> fatal error: 'tr1/unordered_map' file not found
> #include <tr1/unordered_map>
>          ^~~~~~~~~~~~~~~~~~~
> 1 error generated.
> make[1]: *** [CMakeFiles/cmTC_c39b5.dir/CheckIncludeFile.cxx.o] Error 1
> make: *** [cmTC_c39b5/fast] Error 2
>
>
> Determining if the include file tr1/unordered_set exists failed with the
> following output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_e67da/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_e67da.dir/build.make CMakeFiles/cmTC_e67da.dir/build
> Building CXX object CMakeFiles/cmTC_e67da.dir/CheckIncludeFile.cxx.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/
> MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o
> CMakeFiles/cmTC_e67da.dir/CheckIncludeFile.cxx.o -c /Users/robertclaus/
> Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckIncludeFile.cxx
> /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckIncludeFile.cxx:1:10:
> fatal error: 'tr1/unordered_set' file not found
> #include <tr1/unordered_set>
>          ^~~~~~~~~~~~~~~~~~~
> 1 error generated.
> make[1]: *** [CMakeFiles/cmTC_e67da.dir/CheckIncludeFile.cxx.o] Error 1
> make: *** [cmTC_e67da/fast] Error 2
>
>
> Determining size of unsigned __int16 failed with the following output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_dbb53/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_dbb53.dir/build.make CMakeFiles/cmTC_dbb53.dir/build
> Building C object CMakeFiles/cmTC_dbb53.dir/HAVE___UINT16.c.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
>  -o CMakeFiles/cmTC_dbb53.dir/HAVE___UINT16.c.o   -c /Users/robertclaus/
> Development/quickstepSQL/build/CMakeFiles/CheckTypeSize/HAVE___UINT16.c
> /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/
> CheckTypeSize/HAVE___UINT16.c:25:12: error: expected ')'
>   ('0' + ((SIZE / 10000)%10)),
>            ^
> /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/
> CheckTypeSize/HAVE___UINT16.c:23:31: note: expanded from macro 'SIZE'
> #define SIZE (sizeof(unsigned __int16))
>                               ^
> /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/
> CheckTypeSize/HAVE___UINT16.c:25:12: note: to match this '('
> /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/
> CheckTypeSize/HAVE___UINT16.c:23:21: note: expanded from macro 'SIZE'
> #define SIZE (sizeof(unsigned __int16))
>                     ^
> /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/
> CheckTypeSize/HAVE___UINT16.c:26:12: error: expected ')'
>   ('0' + ((SIZE / 1000)%10)),
>            ^
> /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/
> CheckTypeSize/HAVE___UINT16.c:23:31: note: expanded from macro 'SIZE'
> #define SIZE (sizeof(unsigned __int16))
>                               ^
> /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/
> CheckTypeSize/HAVE___UINT16.c:26:12: note: to match this '('
> /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/
> CheckTypeSize/HAVE___UINT16.c:23:21: note: expanded from macro 'SIZE'
> #define SIZE (sizeof(unsigned __int16))
>                     ^
> /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/
> CheckTypeSize/HAVE___UINT16.c:27:12: error: expected ')'
>   ('0' + ((SIZE / 100)%10)),
>            ^
> /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/
> CheckTypeSize/HAVE___UINT16.c:23:31: note: expanded from macro 'SIZE'
> #define SIZE (sizeof(unsigned __int16))
>                               ^
> /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/
> CheckTypeSize/HAVE___UINT16.c:27:12: note: to match this '('
> /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/
> CheckTypeSize/HAVE___UINT16.c:23:21: note: expanded from macro 'SIZE'
> #define SIZE (sizeof(unsigned __int16))
>                     ^
> /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/
> CheckTypeSize/HAVE___UINT16.c:28:12: error: expected ')'
>   ('0' + ((SIZE / 10)%10)),
>            ^
> /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/
> CheckTypeSize/HAVE___UINT16.c:23:31: note: expanded from macro 'SIZE'
> #define SIZE (sizeof(unsigned __int16))
>                               ^
> /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/
> CheckTypeSize/HAVE___UINT16.c:28:12: note: to match this '('
> /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/
> CheckTypeSize/HAVE___UINT16.c:23:21: note: expanded from macro 'SIZE'
> #define SIZE (sizeof(unsigned __int16))
>                     ^
> /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/
> CheckTypeSize/HAVE___UINT16.c:29:12: error: expected ')'
>   ('0' +  (SIZE    % 10)),
>            ^
> /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/
> CheckTypeSize/HAVE___UINT16.c:23:31: note: expanded from macro 'SIZE'
> #define SIZE (sizeof(unsigned __int16))
>                               ^
> /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/
> CheckTypeSize/HAVE___UINT16.c:29:12: note: to match this '('
> /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/
> CheckTypeSize/HAVE___UINT16.c:23:21: note: expanded from macro 'SIZE'
> #define SIZE (sizeof(unsigned __int16))
>                     ^
> 5 errors generated.
> make[1]: *** [CMakeFiles/cmTC_dbb53.dir/HAVE___UINT16.c.o] Error 1
> make: *** [cmTC_dbb53/fast] Error 2
>
> /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/
> CheckTypeSize/HAVE___UINT16.c:
> #include <sys/types.h>
> #include <stdint.h>
> #include <stddef.h>
>
>
> #undef KEY
> #if defined(__i386)
> # define KEY '_','_','i','3','8','6'
> #elif defined(__x86_64)
> # define KEY '_','_','x','8','6','_','6','4'
> #elif defined(__ppc__)
> # define KEY '_','_','p','p','c','_','_'
> #elif defined(__ppc64__)
> # define KEY '_','_','p','p','c','6','4','_','_'
> #elif defined(__aarch64__)
> # define KEY '_','_','a','a','r','c','h','6','4','_','_'
> #elif defined(__ARM_ARCH_7A__)
> # define KEY '_','_','A','R','M','_','A','R','C','H','_','7','A','_','_'
> #elif defined(__ARM_ARCH_7S__)
> # define KEY '_','_','A','R','M','_','A','R','C','H','_','7','S','_','_'
> #endif
>
> #define SIZE (sizeof(unsigned __int16))
> char info_size[] =  {'I', 'N', 'F', 'O', ':', 's','i','z','e','[',
>   ('0' + ((SIZE / 10000)%10)),
>   ('0' + ((SIZE / 1000)%10)),
>   ('0' + ((SIZE / 100)%10)),
>   ('0' + ((SIZE / 10)%10)),
>   ('0' +  (SIZE    % 10)),
>   ']',
> #ifdef KEY
>   ' ','k','e','y','[', KEY, ']',
> #endif
>   '\0'};
>
> #ifdef __CLASSIC_C__
> int main(argc, argv) int argc; char *argv[];
> #else
> int main(int argc, char *argv[])
> #endif
> {
>   int require = 0;
>   require += info_size[argc];
>   (void)argv;
>   return require;
> }
>
>
> Determining if the function get_static_proc_name exists in the unwind
> failed with the following output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_2363c/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_2363c.dir/build.make CMakeFiles/cmTC_2363c.dir/build
> Building C object CMakeFiles/cmTC_2363c.dir/CheckFunctionExists.c.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/cc   -DCHECK_FUNCTION_EXISTS=get_static_proc_name
> -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/
> MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o
> CMakeFiles/cmTC_2363c.dir/CheckFunctionExists.c.o   -c
> /usr/local/Cellar/cmake/3.10.1/share/cmake/Modules/CheckFunctionExists.c
> Linking C executable cmTC_2363c
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_2363c.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/cc  -DCHECK_FUNCTION_EXISTS=get_static_proc_name
> -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/
> MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first
> -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_2363c.dir/CheckFunctionExists.c.o
> -o cmTC_2363c -lunwind
> ld: library not found for -lunwind
> clang: error: linker command failed with exit code 1 (use -v to see
> invocation)
> make[1]: *** [cmTC_2363c] Error 1
> make: *** [cmTC_2363c/fast] Error 2
>
>
> Performing C SOURCE FILE Test HAVE___DECLSPEC failed with the following
> output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_e5741/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_e5741.dir/build.make CMakeFiles/cmTC_e5741.dir/build
> Building C object CMakeFiles/cmTC_e5741.dir/src.c.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/cc   -DHAVE___DECLSPEC -isysroot
> /Applications/Xcode.app/Contents/Developer/Platforms/
> MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o
> CMakeFiles/cmTC_e5741.dir/src.c.o   -c /Users/robertclaus/
> Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.c
> /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.c:2:27:
> error: parameter named 'a' is missing
> __declspec(selectany) int a;
>                           ^
> /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.c:3:5:
> error: parameter named 'main' is missing
> int main(void) { return 0; }
>     ^
> /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.c:3:15:
> error: expected ';' at end of declaration
> int main(void) { return 0; }
>               ^
>               ;
> /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.c:2:1:
> warning: type specifier missing, defaults to 'int' [-Wimplicit-int]
> __declspec(selectany) int a;
> ^
> 1 warning and 3 errors generated.
> make[1]: *** [CMakeFiles/cmTC_e5741.dir/src.c.o] Error 1
> make: *** [cmTC_e5741/fast] Error 2
>
> Source file was:
>
> __declspec(selectany) int a;
> int main(void) { return 0; }
>
> Performing C++ SOURCE FILE Test STL_NO_NAMESPACE failed with the following
> output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_82b3e/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_82b3e.dir/build.make CMakeFiles/cmTC_82b3e.dir/build
> Building CXX object CMakeFiles/cmTC_82b3e.dir/src.cxx.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -DSTL_NO_NAMESPACE -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
>  -o CMakeFiles/cmTC_82b3e.dir/src.cxx.o -c /Users/robertclaus/
> Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
> /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx:3:1:
> error: no template named 'vector'; did you mean 'std::vector'?
> vector<int> t; int main() { }
> ^~~~~~
> std::vector
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/include/c++/v1/vector:450:28: note:
> 'std::vector' declared here
> class _LIBCPP_TEMPLATE_VIS vector
>                            ^
> 1 error generated.
> make[1]: *** [CMakeFiles/cmTC_82b3e.dir/src.cxx.o] Error 1
> make: *** [cmTC_82b3e/fast] Error 2
>
> Source file was:
>
> #include <vector>
> vector<int> t; int main() { }
>
> Performing C++ SOURCE FILE Test COMPILER_HAS_WNO_UNUSED_BUT_SET_VARIABLE
> failed with the following output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_2c168/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_2c168.dir/build.make CMakeFiles/cmTC_2c168.dir/build
> Building CXX object CMakeFiles/cmTC_2c168.dir/src.cxx.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -std=c++11 -Wall -pedantic -DCOMPILER_HAS_WNO_UNUSED_BUT_SET_VARIABLE
> -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/
> MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
>  -Wno-unused-but-set-variable -o CMakeFiles/cmTC_2c168.dir/src.cxx.o -c
> /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.
> cxx
> warning: unknown warning option '-Wno-unused-but-set-variable'; did you
> mean '-Wno-unused-const-variable'? [-Wunknown-warning-option]
> 1 warning generated.
> Linking CXX executable cmTC_2c168
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_2c168.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -std=c++11 -Wall -pedantic -DCOMPILER_HAS_WNO_UNUSED_BUT_SET_VARIABLE
> -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/
> MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first
> -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_2c168.dir/src.cxx.o
> -o cmTC_2c168
>
> Source file was:
> int main() { return 0; }
> Performing C++ SOURCE FILE Test QUICKSTEP_HAVE_MMAP_LINUX_HUGETLB failed
> with the following output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_e93bd/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_e93bd.dir/build.make CMakeFiles/cmTC_e93bd.dir/build
> Building CXX object CMakeFiles/cmTC_e93bd.dir/src.cxx.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -DQUICKSTEP_HAVE_MMAP_LINUX_HUGETLB -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
>  -o CMakeFiles/cmTC_e93bd.dir/src.cxx.o -c /Users/robertclaus/
> Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
> /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx:11:52:
> error: use of undeclared identifier 'MAP_HUGETLB'
>                      MAP_PRIVATE | MAP_ANONYMOUS | MAP_HUGETLB,
>                                                    ^
> 1 error generated.
> make[1]: *** [CMakeFiles/cmTC_e93bd.dir/src.cxx.o] Error 1
> make: *** [cmTC_e93bd/fast] Error 2
>
> Source file was:
>
>   #ifndef _GNU_SOURCE
>   #define _GNU_SOURCE
>   #endif
>   #include <sys/mman.h>
>
>   int main() {
>     void *mem = mmap(nullptr,
>                      0x200000,
>                      PROT_READ | PROT_WRITE,
>                      MAP_PRIVATE | MAP_ANONYMOUS | MAP_HUGETLB,
>                      -1, 0);
>     munmap(mem, 0x200000);
>     return 0;
>   }
>
> Performing C++ SOURCE FILE Test QUICKSTEP_HAVE_MMAP_BSD_SUPERPAGE failed
> with the following output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_fe126/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_fe126.dir/build.make CMakeFiles/cmTC_fe126.dir/build
> Building CXX object CMakeFiles/cmTC_fe126.dir/src.cxx.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -DQUICKSTEP_HAVE_MMAP_BSD_SUPERPAGE -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
>  -o CMakeFiles/cmTC_fe126.dir/src.cxx.o -c /Users/robertclaus/
> Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
> /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx:9:54:
> error: use of undeclared identifier 'MAP_ALIGNED_SUPER'
>                        MAP_PRIVATE | MAP_ANONYMOUS | MAP_ALIGNED_SUPER,
>                                                      ^
> 1 error generated.
> make[1]: *** [CMakeFiles/cmTC_fe126.dir/src.cxx.o] Error 1
> make: *** [cmTC_fe126/fast] Error 2
>
> Source file was:
>
>     #define _BSD_SOURCE
>     #include <sys/mman.h>
>
>     int main() {
>       void *mem = mmap(nullptr,
>                        0x200000,
>                        PROT_READ | PROT_WRITE,
>                        MAP_PRIVATE | MAP_ANONYMOUS | MAP_ALIGNED_SUPER,
>                        -1, 0);
>       munmap(mem, 0x200000);
>       return 0;
>     }
>
> Performing C++ SOURCE FILE Test QUICKSTEP_HAVE_CPP17_SHARED_MUTEX failed
> with the following output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_e3a80/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_e3a80.dir/build.make CMakeFiles/cmTC_e3a80.dir/build
> Building CXX object CMakeFiles/cmTC_e3a80.dir/src.cxx.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -DQUICKSTEP_HAVE_CPP17_SHARED_MUTEX -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
>  -o CMakeFiles/cmTC_e3a80.dir/src.cxx.o -c /Users/robertclaus/
> Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
> /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx:5:8:
> error: no type named 'shared_mutex' in namespace 'std'
>   std::shared_mutex m;
>   ~~~~~^
> 1 error generated.
> make[1]: *** [CMakeFiles/cmTC_e3a80.dir/src.cxx.o] Error 1
> make: *** [cmTC_e3a80/fast] Error 2
>
> Source file was:
>
> #include <shared_mutex>
>
> int main() {
>   std::shared_mutex m;
>
>   m.lock();
>   m.unlock();
>
>   m.lock_shared();
>   m.unlock_shared();
>
>   return 0;
> }
>
> Performing C++ SOURCE FILE Test QUICKSTEP_HAVE_PTHREAD_SETAFFINITY_NP_LINUX
> failed with the following output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_f92a4/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_f92a4.dir/build.make CMakeFiles/cmTC_f92a4.dir/build
> Building CXX object CMakeFiles/cmTC_f92a4.dir/src.cxx.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -DQUICKSTEP_HAVE_PTHREAD_SETAFFINITY_NP_LINUX -isysroot
> /Applications/Xcode.app/Contents/Developer/Platforms/
> MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o
> CMakeFiles/cmTC_f92a4.dir/src.cxx.o -c /Users/robertclaus/
> Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
> /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx:9:5:
> error: unknown type name 'cpu_set_t'
>     cpu_set_t cpuset;
>     ^
> 1 error generated.
> make[1]: *** [CMakeFiles/cmTC_f92a4.dir/src.cxx.o] Error 1
> make: *** [cmTC_f92a4/fast] Error 2
>
> Source file was:
>
>   #ifndef _GNU_SOURCE
>   #define _GNU_SOURCE 1
>   #endif
>   #include <pthread.h>
>   #include <sched.h>
>
>   int main() {
>     cpu_set_t cpuset;
>     CPU_ZERO(&cpuset);
>     CPU_SET(0, &cpuset);
>     if (pthread_setaffinity_np(pthread_self(), sizeof(cpuset), &cpuset)
> != 0) {
>       return 1;
>     }
>     return 0;
>   }
>
> Performing C++ SOURCE FILE Test QUICKSTEP_HAVE_PTHREAD_SETAFFINITY_NP_FREEBSD
> failed with the following output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_deb6c/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_deb6c.dir/build.make CMakeFiles/cmTC_deb6c.dir/build
> Building CXX object CMakeFiles/cmTC_deb6c.dir/src.cxx.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -DQUICKSTEP_HAVE_PTHREAD_SETAFFINITY_NP_FREEBSD -isysroot
> /Applications/Xcode.app/Contents/Developer/Platforms/
> MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o
> CMakeFiles/cmTC_deb6c.dir/src.cxx.o -c /Users/robertclaus/
> Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
> /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx:6:14:
> fatal error: 'pthread_np.h' file not found
>     #include <pthread_np.h>
>              ^~~~~~~~~~~~~~
> 1 error generated.
> make[1]: *** [CMakeFiles/cmTC_deb6c.dir/src.cxx.o] Error 1
> make: *** [cmTC_deb6c/fast] Error 2
>
> Source file was:
>
>     #ifndef _BSD_SOURCE
>     #define _BSD_SOURCE 1
>     #endif
>     #include <pthread.h>
>     #include <pthread_np.h>
>     #include <sched.h>
>
>     int main() {
>       cpuset_t cpuset;
>       CPU_ZERO(&cpuset);
>       CPU_SET(0, &cpuset);
>       if (pthread_setaffinity_np(pthread_self(), sizeof(cpuset), &cpuset)
> != 0) {
>         return 1;
>       }
>       return 0;
>     }
>
> Performing C++ SOURCE FILE Test QUICKSTEP_HAVE_PTHREAD_SETAFFINITY_NP_NETBSD
> failed with the following output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_5d440/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_5d440.dir/build.make CMakeFiles/cmTC_5d440.dir/build
> Building CXX object CMakeFiles/cmTC_5d440.dir/src.cxx.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -DQUICKSTEP_HAVE_PTHREAD_SETAFFINITY_NP_NETBSD -isysroot
> /Applications/Xcode.app/Contents/Developer/Platforms/
> MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o
> CMakeFiles/cmTC_5d440.dir/src.cxx.o -c /Users/robertclaus/
> Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
> /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx:9:7:
> error: unknown type name 'cpuset_t'
>       cpuset_t *cset = cpuset_create();
>       ^
> /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx:9:24:
> error: use of undeclared identifier 'cpuset_create'
>       cpuset_t *cset = cpuset_create();
>                        ^
> 2 errors generated.
> make[1]: *** [CMakeFiles/cmTC_5d440.dir/src.cxx.o] Error 1
> make: *** [cmTC_5d440/fast] Error 2
>
> Source file was:
>
>     #ifndef _BSD_SOURCE
>     #define _BSD_SOURCE 1
>     #endif
>     #include <pthread.h>
>     #include <sched.h>
>
>     int main() {
>       cpuset_t *cset = cpuset_create();
>       if (cpuset_set(0, cset) != 0) {
>         return 1;
>       }
>       if (pthread_setaffinity_np(pthread_self(), cpuset_size(cset), cset)
> != 0) {
>         return 1;
>       }
>       cpuset_destroy(cset);
>       return 0;
>     }
>
> Performing C++ SOURCE FILE Test QUICKSTEP_HAVE_ALIGNED_ALLOC failed with
> the following output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_bd82e/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_bd82e.dir/build.make CMakeFiles/cmTC_bd82e.dir/build
> Building CXX object CMakeFiles/cmTC_bd82e.dir/src.cxx.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -DQUICKSTEP_HAVE_ALIGNED_ALLOC -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
>  -o CMakeFiles/cmTC_bd82e.dir/src.cxx.o -c /Users/robertclaus/
> Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
> /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx:5:17:
> error: use of undeclared identifier 'aligned_alloc'
>     void *ptr = aligned_alloc(64, 256);
>                 ^
> 1 error generated.
> make[1]: *** [CMakeFiles/cmTC_bd82e.dir/src.cxx.o] Error 1
> make: *** [cmTC_bd82e/fast] Error 2
>
> Source file was:
>
>   #include <stdlib.h>
>
>   int main() {
>     void *ptr = aligned_alloc(64, 256);
>     return 0;
>   }
>
>
>
>
>
> CMakeOutput.log:
>
>
> The system is: Darwin - 17.2.0 - x86_64
> Compiling the C compiler identification source file "CMakeCCompilerId.c"
> succeeded.
> Compiler: /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/cc
> Build flags:
> Id flags:
>
> The output was:
> 0
>
>
> Compilation of the C compiler identification source "CMakeCCompilerId.c"
> produced "a.out"
>
> The C compiler identification is AppleClang, found in "/Users/robertclaus/
> Development/quickstepSQL/build/CMakeFiles/3.10.1/CompilerIdC/a.out"
>
> Compiling the CXX compiler identification source file
> "CMakeCXXCompilerId.cpp" succeeded.
> Compiler: /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++
> Build flags:
> Id flags:
>
> The output was:
> 0
>
>
> Compilation of the CXX compiler identification source
> "CMakeCXXCompilerId.cpp" produced "a.out"
>
> The CXX compiler identification is AppleClang, found in
> "/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/3.10.1/
> CompilerIdCXX/a.out"
>
> Determining if the C compiler works passed with the following output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_e6cae/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_e6cae.dir/build.make CMakeFiles/cmTC_e6cae.dir/build
> Building C object CMakeFiles/cmTC_e6cae.dir/testCCompiler.c.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
>  -o CMakeFiles/cmTC_e6cae.dir/testCCompiler.c.o   -c /Users/robertclaus/
> Development/quickstepSQL/build/CMakeFiles/CMakeTmp/testCCompiler.c
> Linking C executable cmTC_e6cae
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_e6cae.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
> -Wl,-search_paths_first -Wl,-headerpad_max_install_names
>  CMakeFiles/cmTC_e6cae.dir/testCCompiler.c.o  -o cmTC_e6cae
>
>
> Detecting C compiler ABI info compiled with the following output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_4141b/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_4141b.dir/build.make CMakeFiles/cmTC_4141b.dir/build
> Building C object CMakeFiles/cmTC_4141b.dir/CMakeCCompilerABI.c.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
>  -o CMakeFiles/cmTC_4141b.dir/CMakeCCompilerABI.c.o   -c
> /usr/local/Cellar/cmake/3.10.1/share/cmake/Modules/CMakeCCompilerABI.c
> Linking C executable cmTC_4141b
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_4141b.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
> -Wl,-search_paths_first -Wl,-headerpad_max_install_names  -v -Wl,-v
> CMakeFiles/cmTC_4141b.dir/CMakeCCompilerABI.c.o  -o cmTC_4141b
> Apple LLVM version 9.0.0 (clang-900.0.39.2)
> Target: x86_64-apple-darwin17.2.0
> Thread model: posix
> InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin
>  "/Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/ld" -demangle -lto_library
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/lib/libLTO.dylib -dynamic -arch x86_64
> -macosx_version_min 10.13.0 -syslibroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
> -o cmTC_4141b -search_paths_first -headerpad_max_install_names -v
> CMakeFiles/cmTC_4141b.dir/CMakeCCompilerABI.c.o -lSystem
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/lib/clang/9.0.0/lib/darwin/libclang_rt.osx.a
> @(#)PROGRAM:ld  PROJECT:ld64-305
> configured to support archs: armv6 armv7 armv7s arm64 i386 x86_64 x86_64h
> armv6m armv7k armv7m armv7em (tvOS)
> Library search paths:
> /Applications/Xcode.app/Contents/Developer/Platforms/
> MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/usr/lib
> Framework search paths:
> /Applications/Xcode.app/Contents/Developer/Platforms/
> MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/System/Library/Frameworks/
>
>
> Parsed C implicit link information from above output:
>   link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_
> STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)]
>   ignore line: [Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp]
>   ignore line: []
>   ignore line: [Run Build Command:"/usr/bin/make" "cmTC_4141b/fast"]
>   ignore line: [/Applications/Xcode.app/Contents/Developer/usr/bin/make
> -f CMakeFiles/cmTC_4141b.dir/build.make CMakeFiles/cmTC_4141b.dir/build]
>   ignore line: [Building C object CMakeFiles/cmTC_4141b.dir/
> CMakeCCompilerABI.c.o]
>   ignore line: [/Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
>  -o CMakeFiles/cmTC_4141b.dir/CMakeCCompilerABI.c.o   -c
> /usr/local/Cellar/cmake/3.10.1/share/cmake/Modules/CMakeCCompilerABI.c]
>   ignore line: [Linking C executable cmTC_4141b]
>   ignore line: [/usr/local/Cellar/cmake/3.10.1/bin/cmake -E
> cmake_link_script CMakeFiles/cmTC_4141b.dir/link.txt --verbose=1]
>   ignore line: [/Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
> -Wl,-search_paths_first -Wl,-headerpad_max_install_names  -v -Wl,-v
> CMakeFiles/cmTC_4141b.dir/CMakeCCompilerABI.c.o  -o cmTC_4141b ]
>   ignore line: [Apple LLVM version 9.0.0 (clang-900.0.39.2)]
>   ignore line: [Target: x86_64-apple-darwin17.2.0]
>   ignore line: [Thread model: posix]
>   ignore line: [InstalledDir: /Applications/Xcode.app/
> Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin]
>   link line: [ "/Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/ld" -demangle -lto_library
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/lib/libLTO.dylib -dynamic -arch x86_64
> -macosx_version_min 10.13.0 -syslibroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
> -o cmTC_4141b -search_paths_first -headerpad_max_install_names -v
> CMakeFiles/cmTC_4141b.dir/CMakeCCompilerABI.c.o -lSystem
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/lib/clang/9.0.0/lib/darwin/libclang_rt.osx.a]
>     arg [/Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/ld] ==> ignore
>     arg [-demangle] ==> ignore
>     arg [-lto_library] ==> ignore, skip following value
>     arg [/Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/lib/libLTO.dylib] ==> skip value of
> -lto_library
>     arg [-dynamic] ==> ignore
>     arg [-arch] ==> ignore
>     arg [x86_64] ==> ignore
>     arg [-macosx_version_min] ==> ignore
>     arg [10.13.0] ==> ignore
>     arg [-syslibroot] ==> ignore
>     arg [/Applications/Xcode.app/Contents/Developer/Platforms/
> MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk] ==> ignore
>     arg [-o] ==> ignore
>     arg [cmTC_4141b] ==> ignore
>     arg [-search_paths_first] ==> ignore
>     arg [-headerpad_max_install_names] ==> ignore
>     arg [-v] ==> ignore
>     arg [CMakeFiles/cmTC_4141b.dir/CMakeCCompilerABI.c.o] ==> ignore
>     arg [-lSystem] ==> lib [System]
>     arg [/Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/lib/clang/9.0.0/lib/darwin/libclang_rt.osx.a]
> ==> lib [/Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/lib/clang/9.0.0/lib/darwin/libclang_rt.osx.a]
>   Library search paths: [;/Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/
> SDKs/MacOSX10.13.sdk/usr/lib]
>   Framework search paths: [;/Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/
> SDKs/MacOSX10.13.sdk/System/Library/Frameworks/]
>   remove lib [System]
>   remove lib [/Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/lib/clang/9.0.0/lib/darwin/libclang_rt.osx.a]
>   collapse library dir [/Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/usr/lib]
> ==> [/Applications/Xcode.app/Contents/Developer/Platforms/
> MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/usr/lib]
>   collapse framework dir [/Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/
> SDKs/MacOSX10.13.sdk/System/Library/Frameworks/] ==>
> [/Applications/Xcode.app/Contents/Developer/Platforms/
> MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/System/Library/Frameworks]
>   implicit libs: []
>   implicit dirs: [/Applications/Xcode.app/Contents/Developer/Platforms/
> MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/usr/lib]
>   implicit fwks: [/Applications/Xcode.app/Contents/Developer/Platforms/
> MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/System/Library/Frameworks]
>
>
>
>
> Detecting C [-std=c11] compiler features compiled with the following
> output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_6d580/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_6d580.dir/build.make CMakeFiles/cmTC_6d580.dir/build
> Building C object CMakeFiles/cmTC_6d580.dir/feature_tests.c.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
>  -std=c11 -o CMakeFiles/cmTC_6d580.dir/feature_tests.c.o   -c
> /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/feature_
> tests.c
> Linking C executable cmTC_6d580
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_6d580.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
> -Wl,-search_paths_first -Wl,-headerpad_max_install_names
>  CMakeFiles/cmTC_6d580.dir/feature_tests.c.o  -o cmTC_6d580
>
>
>     Feature record: C_FEATURE:1c_function_prototypes
>     Feature record: C_FEATURE:1c_restrict
>     Feature record: C_FEATURE:1c_static_assert
>     Feature record: C_FEATURE:1c_variadic_macros
>
>
> Detecting C [-std=c99] compiler features compiled with the following
> output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_9aab9/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_9aab9.dir/build.make CMakeFiles/cmTC_9aab9.dir/build
> Building C object CMakeFiles/cmTC_9aab9.dir/feature_tests.c.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
>  -std=c99 -o CMakeFiles/cmTC_9aab9.dir/feature_tests.c.o   -c
> /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/feature_
> tests.c
> Linking C executable cmTC_9aab9
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_9aab9.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
> -Wl,-search_paths_first -Wl,-headerpad_max_install_names
>  CMakeFiles/cmTC_9aab9.dir/feature_tests.c.o  -o cmTC_9aab9
>
>
>     Feature record: C_FEATURE:1c_function_prototypes
>     Feature record: C_FEATURE:1c_restrict
>     Feature record: C_FEATURE:0c_static_assert
>     Feature record: C_FEATURE:1c_variadic_macros
>
>
> Detecting C [-std=c90] compiler features compiled with the following
> output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_9acb2/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_9acb2.dir/build.make CMakeFiles/cmTC_9acb2.dir/build
> Building C object CMakeFiles/cmTC_9acb2.dir/feature_tests.c.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
>  -std=c90 -o CMakeFiles/cmTC_9acb2.dir/feature_tests.c.o   -c
> /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/feature_
> tests.c
> Linking C executable cmTC_9acb2
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_9acb2.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
> -Wl,-search_paths_first -Wl,-headerpad_max_install_names
>  CMakeFiles/cmTC_9acb2.dir/feature_tests.c.o  -o cmTC_9acb2
>
>
>     Feature record: C_FEATURE:1c_function_prototypes
>     Feature record: C_FEATURE:0c_restrict
>     Feature record: C_FEATURE:0c_static_assert
>     Feature record: C_FEATURE:0c_variadic_macros
> Determining if the CXX compiler works passed with the following output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_426aa/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_426aa.dir/build.make CMakeFiles/cmTC_426aa.dir/build
> Building CXX object CMakeFiles/cmTC_426aa.dir/testCXXCompiler.cxx.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++    -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
>  -o CMakeFiles/cmTC_426aa.dir/testCXXCompiler.cxx.o -c /Users/robertclaus/
> Development/quickstepSQL/build/CMakeFiles/CMakeTmp/testCXXCompiler.cxx
> Linking CXX executable cmTC_426aa
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_426aa.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++    -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
> -Wl,-search_paths_first -Wl,-headerpad_max_install_names
>  CMakeFiles/cmTC_426aa.dir/testCXXCompiler.cxx.o  -o cmTC_426aa
>
>
> Detecting CXX compiler ABI info compiled with the following output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_36284/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_36284.dir/build.make CMakeFiles/cmTC_36284.dir/build
> Building CXX object CMakeFiles/cmTC_36284.dir/CMakeCXXCompilerABI.cpp.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++    -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
>  -o CMakeFiles/cmTC_36284.dir/CMakeCXXCompilerABI.cpp.o -c
> /usr/local/Cellar/cmake/3.10.1/share/cmake/Modules/CMakeCXXCompilerABI.cpp
> Linking CXX executable cmTC_36284
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_36284.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++    -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
> -Wl,-search_paths_first -Wl,-headerpad_max_install_names  -v -Wl,-v
> CMakeFiles/cmTC_36284.dir/CMakeCXXCompilerABI.cpp.o  -o cmTC_36284
> Apple LLVM version 9.0.0 (clang-900.0.39.2)
> Target: x86_64-apple-darwin17.2.0
> Thread model: posix
> InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin
>  "/Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/ld" -demangle -lto_library
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/lib/libLTO.dylib -dynamic -arch x86_64
> -macosx_version_min 10.13.0 -syslibroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
> -o cmTC_36284 -search_paths_first -headerpad_max_install_names -v
> CMakeFiles/cmTC_36284.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lSystem
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/lib/clang/9.0.0/lib/darwin/libclang_rt.osx.a
> @(#)PROGRAM:ld  PROJECT:ld64-305
> configured to support archs: armv6 armv7 armv7s arm64 i386 x86_64 x86_64h
> armv6m armv7k armv7m armv7em (tvOS)
> Library search paths:
> /Applications/Xcode.app/Contents/Developer/Platforms/
> MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/usr/lib
> Framework search paths:
> /Applications/Xcode.app/Contents/Developer/Platforms/
> MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/System/Library/Frameworks/
>
>
> Parsed CXX implicit link information from above output:
>   link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_
> STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)]
>   ignore line: [Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp]
>   ignore line: []
>   ignore line: [Run Build Command:"/usr/bin/make" "cmTC_36284/fast"]
>   ignore line: [/Applications/Xcode.app/Contents/Developer/usr/bin/make
> -f CMakeFiles/cmTC_36284.dir/build.make CMakeFiles/cmTC_36284.dir/build]
>   ignore line: [Building CXX object CMakeFiles/cmTC_36284.dir/
> CMakeCXXCompilerABI.cpp.o]
>   ignore line: [/Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++    -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
>  -o CMakeFiles/cmTC_36284.dir/CMakeCXXCompilerABI.cpp.o -c
> /usr/local/Cellar/cmake/3.10.1/share/cmake/Modules/
> CMakeCXXCompilerABI.cpp]
>   ignore line: [Linking CXX executable cmTC_36284]
>   ignore line: [/usr/local/Cellar/cmake/3.10.1/bin/cmake -E
> cmake_link_script CMakeFiles/cmTC_36284.dir/link.txt --verbose=1]
>   ignore line: [/Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++    -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
> -Wl,-search_paths_first -Wl,-headerpad_max_install_names  -v -Wl,-v
> CMakeFiles/cmTC_36284.dir/CMakeCXXCompilerABI.cpp.o  -o cmTC_36284 ]
>   ignore line: [Apple LLVM version 9.0.0 (clang-900.0.39.2)]
>   ignore line: [Target: x86_64-apple-darwin17.2.0]
>   ignore line: [Thread model: posix]
>   ignore line: [InstalledDir: /Applications/Xcode.app/
> Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin]
>   link line: [ "/Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/ld" -demangle -lto_library
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/lib/libLTO.dylib -dynamic -arch x86_64
> -macosx_version_min 10.13.0 -syslibroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
> -o cmTC_36284 -search_paths_first -headerpad_max_install_names -v
> CMakeFiles/cmTC_36284.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lSystem
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/lib/clang/9.0.0/lib/darwin/libclang_rt.osx.a]
>     arg [/Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/ld] ==> ignore
>     arg [-demangle] ==> ignore
>     arg [-lto_library] ==> ignore, skip following value
>     arg [/Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/lib/libLTO.dylib] ==> skip value of
> -lto_library
>     arg [-dynamic] ==> ignore
>     arg [-arch] ==> ignore
>     arg [x86_64] ==> ignore
>     arg [-macosx_version_min] ==> ignore
>     arg [10.13.0] ==> ignore
>     arg [-syslibroot] ==> ignore
>     arg [/Applications/Xcode.app/Contents/Developer/Platforms/
> MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk] ==> ignore
>     arg [-o] ==> ignore
>     arg [cmTC_36284] ==> ignore
>     arg [-search_paths_first] ==> ignore
>     arg [-headerpad_max_install_names] ==> ignore
>     arg [-v] ==> ignore
>     arg [CMakeFiles/cmTC_36284.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore
>     arg [-lc++] ==> lib [c++]
>     arg [-lSystem] ==> lib [System]
>     arg [/Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/lib/clang/9.0.0/lib/darwin/libclang_rt.osx.a]
> ==> lib [/Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/lib/clang/9.0.0/lib/darwin/libclang_rt.osx.a]
>   Library search paths: [;/Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/
> SDKs/MacOSX10.13.sdk/usr/lib]
>   Framework search paths: [;/Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/
> SDKs/MacOSX10.13.sdk/System/Library/Frameworks/]
>   remove lib [System]
>   remove lib [/Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/lib/clang/9.0.0/lib/darwin/libclang_rt.osx.a]
>   collapse library dir [/Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/usr/lib]
> ==> [/Applications/Xcode.app/Contents/Developer/Platforms/
> MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/usr/lib]
>   collapse framework dir [/Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/
> SDKs/MacOSX10.13.sdk/System/Library/Frameworks/] ==>
> [/Applications/Xcode.app/Contents/Developer/Platforms/
> MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/System/Library/Frameworks]
>   implicit libs: [c++]
>   implicit dirs: [/Applications/Xcode.app/Contents/Developer/Platforms/
> MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/usr/lib]
>   implicit fwks: [/Applications/Xcode.app/Contents/Developer/Platforms/
> MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/System/Library/Frameworks]
>
>
>
>
> Detecting CXX [-std=c++1z] compiler features compiled with the following
> output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_01ed1/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_01ed1.dir/build.make CMakeFiles/cmTC_01ed1.dir/build
> Building CXX object CMakeFiles/cmTC_01ed1.dir/feature_tests.cxx.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++    -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
>  -std=c++1z -o CMakeFiles/cmTC_01ed1.dir/feature_tests.cxx.o -c
> /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/feature_
> tests.cxx
> Linking CXX executable cmTC_01ed1
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_01ed1.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++    -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
> -Wl,-search_paths_first -Wl,-headerpad_max_install_names
>  CMakeFiles/cmTC_01ed1.dir/feature_tests.cxx.o  -o cmTC_01ed1
>
>
>     Feature record: CXX_FEATURE:1cxx_aggregate_default_initializers
>     Feature record: CXX_FEATURE:1cxx_alias_templates
>     Feature record: CXX_FEATURE:1cxx_alignas
>     Feature record: CXX_FEATURE:1cxx_alignof
>     Feature record: CXX_FEATURE:1cxx_attributes
>     Feature record: CXX_FEATURE:1cxx_attribute_deprecated
>     Feature record: CXX_FEATURE:1cxx_auto_type
>     Feature record: CXX_FEATURE:1cxx_binary_literals
>     Feature record: CXX_FEATURE:1cxx_constexpr
>     Feature record: CXX_FEATURE:1cxx_contextual_conversions
>     Feature record: CXX_FEATURE:1cxx_decltype
>     Feature record: CXX_FEATURE:1cxx_decltype_auto
>     Feature record: CXX_FEATURE:1cxx_decltype_incomplete_return_types
>     Feature record: CXX_FEATURE:1cxx_default_function_template_args
>     Feature record: CXX_FEATURE:1cxx_defaulted_functions
>     Feature record: CXX_FEATURE:1cxx_defaulted_move_initializers
>     Feature record: CXX_FEATURE:1cxx_delegating_constructors
>     Feature record: CXX_FEATURE:1cxx_deleted_functions
>     Feature record: CXX_FEATURE:1cxx_digit_separators
>     Feature record: CXX_FEATURE:1cxx_enum_forward_declarations
>     Feature record: CXX_FEATURE:1cxx_explicit_conversions
>     Feature record: CXX_FEATURE:1cxx_extended_friend_declarations
>     Feature record: CXX_FEATURE:1cxx_extern_templates
>     Feature record: CXX_FEATURE:1cxx_final
>     Feature record: CXX_FEATURE:1cxx_func_identifier
>     Feature record: CXX_FEATURE:1cxx_generalized_initializers
>     Feature record: CXX_FEATURE:1cxx_generic_lambdas
>     Feature record: CXX_FEATURE:1cxx_inheriting_constructors
>     Feature record: CXX_FEATURE:1cxx_inline_namespaces
>     Feature record: CXX_FEATURE:1cxx_lambdas
>     Feature record: CXX_FEATURE:1cxx_lambda_init_captures
>     Feature record: CXX_FEATURE:1cxx_local_type_template_args
>     Feature record: CXX_FEATURE:1cxx_long_long_type
>     Feature record: CXX_FEATURE:1cxx_noexcept
>     Feature record: CXX_FEATURE:1cxx_nonstatic_member_init
>     Feature record: CXX_FEATURE:1cxx_nullptr
>     Feature record: CXX_FEATURE:1cxx_override
>     Feature record: CXX_FEATURE:1cxx_range_for
>     Feature record: CXX_FEATURE:1cxx_raw_string_literals
>     Feature record: CXX_FEATURE:1cxx_reference_qualified_functions
>     Feature record: CXX_FEATURE:1cxx_relaxed_constexpr
>     Feature record: CXX_FEATURE:1cxx_return_type_deduction
>     Feature record: CXX_FEATURE:1cxx_right_angle_brackets
>     Feature record: CXX_FEATURE:1cxx_rvalue_references
>     Feature record: CXX_FEATURE:1cxx_sizeof_member
>     Feature record: CXX_FEATURE:1cxx_static_assert
>     Feature record: CXX_FEATURE:1cxx_strong_enums
>     Feature record: CXX_FEATURE:1cxx_template_template_parameters
>     Feature record: CXX_FEATURE:1cxx_thread_local
>     Feature record: CXX_FEATURE:1cxx_trailing_return_types
>     Feature record: CXX_FEATURE:1cxx_unicode_literals
>     Feature record: CXX_FEATURE:1cxx_uniform_initialization
>     Feature record: CXX_FEATURE:1cxx_unrestricted_unions
>     Feature record: CXX_FEATURE:1cxx_user_literals
>     Feature record: CXX_FEATURE:1cxx_variable_templates
>     Feature record: CXX_FEATURE:1cxx_variadic_macros
>     Feature record: CXX_FEATURE:1cxx_variadic_templates
>
>
> Detecting CXX [-std=c++14] compiler features compiled with the following
> output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_df532/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_df532.dir/build.make CMakeFiles/cmTC_df532.dir/build
> Building CXX object CMakeFiles/cmTC_df532.dir/feature_tests.cxx.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++    -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
>  -std=c++14 -o CMakeFiles/cmTC_df532.dir/feature_tests.cxx.o -c
> /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/feature_
> tests.cxx
> Linking CXX executable cmTC_df532
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_df532.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++    -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
> -Wl,-search_paths_first -Wl,-headerpad_max_install_names
>  CMakeFiles/cmTC_df532.dir/feature_tests.cxx.o  -o cmTC_df532
>
>
>     Feature record: CXX_FEATURE:1cxx_aggregate_default_initializers
>     Feature record: CXX_FEATURE:1cxx_alias_templates
>     Feature record: CXX_FEATURE:1cxx_alignas
>     Feature record: CXX_FEATURE:1cxx_alignof
>     Feature record: CXX_FEATURE:1cxx_attributes
>     Feature record: CXX_FEATURE:1cxx_attribute_deprecated
>     Feature record: CXX_FEATURE:1cxx_auto_type
>     Feature record: CXX_FEATURE:1cxx_binary_literals
>     Feature record: CXX_FEATURE:1cxx_constexpr
>     Feature record: CXX_FEATURE:1cxx_contextual_conversions
>     Feature record: CXX_FEATURE:1cxx_decltype
>     Feature record: CXX_FEATURE:1cxx_decltype_auto
>     Feature record: CXX_FEATURE:1cxx_decltype_incomplete_return_types
>     Feature record: CXX_FEATURE:1cxx_default_function_template_args
>     Feature record: CXX_FEATURE:1cxx_defaulted_functions
>     Feature record: CXX_FEATURE:1cxx_defaulted_move_initializers
>     Feature record: CXX_FEATURE:1cxx_delegating_constructors
>     Feature record: CXX_FEATURE:1cxx_deleted_functions
>     Feature record: CXX_FEATURE:1cxx_digit_separators
>     Feature record: CXX_FEATURE:1cxx_enum_forward_declarations
>     Feature record: CXX_FEATURE:1cxx_explicit_conversions
>     Feature record: CXX_FEATURE:1cxx_extended_friend_declarations
>     Feature record: CXX_FEATURE:1cxx_extern_templates
>     Feature record: CXX_FEATURE:1cxx_final
>     Feature record: CXX_FEATURE:1cxx_func_identifier
>     Feature record: CXX_FEATURE:1cxx_generalized_initializers
>     Feature record: CXX_FEATURE:1cxx_generic_lambdas
>     Feature record: CXX_FEATURE:1cxx_inheriting_constructors
>     Feature record: CXX_FEATURE:1cxx_inline_namespaces
>     Feature record: CXX_FEATURE:1cxx_lambdas
>     Feature record: CXX_FEATURE:1cxx_lambda_init_captures
>     Feature record: CXX_FEATURE:1cxx_local_type_template_args
>     Feature record: CXX_FEATURE:1cxx_long_long_type
>     Feature record: CXX_FEATURE:1cxx_noexcept
>     Feature record: CXX_FEATURE:1cxx_nonstatic_member_init
>     Feature record: CXX_FEATURE:1cxx_nullptr
>     Feature record: CXX_FEATURE:1cxx_override
>     Feature record: CXX_FEATURE:1cxx_range_for
>     Feature record: CXX_FEATURE:1cxx_raw_string_literals
>     Feature record: CXX_FEATURE:1cxx_reference_qualified_functions
>     Feature record: CXX_FEATURE:1cxx_relaxed_constexpr
>     Feature record: CXX_FEATURE:1cxx_return_type_deduction
>     Feature record: CXX_FEATURE:1cxx_right_angle_brackets
>     Feature record: CXX_FEATURE:1cxx_rvalue_references
>     Feature record: CXX_FEATURE:1cxx_sizeof_member
>     Feature record: CXX_FEATURE:1cxx_static_assert
>     Feature record: CXX_FEATURE:1cxx_strong_enums
>     Feature record: CXX_FEATURE:1cxx_template_template_parameters
>     Feature record: CXX_FEATURE:1cxx_thread_local
>     Feature record: CXX_FEATURE:1cxx_trailing_return_types
>     Feature record: CXX_FEATURE:1cxx_unicode_literals
>     Feature record: CXX_FEATURE:1cxx_uniform_initialization
>     Feature record: CXX_FEATURE:1cxx_unrestricted_unions
>     Feature record: CXX_FEATURE:1cxx_user_literals
>     Feature record: CXX_FEATURE:1cxx_variable_templates
>     Feature record: CXX_FEATURE:1cxx_variadic_macros
>     Feature record: CXX_FEATURE:1cxx_variadic_templates
>
>
> Detecting CXX [-std=c++11] compiler features compiled with the following
> output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_55647/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_55647.dir/build.make CMakeFiles/cmTC_55647.dir/build
> Building CXX object CMakeFiles/cmTC_55647.dir/feature_tests.cxx.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++    -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
>  -std=c++11 -o CMakeFiles/cmTC_55647.dir/feature_tests.cxx.o -c
> /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/feature_
> tests.cxx
> Linking CXX executable cmTC_55647
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_55647.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++    -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
> -Wl,-search_paths_first -Wl,-headerpad_max_install_names
>  CMakeFiles/cmTC_55647.dir/feature_tests.cxx.o  -o cmTC_55647
>
>
>     Feature record: CXX_FEATURE:0cxx_aggregate_default_initializers
>     Feature record: CXX_FEATURE:1cxx_alias_templates
>     Feature record: CXX_FEATURE:1cxx_alignas
>     Feature record: CXX_FEATURE:1cxx_alignof
>     Feature record: CXX_FEATURE:1cxx_attributes
>     Feature record: CXX_FEATURE:0cxx_attribute_deprecated
>     Feature record: CXX_FEATURE:1cxx_auto_type
>     Feature record: CXX_FEATURE:0cxx_binary_literals
>     Feature record: CXX_FEATURE:1cxx_constexpr
>     Feature record: CXX_FEATURE:0cxx_contextual_conversions
>     Feature record: CXX_FEATURE:1cxx_decltype
>     Feature record: CXX_FEATURE:0cxx_decltype_auto
>     Feature record: CXX_FEATURE:1cxx_decltype_incomplete_return_types
>     Feature record: CXX_FEATURE:1cxx_default_function_template_args
>     Feature record: CXX_FEATURE:1cxx_defaulted_functions
>     Feature record: CXX_FEATURE:1cxx_defaulted_move_initializers
>     Feature record: CXX_FEATURE:1cxx_delegating_constructors
>     Feature record: CXX_FEATURE:1cxx_deleted_functions
>     Feature record: CXX_FEATURE:0cxx_digit_separators
>     Feature record: CXX_FEATURE:1cxx_enum_forward_declarations
>     Feature record: CXX_FEATURE:1cxx_explicit_conversions
>     Feature record: CXX_FEATURE:1cxx_extended_friend_declarations
>     Feature record: CXX_FEATURE:1cxx_extern_templates
>     Feature record: CXX_FEATURE:1cxx_final
>     Feature record: CXX_FEATURE:1cxx_func_identifier
>     Feature record: CXX_FEATURE:1cxx_generalized_initializers
>     Feature record: CXX_FEATURE:0cxx_generic_lambdas
>     Feature record: CXX_FEATURE:1cxx_inheriting_constructors
>     Feature record: CXX_FEATURE:1cxx_inline_namespaces
>     Feature record: CXX_FEATURE:1cxx_lambdas
>     Feature record: CXX_FEATURE:0cxx_lambda_init_captures
>     Feature record: CXX_FEATURE:1cxx_local_type_template_args
>     Feature record: CXX_FEATURE:1cxx_long_long_type
>     Feature record: CXX_FEATURE:1cxx_noexcept
>     Feature record: CXX_FEATURE:1cxx_nonstatic_member_init
>     Feature record: CXX_FEATURE:1cxx_nullptr
>     Feature record: CXX_FEATURE:1cxx_override
>     Feature record: CXX_FEATURE:1cxx_range_for
>     Feature record: CXX_FEATURE:1cxx_raw_string_literals
>     Feature record: CXX_FEATURE:1cxx_reference_qualified_functions
>     Feature record: CXX_FEATURE:0cxx_relaxed_constexpr
>     Feature record: CXX_FEATURE:0cxx_return_type_deduction
>     Feature record: CXX_FEATURE:1cxx_right_angle_brackets
>     Feature record: CXX_FEATURE:1cxx_rvalue_references
>     Feature record: CXX_FEATURE:1cxx_sizeof_member
>     Feature record: CXX_FEATURE:1cxx_static_assert
>     Feature record: CXX_FEATURE:1cxx_strong_enums
>     Feature record: CXX_FEATURE:1cxx_template_template_parameters
>     Feature record: CXX_FEATURE:1cxx_thread_local
>     Feature record: CXX_FEATURE:1cxx_trailing_return_types
>     Feature record: CXX_FEATURE:1cxx_unicode_literals
>     Feature record: CXX_FEATURE:1cxx_uniform_initialization
>     Feature record: CXX_FEATURE:1cxx_unrestricted_unions
>     Feature record: CXX_FEATURE:1cxx_user_literals
>     Feature record: CXX_FEATURE:0cxx_variable_templates
>     Feature record: CXX_FEATURE:1cxx_variadic_macros
>     Feature record: CXX_FEATURE:1cxx_variadic_templates
>
>
> Detecting CXX [-std=c++98] compiler features compiled with the following
> output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_ff15c/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_ff15c.dir/build.make CMakeFiles/cmTC_ff15c.dir/build
> Building CXX object CMakeFiles/cmTC_ff15c.dir/feature_tests.cxx.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++    -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
>  -std=c++98 -o CMakeFiles/cmTC_ff15c.dir/feature_tests.cxx.o -c
> /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/feature_
> tests.cxx
> Linking CXX executable cmTC_ff15c
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_ff15c.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++    -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
> -Wl,-search_paths_first -Wl,-headerpad_max_install_names
>  CMakeFiles/cmTC_ff15c.dir/feature_tests.cxx.o  -o cmTC_ff15c
>
>
>     Feature record: CXX_FEATURE:0cxx_aggregate_default_initializers
>     Feature record: CXX_FEATURE:0cxx_alias_templates
>     Feature record: CXX_FEATURE:0cxx_alignas
>     Feature record: CXX_FEATURE:0cxx_alignof
>     Feature record: CXX_FEATURE:0cxx_attributes
>     Feature record: CXX_FEATURE:0cxx_attribute_deprecated
>     Feature record: CXX_FEATURE:0cxx_auto_type
>     Feature record: CXX_FEATURE:0cxx_binary_literals
>     Feature record: CXX_FEATURE:0cxx_constexpr
>     Feature record: CXX_FEATURE:0cxx_contextual_conversions
>     Feature record: CXX_FEATURE:0cxx_decltype
>     Feature record: CXX_FEATURE:0cxx_decltype_auto
>     Feature record: CXX_FEATURE:0cxx_decltype_incomplete_return_types
>     Feature record: CXX_FEATURE:0cxx_default_function_template_args
>     Feature record: CXX_FEATURE:0cxx_defaulted_functions
>     Feature record: CXX_FEATURE:0cxx_defaulted_move_initializers
>     Feature record: CXX_FEATURE:0cxx_delegating_constructors
>     Feature record: CXX_FEATURE:0cxx_deleted_functions
>     Feature record: CXX_FEATURE:0cxx_digit_separators
>     Feature record: CXX_FEATURE:0cxx_enum_forward_declarations
>     Feature record: CXX_FEATURE:0cxx_explicit_conversions
>     Feature record: CXX_FEATURE:0cxx_extended_friend_declarations
>     Feature record: CXX_FEATURE:0cxx_extern_templates
>     Feature record: CXX_FEATURE:0cxx_final
>     Feature record: CXX_FEATURE:0cxx_func_identifier
>     Feature record: CXX_FEATURE:0cxx_generalized_initializers
>     Feature record: CXX_FEATURE:0cxx_generic_lambdas
>     Feature record: CXX_FEATURE:0cxx_inheriting_constructors
>     Feature record: CXX_FEATURE:0cxx_inline_namespaces
>     Feature record: CXX_FEATURE:0cxx_lambdas
>     Feature record: CXX_FEATURE:0cxx_lambda_init_captures
>     Feature record: CXX_FEATURE:0cxx_local_type_template_args
>     Feature record: CXX_FEATURE:0cxx_long_long_type
>     Feature record: CXX_FEATURE:0cxx_noexcept
>     Feature record: CXX_FEATURE:0cxx_nonstatic_member_init
>     Feature record: CXX_FEATURE:0cxx_nullptr
>     Feature record: CXX_FEATURE:0cxx_override
>     Feature record: CXX_FEATURE:0cxx_range_for
>     Feature record: CXX_FEATURE:0cxx_raw_string_literals
>     Feature record: CXX_FEATURE:0cxx_reference_qualified_functions
>     Feature record: CXX_FEATURE:0cxx_relaxed_constexpr
>     Feature record: CXX_FEATURE:0cxx_return_type_deduction
>     Feature record: CXX_FEATURE:0cxx_right_angle_brackets
>     Feature record: CXX_FEATURE:0cxx_rvalue_references
>     Feature record: CXX_FEATURE:0cxx_sizeof_member
>     Feature record: CXX_FEATURE:0cxx_static_assert
>     Feature record: CXX_FEATURE:0cxx_strong_enums
>     Feature record: CXX_FEATURE:1cxx_template_template_parameters
>     Feature record: CXX_FEATURE:0cxx_thread_local
>     Feature record: CXX_FEATURE:0cxx_trailing_return_types
>     Feature record: CXX_FEATURE:0cxx_unicode_literals
>     Feature record: CXX_FEATURE:0cxx_uniform_initialization
>     Feature record: CXX_FEATURE:0cxx_unrestricted_unions
>     Feature record: CXX_FEATURE:0cxx_user_literals
>     Feature record: CXX_FEATURE:0cxx_variable_templates
>     Feature record: CXX_FEATURE:0cxx_variadic_macros
>     Feature record: CXX_FEATURE:0cxx_variadic_templates
> Determining if files termios.h;unistd.h;stdlib.h;stdio.h;errno.h;string.h;
> stdlib.h;ctype.h;sys/types.h;sys/ioctl.h;unistd.h exist passed with the
> following output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_54100/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_54100.dir/build.make CMakeFiles/cmTC_54100.dir/build
> Building C object CMakeFiles/cmTC_54100.dir/CheckIncludeFiles.c.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
>  -o CMakeFiles/cmTC_54100.dir/CheckIncludeFiles.c.o   -c
> /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/
> CheckIncludeFiles.c
> Linking C executable cmTC_54100
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_54100.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
> -Wl,-search_paths_first -Wl,-headerpad_max_install_names
>  CMakeFiles/cmTC_54100.dir/CheckIncludeFiles.c.o  -o cmTC_54100
>
>
> Determining if the include file pthread.h exists passed with the following
> output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_63bb8/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_63bb8.dir/build.make CMakeFiles/cmTC_63bb8.dir/build
> Building C object CMakeFiles/cmTC_63bb8.dir/CheckIncludeFile.c.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
>  -o CMakeFiles/cmTC_63bb8.dir/CheckIncludeFile.c.o   -c
> /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/
> CheckIncludeFile.c
> Linking C executable cmTC_63bb8
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_63bb8.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
> -Wl,-search_paths_first -Wl,-headerpad_max_install_names
>  CMakeFiles/cmTC_63bb8.dir/CheckIncludeFile.c.o  -o cmTC_63bb8
>
>
> Determining if the pthread_create exist passed with the following output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_65413/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_65413.dir/build.make CMakeFiles/cmTC_65413.dir/build
> Building C object CMakeFiles/cmTC_65413.dir/CheckSymbolExists.c.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
>  -o CMakeFiles/cmTC_65413.dir/CheckSymbolExists.c.o   -c
> /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/
> CheckSymbolExists.c
> Linking C executable cmTC_65413
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_65413.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
> -Wl,-search_paths_first -Wl,-headerpad_max_install_names
>  CMakeFiles/cmTC_65413.dir/CheckSymbolExists.c.o  -o cmTC_65413
>
> File /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp/CheckSymbolExists.c:
> /* */
> #include <pthread.h>
>
> int main(int argc, char** argv)
> {
>   (void)argv;
> #ifndef pthread_create
>   return ((int*)(&pthread_create))[argc];
> #else
>   (void)argc;
>   return 0;
> #endif
> }
>
> Performing C++ SOURCE FILE Test CXX_COMPILER_SUPPORTS_CPP14 succeeded with
> the following output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_8dc9d/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_8dc9d.dir/build.make CMakeFiles/cmTC_8dc9d.dir/build
> Building CXX object CMakeFiles/cmTC_8dc9d.dir/src.cxx.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++    -DCXX_COMPILER_SUPPORTS_CPP14
> -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/
> MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -std=c++14 -o
> CMakeFiles/cmTC_8dc9d.dir/src.cxx.o -c /Users/robertclaus/
> Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
> Linking CXX executable cmTC_8dc9d
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_8dc9d.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++   -DCXX_COMPILER_SUPPORTS_CPP14
> -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/
> MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first
> -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_8dc9d.dir/src.cxx.o
> -o cmTC_8dc9d
>
> Source file was:
> int main() { return 0; }
> Performing C++ SOURCE FILE Test COMPILER_HAS_WALL succeeded with the
> following output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_42823/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_42823.dir/build.make CMakeFiles/cmTC_42823.dir/build
> Building CXX object CMakeFiles/cmTC_42823.dir/src.cxx.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -DCOMPILER_HAS_WALL
> -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/
> MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -Wall -o
> CMakeFiles/cmTC_42823.dir/src.cxx.o -c /Users/robertclaus/
> Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
> Linking CXX executable cmTC_42823
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_42823.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -DCOMPILER_HAS_WALL
> -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/
> MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first
> -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_42823.dir/src.cxx.o
> -o cmTC_42823
>
> Source file was:
> int main() { return 0; }
> Performing C++ SOURCE FILE Test COMPILER_HAS_PEDANTIC succeeded with the
> following output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_80e65/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_80e65.dir/build.make CMakeFiles/cmTC_80e65.dir/build
> Building CXX object CMakeFiles/cmTC_80e65.dir/src.cxx.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall
> -DCOMPILER_HAS_PEDANTIC -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
>  -pedantic -o CMakeFiles/cmTC_80e65.dir/src.cxx.o -c /Users/robertclaus/
> Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
> Linking CXX executable cmTC_80e65
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_80e65.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall
> -DCOMPILER_HAS_PEDANTIC -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
> -Wl,-search_paths_first -Wl,-headerpad_max_install_names
>  CMakeFiles/cmTC_80e65.dir/src.cxx.o  -o cmTC_80e65
>
> Source file was:
> int main() { return 0; }
> Performing C++ SOURCE FILE Test COMPILER_HAS_WNO_EXTENDED_OFFSETOF
> succeeded with the following output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_8e943/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_8e943.dir/build.make CMakeFiles/cmTC_8e943.dir/build
> Building CXX object CMakeFiles/cmTC_8e943.dir/src.cxx.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic
> -DCOMPILER_HAS_WNO_EXTENDED_OFFSETOF -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
>  -Wno-extended-offsetof -o CMakeFiles/cmTC_8e943.dir/src.cxx.o -c
> /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.
> cxx
> Linking CXX executable cmTC_8e943
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_8e943.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic
> -DCOMPILER_HAS_WNO_EXTENDED_OFFSETOF -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
> -Wl,-search_paths_first -Wl,-headerpad_max_install_names
>  CMakeFiles/cmTC_8e943.dir/src.cxx.o  -o cmTC_8e943
>
> Source file was:
> int main() { return 0; }
> Performing C++ SOURCE FILE Test COMPILER_HAS_WNO_DEPRECATED succeeded with
> the following output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_dbaf4/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_dbaf4.dir/build.make CMakeFiles/cmTC_dbaf4.dir/build
> Building CXX object CMakeFiles/cmTC_dbaf4.dir/src.cxx.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -DCOMPILER_HAS_WNO_DEPRECATED -isysroot
> /Applications/Xcode.app/Contents/Developer/Platforms/
> MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -Wno-error=deprecated-declarations
> -o CMakeFiles/cmTC_dbaf4.dir/src.cxx.o -c /Users/robertclaus/
> Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
> Linking CXX executable cmTC_dbaf4
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_dbaf4.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -DCOMPILER_HAS_WNO_DEPRECATED -isysroot
> /Applications/Xcode.app/Contents/Developer/Platforms/
> MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first
> -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_dbaf4.dir/src.cxx.o
> -o cmTC_dbaf4
>
> Source file was:
> int main() { return 0; }
> Performing C++ SOURCE FILE Test CLANG_HAS_MARCH_NATIVE succeeded with the
> following output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_a1785/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_a1785.dir/build.make CMakeFiles/cmTC_a1785.dir/build
> Building CXX object CMakeFiles/cmTC_a1785.dir/src.cxx.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations
> -DCLANG_HAS_MARCH_NATIVE -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
>  -march=native -o CMakeFiles/cmTC_a1785.dir/src.cxx.o -c
> /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.
> cxx
> Linking CXX executable cmTC_a1785
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_a1785.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations
> -DCLANG_HAS_MARCH_NATIVE -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
> -Wl,-search_paths_first -Wl,-headerpad_max_install_names
>  CMakeFiles/cmTC_a1785.dir/src.cxx.o  -o cmTC_a1785
>
> Source file was:
> int main() { return 0; }
> Performing C++ SOURCE FILE Test HAVE_CXX_FLAG_STD_CXX11 succeeded with the
> following output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_66e80/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_66e80.dir/build.make CMakeFiles/cmTC_66e80.dir/build
> Building CXX object CMakeFiles/cmTC_66e80.dir/src.cxx.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -DHAVE_CXX_FLAG_STD_CXX11 -std=c++11 -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
>  -std=c++11 -o CMakeFiles/cmTC_66e80.dir/src.cxx.o -c /Users/robertclaus/
> Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
> Linking CXX executable cmTC_66e80
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_66e80.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -DHAVE_CXX_FLAG_STD_CXX11 -std=c++11 -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
> -Wl,-search_paths_first -Wl,-headerpad_max_install_names
>  CMakeFiles/cmTC_66e80.dir/src.cxx.o  -o cmTC_66e80
>
> Source file was:
> int main() { return 0; }
> Performing C++ SOURCE FILE Test HAVE_CXX_FLAG_WALL succeeded with the
> following output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_99388/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_99388.dir/build.make CMakeFiles/cmTC_99388.dir/build
> Building CXX object CMakeFiles/cmTC_99388.dir/src.cxx.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -std=c++11 -DHAVE_CXX_FLAG_WALL -Wall -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
>  -Wall -o CMakeFiles/cmTC_99388.dir/src.cxx.o -c /Users/robertclaus/
> Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
> Linking CXX executable cmTC_99388
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_99388.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -std=c++11 -DHAVE_CXX_FLAG_WALL -Wall -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
> -Wl,-search_paths_first -Wl,-headerpad_max_install_names
>  CMakeFiles/cmTC_99388.dir/src.cxx.o  -o cmTC_99388
>
> Source file was:
> int main() { return 0; }
> Performing C++ SOURCE FILE Test HAVE_CXX_FLAG_WEXTRA succeeded with the
> following output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_341fe/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_341fe.dir/build.make CMakeFiles/cmTC_341fe.dir/build
> Building CXX object CMakeFiles/cmTC_341fe.dir/src.cxx.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -std=c++11 -Wall -DHAVE_CXX_FLAG_WEXTRA -Wextra -isysroot
> /Applications/Xcode.app/Contents/Developer/Platforms/
> MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -Wextra -o
> CMakeFiles/cmTC_341fe.dir/src.cxx.o -c /Users/robertclaus/
> Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
> Linking CXX executable cmTC_341fe
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_341fe.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -std=c++11 -Wall -DHAVE_CXX_FLAG_WEXTRA -Wextra -isysroot
> /Applications/Xcode.app/Contents/Developer/Platforms/
> MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first
> -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_341fe.dir/src.cxx.o
> -o cmTC_341fe
>
> Source file was:
> int main() { return 0; }
> Performing C++ SOURCE FILE Test HAVE_CXX_FLAG_WSHADOW succeeded with the
> following output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_66a80/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_66a80.dir/build.make CMakeFiles/cmTC_66a80.dir/build
> Building CXX object CMakeFiles/cmTC_66a80.dir/src.cxx.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -std=c++11 -Wall -Wextra -DHAVE_CXX_FLAG_WSHADOW -Wshadow -isysroot
> /Applications/Xcode.app/Contents/Developer/Platforms/
> MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -Wshadow -o
> CMakeFiles/cmTC_66a80.dir/src.cxx.o -c /Users/robertclaus/
> Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
> Linking CXX executable cmTC_66a80
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_66a80.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -std=c++11 -Wall -Wextra -DHAVE_CXX_FLAG_WSHADOW -Wshadow -isysroot
> /Applications/Xcode.app/Contents/Developer/Platforms/
> MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first
> -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_66a80.dir/src.cxx.o
> -o cmTC_66a80
>
> Source file was:
> int main() { return 0; }
> Performing C++ SOURCE FILE Test HAVE_CXX_FLAG_WERROR succeeded with the
> following output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_4eb3b/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_4eb3b.dir/build.make CMakeFiles/cmTC_4eb3b.dir/build
> Building CXX object CMakeFiles/cmTC_4eb3b.dir/src.cxx.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -std=c++11 -Wall -Wextra -Wshadow -DHAVE_CXX_FLAG_WERROR -Werror -isysroot
> /Applications/Xcode.app/Contents/Developer/Platforms/
> MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -Werror -o
> CMakeFiles/cmTC_4eb3b.dir/src.cxx.o -c /Users/robertclaus/
> Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
> Linking CXX executable cmTC_4eb3b
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_4eb3b.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -std=c++11 -Wall -Wextra -Wshadow -DHAVE_CXX_FLAG_WERROR -Werror -isysroot
> /Applications/Xcode.app/Contents/Developer/Platforms/
> MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first
> -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_4eb3b.dir/src.cxx.o
> -o cmTC_4eb3b
>
> Source file was:
> int main() { return 0; }
> Performing C++ SOURCE FILE Test HAVE_CXX_FLAG_PEDANTIC succeeded with the
> following output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_75a33/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_75a33.dir/build.make CMakeFiles/cmTC_75a33.dir/build
> Building CXX object CMakeFiles/cmTC_75a33.dir/src.cxx.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -std=c++11 -Wall -Wextra -Wshadow -DHAVE_CXX_FLAG_PEDANTIC -pedantic
> -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/
> MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -pedantic -o
> CMakeFiles/cmTC_75a33.dir/src.cxx.o -c /Users/robertclaus/
> Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
> Linking CXX executable cmTC_75a33
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_75a33.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -std=c++11 -Wall -Wextra -Wshadow -DHAVE_CXX_FLAG_PEDANTIC -pedantic
> -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/
> MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first
> -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_75a33.dir/src.cxx.o
> -o cmTC_75a33
>
> Source file was:
> int main() { return 0; }
> Performing C++ SOURCE FILE Test HAVE_CXX_FLAG_PEDANTIC_ERRORS succeeded
> with the following output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_1c259/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_1c259.dir/build.make CMakeFiles/cmTC_1c259.dir/build
> Building CXX object CMakeFiles/cmTC_1c259.dir/src.cxx.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -std=c++11 -Wall -Wextra -Wshadow -pedantic -DHAVE_CXX_FLAG_PEDANTIC_ERRORS
> -pedantic-errors -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
>  -pedantic-errors -o CMakeFiles/cmTC_1c259.dir/src.cxx.o -c
> /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.
> cxx
> Linking CXX executable cmTC_1c259
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_1c259.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -std=c++11 -Wall -Wextra -Wshadow -pedantic -DHAVE_CXX_FLAG_PEDANTIC_ERRORS
> -pedantic-errors -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
> -Wl,-search_paths_first -Wl,-headerpad_max_install_names
>  CMakeFiles/cmTC_1c259.dir/src.cxx.o  -o cmTC_1c259
>
> Source file was:
> int main() { return 0; }
> Performing C++ SOURCE FILE Test HAVE_CXX_FLAG_WSHORTEN_64_TO_32 succeeded
> with the following output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_47512/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_47512.dir/build.make CMakeFiles/cmTC_47512.dir/build
> Building CXX object CMakeFiles/cmTC_47512.dir/src.cxx.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -std=c++11 -Wall -Wextra -Wshadow -pedantic -pedantic-errors
> -DHAVE_CXX_FLAG_WSHORTEN_64_TO_32 -Wshorten-64-to-32 -isysroot
> /Applications/Xcode.app/Contents/Developer/Platforms/
> MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -Wshorten-64-to-32 -o
> CMakeFiles/cmTC_47512.dir/src.cxx.o -c /Users/robertclaus/
> Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
> Linking CXX executable cmTC_47512
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_47512.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -std=c++11 -Wall -Wextra -Wshadow -pedantic -pedantic-errors
> -DHAVE_CXX_FLAG_WSHORTEN_64_TO_32 -Wshorten-64-to-32 -isysroot
> /Applications/Xcode.app/Contents/Developer/Platforms/
> MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first
> -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_47512.dir/src.cxx.o
> -o cmTC_47512
>
> Source file was:
> int main() { return 0; }
> Performing C++ SOURCE FILE Test HAVE_CXX_FLAG_WFLOAT_EQUAL succeeded with
> the following output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_b49c9/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_b49c9.dir/build.make CMakeFiles/cmTC_b49c9.dir/build
> Building CXX object CMakeFiles/cmTC_b49c9.dir/src.cxx.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -std=c++11 -Wall -Wextra -Wshadow -pedantic -pedantic-errors
> -Wshorten-64-to-32 -DHAVE_CXX_FLAG_WFLOAT_EQUAL -Wfloat-equal -isysroot
> /Applications/Xcode.app/Contents/Developer/Platforms/
> MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -Wfloat-equal -o
> CMakeFiles/cmTC_b49c9.dir/src.cxx.o -c /Users/robertclaus/
> Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
> Linking CXX executable cmTC_b49c9
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_b49c9.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -std=c++11 -Wall -Wextra -Wshadow -pedantic -pedantic-errors
> -Wshorten-64-to-32 -DHAVE_CXX_FLAG_WFLOAT_EQUAL -Wfloat-equal -isysroot
> /Applications/Xcode.app/Contents/Developer/Platforms/
> MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first
> -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_b49c9.dir/src.cxx.o
> -o cmTC_b49c9
>
> Source file was:
> int main() { return 0; }
> Performing C++ SOURCE FILE Test HAVE_CXX_FLAG_FSTRICT_ALIASING succeeded
> with the following output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_798c3/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_798c3.dir/build.make CMakeFiles/cmTC_798c3.dir/build
> Building CXX object CMakeFiles/cmTC_798c3.dir/src.cxx.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -std=c++11 -Wall -Wextra -Wshadow -pedantic -pedantic-errors
> -Wshorten-64-to-32 -Wfloat-equal -DHAVE_CXX_FLAG_FSTRICT_ALIASING
> -fstrict-aliasing -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
>  -fstrict-aliasing -o CMakeFiles/cmTC_798c3.dir/src.cxx.o -c
> /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.
> cxx
> Linking CXX executable cmTC_798c3
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_798c3.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -std=c++11 -Wall -Wextra -Wshadow -pedantic -pedantic-errors
> -Wshorten-64-to-32 -Wfloat-equal -DHAVE_CXX_FLAG_FSTRICT_ALIASING
> -fstrict-aliasing -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
> -Wl,-search_paths_first -Wl,-headerpad_max_install_names
>  CMakeFiles/cmTC_798c3.dir/src.cxx.o  -o cmTC_798c3
>
> Source file was:
> int main() { return 0; }
> Performing C++ SOURCE FILE Test HAVE_CXX_FLAG_WSTRICT_ALIASING succeeded
> with the following output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_ebc72/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_ebc72.dir/build.make CMakeFiles/cmTC_ebc72.dir/build
> Building CXX object CMakeFiles/cmTC_ebc72.dir/src.cxx.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -std=c++11 -Wall -Wextra -Wshadow -pedantic -pedantic-errors
> -Wshorten-64-to-32 -Wfloat-equal -fstrict-aliasing -DHAVE_CXX_FLAG_WSTRICT_ALIASING
> -Wstrict-aliasing -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
>  -Wstrict-aliasing -o CMakeFiles/cmTC_ebc72.dir/src.cxx.o -c
> /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.
> cxx
> Linking CXX executable cmTC_ebc72
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_ebc72.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -std=c++11 -Wall -Wextra -Wshadow -pedantic -pedantic-errors
> -Wshorten-64-to-32 -Wfloat-equal -fstrict-aliasing -DHAVE_CXX_FLAG_WSTRICT_ALIASING
> -Wstrict-aliasing -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
> -Wl,-search_paths_first -Wl,-headerpad_max_install_names
>  CMakeFiles/cmTC_ebc72.dir/src.cxx.o  -o cmTC_ebc72
>
> Source file was:
> int main() { return 0; }
> Performing C++ SOURCE FILE Test HAVE_CXX_FLAG_WTHREAD_SAFETY succeeded
> with the following output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_5bf47/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_5bf47.dir/build.make CMakeFiles/cmTC_5bf47.dir/build
> Building CXX object CMakeFiles/cmTC_5bf47.dir/src.cxx.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -std=c++11 -Wall -Wextra -Wshadow -pedantic -pedantic-errors
> -Wshorten-64-to-32 -Wfloat-equal -fstrict-aliasing -Wstrict-aliasing
> -DHAVE_CXX_FLAG_WTHREAD_SAFETY -Wthread-safety -isysroot
> /Applications/Xcode.app/Contents/Developer/Platforms/
> MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -Wthread-safety -o
> CMakeFiles/cmTC_5bf47.dir/src.cxx.o -c /Users/robertclaus/
> Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
> Linking CXX executable cmTC_5bf47
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_5bf47.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -std=c++11 -Wall -Wextra -Wshadow -pedantic -pedantic-errors
> -Wshorten-64-to-32 -Wfloat-equal -fstrict-aliasing -Wstrict-aliasing
> -DHAVE_CXX_FLAG_WTHREAD_SAFETY -Wthread-safety -isysroot
> /Applications/Xcode.app/Contents/Developer/Platforms/
> MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first
> -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_5bf47.dir/src.cxx.o
> -o cmTC_5bf47
>
> Source file was:
> int main() { return 0; }
> Performing C++ SOURCE FILE Test HAVE_CXX_FLAG_COVERAGE succeeded with the
> following output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_f6db0/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_f6db0.dir/build.make CMakeFiles/cmTC_f6db0.dir/build
> Building CXX object CMakeFiles/cmTC_f6db0.dir/src.cxx.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -std=c++11 -Wall -Wextra -Wshadow -pedantic -pedantic-errors
> -Wshorten-64-to-32 -Wfloat-equal -fstrict-aliasing -Wstrict-aliasing
> -Wthread-safety -DHAVE_CXX_FLAG_COVERAGE --coverage -isysroot
> /Applications/Xcode.app/Contents/Developer/Platforms/
> MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   --coverage -o
> CMakeFiles/cmTC_f6db0.dir/src.cxx.o -c /Users/robertclaus/
> Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
> Linking CXX executable cmTC_f6db0
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_f6db0.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -std=c++11 -Wall -Wextra -Wshadow -pedantic -pedantic-errors
> -Wshorten-64-to-32 -Wfloat-equal -fstrict-aliasing -Wstrict-aliasing
> -Wthread-safety -DHAVE_CXX_FLAG_COVERAGE --coverage -isysroot
> /Applications/Xcode.app/Contents/Developer/Platforms/
> MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first
> -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_f6db0.dir/src.cxx.o
> -o cmTC_f6db0
>
> Source file was:
> int main() { return 0; }
> Performing C++ SOURCE FILE Test HAVE_BUILTIN_EXPECT succeeded with the
> following output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_23f14/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_23f14.dir/build.make CMakeFiles/cmTC_23f14.dir/build
> Building CXX object CMakeFiles/cmTC_23f14.dir/src.cxx.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -DHAVE_BUILTIN_EXPECT -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
>  -o CMakeFiles/cmTC_23f14.dir/src.cxx.o -c /Users/robertclaus/
> Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
> Linking CXX executable cmTC_23f14
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_23f14.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -DHAVE_BUILTIN_EXPECT -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
> -Wl,-search_paths_first -Wl,-headerpad_max_install_names
>  CMakeFiles/cmTC_23f14.dir/src.cxx.o  -o cmTC_23f14
>
> Source file was:
>
>   int main(int argc, char **argv) {
>     if (__builtin_expect(argc, 1)) {
>       return 0;
>     } else {
>       return argc;
>     }
>   }
>
> Determining if the include file sys/types.h exists passed with the
> following output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_9a28a/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_9a28a.dir/build.make CMakeFiles/cmTC_9a28a.dir/build
> Building C object CMakeFiles/cmTC_9a28a.dir/CheckIncludeFile.c.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
>  -o CMakeFiles/cmTC_9a28a.dir/CheckIncludeFile.c.o   -c
> /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/
> CheckIncludeFile.c
> Linking C executable cmTC_9a28a
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_9a28a.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
> -Wl,-search_paths_first -Wl,-headerpad_max_install_names
>  CMakeFiles/cmTC_9a28a.dir/CheckIncludeFile.c.o  -o cmTC_9a28a
>
>
> Determining if the include file stdint.h exists passed with the following
> output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_a03d8/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_a03d8.dir/build.make CMakeFiles/cmTC_a03d8.dir/build
> Building C object CMakeFiles/cmTC_a03d8.dir/CheckIncludeFile.c.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
>  -o CMakeFiles/cmTC_a03d8.dir/CheckIncludeFile.c.o   -c
> /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/
> CheckIncludeFile.c
> Linking C executable cmTC_a03d8
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_a03d8.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
> -Wl,-search_paths_first -Wl,-headerpad_max_install_names
>  CMakeFiles/cmTC_a03d8.dir/CheckIncludeFile.c.o  -o cmTC_a03d8
>
>
> Determining if the include file stddef.h exists passed with the following
> output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_cbd73/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_cbd73.dir/build.make CMakeFiles/cmTC_cbd73.dir/build
> Building C object CMakeFiles/cmTC_cbd73.dir/CheckIncludeFile.c.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
>  -o CMakeFiles/cmTC_cbd73.dir/CheckIncludeFile.c.o   -c
> /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/
> CheckIncludeFile.c
> Linking C executable cmTC_cbd73
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_cbd73.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
> -Wl,-search_paths_first -Wl,-headerpad_max_install_names
>  CMakeFiles/cmTC_cbd73.dir/CheckIncludeFile.c.o  -o cmTC_cbd73
>
>
> Determining size of unsigned short passed with the following output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_6e0c2/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_6e0c2.dir/build.make CMakeFiles/cmTC_6e0c2.dir/build
> Building C object CMakeFiles/cmTC_6e0c2.dir/CMAKE_SIZEOF_UNSIGNED_SHORT.c.
> o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
>  -o CMakeFiles/cmTC_6e0c2.dir/CMAKE_SIZEOF_UNSIGNED_SHORT.c.o   -c
> /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/
> CheckTypeSize/CMAKE_SIZEOF_UNSIGNED_SHORT.c
> Linking C executable cmTC_6e0c2
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_6e0c2.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
> -Wl,-search_paths_first -Wl,-headerpad_max_install_names
>  CMakeFiles/cmTC_6e0c2.dir/CMAKE_SIZEOF_UNSIGNED_SHORT.c.o  -o cmTC_6e0c2
>
>
> Determining if the system is big endian passed with the following output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_496de/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_496de.dir/build.make CMakeFiles/cmTC_496de.dir/build
> Building C object CMakeFiles/cmTC_496de.dir/TestEndianess.c.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
>  -o CMakeFiles/cmTC_496de.dir/TestEndianess.c.o   -c /Users/robertclaus/
> Development/quickstepSQL/build/CMakeFiles/CMakeTmp/TestEndianess.c
> Linking C executable cmTC_496de
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_496de.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
> -Wl,-search_paths_first -Wl,-headerpad_max_install_names
>  CMakeFiles/cmTC_496de.dir/TestEndianess.c.o  -o cmTC_496de
>
> 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;
> }
>
>
> Performing C++ SOURCE FILE Test COMPILER_HAS_WNO_OVERFLOW succeeded with
> the following output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_908d3/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_908d3.dir/build.make CMakeFiles/cmTC_908d3.dir/build
> Building CXX object CMakeFiles/cmTC_908d3.dir/src.cxx.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -DCOMPILER_HAS_WNO_OVERFLOW -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
>  -Wno-overflow -o CMakeFiles/cmTC_908d3.dir/src.cxx.o -c
> /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.
> cxx
> Linking CXX executable cmTC_908d3
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_908d3.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -DCOMPILER_HAS_WNO_OVERFLOW -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
> -Wl,-search_paths_first -Wl,-headerpad_max_install_names
>  CMakeFiles/cmTC_908d3.dir/src.cxx.o  -o cmTC_908d3
>
> Source file was:
> int main() { return 0; }
> Determining if the include file unistd.h exists passed with the following
> output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_ddd86/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_ddd86.dir/build.make CMakeFiles/cmTC_ddd86.dir/build
> Building CXX object CMakeFiles/cmTC_ddd86.dir/CheckIncludeFile.cxx.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/
> MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o
> CMakeFiles/cmTC_ddd86.dir/CheckIncludeFile.cxx.o -c /Users/robertclaus/
> Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckIncludeFile.cxx
> Linking CXX executable cmTC_ddd86
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_ddd86.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/
> MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first
> -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_ddd86.dir/CheckIncludeFile.cxx.o
> -o cmTC_ddd86
>
>
> Determining if the include file inttypes.h exists passed with the
> following output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_39fd8/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_39fd8.dir/build.make CMakeFiles/cmTC_39fd8.dir/build
> Building CXX object CMakeFiles/cmTC_39fd8.dir/CheckIncludeFile.cxx.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/
> MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o
> CMakeFiles/cmTC_39fd8.dir/CheckIncludeFile.cxx.o -c /Users/robertclaus/
> Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckIncludeFile.cxx
> Linking CXX executable cmTC_39fd8
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_39fd8.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/
> MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first
> -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_39fd8.dir/CheckIncludeFile.cxx.o
> -o cmTC_39fd8
>
>
> Determining if the include file sys/stat.h exists passed with the
> following output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_10cbd/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_10cbd.dir/build.make CMakeFiles/cmTC_10cbd.dir/build
> Building CXX object CMakeFiles/cmTC_10cbd.dir/CheckIncludeFile.cxx.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/
> MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o
> CMakeFiles/cmTC_10cbd.dir/CheckIncludeFile.cxx.o -c /Users/robertclaus/
> Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckIncludeFile.cxx
> Linking CXX executable cmTC_10cbd
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_10cbd.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/
> MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first
> -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_10cbd.dir/CheckIncludeFile.cxx.o
> -o cmTC_10cbd
>
>
> Determining if the include file fnmatch.h exists passed with the following
> output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_41532/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_41532.dir/build.make CMakeFiles/cmTC_41532.dir/build
> Building CXX object CMakeFiles/cmTC_41532.dir/CheckIncludeFile.cxx.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/
> MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o
> CMakeFiles/cmTC_41532.dir/CheckIncludeFile.cxx.o -c /Users/robertclaus/
> Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckIncludeFile.cxx
> Linking CXX executable cmTC_41532
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_41532.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/
> MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first
> -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_41532.dir/CheckIncludeFile.cxx.o
> -o cmTC_41532
>
>
> Determining size of uint32_t passed with the following output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_62786/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_62786.dir/build.make CMakeFiles/cmTC_62786.dir/build
> Building CXX object CMakeFiles/cmTC_62786.dir/uint32_t.cpp.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/
> MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o
> CMakeFiles/cmTC_62786.dir/uint32_t.cpp.o -c /Users/robertclaus/
> Development/quickstepSQL/build/CMakeFiles/CheckTypeSize/uint32_t.cpp
> Linking CXX executable cmTC_62786
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_62786.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/
> MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first
> -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_62786.dir/uint32_t.cpp.o
> -o cmTC_62786
>
>
> Determining if the strtoll exist passed with the following output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_23e8a/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_23e8a.dir/build.make CMakeFiles/cmTC_23e8a.dir/build
> Building CXX object CMakeFiles/cmTC_23e8a.dir/CheckSymbolExists.cxx.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/
> MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o
> CMakeFiles/cmTC_23e8a.dir/CheckSymbolExists.cxx.o -c /Users/robertclaus/
> Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckSymbolExists.cxx
> Linking CXX executable cmTC_23e8a
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_23e8a.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/
> MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first
> -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_23e8a.dir/CheckSymbolExists.cxx.o
> -o cmTC_23e8a
>
> File /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp/CheckSymbolExists.cxx:
> /* */
> #include <stdlib.h>
>
> int main(int argc, char** argv)
> {
>   (void)argv;
> #ifndef strtoll
>   return ((int*)(&strtoll))[argc];
> #else
>   (void)argc;
>   return 0;
> #endif
> }
>
> Determining size of pthread_rwlock_t passed with the following output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_07baf/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_07baf.dir/build.make CMakeFiles/cmTC_07baf.dir/build
> Building CXX object CMakeFiles/cmTC_07baf.dir/RWLOCK.cpp.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/
> MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o
> CMakeFiles/cmTC_07baf.dir/RWLOCK.cpp.o -c /Users/robertclaus/
> Development/quickstepSQL/build/CMakeFiles/CheckTypeSize/RWLOCK.cpp
> Linking CXX executable cmTC_07baf
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_07baf.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/
> MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first
> -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_07baf.dir/RWLOCK.cpp.o
> -o cmTC_07baf
>
>
> Performing C++ SOURCE FILE Test COMPILER_HAS_WNO_UNUSED_LOCAL_TYPEDEF
> succeeded with the following output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_be3be/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_be3be.dir/build.make CMakeFiles/cmTC_be3be.dir/build
> Building CXX object CMakeFiles/cmTC_be3be.dir/src.cxx.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -DCOMPILER_HAS_WNO_UNUSED_LOCAL_TYPEDEF -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
>  -Wno-unused-local-typedef -o CMakeFiles/cmTC_be3be.dir/src.cxx.o -c
> /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.
> cxx
> Linking CXX executable cmTC_be3be
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_be3be.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -DCOMPILER_HAS_WNO_UNUSED_LOCAL_TYPEDEF -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
> -Wl,-search_paths_first -Wl,-headerpad_max_install_names
>  CMakeFiles/cmTC_be3be.dir/src.cxx.o  -o cmTC_be3be
>
> Source file was:
> int main() { return 0; }
> Determining if the include file dlfcn.h exists passed with the following
> output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_020a9/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_020a9.dir/build.make CMakeFiles/cmTC_020a9.dir/build
> Building C object CMakeFiles/cmTC_020a9.dir/CheckIncludeFile.c.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
>  -o CMakeFiles/cmTC_020a9.dir/CheckIncludeFile.c.o   -c
> /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/
> CheckIncludeFile.c
> Linking C executable cmTC_020a9
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_020a9.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
> -Wl,-search_paths_first -Wl,-headerpad_max_install_names
>  CMakeFiles/cmTC_020a9.dir/CheckIncludeFile.c.o  -o cmTC_020a9
>
>
> Determining if the include file execinfo.h exists passed with the
> following output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_ad204/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_ad204.dir/build.make CMakeFiles/cmTC_ad204.dir/build
> Building C object CMakeFiles/cmTC_ad204.dir/CheckIncludeFile.c.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
>  -o CMakeFiles/cmTC_ad204.dir/CheckIncludeFile.c.o   -c
> /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/
> CheckIncludeFile.c
> Linking C executable cmTC_ad204
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_ad204.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
> -Wl,-search_paths_first -Wl,-headerpad_max_install_names
>  CMakeFiles/cmTC_ad204.dir/CheckIncludeFile.c.o  -o cmTC_ad204
>
>
> Determining if the include file glob.h exists passed with the following
> output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_add2a/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_add2a.dir/build.make CMakeFiles/cmTC_add2a.dir/build
> Building C object CMakeFiles/cmTC_add2a.dir/CheckIncludeFile.c.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
>  -o CMakeFiles/cmTC_add2a.dir/CheckIncludeFile.c.o   -c
> /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/
> CheckIncludeFile.c
> Linking C executable cmTC_add2a
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_add2a.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
> -Wl,-search_paths_first -Wl,-headerpad_max_install_names
>  CMakeFiles/cmTC_add2a.dir/CheckIncludeFile.c.o  -o cmTC_add2a
>
>
> Determining if the include file libunwind.h exists passed with the
> following output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_e908f/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_e908f.dir/build.make CMakeFiles/cmTC_e908f.dir/build
> Building C object CMakeFiles/cmTC_e908f.dir/CheckIncludeFile.c.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
>  -o CMakeFiles/cmTC_e908f.dir/CheckIncludeFile.c.o   -c
> /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/
> CheckIncludeFile.c
> Linking C executable cmTC_e908f
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_e908f.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
> -Wl,-search_paths_first -Wl,-headerpad_max_install_names
>  CMakeFiles/cmTC_e908f.dir/CheckIncludeFile.c.o  -o cmTC_e908f
>
>
> Determining if the include file memory.h exists passed with the following
> output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_9acb4/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_9acb4.dir/build.make CMakeFiles/cmTC_9acb4.dir/build
> Building C object CMakeFiles/cmTC_9acb4.dir/CheckIncludeFile.c.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
>  -o CMakeFiles/cmTC_9acb4.dir/CheckIncludeFile.c.o   -c
> /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/
> CheckIncludeFile.c
> Linking C executable cmTC_9acb4
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_9acb4.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
> -Wl,-search_paths_first -Wl,-headerpad_max_install_names
>  CMakeFiles/cmTC_9acb4.dir/CheckIncludeFile.c.o  -o cmTC_9acb4
>
>
> Determining if the include file pwd.h exists passed with the following
> output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_31e84/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_31e84.dir/build.make CMakeFiles/cmTC_31e84.dir/build
> Building C object CMakeFiles/cmTC_31e84.dir/CheckIncludeFile.c.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
>  -o CMakeFiles/cmTC_31e84.dir/CheckIncludeFile.c.o   -c
> /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/
> CheckIncludeFile.c
> Linking C executable cmTC_31e84
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_31e84.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
> -Wl,-search_paths_first -Wl,-headerpad_max_install_names
>  CMakeFiles/cmTC_31e84.dir/CheckIncludeFile.c.o  -o cmTC_31e84
>
>
> Determining if the include file stdlib.h exists passed with the following
> output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_c15f5/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_c15f5.dir/build.make CMakeFiles/cmTC_c15f5.dir/build
> Building C object CMakeFiles/cmTC_c15f5.dir/CheckIncludeFile.c.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
>  -o CMakeFiles/cmTC_c15f5.dir/CheckIncludeFile.c.o   -c
> /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/
> CheckIncludeFile.c
> Linking C executable cmTC_c15f5
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_c15f5.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
> -Wl,-search_paths_first -Wl,-headerpad_max_install_names
>  CMakeFiles/cmTC_c15f5.dir/CheckIncludeFile.c.o  -o cmTC_c15f5
>
>
> Determining if the include file string.h exists passed with the following
> output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_364e3/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_364e3.dir/build.make CMakeFiles/cmTC_364e3.dir/build
> Building C object CMakeFiles/cmTC_364e3.dir/CheckIncludeFile.c.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
>  -o CMakeFiles/cmTC_364e3.dir/CheckIncludeFile.c.o   -c
> /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/
> CheckIncludeFile.c
> Linking C executable cmTC_364e3
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_364e3.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
> -Wl,-search_paths_first -Wl,-headerpad_max_install_names
>  CMakeFiles/cmTC_364e3.dir/CheckIncludeFile.c.o  -o cmTC_364e3
>
>
> Determining if the include file strings.h exists passed with the following
> output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_a5eeb/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_a5eeb.dir/build.make CMakeFiles/cmTC_a5eeb.dir/build
> Building C object CMakeFiles/cmTC_a5eeb.dir/CheckIncludeFile.c.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
>  -o CMakeFiles/cmTC_a5eeb.dir/CheckIncludeFile.c.o   -c
> /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/
> CheckIncludeFile.c
> Linking C executable cmTC_a5eeb
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_a5eeb.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
> -Wl,-search_paths_first -Wl,-headerpad_max_install_names
>  CMakeFiles/cmTC_a5eeb.dir/CheckIncludeFile.c.o  -o cmTC_a5eeb
>
>
> Determining if the include file sys/syscall.h exists passed with the
> following output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_06767/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_06767.dir/build.make CMakeFiles/cmTC_06767.dir/build
> Building C object CMakeFiles/cmTC_06767.dir/CheckIncludeFile.c.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
>  -o CMakeFiles/cmTC_06767.dir/CheckIncludeFile.c.o   -c
> /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/
> CheckIncludeFile.c
> Linking C executable cmTC_06767
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_06767.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
> -Wl,-search_paths_first -Wl,-headerpad_max_install_names
>  CMakeFiles/cmTC_06767.dir/CheckIncludeFile.c.o  -o cmTC_06767
>
>
> Determining if the include file sys/time.h exists passed with the
> following output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_65a9a/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_65a9a.dir/build.make CMakeFiles/cmTC_65a9a.dir/build
> Building C object CMakeFiles/cmTC_65a9a.dir/CheckIncludeFile.c.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
>  -o CMakeFiles/cmTC_65a9a.dir/CheckIncludeFile.c.o   -c
> /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/
> CheckIncludeFile.c
> Linking C executable cmTC_65a9a
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_65a9a.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
> -Wl,-search_paths_first -Wl,-headerpad_max_install_names
>  CMakeFiles/cmTC_65a9a.dir/CheckIncludeFile.c.o  -o cmTC_65a9a
>
>
> Determining if the include file sys/utsname.h exists passed with the
> following output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_b57a4/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_b57a4.dir/build.make CMakeFiles/cmTC_b57a4.dir/build
> Building C object CMakeFiles/cmTC_b57a4.dir/CheckIncludeFile.c.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
>  -o CMakeFiles/cmTC_b57a4.dir/CheckIncludeFile.c.o   -c
> /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/
> CheckIncludeFile.c
> Linking C executable cmTC_b57a4
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_b57a4.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
> -Wl,-search_paths_first -Wl,-headerpad_max_install_names
>  CMakeFiles/cmTC_b57a4.dir/CheckIncludeFile.c.o  -o cmTC_b57a4
>
>
> Determining if the include file syslog.h exists passed with the following
> output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_e6d02/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_e6d02.dir/build.make CMakeFiles/cmTC_e6d02.dir/build
> Building C object CMakeFiles/cmTC_e6d02.dir/CheckIncludeFile.c.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
>  -o CMakeFiles/cmTC_e6d02.dir/CheckIncludeFile.c.o   -c
> /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/
> CheckIncludeFile.c
> Linking C executable cmTC_e6d02
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_e6d02.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
> -Wl,-search_paths_first -Wl,-headerpad_max_install_names
>  CMakeFiles/cmTC_e6d02.dir/CheckIncludeFile.c.o  -o cmTC_e6d02
>
>
> Determining if the include file unwind.h exists passed with the following
> output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_8ac81/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_8ac81.dir/build.make CMakeFiles/cmTC_8ac81.dir/build
> Building C object CMakeFiles/cmTC_8ac81.dir/CheckIncludeFile.c.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
>  -o CMakeFiles/cmTC_8ac81.dir/CheckIncludeFile.c.o   -c
> /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/
> CheckIncludeFile.c
> Linking C executable cmTC_8ac81
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_8ac81.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
> -Wl,-search_paths_first -Wl,-headerpad_max_install_names
>  CMakeFiles/cmTC_8ac81.dir/CheckIncludeFile.c.o  -o cmTC_8ac81
>
>
> Determining if the include file ext/hash_map exists passed with the
> following output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_af3f4/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_af3f4.dir/build.make CMakeFiles/cmTC_af3f4.dir/build
> Building CXX object CMakeFiles/cmTC_af3f4.dir/CheckIncludeFile.cxx.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/
> MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o
> CMakeFiles/cmTC_af3f4.dir/CheckIncludeFile.cxx.o -c /Users/robertclaus/
> Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckIncludeFile.cxx
> In file included from /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp/CheckIncludeFile.cxx:1:
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/include/c++/v1/ext/hash_map:213:5: warning:
> Use of the header <ext/hash_map> is deprecated.  Migrate to <unordered_map>
> [-W#warnings]
> #   warning Use of the header <ext/hash_map> is deprecated.  Migrate to
> <unordered_map>
>     ^
> 1 warning generated.
> Linking CXX executable cmTC_af3f4
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_af3f4.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/
> MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first
> -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_af3f4.dir/CheckIncludeFile.cxx.o
> -o cmTC_af3f4
>
>
> Determining if the include file ext/hash_set exists passed with the
> following output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_48a2e/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_48a2e.dir/build.make CMakeFiles/cmTC_48a2e.dir/build
> Building CXX object CMakeFiles/cmTC_48a2e.dir/CheckIncludeFile.cxx.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/
> MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o
> CMakeFiles/cmTC_48a2e.dir/CheckIncludeFile.cxx.o -c /Users/robertclaus/
> Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckIncludeFile.cxx
> In file included from /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp/CheckIncludeFile.cxx:1:
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/include/c++/v1/ext/hash_set:205:5: warning:
> Use of the header <ext/hash_set> is deprecated.  Migrate to <unordered_set>
> [-W#warnings]
> #   warning Use of the header <ext/hash_set> is deprecated.  Migrate to
> <unordered_set>
>     ^
> 1 warning generated.
> Linking CXX executable cmTC_48a2e
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_48a2e.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/
> MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first
> -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_48a2e.dir/CheckIncludeFile.cxx.o
> -o cmTC_48a2e
>
>
> Determining if the include file unordered_map exists passed with the
> following output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_308a2/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_308a2.dir/build.make CMakeFiles/cmTC_308a2.dir/build
> Building CXX object CMakeFiles/cmTC_308a2.dir/CheckIncludeFile.cxx.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/
> MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o
> CMakeFiles/cmTC_308a2.dir/CheckIncludeFile.cxx.o -c /Users/robertclaus/
> Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckIncludeFile.cxx
> Linking CXX executable cmTC_308a2
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_308a2.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/
> MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first
> -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_308a2.dir/CheckIncludeFile.cxx.o
> -o cmTC_308a2
>
>
> Determining if the include file unordered_set exists passed with the
> following output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_1ef38/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_1ef38.dir/build.make CMakeFiles/cmTC_1ef38.dir/build
> Building CXX object CMakeFiles/cmTC_1ef38.dir/CheckIncludeFile.cxx.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/
> MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o
> CMakeFiles/cmTC_1ef38.dir/CheckIncludeFile.cxx.o -c /Users/robertclaus/
> Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckIncludeFile.cxx
> Linking CXX executable cmTC_1ef38
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_1ef38.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/
> MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first
> -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_1ef38.dir/CheckIncludeFile.cxx.o
> -o cmTC_1ef38
>
>
> Determining size of u_int16_t passed with the following output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_f9e24/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_f9e24.dir/build.make CMakeFiles/cmTC_f9e24.dir/build
> Building C object CMakeFiles/cmTC_f9e24.dir/HAVE_U_INT16_T.c.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
>  -o CMakeFiles/cmTC_f9e24.dir/HAVE_U_INT16_T.c.o   -c /Users/robertclaus/
> Development/quickstepSQL/build/CMakeFiles/CheckTypeSize/HAVE_U_INT16_T.c
> Linking C executable cmTC_f9e24
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_f9e24.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
> -Wl,-search_paths_first -Wl,-headerpad_max_install_names
>  CMakeFiles/cmTC_f9e24.dir/HAVE_U_INT16_T.c.o  -o cmTC_f9e24
>
>
> Determining size of uint16_t passed with the following output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_8663c/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_8663c.dir/build.make CMakeFiles/cmTC_8663c.dir/build
> Building C object CMakeFiles/cmTC_8663c.dir/HAVE_UINT16_T.c.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
>  -o CMakeFiles/cmTC_8663c.dir/HAVE_UINT16_T.c.o   -c /Users/robertclaus/
> Development/quickstepSQL/build/CMakeFiles/CheckTypeSize/HAVE_UINT16_T.c
> Linking C executable cmTC_8663c
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_8663c.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
> -Wl,-search_paths_first -Wl,-headerpad_max_install_names
>  CMakeFiles/cmTC_8663c.dir/HAVE_UINT16_T.c.o  -o cmTC_8663c
>
>
> Determining if the function dladdr exists passed with the following output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_22e83/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_22e83.dir/build.make CMakeFiles/cmTC_22e83.dir/build
> Building C object CMakeFiles/cmTC_22e83.dir/CheckFunctionExists.c.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/cc   -DCHECK_FUNCTION_EXISTS=dladdr
> -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/
> MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o
> CMakeFiles/cmTC_22e83.dir/CheckFunctionExists.c.o   -c
> /usr/local/Cellar/cmake/3.10.1/share/cmake/Modules/CheckFunctionExists.c
> Linking C executable cmTC_22e83
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_22e83.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/cc  -DCHECK_FUNCTION_EXISTS=dladdr
> -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/
> MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first
> -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_22e83.dir/CheckFunctionExists.c.o
> -o cmTC_22e83
>
>
> Determining if the function fcntl exists passed with the following output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_9f75b/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_9f75b.dir/build.make CMakeFiles/cmTC_9f75b.dir/build
> Building C object CMakeFiles/cmTC_9f75b.dir/CheckFunctionExists.c.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/cc   -DCHECK_FUNCTION_EXISTS=fcntl
> -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/
> MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o
> CMakeFiles/cmTC_9f75b.dir/CheckFunctionExists.c.o   -c
> /usr/local/Cellar/cmake/3.10.1/share/cmake/Modules/CheckFunctionExists.c
> Linking C executable cmTC_9f75b
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_9f75b.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/cc  -DCHECK_FUNCTION_EXISTS=fcntl
> -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/
> MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first
> -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_9f75b.dir/CheckFunctionExists.c.o
> -o cmTC_9f75b
>
>
> Determining if the function pread exists passed with the following output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_d5d78/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_d5d78.dir/build.make CMakeFiles/cmTC_d5d78.dir/build
> Building C object CMakeFiles/cmTC_d5d78.dir/CheckFunctionExists.c.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/cc   -DCHECK_FUNCTION_EXISTS=pread
> -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/
> MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o
> CMakeFiles/cmTC_d5d78.dir/CheckFunctionExists.c.o   -c
> /usr/local/Cellar/cmake/3.10.1/share/cmake/Modules/CheckFunctionExists.c
> Linking C executable cmTC_d5d78
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_d5d78.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/cc  -DCHECK_FUNCTION_EXISTS=pread
> -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/
> MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first
> -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_d5d78.dir/CheckFunctionExists.c.o
> -o cmTC_d5d78
>
>
> Determining if the function pwrite exists passed with the following output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_123a9/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_123a9.dir/build.make CMakeFiles/cmTC_123a9.dir/build
> Building C object CMakeFiles/cmTC_123a9.dir/CheckFunctionExists.c.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/cc   -DCHECK_FUNCTION_EXISTS=pwrite
> -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/
> MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o
> CMakeFiles/cmTC_123a9.dir/CheckFunctionExists.c.o   -c
> /usr/local/Cellar/cmake/3.10.1/share/cmake/Modules/CheckFunctionExists.c
> Linking C executable cmTC_123a9
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_123a9.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/cc  -DCHECK_FUNCTION_EXISTS=pwrite
> -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/
> MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first
> -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_123a9.dir/CheckFunctionExists.c.o
> -o cmTC_123a9
>
>
> Determining if the function sigaction exists passed with the following
> output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_7ec0c/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_7ec0c.dir/build.make CMakeFiles/cmTC_7ec0c.dir/build
> Building C object CMakeFiles/cmTC_7ec0c.dir/CheckFunctionExists.c.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/cc   -DCHECK_FUNCTION_EXISTS=sigaction
> -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/
> MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o
> CMakeFiles/cmTC_7ec0c.dir/CheckFunctionExists.c.o   -c
> /usr/local/Cellar/cmake/3.10.1/share/cmake/Modules/CheckFunctionExists.c
> Linking C executable cmTC_7ec0c
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_7ec0c.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/cc  -DCHECK_FUNCTION_EXISTS=sigaction
> -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/
> MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first
> -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_7ec0c.dir/CheckFunctionExists.c.o
> -o cmTC_7ec0c
>
>
> Determining if the function sigaltstack exists passed with the following
> output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_c7cd4/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_c7cd4.dir/build.make CMakeFiles/cmTC_c7cd4.dir/build
> Building C object CMakeFiles/cmTC_c7cd4.dir/CheckFunctionExists.c.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/cc   -DCHECK_FUNCTION_EXISTS=sigaltstack
> -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/
> MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o
> CMakeFiles/cmTC_c7cd4.dir/CheckFunctionExists.c.o   -c
> /usr/local/Cellar/cmake/3.10.1/share/cmake/Modules/CheckFunctionExists.c
> Linking C executable cmTC_c7cd4
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_c7cd4.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/cc  -DCHECK_FUNCTION_EXISTS=sigaltstack
> -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/
> MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first
> -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_c7cd4.dir/CheckFunctionExists.c.o
> -o cmTC_c7cd4
>
>
> Performing C++ SOURCE FILE Test HAVE_NO_DEPRECATED succeeded with the
> following output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_64196/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_64196.dir/build.make CMakeFiles/cmTC_64196.dir/build
> Building CXX object CMakeFiles/cmTC_64196.dir/src.cxx.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -DHAVE_NO_DEPRECATED -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
>  -Wdeprecated -o CMakeFiles/cmTC_64196.dir/src.cxx.o -c
> /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.
> cxx
> Linking CXX executable cmTC_64196
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_64196.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -DHAVE_NO_DEPRECATED -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
> -Wl,-search_paths_first -Wl,-headerpad_max_install_names
>  CMakeFiles/cmTC_64196.dir/src.cxx.o  -o cmTC_64196
>
> Source file was:
> int main() { return 0; }
> Performing C++ SOURCE FILE Test HAVE_NO_UNNAMED_TYPE_TEMPLATE_ARGS
> succeeded with the following output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_81e25/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_81e25.dir/build.make CMakeFiles/cmTC_81e25.dir/build
> Building CXX object CMakeFiles/cmTC_81e25.dir/src.cxx.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -DHAVE_NO_UNNAMED_TYPE_TEMPLATE_ARGS -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
>  -Wunnamed-type-template-args -o CMakeFiles/cmTC_81e25.dir/src.cxx.o -c
> /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.
> cxx
> Linking CXX executable cmTC_81e25
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_81e25.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -DHAVE_NO_UNNAMED_TYPE_TEMPLATE_ARGS -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
> -Wl,-search_paths_first -Wl,-headerpad_max_install_names
>  CMakeFiles/cmTC_81e25.dir/src.cxx.o  -o cmTC_81e25
>
> Source file was:
> int main() { return 0; }
> Determining if the snprintf exist passed with the following output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_2f41e/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_2f41e.dir/build.make CMakeFiles/cmTC_2f41e.dir/build
> Building C object CMakeFiles/cmTC_2f41e.dir/CheckSymbolExists.c.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
>  -o CMakeFiles/cmTC_2f41e.dir/CheckSymbolExists.c.o   -c
> /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/
> CheckSymbolExists.c
> Linking C executable cmTC_2f41e
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_2f41e.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
> -Wl,-search_paths_first -Wl,-headerpad_max_install_names
>  CMakeFiles/cmTC_2f41e.dir/CheckSymbolExists.c.o  -o cmTC_2f41e
>
> File /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp/CheckSymbolExists.c:
> /* */
> #include <stdio.h>
>
> int main(int argc, char** argv)
> {
>   (void)argv;
> #ifndef snprintf
>   return ((int*)(&snprintf))[argc];
> #else
>   (void)argc;
>   return 0;
> #endif
> }
>
> Performing C SOURCE FILE Test HAVE___ATTRIBUTE__ succeeded with the
> following output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_c6af6/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_c6af6.dir/build.make CMakeFiles/cmTC_c6af6.dir/build
> Building C object CMakeFiles/cmTC_c6af6.dir/src.c.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/cc   -DHAVE___ATTRIBUTE__ -isysroot
> /Applications/Xcode.app/Contents/Developer/Platforms/
> MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o
> CMakeFiles/cmTC_c6af6.dir/src.c.o   -c /Users/robertclaus/
> Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.c
> Linking C executable cmTC_c6af6
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_c6af6.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/cc  -DHAVE___ATTRIBUTE__ -isysroot
> /Applications/Xcode.app/Contents/Developer/Platforms/
> MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first
> -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_c6af6.dir/src.c.o  -o
> cmTC_c6af6
>
> Source file was:
>
> #include <stdlib.h>
> static void foo(void) __attribute__ ((unused));
> int main(void) { return 0; }
>
> Performing C SOURCE FILE Test HAVE___ATTRIBUTE__VISIBILITY_DEFAULT
> succeeded with the following output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_54f26/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_54f26.dir/build.make CMakeFiles/cmTC_54f26.dir/build
> Building C object CMakeFiles/cmTC_54f26.dir/src.c.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/cc   -DHAVE___ATTRIBUTE__VISIBILITY_DEFAULT
> -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/
> MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o
> CMakeFiles/cmTC_54f26.dir/src.c.o   -c /Users/robertclaus/
> Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.c
> Linking C executable cmTC_54f26
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_54f26.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/cc  -DHAVE___ATTRIBUTE__VISIBILITY_DEFAULT
> -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/
> MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first
> -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_54f26.dir/src.c.o  -o
> cmTC_54f26
>
> Source file was:
>
> #include <stdlib.h>
> static void foo(void) __attribute__ ((visibility("default")));
> int main(void) { return 0; }
>
> Performing C SOURCE FILE Test HAVE___ATTRIBUTE__VISIBILITY_HIDDEN
> succeeded with the following output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_a790d/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_a790d.dir/build.make CMakeFiles/cmTC_a790d.dir/build
> Building C object CMakeFiles/cmTC_a790d.dir/src.c.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/cc   -DHAVE___ATTRIBUTE__VISIBILITY_HIDDEN
> -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/
> MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o
> CMakeFiles/cmTC_a790d.dir/src.c.o   -c /Users/robertclaus/
> Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.c
> Linking C executable cmTC_a790d
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_a790d.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/cc  -DHAVE___ATTRIBUTE__VISIBILITY_HIDDEN
> -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/
> MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first
> -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_a790d.dir/src.c.o  -o
> cmTC_a790d
>
> Source file was:
>
> #include <stdlib.h>
> static void foo(void) __attribute__ ((visibility("hidden")));
> int main(void) { return 0; }
>
> Performing C SOURCE FILE Test HAVE___BUILTIN_EXPECT succeeded with the
> following output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_11b22/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_11b22.dir/build.make CMakeFiles/cmTC_11b22.dir/build
> Building C object CMakeFiles/cmTC_11b22.dir/src.c.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/cc   -DHAVE___BUILTIN_EXPECT -isysroot
> /Applications/Xcode.app/Contents/Developer/Platforms/
> MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o
> CMakeFiles/cmTC_11b22.dir/src.c.o   -c /Users/robertclaus/
> Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.c
> Linking C executable cmTC_11b22
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_11b22.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/cc  -DHAVE___BUILTIN_EXPECT -isysroot
> /Applications/Xcode.app/Contents/Developer/Platforms/
> MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first
> -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_11b22.dir/src.c.o  -o
> cmTC_11b22
>
> Source file was:
>
> int main(void) { if (__builtin_expect(0, 0)) return 1; return 0; }
>
> Performing C SOURCE FILE Test HAVE___SYNC_VAL_COMPARE_AND_SWAP succeeded
> with the following output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_26a13/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_26a13.dir/build.make CMakeFiles/cmTC_26a13.dir/build
> Building C object CMakeFiles/cmTC_26a13.dir/src.c.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/cc   -DHAVE___SYNC_VAL_COMPARE_AND_SWAP
> -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/
> MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o
> CMakeFiles/cmTC_26a13.dir/src.c.o   -c /Users/robertclaus/
> Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.c
> Linking C executable cmTC_26a13
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_26a13.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/cc  -DHAVE___SYNC_VAL_COMPARE_AND_SWAP
> -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/
> MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first
> -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_26a13.dir/src.c.o  -o
> cmTC_26a13
>
> Source file was:
>
> int main(void)
> {
>   int a; if (__sync_val_compare_and_swap(&a, 0, 1)) return 1; return 0;
> }
>
> Performing C++ SOURCE FILE Test STL_STD_NAMESPACE succeeded with the
> following output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_3683d/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_3683d.dir/build.make CMakeFiles/cmTC_3683d.dir/build
> Building CXX object CMakeFiles/cmTC_3683d.dir/src.cxx.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -DSTL_STD_NAMESPACE -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
>  -o CMakeFiles/cmTC_3683d.dir/src.cxx.o -c /Users/robertclaus/
> Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
> Linking CXX executable cmTC_3683d
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_3683d.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -DSTL_STD_NAMESPACE -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
> -Wl,-search_paths_first -Wl,-headerpad_max_install_names
>  CMakeFiles/cmTC_3683d.dir/src.cxx.o  -o cmTC_3683d
>
> Source file was:
>
> #include <vector>
> std::vector<int> t; int main() { }
>
> Performing C++ SOURCE FILE Test HAVE_USING_OPERATOR succeeded with the
> following output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_1b2dc/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_1b2dc.dir/build.make CMakeFiles/cmTC_1b2dc.dir/build
> Building CXX object CMakeFiles/cmTC_1b2dc.dir/src.cxx.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -DHAVE_USING_OPERATOR -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
>  -o CMakeFiles/cmTC_1b2dc.dir/src.cxx.o -c /Users/robertclaus/
> Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
> Linking CXX executable cmTC_1b2dc
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_1b2dc.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -DHAVE_USING_OPERATOR -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
> -Wl,-search_paths_first -Wl,-headerpad_max_install_names
>  CMakeFiles/cmTC_1b2dc.dir/src.cxx.o  -o cmTC_1b2dc
>
> Source file was:
>
> #include <iostream>
> std::ostream& operator<<(std::ostream&, struct s);
> using ::operator<<;
> int main() { }
>
> Performing C++ SOURCE FILE Test HAVE_NAMESPACES succeeded with the
> following output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_253fb/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_253fb.dir/build.make CMakeFiles/cmTC_253fb.dir/build
> Building CXX object CMakeFiles/cmTC_253fb.dir/src.cxx.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -DHAVE_NAMESPACES -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
>  -o CMakeFiles/cmTC_253fb.dir/src.cxx.o -c /Users/robertclaus/
> Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
> Linking CXX executable cmTC_253fb
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_253fb.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -DHAVE_NAMESPACES -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
> -Wl,-search_paths_first -Wl,-headerpad_max_install_names
>  CMakeFiles/cmTC_253fb.dir/src.cxx.o  -o cmTC_253fb
>
> Source file was:
>
> namespace Outer { namespace Inner { int i = 0; }}
> using namespace Outer::Inner;;
> int main() { return i; }
>
> Performing C++ SOURCE FILE Test COMPILER_HAS_WNO_SIGN_ERROR succeeded with
> the following output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_a5b95/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_a5b95.dir/build.make CMakeFiles/cmTC_a5b95.dir/build
> Building CXX object CMakeFiles/cmTC_a5b95.dir/src.cxx.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -DCOMPILER_HAS_WNO_SIGN_ERROR -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
>  -Wno-sign-compare -o CMakeFiles/cmTC_a5b95.dir/src.cxx.o -c
> /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.
> cxx
> Linking CXX executable cmTC_a5b95
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_a5b95.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -DCOMPILER_HAS_WNO_SIGN_ERROR -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
> -Wl,-search_paths_first -Wl,-headerpad_max_install_names
>  CMakeFiles/cmTC_a5b95.dir/src.cxx.o  -o cmTC_a5b95
>
> Source file was:
> int main() { return 0; }
> Performing C++ SOURCE FILE Test COMPILER_HAS_WNO_PEDANTIC succeeded with
> the following output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_5c42e/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_5c42e.dir/build.make CMakeFiles/cmTC_5c42e.dir/build
> Building CXX object CMakeFiles/cmTC_5c42e.dir/src.cxx.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -DCOMPILER_HAS_WNO_PEDANTIC -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
>  -Wno-pedantic -o CMakeFiles/cmTC_5c42e.dir/src.cxx.o -c
> /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.
> cxx
> Linking CXX executable cmTC_5c42e
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_5c42e.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -DCOMPILER_HAS_WNO_PEDANTIC -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
> -Wl,-search_paths_first -Wl,-headerpad_max_install_names
>  CMakeFiles/cmTC_5c42e.dir/src.cxx.o  -o cmTC_5c42e
>
> Source file was:
> int main() { return 0; }
> Performing C++ SOURCE FILE Test COMPILER_HAS_STD_CXX11 succeeded with the
> following output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_cb620/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_cb620.dir/build.make CMakeFiles/cmTC_cb620.dir/build
> Building CXX object CMakeFiles/cmTC_cb620.dir/src.cxx.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -DCOMPILER_HAS_STD_CXX11 -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
>  -std=c++11 -o CMakeFiles/cmTC_cb620.dir/src.cxx.o -c /Users/robertclaus/
> Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
> Linking CXX executable cmTC_cb620
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_cb620.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -DCOMPILER_HAS_STD_CXX11 -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
> -Wl,-search_paths_first -Wl,-headerpad_max_install_names
>  CMakeFiles/cmTC_cb620.dir/src.cxx.o  -o cmTC_cb620
>
> Source file was:
> int main() { return 0; }
> Performing C++ SOURCE FILE Test COMPILER_HAS_WNO_UNUSED_VARIABLE
> succeeded with the following output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_95928/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_95928.dir/build.make CMakeFiles/cmTC_95928.dir/build
> Building CXX object CMakeFiles/cmTC_95928.dir/src.cxx.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -std=c++11 -Wall -pedantic -DCOMPILER_HAS_WNO_UNUSED_VARIABLE -isysroot
> /Applications/Xcode.app/Contents/Developer/Platforms/
> MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -Wno-unused-variable -o
> CMakeFiles/cmTC_95928.dir/src.cxx.o -c /Users/robertclaus/
> Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
> Linking CXX executable cmTC_95928
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_95928.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -std=c++11 -Wall -pedantic -DCOMPILER_HAS_WNO_UNUSED_VARIABLE -isysroot
> /Applications/Xcode.app/Contents/Developer/Platforms/
> MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first
> -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_95928.dir/src.cxx.o
> -o cmTC_95928
>
> Source file was:
> int main() { return 0; }
> Performing C++ SOURCE FILE Test COMPILER_HAS_WNO_DEPRECATED_REGISTER
> succeeded with the following output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_63a38/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_63a38.dir/build.make CMakeFiles/cmTC_63a38.dir/build
> Building CXX object CMakeFiles/cmTC_63a38.dir/src.cxx.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -DCOMPILER_HAS_WNO_DEPRECATED_REGISTER -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
>  -Wno-deprecated-register -o CMakeFiles/cmTC_63a38.dir/src.cxx.o -c
> /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.
> cxx
> Linking CXX executable cmTC_63a38
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_63a38.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -DCOMPILER_HAS_WNO_DEPRECATED_REGISTER -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
> -Wl,-search_paths_first -Wl,-headerpad_max_install_names
>  CMakeFiles/cmTC_63a38.dir/src.cxx.o  -o cmTC_63a38
>
> Source file was:
> int main() { return 0; }
> Determining if files unistd.h exist passed with the following output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_5d6a6/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_5d6a6.dir/build.make CMakeFiles/cmTC_5d6a6.dir/build
> Building C object CMakeFiles/cmTC_5d6a6.dir/CheckIncludeFiles.c.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
>  -o CMakeFiles/cmTC_5d6a6.dir/CheckIncludeFiles.c.o   -c
> /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/
> CheckIncludeFiles.c
> Linking C executable cmTC_5d6a6
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_5d6a6.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
> -Wl,-search_paths_first -Wl,-headerpad_max_install_names
>  CMakeFiles/cmTC_5d6a6.dir/CheckIncludeFiles.c.o  -o cmTC_5d6a6
>
>
> Determining if files fcntl.h;glob.h;unistd.h;sys/stat.h;sys/types.h exist
> passed with the following output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_0f41d/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_0f41d.dir/build.make CMakeFiles/cmTC_0f41d.dir/build
> Building C object CMakeFiles/cmTC_0f41d.dir/CheckIncludeFiles.c.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
>  -o CMakeFiles/cmTC_0f41d.dir/CheckIncludeFiles.c.o   -c
> /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/
> CheckIncludeFiles.c
> Linking C executable cmTC_0f41d
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_0f41d.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
> -Wl,-search_paths_first -Wl,-headerpad_max_install_names
>  CMakeFiles/cmTC_0f41d.dir/CheckIncludeFiles.c.o  -o cmTC_0f41d
>
>
> Performing C++ SOURCE FILE Test QUICKSTEP_HAVE_MMAP_PLAIN succeeded with
> the following output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_e9e5d/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_e9e5d.dir/build.make CMakeFiles/cmTC_e9e5d.dir/build
> Building CXX object CMakeFiles/cmTC_e9e5d.dir/src.cxx.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -DQUICKSTEP_HAVE_MMAP_PLAIN -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
>  -o CMakeFiles/cmTC_e9e5d.dir/src.cxx.o -c /Users/robertclaus/
> Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
> Linking CXX executable cmTC_e9e5d
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_e9e5d.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -DQUICKSTEP_HAVE_MMAP_PLAIN -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
> -Wl,-search_paths_first -Wl,-headerpad_max_install_names
>  CMakeFiles/cmTC_e9e5d.dir/src.cxx.o  -o cmTC_e9e5d
>
> Source file was:
>
>     #include <sys/mman.h>
>
>     int main() {
>       void *mem = mmap(nullptr,
>                        0x200000,
>                        PROT_READ | PROT_WRITE,
>                        MAP_PRIVATE | MAP_ANONYMOUS,
>                        -1, 0);
>       munmap(mem, 0x200000);
>       return 0;
>     }
>
> Determining size of size_t passed with the following output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_f0189/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_f0189.dir/build.make CMakeFiles/cmTC_f0189.dir/build
> Building C object CMakeFiles/cmTC_f0189.dir/SIZEOF_SIZE_T.c.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
>  -o CMakeFiles/cmTC_f0189.dir/SIZEOF_SIZE_T.c.o   -c /Users/robertclaus/
> Development/quickstepSQL/build/CMakeFiles/CheckTypeSize/SIZEOF_SIZE_T.c
> Linking C executable cmTC_f0189
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_f0189.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
> -Wl,-search_paths_first -Wl,-headerpad_max_install_names
>  CMakeFiles/cmTC_f0189.dir/SIZEOF_SIZE_T.c.o  -o cmTC_f0189
>
>
> Performing C++ SOURCE FILE Test QUICKSTEP_HAVE_CPP11_THREADS succeeded
> with the following output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_79897/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_79897.dir/build.make CMakeFiles/cmTC_79897.dir/build
> Building CXX object CMakeFiles/cmTC_79897.dir/src.cxx.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -DQUICKSTEP_HAVE_CPP11_THREADS -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
>  -o CMakeFiles/cmTC_79897.dir/src.cxx.o -c /Users/robertclaus/
> Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
> Linking CXX executable cmTC_79897
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_79897.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -DQUICKSTEP_HAVE_CPP11_THREADS -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
> -Wl,-search_paths_first -Wl,-headerpad_max_install_names
>  CMakeFiles/cmTC_79897.dir/src.cxx.o  -o cmTC_79897
>
> Source file was:
>
> #include <thread>
> #include <mutex>
> #include <condition_variable>
>
> int main() {
>   std::thread t;
>
>   std::mutex m;
>   std::recursive_mutex rm;
>
>   std::condition_variable_any cv;
>
>   std::lock_guard<std::mutex> lock_m(m);
>   std::lock_guard<std::recursive_mutex> lock_rm(rm);
>
>   return 0;
> }
>
> Performing C++ SOURCE FILE Test QUICKSTEP_HAVE_CPP14_SHARED_TIMED_MUTEX
> succeeded with the following output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_fda3c/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_fda3c.dir/build.make CMakeFiles/cmTC_fda3c.dir/build
> Building CXX object CMakeFiles/cmTC_fda3c.dir/src.cxx.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -DQUICKSTEP_HAVE_CPP14_SHARED_TIMED_MUTEX -isysroot
> /Applications/Xcode.app/Contents/Developer/Platforms/
> MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o
> CMakeFiles/cmTC_fda3c.dir/src.cxx.o -c /Users/robertclaus/
> Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
> Linking CXX executable cmTC_fda3c
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_fda3c.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -DQUICKSTEP_HAVE_CPP14_SHARED_TIMED_MUTEX -isysroot
> /Applications/Xcode.app/Contents/Developer/Platforms/
> MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first
> -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_fda3c.dir/src.cxx.o
> -o cmTC_fda3c
>
> Source file was:
>
> #include <shared_mutex>
>
> int main() {
>   std::shared_timed_mutex m;
>
>   m.lock();
>   m.unlock();
>
>   m.lock_shared();
>   m.unlock_shared();
>
>   return 0;
> }
>
> Performing C++ SOURCE FILE Test QUICKSTEP_HAVE_CPP11_YIELD succeeded with
> the following output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_623bc/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_623bc.dir/build.make CMakeFiles/cmTC_623bc.dir/build
> Building CXX object CMakeFiles/cmTC_623bc.dir/src.cxx.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -DQUICKSTEP_HAVE_CPP11_YIELD -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
>  -o CMakeFiles/cmTC_623bc.dir/src.cxx.o -c /Users/robertclaus/
> Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
> Linking CXX executable cmTC_623bc
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_623bc.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -DQUICKSTEP_HAVE_CPP11_YIELD -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
> -Wl,-search_paths_first -Wl,-headerpad_max_install_names
>  CMakeFiles/cmTC_623bc.dir/src.cxx.o  -o cmTC_623bc
>
> Source file was:
>
> #include <thread>
>
> int main() {
>   std::this_thread::yield();
>   return 0;
> }
>
> Determining size of time_t passed with the following output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_d753f/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_d753f.dir/build.make CMakeFiles/cmTC_d753f.dir/build
> Building C object CMakeFiles/cmTC_d753f.dir/SIZEOF_TIME_T.c.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
>  -o CMakeFiles/cmTC_d753f.dir/SIZEOF_TIME_T.c.o   -c /Users/robertclaus/
> Development/quickstepSQL/build/CMakeFiles/CheckTypeSize/SIZEOF_TIME_T.c
> Linking C executable cmTC_d753f
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_d753f.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
> -Wl,-search_paths_first -Wl,-headerpad_max_install_names
>  CMakeFiles/cmTC_d753f.dir/SIZEOF_TIME_T.c.o  -o cmTC_d753f
>
>
> Determining if the strnlen exist passed with the following output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_b6dfb/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_b6dfb.dir/build.make CMakeFiles/cmTC_b6dfb.dir/build
> Building CXX object CMakeFiles/cmTC_b6dfb.dir/CheckSymbolExists.cxx.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/
> MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o
> CMakeFiles/cmTC_b6dfb.dir/CheckSymbolExists.cxx.o -c /Users/robertclaus/
> Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckSymbolExists.cxx
> Linking CXX executable cmTC_b6dfb
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_b6dfb.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/
> MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first
> -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_b6dfb.dir/CheckSymbolExists.cxx.o
> -o cmTC_b6dfb
>
> File /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp/CheckSymbolExists.cxx:
> /* */
> #include <cstring>
>
> int main(int argc, char** argv)
> {
>   (void)argv;
> #ifndef strnlen
>   return ((int*)(&strnlen))[argc];
> #else
>   (void)argc;
>   return 0;
> #endif
> }
>
> Determining if the gmtime_r exist passed with the following output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_9201c/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_9201c.dir/build.make CMakeFiles/cmTC_9201c.dir/build
> Building CXX object CMakeFiles/cmTC_9201c.dir/CheckSymbolExists.cxx.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/
> MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o
> CMakeFiles/cmTC_9201c.dir/CheckSymbolExists.cxx.o -c /Users/robertclaus/
> Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckSymbolExists.cxx
> Linking CXX executable cmTC_9201c
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_9201c.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/
> MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first
> -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_9201c.dir/CheckSymbolExists.cxx.o
> -o cmTC_9201c
>
> File /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp/CheckSymbolExists.cxx:
> /* */
> #include <ctime>
>
> int main(int argc, char** argv)
> {
>   (void)argv;
> #ifndef gmtime_r
>   return ((int*)(&gmtime_r))[argc];
> #else
>   (void)argc;
>   return 0;
> #endif
> }
>
> Determining if the localtime_r exist passed with the following output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_76c1a/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_76c1a.dir/build.make CMakeFiles/cmTC_76c1a.dir/build
> Building CXX object CMakeFiles/cmTC_76c1a.dir/CheckSymbolExists.cxx.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/
> MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o
> CMakeFiles/cmTC_76c1a.dir/CheckSymbolExists.cxx.o -c /Users/robertclaus/
> Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckSymbolExists.cxx
> Linking CXX executable cmTC_76c1a
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_76c1a.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/
> MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first
> -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_76c1a.dir/CheckSymbolExists.cxx.o
> -o cmTC_76c1a
>
> File /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp/CheckSymbolExists.cxx:
> /* */
> #include <ctime>
>
> int main(int argc, char** argv)
> {
>   (void)argv;
> #ifndef localtime_r
>   return ((int*)(&localtime_r))[argc];
> #else
>   (void)argc;
>   return 0;
> #endif
> }
>
> Determining if the timegm exist passed with the following output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_27ec2/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_27ec2.dir/build.make CMakeFiles/cmTC_27ec2.dir/build
> Building CXX object CMakeFiles/cmTC_27ec2.dir/CheckSymbolExists.cxx.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/
> MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o
> CMakeFiles/cmTC_27ec2.dir/CheckSymbolExists.cxx.o -c /Users/robertclaus/
> Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckSymbolExists.cxx
> Linking CXX executable cmTC_27ec2
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_27ec2.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/
> MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first
> -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_27ec2.dir/CheckSymbolExists.cxx.o
> -o cmTC_27ec2
>
> File /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp/CheckSymbolExists.cxx:
> /* */
> #include <ctime>
>
> int main(int argc, char** argv)
> {
>   (void)argv;
> #ifndef timegm
>   return ((int*)(&timegm))[argc];
> #else
>   (void)argc;
>   return 0;
> #endif
> }
>
> Determining if the setenv exist passed with the following output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_8c5e1/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_8c5e1.dir/build.make CMakeFiles/cmTC_8c5e1.dir/build
> Building CXX object CMakeFiles/cmTC_8c5e1.dir/CheckSymbolExists.cxx.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/
> MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o
> CMakeFiles/cmTC_8c5e1.dir/CheckSymbolExists.cxx.o -c /Users/robertclaus/
> Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckSymbolExists.cxx
> Linking CXX executable cmTC_8c5e1
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_8c5e1.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/
> MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first
> -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_8c5e1.dir/CheckSymbolExists.cxx.o
> -o cmTC_8c5e1
>
> File /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp/CheckSymbolExists.cxx:
> /* */
> #include <stdlib.h>
>
> int main(int argc, char** argv)
> {
>   (void)argv;
> #ifndef setenv
>   return ((int*)(&setenv))[argc];
> #else
>   (void)argc;
>   return 0;
> #endif
> }
>
> Determining if the tzset exist passed with the following output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_9c6f0/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_9c6f0.dir/build.make CMakeFiles/cmTC_9c6f0.dir/build
> Building CXX object CMakeFiles/cmTC_9c6f0.dir/CheckSymbolExists.cxx.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/
> MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o
> CMakeFiles/cmTC_9c6f0.dir/CheckSymbolExists.cxx.o -c /Users/robertclaus/
> Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckSymbolExists.cxx
> Linking CXX executable cmTC_9c6f0
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_9c6f0.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/
> MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first
> -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_9c6f0.dir/CheckSymbolExists.cxx.o
> -o cmTC_9c6f0
>
> File /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp/CheckSymbolExists.cxx:
> /* */
> #include <time.h>
>
> int main(int argc, char** argv)
> {
>   (void)argv;
> #ifndef tzset
>   return ((int*)(&tzset))[argc];
> #else
>   (void)argc;
>   return 0;
> #endif
> }
>
> Performing C++ SOURCE FILE Test COMPILER_HAS_WNO_SELF_MOVE succeeded with
> the following output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_de1c3/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_de1c3.dir/build.make CMakeFiles/cmTC_de1c3.dir/build
> Building CXX object CMakeFiles/cmTC_de1c3.dir/src.cxx.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -DCOMPILER_HAS_WNO_SELF_MOVE -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
>  -Wno-self-move -o CMakeFiles/cmTC_de1c3.dir/src.cxx.o -c
> /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.
> cxx
> Linking CXX executable cmTC_de1c3
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_de1c3.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -DCOMPILER_HAS_WNO_SELF_MOVE -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
> -Wl,-search_paths_first -Wl,-headerpad_max_install_names
>  CMakeFiles/cmTC_de1c3.dir/src.cxx.o  -o cmTC_de1c3
>
> Source file was:
> int main() { return 0; }
> Performing C++ SOURCE FILE Test QUICKSTEP_HAVE_BUILTIN_POPCOUNT succeeded
> with the following output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_be531/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_be531.dir/build.make CMakeFiles/cmTC_be531.dir/build
> Building CXX object CMakeFiles/cmTC_be531.dir/src.cxx.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -DQUICKSTEP_HAVE_BUILTIN_POPCOUNT -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
>  -o CMakeFiles/cmTC_be531.dir/src.cxx.o -c /Users/robertclaus/
> Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
> Linking CXX executable cmTC_be531
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_be531.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -DQUICKSTEP_HAVE_BUILTIN_POPCOUNT -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
> -Wl,-search_paths_first -Wl,-headerpad_max_install_names
>  CMakeFiles/cmTC_be531.dir/src.cxx.o  -o cmTC_be531
>
> Source file was:
>
>   int main() {
>     return __builtin_popcount(1234);
>   }
>
> Performing C++ SOURCE FILE Test QUICKSTEP_HAVE_BUILTIN_CLZ succeeded with
> the following output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_2fc59/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_2fc59.dir/build.make CMakeFiles/cmTC_2fc59.dir/build
> Building CXX object CMakeFiles/cmTC_2fc59.dir/src.cxx.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -DQUICKSTEP_HAVE_BUILTIN_CLZ -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
>  -o CMakeFiles/cmTC_2fc59.dir/src.cxx.o -c /Users/robertclaus/
> Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
> Linking CXX executable cmTC_2fc59
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_2fc59.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -DQUICKSTEP_HAVE_BUILTIN_CLZ -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
> -Wl,-search_paths_first -Wl,-headerpad_max_install_names
>  CMakeFiles/cmTC_2fc59.dir/src.cxx.o  -o cmTC_2fc59
>
> Source file was:
>
>   int main() {
>     return __builtin_clz(12340);
>   }
>
> Performing C++ SOURCE FILE Test QUICKSTEP_HAVE_BUILTIN_CTZ succeeded with
> the following output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_383a8/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_383a8.dir/build.make CMakeFiles/cmTC_383a8.dir/build
> Building CXX object CMakeFiles/cmTC_383a8.dir/src.cxx.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -DQUICKSTEP_HAVE_BUILTIN_CTZ -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
>  -o CMakeFiles/cmTC_383a8.dir/src.cxx.o -c /Users/robertclaus/
> Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
> Linking CXX executable cmTC_383a8
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_383a8.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -DQUICKSTEP_HAVE_BUILTIN_CTZ -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
> -Wl,-search_paths_first -Wl,-headerpad_max_install_names
>  CMakeFiles/cmTC_383a8.dir/src.cxx.o  -o cmTC_383a8
>
> Source file was:
>
>   int main() {
>     return __builtin_ctz(12340);
>   }
>
> Performing C++ SOURCE FILE Test QUICKSTEP_HAVE_STD_ALIGN succeeded with
> the following output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_2c7b3/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_2c7b3.dir/build.make CMakeFiles/cmTC_2c7b3.dir/build
> Building CXX object CMakeFiles/cmTC_2c7b3.dir/src.cxx.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -DQUICKSTEP_HAVE_STD_ALIGN -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
>  -o CMakeFiles/cmTC_2c7b3.dir/src.cxx.o -c /Users/robertclaus/
> Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
> /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx:9:11:
> warning: unused variable 'aligned' [-Wunused-variable]
>     void *aligned = std::align(8, 8, ptr, space);
>           ^
> 1 warning generated.
> Linking CXX executable cmTC_2c7b3
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_2c7b3.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -DQUICKSTEP_HAVE_STD_ALIGN -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
> -Wl,-search_paths_first -Wl,-headerpad_max_install_names
>  CMakeFiles/cmTC_2c7b3.dir/src.cxx.o  -o cmTC_2c7b3
>
> Source file was:
>
>   #include <cstddef>
>   #include <memory>
>
>   int main() {
>     void *ptr = nullptr;
>     std::size_t space = 16;
>
>     void *aligned = std::align(8, 8, ptr, space);
>     return 0;
>   }
>
> Performing C++ SOURCE FILE Test QUICKSTEP_HAVE_POSIX_MEMALIGN succeeded
> with the following output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_5a733/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_5a733.dir/build.make CMakeFiles/cmTC_5a733.dir/build
> Building CXX object CMakeFiles/cmTC_5a733.dir/src.cxx.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -DQUICKSTEP_HAVE_POSIX_MEMALIGN -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
>  -o CMakeFiles/cmTC_5a733.dir/src.cxx.o -c /Users/robertclaus/
> Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
> Linking CXX executable cmTC_5a733
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_5a733.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -DQUICKSTEP_HAVE_POSIX_MEMALIGN -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
> -Wl,-search_paths_first -Wl,-headerpad_max_install_names
>  CMakeFiles/cmTC_5a733.dir/src.cxx.o  -o cmTC_5a733
>
> Source file was:
>
>   #include <stdlib.h>
>
>   int main() {
>     void *ptr;
>     return posix_memalign(&ptr, 64, 256);
>   }
>
> Performing C++ SOURCE FILE Test QUICKSTEP_HAVE_SYSCONF succeeded with the
> following output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_380a3/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_380a3.dir/build.make CMakeFiles/cmTC_380a3.dir/build
> Building CXX object CMakeFiles/cmTC_380a3.dir/src.cxx.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -DQUICKSTEP_HAVE_SYSCONF -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
>  -o CMakeFiles/cmTC_380a3.dir/src.cxx.o -c /Users/robertclaus/
> Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
> Linking CXX executable cmTC_380a3
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_380a3.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic
> -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native
> -DQUICKSTEP_HAVE_SYSCONF -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
> -Wl,-search_paths_first -Wl,-headerpad_max_install_names
>  CMakeFiles/cmTC_380a3.dir/src.cxx.o  -o cmTC_380a3
>
> Source file was:
>
>   #include <unistd.h>
>   int main() {
>   return (sysconf(_SC_PAGE_SIZE) > 0 && sysconf(_SC_PHYS_PAGES) > 0);
>   }
>
> Determining if files glob.h exist passed with the following output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_f8c1d/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_f8c1d.dir/build.make CMakeFiles/cmTC_f8c1d.dir/build
> Building C object CMakeFiles/cmTC_f8c1d.dir/CheckIncludeFiles.c.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
>  -o CMakeFiles/cmTC_f8c1d.dir/CheckIncludeFiles.c.o   -c
> /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/
> CheckIncludeFiles.c
> Linking C executable cmTC_f8c1d
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_f8c1d.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/
> Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
> -Wl,-search_paths_first -Wl,-headerpad_max_install_names
>  CMakeFiles/cmTC_f8c1d.dir/CheckIncludeFiles.c.o  -o cmTC_f8c1d
>
>
> Determining if the function open_memstream exists passed with the
> following output:
> Change Dir: /Users/robertclaus/Development/quickstepSQL/
> build/CMakeFiles/CMakeTmp
>
> Run Build Command:"/usr/bin/make" "cmTC_6044c/fast"
> /Applications/Xcode.app/Contents/Developer/usr/bin/make -f
> CMakeFiles/cmTC_6044c.dir/build.make CMakeFiles/cmTC_6044c.dir/build
> Building C object CMakeFiles/cmTC_6044c.dir/CheckFunctionExists.c.o
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/cc   -DCHECK_FUNCTION_EXISTS=open_memstream
> -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/
> MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o
> CMakeFiles/cmTC_6044c.dir/CheckFunctionExists.c.o   -c
> /usr/local/Cellar/cmake/3.10.1/share/cmake/Modules/CheckFunctionExists.c
> Linking C executable cmTC_6044c
> /usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
> CMakeFiles/cmTC_6044c.dir/link.txt --verbose=1
> /Applications/Xcode.app/Contents/Developer/Toolchains/
> XcodeDefault.xctoolchain/usr/bin/cc  -DCHECK_FUNCTION_EXISTS=open_memstream
> -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/
> MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first
> -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_6044c.dir/CheckFunctionExists.c.o
> -o cmTC_6044c
>
>
>
> On Sun, Jan 7, 2018 at 10:54 PM, Harshad Deshmukh <harshad@cs.wisc.edu
> <ma...@cs.wisc.edu>> wrote:
> Hi Robert,
>
>
> I can't find your attachments. Can you please resend or paste the logs in
> the email text?
>
>
> Thanks,
>
> Harshad
>
> ________________________________
> From: Robert Claus <ro...@gmail.com>>
> Sent: Sunday, January 7, 2018 9:41:32 PM
> To: dev@quickstep.incubator.apache.org<mailto:dev@
> quickstep.incubator.apache.org>
> Subject: CMake Issues After iOS Upgrade
>
> Hi Quickstep Team,
>
> I finally upgraded my Mac to 10.13.1 this weekend but I can't get cmake to
> succeed anymore.  I'm guessing it's a flag I'm missing, but I'm having
> trouble figuring out what exactly and could use some help.  Any ideas what
> could be causing the issue?
>
> CMakeError and Output are attached.
>
> Thanks!
> -Robert
>
>

Re: CMake Issues After iOS Upgrade

Posted by Harshad Deshmukh <ha...@cs.wisc.edu>.
Looks like some of the system libraries needed by Quickstep are not supported/present on MacOS. A cursory google search showed this issue which is similar to ours: https://github.com/fireice-uk/xmr-stak-cpu/issues/20

I don't have a Mac, so I'm afraid I can't help much. However, can you try installing the missing libraries through brew and give another shot?


Thanks,

Harshad

________________________________
From: Robert Claus <ro...@gmail.com>
Sent: Monday, January 8, 2018 8:24:08 AM
To: dev@quickstep.incubator.apache.org
Subject: Re: CMake Issues After iOS Upgrade

Attaching again and adding to email body.



CMakeError.log

Determining if files hdfs/hdfs.h exist failed with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_df941/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_df941.dir/build.make CMakeFiles/cmTC_df941.dir/build
Building C object CMakeFiles/cmTC_df941.dir/CheckIncludeFiles.c.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o CMakeFiles/cmTC_df941.dir/CheckIncludeFiles.c.o   -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckIncludeFiles.c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckIncludeFiles.c:2:10: fatal error: 'hdfs/hdfs.h' file not found
#include <hdfs/hdfs.h>
         ^~~~~~~~~~~~~
1 error generated.
make[1]: *** [CMakeFiles/cmTC_df941.dir/CheckIncludeFiles.c.o] Error 1
make: *** [cmTC_df941/fast] Error 2

Source:
/* */
#include <hdfs/hdfs.h>


int main(void){return 0;}

Performing C++ SOURCE FILE Test HAVE_CXX_FLAG_WZERO_AS_NULL_POINTER_CONSTANT failed with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_312d6/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_312d6.dir/build.make CMakeFiles/cmTC_312d6.dir/build
Building CXX object CMakeFiles/cmTC_312d6.dir/src.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native -std=c++11 -Wall -Wextra -Wshadow -pedantic -pedantic-errors -Wshorten-64-to-32 -Wfloat-equal -fstrict-aliasing -DHAVE_CXX_FLAG_WZERO_AS_NULL_POINTER_CONSTANT -Wzero-as-null-pointer-constant -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -Wzero-as-null-pointer-constant -o CMakeFiles/cmTC_312d6.dir/src.cxx.o -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
warning: unknown warning option '-Wzero-as-null-pointer-constant'; did you mean '-Wint-to-void-pointer-cast'? [-Wunknown-warning-option]
warning: unknown warning option '-Wzero-as-null-pointer-constant'; did you mean '-Wint-to-void-pointer-cast'? [-Wunknown-warning-option]
2 warnings generated.
Linking CXX executable cmTC_312d6
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_312d6.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native -std=c++11 -Wall -Wextra -Wshadow -pedantic -pedantic-errors -Wshorten-64-to-32 -Wfloat-equal -fstrict-aliasing -DHAVE_CXX_FLAG_WZERO_AS_NULL_POINTER_CONSTANT -Wzero-as-null-pointer-constant -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_312d6.dir/src.cxx.o  -o cmTC_312d6

Source file was:
int main() { return 0; }
Determining if the include file syscall.h exists failed with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_f8ddd/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_f8ddd.dir/build.make CMakeFiles/cmTC_f8ddd.dir/build
Building C object CMakeFiles/cmTC_f8ddd.dir/CheckIncludeFile.c.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o CMakeFiles/cmTC_f8ddd.dir/CheckIncludeFile.c.o   -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c:1:10: fatal error: 'syscall.h' file not found
#include <syscall.h>
         ^~~~~~~~~~~
1 error generated.
make[1]: *** [CMakeFiles/cmTC_f8ddd.dir/CheckIncludeFile.c.o] Error 1
make: *** [cmTC_f8ddd/fast] Error 2


Determining if the include file ucontext.h exists failed with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_98a6d/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_98a6d.dir/build.make CMakeFiles/cmTC_98a6d.dir/build
Building C object CMakeFiles/cmTC_98a6d.dir/CheckIncludeFile.c.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o CMakeFiles/cmTC_98a6d.dir/CheckIncludeFile.c.o   -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
In file included from /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c:1:
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/usr/include/ucontext.h:43:2: error: The deprecated ucontext routines require _XOPEN_SOURCE to be defined
#error The deprecated ucontext routines require _XOPEN_SOURCE to be defined
 ^
1 error generated.
make[1]: *** [CMakeFiles/cmTC_98a6d.dir/CheckIncludeFile.c.o] Error 1
make: *** [cmTC_98a6d/fast] Error 2


Determining if the include file ext/slist exists failed with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_cef81/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_cef81.dir/build.make CMakeFiles/cmTC_cef81.dir/build
Building CXX object CMakeFiles/cmTC_cef81.dir/CheckIncludeFile.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native  -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o CMakeFiles/cmTC_cef81.dir/CheckIncludeFile.cxx.o -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckIncludeFile.cxx
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckIncludeFile.cxx:1:10: fatal error: 'ext/slist' file not found
#include <ext/slist>
         ^~~~~~~~~~~
1 error generated.
make[1]: *** [CMakeFiles/cmTC_cef81.dir/CheckIncludeFile.cxx.o] Error 1
make: *** [cmTC_cef81/fast] Error 2


Determining if the include file tr1/unordered_map exists failed with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_c39b5/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_c39b5.dir/build.make CMakeFiles/cmTC_c39b5.dir/build
Building CXX object CMakeFiles/cmTC_c39b5.dir/CheckIncludeFile.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native  -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o CMakeFiles/cmTC_c39b5.dir/CheckIncludeFile.cxx.o -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckIncludeFile.cxx
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckIncludeFile.cxx:1:10: fatal error: 'tr1/unordered_map' file not found
#include <tr1/unordered_map>
         ^~~~~~~~~~~~~~~~~~~
1 error generated.
make[1]: *** [CMakeFiles/cmTC_c39b5.dir/CheckIncludeFile.cxx.o] Error 1
make: *** [cmTC_c39b5/fast] Error 2


Determining if the include file tr1/unordered_set exists failed with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_e67da/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_e67da.dir/build.make CMakeFiles/cmTC_e67da.dir/build
Building CXX object CMakeFiles/cmTC_e67da.dir/CheckIncludeFile.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native  -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o CMakeFiles/cmTC_e67da.dir/CheckIncludeFile.cxx.o -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckIncludeFile.cxx
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckIncludeFile.cxx:1:10: fatal error: 'tr1/unordered_set' file not found
#include <tr1/unordered_set>
         ^~~~~~~~~~~~~~~~~~~
1 error generated.
make[1]: *** [CMakeFiles/cmTC_e67da.dir/CheckIncludeFile.cxx.o] Error 1
make: *** [cmTC_e67da/fast] Error 2


Determining size of unsigned __int16 failed with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_dbb53/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_dbb53.dir/build.make CMakeFiles/cmTC_dbb53.dir/build
Building C object CMakeFiles/cmTC_dbb53.dir/HAVE___UINT16.c.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o CMakeFiles/cmTC_dbb53.dir/HAVE___UINT16.c.o   -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CheckTypeSize/HAVE___UINT16.c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CheckTypeSize/HAVE___UINT16.c:25:12: error: expected ')'
  ('0' + ((SIZE / 10000)%10)),
           ^
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CheckTypeSize/HAVE___UINT16.c:23:31: note: expanded from macro 'SIZE'
#define SIZE (sizeof(unsigned __int16))
                              ^
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CheckTypeSize/HAVE___UINT16.c:25:12: note: to match this '('
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CheckTypeSize/HAVE___UINT16.c:23:21: note: expanded from macro 'SIZE'
#define SIZE (sizeof(unsigned __int16))
                    ^
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CheckTypeSize/HAVE___UINT16.c:26:12: error: expected ')'
  ('0' + ((SIZE / 1000)%10)),
           ^
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CheckTypeSize/HAVE___UINT16.c:23:31: note: expanded from macro 'SIZE'
#define SIZE (sizeof(unsigned __int16))
                              ^
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CheckTypeSize/HAVE___UINT16.c:26:12: note: to match this '('
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CheckTypeSize/HAVE___UINT16.c:23:21: note: expanded from macro 'SIZE'
#define SIZE (sizeof(unsigned __int16))
                    ^
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CheckTypeSize/HAVE___UINT16.c:27:12: error: expected ')'
  ('0' + ((SIZE / 100)%10)),
           ^
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CheckTypeSize/HAVE___UINT16.c:23:31: note: expanded from macro 'SIZE'
#define SIZE (sizeof(unsigned __int16))
                              ^
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CheckTypeSize/HAVE___UINT16.c:27:12: note: to match this '('
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CheckTypeSize/HAVE___UINT16.c:23:21: note: expanded from macro 'SIZE'
#define SIZE (sizeof(unsigned __int16))
                    ^
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CheckTypeSize/HAVE___UINT16.c:28:12: error: expected ')'
  ('0' + ((SIZE / 10)%10)),
           ^
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CheckTypeSize/HAVE___UINT16.c:23:31: note: expanded from macro 'SIZE'
#define SIZE (sizeof(unsigned __int16))
                              ^
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CheckTypeSize/HAVE___UINT16.c:28:12: note: to match this '('
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CheckTypeSize/HAVE___UINT16.c:23:21: note: expanded from macro 'SIZE'
#define SIZE (sizeof(unsigned __int16))
                    ^
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CheckTypeSize/HAVE___UINT16.c:29:12: error: expected ')'
  ('0' +  (SIZE    % 10)),
           ^
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CheckTypeSize/HAVE___UINT16.c:23:31: note: expanded from macro 'SIZE'
#define SIZE (sizeof(unsigned __int16))
                              ^
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CheckTypeSize/HAVE___UINT16.c:29:12: note: to match this '('
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CheckTypeSize/HAVE___UINT16.c:23:21: note: expanded from macro 'SIZE'
#define SIZE (sizeof(unsigned __int16))
                    ^
5 errors generated.
make[1]: *** [CMakeFiles/cmTC_dbb53.dir/HAVE___UINT16.c.o] Error 1
make: *** [cmTC_dbb53/fast] Error 2

/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CheckTypeSize/HAVE___UINT16.c:
#include <sys/types.h>
#include <stdint.h>
#include <stddef.h>


#undef KEY
#if defined(__i386)
# define KEY '_','_','i','3','8','6'
#elif defined(__x86_64)
# define KEY '_','_','x','8','6','_','6','4'
#elif defined(__ppc__)
# define KEY '_','_','p','p','c','_','_'
#elif defined(__ppc64__)
# define KEY '_','_','p','p','c','6','4','_','_'
#elif defined(__aarch64__)
# define KEY '_','_','a','a','r','c','h','6','4','_','_'
#elif defined(__ARM_ARCH_7A__)
# define KEY '_','_','A','R','M','_','A','R','C','H','_','7','A','_','_'
#elif defined(__ARM_ARCH_7S__)
# define KEY '_','_','A','R','M','_','A','R','C','H','_','7','S','_','_'
#endif

#define SIZE (sizeof(unsigned __int16))
char info_size[] =  {'I', 'N', 'F', 'O', ':', 's','i','z','e','[',
  ('0' + ((SIZE / 10000)%10)),
  ('0' + ((SIZE / 1000)%10)),
  ('0' + ((SIZE / 100)%10)),
  ('0' + ((SIZE / 10)%10)),
  ('0' +  (SIZE    % 10)),
  ']',
#ifdef KEY
  ' ','k','e','y','[', KEY, ']',
#endif
  '\0'};

#ifdef __CLASSIC_C__
int main(argc, argv) int argc; char *argv[];
#else
int main(int argc, char *argv[])
#endif
{
  int require = 0;
  require += info_size[argc];
  (void)argv;
  return require;
}


Determining if the function get_static_proc_name exists in the unwind failed with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_2363c/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_2363c.dir/build.make CMakeFiles/cmTC_2363c.dir/build
Building C object CMakeFiles/cmTC_2363c.dir/CheckFunctionExists.c.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc   -DCHECK_FUNCTION_EXISTS=get_static_proc_name -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o CMakeFiles/cmTC_2363c.dir/CheckFunctionExists.c.o   -c /usr/local/Cellar/cmake/3.10.1/share/cmake/Modules/CheckFunctionExists.c
Linking C executable cmTC_2363c
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_2363c.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc  -DCHECK_FUNCTION_EXISTS=get_static_proc_name -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_2363c.dir/CheckFunctionExists.c.o  -o cmTC_2363c -lunwind
ld: library not found for -lunwind
clang: error: linker command failed with exit code 1 (use -v to see invocation)
make[1]: *** [cmTC_2363c] Error 1
make: *** [cmTC_2363c/fast] Error 2


Performing C SOURCE FILE Test HAVE___DECLSPEC failed with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_e5741/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_e5741.dir/build.make CMakeFiles/cmTC_e5741.dir/build
Building C object CMakeFiles/cmTC_e5741.dir/src.c.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc   -DHAVE___DECLSPEC -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o CMakeFiles/cmTC_e5741.dir/src.c.o   -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.c:2:27: error: parameter named 'a' is missing
__declspec(selectany) int a;
                          ^
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.c:3:5: error: parameter named 'main' is missing
int main(void) { return 0; }
    ^
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.c:3:15: error: expected ';' at end of declaration
int main(void) { return 0; }
              ^
              ;
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.c:2:1: warning: type specifier missing, defaults to 'int' [-Wimplicit-int]
__declspec(selectany) int a;
^
1 warning and 3 errors generated.
make[1]: *** [CMakeFiles/cmTC_e5741.dir/src.c.o] Error 1
make: *** [cmTC_e5741/fast] Error 2

Source file was:

__declspec(selectany) int a;
int main(void) { return 0; }

Performing C++ SOURCE FILE Test STL_NO_NAMESPACE failed with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_82b3e/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_82b3e.dir/build.make CMakeFiles/cmTC_82b3e.dir/build
Building CXX object CMakeFiles/cmTC_82b3e.dir/src.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native -DSTL_NO_NAMESPACE -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o CMakeFiles/cmTC_82b3e.dir/src.cxx.o -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx:3:1: error: no template named 'vector'; did you mean 'std::vector'?
vector<int> t; int main() { }
^~~~~~
std::vector
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include/c++/v1/vector:450:28: note: 'std::vector' declared here
class _LIBCPP_TEMPLATE_VIS vector
                           ^
1 error generated.
make[1]: *** [CMakeFiles/cmTC_82b3e.dir/src.cxx.o] Error 1
make: *** [cmTC_82b3e/fast] Error 2

Source file was:

#include <vector>
vector<int> t; int main() { }

Performing C++ SOURCE FILE Test COMPILER_HAS_WNO_UNUSED_BUT_SET_VARIABLE failed with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_2c168/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_2c168.dir/build.make CMakeFiles/cmTC_2c168.dir/build
Building CXX object CMakeFiles/cmTC_2c168.dir/src.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native -std=c++11 -Wall -pedantic -DCOMPILER_HAS_WNO_UNUSED_BUT_SET_VARIABLE -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -Wno-unused-but-set-variable -o CMakeFiles/cmTC_2c168.dir/src.cxx.o -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
warning: unknown warning option '-Wno-unused-but-set-variable'; did you mean '-Wno-unused-const-variable'? [-Wunknown-warning-option]
1 warning generated.
Linking CXX executable cmTC_2c168
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_2c168.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native -std=c++11 -Wall -pedantic -DCOMPILER_HAS_WNO_UNUSED_BUT_SET_VARIABLE -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_2c168.dir/src.cxx.o  -o cmTC_2c168

Source file was:
int main() { return 0; }
Performing C++ SOURCE FILE Test QUICKSTEP_HAVE_MMAP_LINUX_HUGETLB failed with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_e93bd/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_e93bd.dir/build.make CMakeFiles/cmTC_e93bd.dir/build
Building CXX object CMakeFiles/cmTC_e93bd.dir/src.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native -DQUICKSTEP_HAVE_MMAP_LINUX_HUGETLB -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o CMakeFiles/cmTC_e93bd.dir/src.cxx.o -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx:11:52: error: use of undeclared identifier 'MAP_HUGETLB'
                     MAP_PRIVATE | MAP_ANONYMOUS | MAP_HUGETLB,
                                                   ^
1 error generated.
make[1]: *** [CMakeFiles/cmTC_e93bd.dir/src.cxx.o] Error 1
make: *** [cmTC_e93bd/fast] Error 2

Source file was:

  #ifndef _GNU_SOURCE
  #define _GNU_SOURCE
  #endif
  #include <sys/mman.h>

  int main() {
    void *mem = mmap(nullptr,
                     0x200000,
                     PROT_READ | PROT_WRITE,
                     MAP_PRIVATE | MAP_ANONYMOUS | MAP_HUGETLB,
                     -1, 0);
    munmap(mem, 0x200000);
    return 0;
  }

Performing C++ SOURCE FILE Test QUICKSTEP_HAVE_MMAP_BSD_SUPERPAGE failed with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_fe126/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_fe126.dir/build.make CMakeFiles/cmTC_fe126.dir/build
Building CXX object CMakeFiles/cmTC_fe126.dir/src.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native -DQUICKSTEP_HAVE_MMAP_BSD_SUPERPAGE -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o CMakeFiles/cmTC_fe126.dir/src.cxx.o -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx:9:54: error: use of undeclared identifier 'MAP_ALIGNED_SUPER'
                       MAP_PRIVATE | MAP_ANONYMOUS | MAP_ALIGNED_SUPER,
                                                     ^
1 error generated.
make[1]: *** [CMakeFiles/cmTC_fe126.dir/src.cxx.o] Error 1
make: *** [cmTC_fe126/fast] Error 2

Source file was:

    #define _BSD_SOURCE
    #include <sys/mman.h>

    int main() {
      void *mem = mmap(nullptr,
                       0x200000,
                       PROT_READ | PROT_WRITE,
                       MAP_PRIVATE | MAP_ANONYMOUS | MAP_ALIGNED_SUPER,
                       -1, 0);
      munmap(mem, 0x200000);
      return 0;
    }

Performing C++ SOURCE FILE Test QUICKSTEP_HAVE_CPP17_SHARED_MUTEX failed with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_e3a80/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_e3a80.dir/build.make CMakeFiles/cmTC_e3a80.dir/build
Building CXX object CMakeFiles/cmTC_e3a80.dir/src.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native -DQUICKSTEP_HAVE_CPP17_SHARED_MUTEX -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o CMakeFiles/cmTC_e3a80.dir/src.cxx.o -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx:5:8: error: no type named 'shared_mutex' in namespace 'std'
  std::shared_mutex m;
  ~~~~~^
1 error generated.
make[1]: *** [CMakeFiles/cmTC_e3a80.dir/src.cxx.o] Error 1
make: *** [cmTC_e3a80/fast] Error 2

Source file was:

#include <shared_mutex>

int main() {
  std::shared_mutex m;

  m.lock();
  m.unlock();

  m.lock_shared();
  m.unlock_shared();

  return 0;
}

Performing C++ SOURCE FILE Test QUICKSTEP_HAVE_PTHREAD_SETAFFINITY_NP_LINUX failed with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_f92a4/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_f92a4.dir/build.make CMakeFiles/cmTC_f92a4.dir/build
Building CXX object CMakeFiles/cmTC_f92a4.dir/src.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native -DQUICKSTEP_HAVE_PTHREAD_SETAFFINITY_NP_LINUX -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o CMakeFiles/cmTC_f92a4.dir/src.cxx.o -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx:9:5: error: unknown type name 'cpu_set_t'
    cpu_set_t cpuset;
    ^
1 error generated.
make[1]: *** [CMakeFiles/cmTC_f92a4.dir/src.cxx.o] Error 1
make: *** [cmTC_f92a4/fast] Error 2

Source file was:

  #ifndef _GNU_SOURCE
  #define _GNU_SOURCE 1
  #endif
  #include <pthread.h>
  #include <sched.h>

  int main() {
    cpu_set_t cpuset;
    CPU_ZERO(&cpuset);
    CPU_SET(0, &cpuset);
    if (pthread_setaffinity_np(pthread_self(), sizeof(cpuset), &cpuset) != 0) {
      return 1;
    }
    return 0;
  }

Performing C++ SOURCE FILE Test QUICKSTEP_HAVE_PTHREAD_SETAFFINITY_NP_FREEBSD failed with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_deb6c/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_deb6c.dir/build.make CMakeFiles/cmTC_deb6c.dir/build
Building CXX object CMakeFiles/cmTC_deb6c.dir/src.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native -DQUICKSTEP_HAVE_PTHREAD_SETAFFINITY_NP_FREEBSD -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o CMakeFiles/cmTC_deb6c.dir/src.cxx.o -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx:6:14: fatal error: 'pthread_np.h' file not found
    #include <pthread_np.h>
             ^~~~~~~~~~~~~~
1 error generated.
make[1]: *** [CMakeFiles/cmTC_deb6c.dir/src.cxx.o] Error 1
make: *** [cmTC_deb6c/fast] Error 2

Source file was:

    #ifndef _BSD_SOURCE
    #define _BSD_SOURCE 1
    #endif
    #include <pthread.h>
    #include <pthread_np.h>
    #include <sched.h>

    int main() {
      cpuset_t cpuset;
      CPU_ZERO(&cpuset);
      CPU_SET(0, &cpuset);
      if (pthread_setaffinity_np(pthread_self(), sizeof(cpuset), &cpuset) != 0) {
        return 1;
      }
      return 0;
    }

Performing C++ SOURCE FILE Test QUICKSTEP_HAVE_PTHREAD_SETAFFINITY_NP_NETBSD failed with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_5d440/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_5d440.dir/build.make CMakeFiles/cmTC_5d440.dir/build
Building CXX object CMakeFiles/cmTC_5d440.dir/src.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native -DQUICKSTEP_HAVE_PTHREAD_SETAFFINITY_NP_NETBSD -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o CMakeFiles/cmTC_5d440.dir/src.cxx.o -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx:9:7: error: unknown type name 'cpuset_t'
      cpuset_t *cset = cpuset_create();
      ^
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx:9:24: error: use of undeclared identifier 'cpuset_create'
      cpuset_t *cset = cpuset_create();
                       ^
2 errors generated.
make[1]: *** [CMakeFiles/cmTC_5d440.dir/src.cxx.o] Error 1
make: *** [cmTC_5d440/fast] Error 2

Source file was:

    #ifndef _BSD_SOURCE
    #define _BSD_SOURCE 1
    #endif
    #include <pthread.h>
    #include <sched.h>

    int main() {
      cpuset_t *cset = cpuset_create();
      if (cpuset_set(0, cset) != 0) {
        return 1;
      }
      if (pthread_setaffinity_np(pthread_self(), cpuset_size(cset), cset) != 0) {
        return 1;
      }
      cpuset_destroy(cset);
      return 0;
    }

Performing C++ SOURCE FILE Test QUICKSTEP_HAVE_ALIGNED_ALLOC failed with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_bd82e/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_bd82e.dir/build.make CMakeFiles/cmTC_bd82e.dir/build
Building CXX object CMakeFiles/cmTC_bd82e.dir/src.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native -DQUICKSTEP_HAVE_ALIGNED_ALLOC -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o CMakeFiles/cmTC_bd82e.dir/src.cxx.o -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx:5:17: error: use of undeclared identifier 'aligned_alloc'
    void *ptr = aligned_alloc(64, 256);
                ^
1 error generated.
make[1]: *** [CMakeFiles/cmTC_bd82e.dir/src.cxx.o] Error 1
make: *** [cmTC_bd82e/fast] Error 2

Source file was:

  #include <stdlib.h>

  int main() {
    void *ptr = aligned_alloc(64, 256);
    return 0;
  }





CMakeOutput.log:


The system is: Darwin - 17.2.0 - x86_64
Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded.
Compiler: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
Build flags:
Id flags:

The output was:
0


Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "a.out"

The C compiler identification is AppleClang, found in "/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/3.10.1/CompilerIdC/a.out"

Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded.
Compiler: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
Build flags:
Id flags:

The output was:
0


Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "a.out"

The CXX compiler identification is AppleClang, found in "/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/3.10.1/CompilerIdCXX/a.out"

Determining if the C compiler works passed with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_e6cae/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_e6cae.dir/build.make CMakeFiles/cmTC_e6cae.dir/build
Building C object CMakeFiles/cmTC_e6cae.dir/testCCompiler.c.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o CMakeFiles/cmTC_e6cae.dir/testCCompiler.c.o   -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/testCCompiler.c
Linking C executable cmTC_e6cae
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_e6cae.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_e6cae.dir/testCCompiler.c.o  -o cmTC_e6cae


Detecting C compiler ABI info compiled with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_4141b/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_4141b.dir/build.make CMakeFiles/cmTC_4141b.dir/build
Building C object CMakeFiles/cmTC_4141b.dir/CMakeCCompilerABI.c.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o CMakeFiles/cmTC_4141b.dir/CMakeCCompilerABI.c.o   -c /usr/local/Cellar/cmake/3.10.1/share/cmake/Modules/CMakeCCompilerABI.c
Linking C executable cmTC_4141b
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_4141b.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names  -v -Wl,-v CMakeFiles/cmTC_4141b.dir/CMakeCCompilerABI.c.o  -o cmTC_4141b
Apple LLVM version 9.0.0 (clang-900.0.39.2)
Target: x86_64-apple-darwin17.2.0
Thread model: posix
InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin
 "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld" -demangle -lto_library /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/libLTO.dylib -dynamic -arch x86_64 -macosx_version_min 10.13.0 -syslibroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -o cmTC_4141b -search_paths_first -headerpad_max_install_names -v CMakeFiles/cmTC_4141b.dir/CMakeCCompilerABI.c.o -lSystem /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/9.0.0/lib/darwin/libclang_rt.osx.a
@(#)PROGRAM:ld  PROJECT:ld64-305
configured to support archs: armv6 armv7 armv7s arm64 i386 x86_64 x86_64h armv6m armv7k armv7m armv7em (tvOS)
Library search paths:
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/usr/lib
Framework search paths:
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/System/Library/Frameworks/


Parsed C implicit link information from above output:
  link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)]
  ignore line: [Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp]
  ignore line: []
  ignore line: [Run Build Command:"/usr/bin/make" "cmTC_4141b/fast"]
  ignore line: [/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_4141b.dir/build.make CMakeFiles/cmTC_4141b.dir/build]
  ignore line: [Building C object CMakeFiles/cmTC_4141b.dir/CMakeCCompilerABI.c.o]
  ignore line: [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o CMakeFiles/cmTC_4141b.dir/CMakeCCompilerABI.c.o   -c /usr/local/Cellar/cmake/3.10.1/share/cmake/Modules/CMakeCCompilerABI.c]
  ignore line: [Linking C executable cmTC_4141b]
  ignore line: [/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_4141b.dir/link.txt --verbose=1]
  ignore line: [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names  -v -Wl,-v CMakeFiles/cmTC_4141b.dir/CMakeCCompilerABI.c.o  -o cmTC_4141b ]
  ignore line: [Apple LLVM version 9.0.0 (clang-900.0.39.2)]
  ignore line: [Target: x86_64-apple-darwin17.2.0]
  ignore line: [Thread model: posix]
  ignore line: [InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin]
  link line: [ "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld" -demangle -lto_library /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/libLTO.dylib -dynamic -arch x86_64 -macosx_version_min 10.13.0 -syslibroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -o cmTC_4141b -search_paths_first -headerpad_max_install_names -v CMakeFiles/cmTC_4141b.dir/CMakeCCompilerABI.c.o -lSystem /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/9.0.0/lib/darwin/libclang_rt.osx.a]
    arg [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld] ==> ignore
    arg [-demangle] ==> ignore
    arg [-lto_library] ==> ignore, skip following value
    arg [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/libLTO.dylib] ==> skip value of -lto_library
    arg [-dynamic] ==> ignore
    arg [-arch] ==> ignore
    arg [x86_64] ==> ignore
    arg [-macosx_version_min] ==> ignore
    arg [10.13.0] ==> ignore
    arg [-syslibroot] ==> ignore
    arg [/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk] ==> ignore
    arg [-o] ==> ignore
    arg [cmTC_4141b] ==> ignore
    arg [-search_paths_first] ==> ignore
    arg [-headerpad_max_install_names] ==> ignore
    arg [-v] ==> ignore
    arg [CMakeFiles/cmTC_4141b.dir/CMakeCCompilerABI.c.o] ==> ignore
    arg [-lSystem] ==> lib [System]
    arg [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/9.0.0/lib/darwin/libclang_rt.osx.a] ==> lib [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/9.0.0/lib/darwin/libclang_rt.osx.a]
  Library search paths: [;/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/usr/lib]
  Framework search paths: [;/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/System/Library/Frameworks/]
  remove lib [System]
  remove lib [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/9.0.0/lib/darwin/libclang_rt.osx.a]
  collapse library dir [/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/usr/lib] ==> [/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/usr/lib]
  collapse framework dir [/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/System/Library/Frameworks/] ==> [/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/System/Library/Frameworks]
  implicit libs: []
  implicit dirs: [/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/usr/lib]
  implicit fwks: [/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/System/Library/Frameworks]




Detecting C [-std=c11] compiler features compiled with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_6d580/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_6d580.dir/build.make CMakeFiles/cmTC_6d580.dir/build
Building C object CMakeFiles/cmTC_6d580.dir/feature_tests.c.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -std=c11 -o CMakeFiles/cmTC_6d580.dir/feature_tests.c.o   -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/feature_tests.c
Linking C executable cmTC_6d580
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_6d580.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_6d580.dir/feature_tests.c.o  -o cmTC_6d580


    Feature record: C_FEATURE:1c_function_prototypes
    Feature record: C_FEATURE:1c_restrict
    Feature record: C_FEATURE:1c_static_assert
    Feature record: C_FEATURE:1c_variadic_macros


Detecting C [-std=c99] compiler features compiled with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_9aab9/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_9aab9.dir/build.make CMakeFiles/cmTC_9aab9.dir/build
Building C object CMakeFiles/cmTC_9aab9.dir/feature_tests.c.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -std=c99 -o CMakeFiles/cmTC_9aab9.dir/feature_tests.c.o   -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/feature_tests.c
Linking C executable cmTC_9aab9
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_9aab9.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_9aab9.dir/feature_tests.c.o  -o cmTC_9aab9


    Feature record: C_FEATURE:1c_function_prototypes
    Feature record: C_FEATURE:1c_restrict
    Feature record: C_FEATURE:0c_static_assert
    Feature record: C_FEATURE:1c_variadic_macros


Detecting C [-std=c90] compiler features compiled with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_9acb2/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_9acb2.dir/build.make CMakeFiles/cmTC_9acb2.dir/build
Building C object CMakeFiles/cmTC_9acb2.dir/feature_tests.c.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -std=c90 -o CMakeFiles/cmTC_9acb2.dir/feature_tests.c.o   -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/feature_tests.c
Linking C executable cmTC_9acb2
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_9acb2.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_9acb2.dir/feature_tests.c.o  -o cmTC_9acb2


    Feature record: C_FEATURE:1c_function_prototypes
    Feature record: C_FEATURE:0c_restrict
    Feature record: C_FEATURE:0c_static_assert
    Feature record: C_FEATURE:0c_variadic_macros
Determining if the CXX compiler works passed with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_426aa/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_426aa.dir/build.make CMakeFiles/cmTC_426aa.dir/build
Building CXX object CMakeFiles/cmTC_426aa.dir/testCXXCompiler.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++    -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o CMakeFiles/cmTC_426aa.dir/testCXXCompiler.cxx.o -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/testCXXCompiler.cxx
Linking CXX executable cmTC_426aa
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_426aa.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++    -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_426aa.dir/testCXXCompiler.cxx.o  -o cmTC_426aa


Detecting CXX compiler ABI info compiled with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_36284/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_36284.dir/build.make CMakeFiles/cmTC_36284.dir/build
Building CXX object CMakeFiles/cmTC_36284.dir/CMakeCXXCompilerABI.cpp.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++    -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o CMakeFiles/cmTC_36284.dir/CMakeCXXCompilerABI.cpp.o -c /usr/local/Cellar/cmake/3.10.1/share/cmake/Modules/CMakeCXXCompilerABI.cpp
Linking CXX executable cmTC_36284
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_36284.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++    -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names  -v -Wl,-v CMakeFiles/cmTC_36284.dir/CMakeCXXCompilerABI.cpp.o  -o cmTC_36284
Apple LLVM version 9.0.0 (clang-900.0.39.2)
Target: x86_64-apple-darwin17.2.0
Thread model: posix
InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin
 "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld" -demangle -lto_library /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/libLTO.dylib -dynamic -arch x86_64 -macosx_version_min 10.13.0 -syslibroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -o cmTC_36284 -search_paths_first -headerpad_max_install_names -v CMakeFiles/cmTC_36284.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lSystem /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/9.0.0/lib/darwin/libclang_rt.osx.a
@(#)PROGRAM:ld  PROJECT:ld64-305
configured to support archs: armv6 armv7 armv7s arm64 i386 x86_64 x86_64h armv6m armv7k armv7m armv7em (tvOS)
Library search paths:
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/usr/lib
Framework search paths:
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/System/Library/Frameworks/


Parsed CXX implicit link information from above output:
  link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)]
  ignore line: [Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp]
  ignore line: []
  ignore line: [Run Build Command:"/usr/bin/make" "cmTC_36284/fast"]
  ignore line: [/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_36284.dir/build.make CMakeFiles/cmTC_36284.dir/build]
  ignore line: [Building CXX object CMakeFiles/cmTC_36284.dir/CMakeCXXCompilerABI.cpp.o]
  ignore line: [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++    -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o CMakeFiles/cmTC_36284.dir/CMakeCXXCompilerABI.cpp.o -c /usr/local/Cellar/cmake/3.10.1/share/cmake/Modules/CMakeCXXCompilerABI.cpp]
  ignore line: [Linking CXX executable cmTC_36284]
  ignore line: [/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_36284.dir/link.txt --verbose=1]
  ignore line: [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++    -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names  -v -Wl,-v CMakeFiles/cmTC_36284.dir/CMakeCXXCompilerABI.cpp.o  -o cmTC_36284 ]
  ignore line: [Apple LLVM version 9.0.0 (clang-900.0.39.2)]
  ignore line: [Target: x86_64-apple-darwin17.2.0]
  ignore line: [Thread model: posix]
  ignore line: [InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin]
  link line: [ "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld" -demangle -lto_library /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/libLTO.dylib -dynamic -arch x86_64 -macosx_version_min 10.13.0 -syslibroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -o cmTC_36284 -search_paths_first -headerpad_max_install_names -v CMakeFiles/cmTC_36284.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lSystem /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/9.0.0/lib/darwin/libclang_rt.osx.a]
    arg [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld] ==> ignore
    arg [-demangle] ==> ignore
    arg [-lto_library] ==> ignore, skip following value
    arg [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/libLTO.dylib] ==> skip value of -lto_library
    arg [-dynamic] ==> ignore
    arg [-arch] ==> ignore
    arg [x86_64] ==> ignore
    arg [-macosx_version_min] ==> ignore
    arg [10.13.0] ==> ignore
    arg [-syslibroot] ==> ignore
    arg [/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk] ==> ignore
    arg [-o] ==> ignore
    arg [cmTC_36284] ==> ignore
    arg [-search_paths_first] ==> ignore
    arg [-headerpad_max_install_names] ==> ignore
    arg [-v] ==> ignore
    arg [CMakeFiles/cmTC_36284.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore
    arg [-lc++] ==> lib [c++]
    arg [-lSystem] ==> lib [System]
    arg [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/9.0.0/lib/darwin/libclang_rt.osx.a] ==> lib [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/9.0.0/lib/darwin/libclang_rt.osx.a]
  Library search paths: [;/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/usr/lib]
  Framework search paths: [;/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/System/Library/Frameworks/]
  remove lib [System]
  remove lib [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/9.0.0/lib/darwin/libclang_rt.osx.a]
  collapse library dir [/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/usr/lib] ==> [/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/usr/lib]
  collapse framework dir [/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/System/Library/Frameworks/] ==> [/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/System/Library/Frameworks]
  implicit libs: [c++]
  implicit dirs: [/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/usr/lib]
  implicit fwks: [/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/System/Library/Frameworks]




Detecting CXX [-std=c++1z] compiler features compiled with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_01ed1/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_01ed1.dir/build.make CMakeFiles/cmTC_01ed1.dir/build
Building CXX object CMakeFiles/cmTC_01ed1.dir/feature_tests.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++    -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -std=c++1z -o CMakeFiles/cmTC_01ed1.dir/feature_tests.cxx.o -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/feature_tests.cxx
Linking CXX executable cmTC_01ed1
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_01ed1.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++    -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_01ed1.dir/feature_tests.cxx.o  -o cmTC_01ed1


    Feature record: CXX_FEATURE:1cxx_aggregate_default_initializers
    Feature record: CXX_FEATURE:1cxx_alias_templates
    Feature record: CXX_FEATURE:1cxx_alignas
    Feature record: CXX_FEATURE:1cxx_alignof
    Feature record: CXX_FEATURE:1cxx_attributes
    Feature record: CXX_FEATURE:1cxx_attribute_deprecated
    Feature record: CXX_FEATURE:1cxx_auto_type
    Feature record: CXX_FEATURE:1cxx_binary_literals
    Feature record: CXX_FEATURE:1cxx_constexpr
    Feature record: CXX_FEATURE:1cxx_contextual_conversions
    Feature record: CXX_FEATURE:1cxx_decltype
    Feature record: CXX_FEATURE:1cxx_decltype_auto
    Feature record: CXX_FEATURE:1cxx_decltype_incomplete_return_types
    Feature record: CXX_FEATURE:1cxx_default_function_template_args
    Feature record: CXX_FEATURE:1cxx_defaulted_functions
    Feature record: CXX_FEATURE:1cxx_defaulted_move_initializers
    Feature record: CXX_FEATURE:1cxx_delegating_constructors
    Feature record: CXX_FEATURE:1cxx_deleted_functions
    Feature record: CXX_FEATURE:1cxx_digit_separators
    Feature record: CXX_FEATURE:1cxx_enum_forward_declarations
    Feature record: CXX_FEATURE:1cxx_explicit_conversions
    Feature record: CXX_FEATURE:1cxx_extended_friend_declarations
    Feature record: CXX_FEATURE:1cxx_extern_templates
    Feature record: CXX_FEATURE:1cxx_final
    Feature record: CXX_FEATURE:1cxx_func_identifier
    Feature record: CXX_FEATURE:1cxx_generalized_initializers
    Feature record: CXX_FEATURE:1cxx_generic_lambdas
    Feature record: CXX_FEATURE:1cxx_inheriting_constructors
    Feature record: CXX_FEATURE:1cxx_inline_namespaces
    Feature record: CXX_FEATURE:1cxx_lambdas
    Feature record: CXX_FEATURE:1cxx_lambda_init_captures
    Feature record: CXX_FEATURE:1cxx_local_type_template_args
    Feature record: CXX_FEATURE:1cxx_long_long_type
    Feature record: CXX_FEATURE:1cxx_noexcept
    Feature record: CXX_FEATURE:1cxx_nonstatic_member_init
    Feature record: CXX_FEATURE:1cxx_nullptr
    Feature record: CXX_FEATURE:1cxx_override
    Feature record: CXX_FEATURE:1cxx_range_for
    Feature record: CXX_FEATURE:1cxx_raw_string_literals
    Feature record: CXX_FEATURE:1cxx_reference_qualified_functions
    Feature record: CXX_FEATURE:1cxx_relaxed_constexpr
    Feature record: CXX_FEATURE:1cxx_return_type_deduction
    Feature record: CXX_FEATURE:1cxx_right_angle_brackets
    Feature record: CXX_FEATURE:1cxx_rvalue_references
    Feature record: CXX_FEATURE:1cxx_sizeof_member
    Feature record: CXX_FEATURE:1cxx_static_assert
    Feature record: CXX_FEATURE:1cxx_strong_enums
    Feature record: CXX_FEATURE:1cxx_template_template_parameters
    Feature record: CXX_FEATURE:1cxx_thread_local
    Feature record: CXX_FEATURE:1cxx_trailing_return_types
    Feature record: CXX_FEATURE:1cxx_unicode_literals
    Feature record: CXX_FEATURE:1cxx_uniform_initialization
    Feature record: CXX_FEATURE:1cxx_unrestricted_unions
    Feature record: CXX_FEATURE:1cxx_user_literals
    Feature record: CXX_FEATURE:1cxx_variable_templates
    Feature record: CXX_FEATURE:1cxx_variadic_macros
    Feature record: CXX_FEATURE:1cxx_variadic_templates


Detecting CXX [-std=c++14] compiler features compiled with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_df532/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_df532.dir/build.make CMakeFiles/cmTC_df532.dir/build
Building CXX object CMakeFiles/cmTC_df532.dir/feature_tests.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++    -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -std=c++14 -o CMakeFiles/cmTC_df532.dir/feature_tests.cxx.o -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/feature_tests.cxx
Linking CXX executable cmTC_df532
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_df532.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++    -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_df532.dir/feature_tests.cxx.o  -o cmTC_df532


    Feature record: CXX_FEATURE:1cxx_aggregate_default_initializers
    Feature record: CXX_FEATURE:1cxx_alias_templates
    Feature record: CXX_FEATURE:1cxx_alignas
    Feature record: CXX_FEATURE:1cxx_alignof
    Feature record: CXX_FEATURE:1cxx_attributes
    Feature record: CXX_FEATURE:1cxx_attribute_deprecated
    Feature record: CXX_FEATURE:1cxx_auto_type
    Feature record: CXX_FEATURE:1cxx_binary_literals
    Feature record: CXX_FEATURE:1cxx_constexpr
    Feature record: CXX_FEATURE:1cxx_contextual_conversions
    Feature record: CXX_FEATURE:1cxx_decltype
    Feature record: CXX_FEATURE:1cxx_decltype_auto
    Feature record: CXX_FEATURE:1cxx_decltype_incomplete_return_types
    Feature record: CXX_FEATURE:1cxx_default_function_template_args
    Feature record: CXX_FEATURE:1cxx_defaulted_functions
    Feature record: CXX_FEATURE:1cxx_defaulted_move_initializers
    Feature record: CXX_FEATURE:1cxx_delegating_constructors
    Feature record: CXX_FEATURE:1cxx_deleted_functions
    Feature record: CXX_FEATURE:1cxx_digit_separators
    Feature record: CXX_FEATURE:1cxx_enum_forward_declarations
    Feature record: CXX_FEATURE:1cxx_explicit_conversions
    Feature record: CXX_FEATURE:1cxx_extended_friend_declarations
    Feature record: CXX_FEATURE:1cxx_extern_templates
    Feature record: CXX_FEATURE:1cxx_final
    Feature record: CXX_FEATURE:1cxx_func_identifier
    Feature record: CXX_FEATURE:1cxx_generalized_initializers
    Feature record: CXX_FEATURE:1cxx_generic_lambdas
    Feature record: CXX_FEATURE:1cxx_inheriting_constructors
    Feature record: CXX_FEATURE:1cxx_inline_namespaces
    Feature record: CXX_FEATURE:1cxx_lambdas
    Feature record: CXX_FEATURE:1cxx_lambda_init_captures
    Feature record: CXX_FEATURE:1cxx_local_type_template_args
    Feature record: CXX_FEATURE:1cxx_long_long_type
    Feature record: CXX_FEATURE:1cxx_noexcept
    Feature record: CXX_FEATURE:1cxx_nonstatic_member_init
    Feature record: CXX_FEATURE:1cxx_nullptr
    Feature record: CXX_FEATURE:1cxx_override
    Feature record: CXX_FEATURE:1cxx_range_for
    Feature record: CXX_FEATURE:1cxx_raw_string_literals
    Feature record: CXX_FEATURE:1cxx_reference_qualified_functions
    Feature record: CXX_FEATURE:1cxx_relaxed_constexpr
    Feature record: CXX_FEATURE:1cxx_return_type_deduction
    Feature record: CXX_FEATURE:1cxx_right_angle_brackets
    Feature record: CXX_FEATURE:1cxx_rvalue_references
    Feature record: CXX_FEATURE:1cxx_sizeof_member
    Feature record: CXX_FEATURE:1cxx_static_assert
    Feature record: CXX_FEATURE:1cxx_strong_enums
    Feature record: CXX_FEATURE:1cxx_template_template_parameters
    Feature record: CXX_FEATURE:1cxx_thread_local
    Feature record: CXX_FEATURE:1cxx_trailing_return_types
    Feature record: CXX_FEATURE:1cxx_unicode_literals
    Feature record: CXX_FEATURE:1cxx_uniform_initialization
    Feature record: CXX_FEATURE:1cxx_unrestricted_unions
    Feature record: CXX_FEATURE:1cxx_user_literals
    Feature record: CXX_FEATURE:1cxx_variable_templates
    Feature record: CXX_FEATURE:1cxx_variadic_macros
    Feature record: CXX_FEATURE:1cxx_variadic_templates


Detecting CXX [-std=c++11] compiler features compiled with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_55647/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_55647.dir/build.make CMakeFiles/cmTC_55647.dir/build
Building CXX object CMakeFiles/cmTC_55647.dir/feature_tests.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++    -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -std=c++11 -o CMakeFiles/cmTC_55647.dir/feature_tests.cxx.o -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/feature_tests.cxx
Linking CXX executable cmTC_55647
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_55647.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++    -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_55647.dir/feature_tests.cxx.o  -o cmTC_55647


    Feature record: CXX_FEATURE:0cxx_aggregate_default_initializers
    Feature record: CXX_FEATURE:1cxx_alias_templates
    Feature record: CXX_FEATURE:1cxx_alignas
    Feature record: CXX_FEATURE:1cxx_alignof
    Feature record: CXX_FEATURE:1cxx_attributes
    Feature record: CXX_FEATURE:0cxx_attribute_deprecated
    Feature record: CXX_FEATURE:1cxx_auto_type
    Feature record: CXX_FEATURE:0cxx_binary_literals
    Feature record: CXX_FEATURE:1cxx_constexpr
    Feature record: CXX_FEATURE:0cxx_contextual_conversions
    Feature record: CXX_FEATURE:1cxx_decltype
    Feature record: CXX_FEATURE:0cxx_decltype_auto
    Feature record: CXX_FEATURE:1cxx_decltype_incomplete_return_types
    Feature record: CXX_FEATURE:1cxx_default_function_template_args
    Feature record: CXX_FEATURE:1cxx_defaulted_functions
    Feature record: CXX_FEATURE:1cxx_defaulted_move_initializers
    Feature record: CXX_FEATURE:1cxx_delegating_constructors
    Feature record: CXX_FEATURE:1cxx_deleted_functions
    Feature record: CXX_FEATURE:0cxx_digit_separators
    Feature record: CXX_FEATURE:1cxx_enum_forward_declarations
    Feature record: CXX_FEATURE:1cxx_explicit_conversions
    Feature record: CXX_FEATURE:1cxx_extended_friend_declarations
    Feature record: CXX_FEATURE:1cxx_extern_templates
    Feature record: CXX_FEATURE:1cxx_final
    Feature record: CXX_FEATURE:1cxx_func_identifier
    Feature record: CXX_FEATURE:1cxx_generalized_initializers
    Feature record: CXX_FEATURE:0cxx_generic_lambdas
    Feature record: CXX_FEATURE:1cxx_inheriting_constructors
    Feature record: CXX_FEATURE:1cxx_inline_namespaces
    Feature record: CXX_FEATURE:1cxx_lambdas
    Feature record: CXX_FEATURE:0cxx_lambda_init_captures
    Feature record: CXX_FEATURE:1cxx_local_type_template_args
    Feature record: CXX_FEATURE:1cxx_long_long_type
    Feature record: CXX_FEATURE:1cxx_noexcept
    Feature record: CXX_FEATURE:1cxx_nonstatic_member_init
    Feature record: CXX_FEATURE:1cxx_nullptr
    Feature record: CXX_FEATURE:1cxx_override
    Feature record: CXX_FEATURE:1cxx_range_for
    Feature record: CXX_FEATURE:1cxx_raw_string_literals
    Feature record: CXX_FEATURE:1cxx_reference_qualified_functions
    Feature record: CXX_FEATURE:0cxx_relaxed_constexpr
    Feature record: CXX_FEATURE:0cxx_return_type_deduction
    Feature record: CXX_FEATURE:1cxx_right_angle_brackets
    Feature record: CXX_FEATURE:1cxx_rvalue_references
    Feature record: CXX_FEATURE:1cxx_sizeof_member
    Feature record: CXX_FEATURE:1cxx_static_assert
    Feature record: CXX_FEATURE:1cxx_strong_enums
    Feature record: CXX_FEATURE:1cxx_template_template_parameters
    Feature record: CXX_FEATURE:1cxx_thread_local
    Feature record: CXX_FEATURE:1cxx_trailing_return_types
    Feature record: CXX_FEATURE:1cxx_unicode_literals
    Feature record: CXX_FEATURE:1cxx_uniform_initialization
    Feature record: CXX_FEATURE:1cxx_unrestricted_unions
    Feature record: CXX_FEATURE:1cxx_user_literals
    Feature record: CXX_FEATURE:0cxx_variable_templates
    Feature record: CXX_FEATURE:1cxx_variadic_macros
    Feature record: CXX_FEATURE:1cxx_variadic_templates


Detecting CXX [-std=c++98] compiler features compiled with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_ff15c/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_ff15c.dir/build.make CMakeFiles/cmTC_ff15c.dir/build
Building CXX object CMakeFiles/cmTC_ff15c.dir/feature_tests.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++    -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -std=c++98 -o CMakeFiles/cmTC_ff15c.dir/feature_tests.cxx.o -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/feature_tests.cxx
Linking CXX executable cmTC_ff15c
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_ff15c.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++    -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_ff15c.dir/feature_tests.cxx.o  -o cmTC_ff15c


    Feature record: CXX_FEATURE:0cxx_aggregate_default_initializers
    Feature record: CXX_FEATURE:0cxx_alias_templates
    Feature record: CXX_FEATURE:0cxx_alignas
    Feature record: CXX_FEATURE:0cxx_alignof
    Feature record: CXX_FEATURE:0cxx_attributes
    Feature record: CXX_FEATURE:0cxx_attribute_deprecated
    Feature record: CXX_FEATURE:0cxx_auto_type
    Feature record: CXX_FEATURE:0cxx_binary_literals
    Feature record: CXX_FEATURE:0cxx_constexpr
    Feature record: CXX_FEATURE:0cxx_contextual_conversions
    Feature record: CXX_FEATURE:0cxx_decltype
    Feature record: CXX_FEATURE:0cxx_decltype_auto
    Feature record: CXX_FEATURE:0cxx_decltype_incomplete_return_types
    Feature record: CXX_FEATURE:0cxx_default_function_template_args
    Feature record: CXX_FEATURE:0cxx_defaulted_functions
    Feature record: CXX_FEATURE:0cxx_defaulted_move_initializers
    Feature record: CXX_FEATURE:0cxx_delegating_constructors
    Feature record: CXX_FEATURE:0cxx_deleted_functions
    Feature record: CXX_FEATURE:0cxx_digit_separators
    Feature record: CXX_FEATURE:0cxx_enum_forward_declarations
    Feature record: CXX_FEATURE:0cxx_explicit_conversions
    Feature record: CXX_FEATURE:0cxx_extended_friend_declarations
    Feature record: CXX_FEATURE:0cxx_extern_templates
    Feature record: CXX_FEATURE:0cxx_final
    Feature record: CXX_FEATURE:0cxx_func_identifier
    Feature record: CXX_FEATURE:0cxx_generalized_initializers
    Feature record: CXX_FEATURE:0cxx_generic_lambdas
    Feature record: CXX_FEATURE:0cxx_inheriting_constructors
    Feature record: CXX_FEATURE:0cxx_inline_namespaces
    Feature record: CXX_FEATURE:0cxx_lambdas
    Feature record: CXX_FEATURE:0cxx_lambda_init_captures
    Feature record: CXX_FEATURE:0cxx_local_type_template_args
    Feature record: CXX_FEATURE:0cxx_long_long_type
    Feature record: CXX_FEATURE:0cxx_noexcept
    Feature record: CXX_FEATURE:0cxx_nonstatic_member_init
    Feature record: CXX_FEATURE:0cxx_nullptr
    Feature record: CXX_FEATURE:0cxx_override
    Feature record: CXX_FEATURE:0cxx_range_for
    Feature record: CXX_FEATURE:0cxx_raw_string_literals
    Feature record: CXX_FEATURE:0cxx_reference_qualified_functions
    Feature record: CXX_FEATURE:0cxx_relaxed_constexpr
    Feature record: CXX_FEATURE:0cxx_return_type_deduction
    Feature record: CXX_FEATURE:0cxx_right_angle_brackets
    Feature record: CXX_FEATURE:0cxx_rvalue_references
    Feature record: CXX_FEATURE:0cxx_sizeof_member
    Feature record: CXX_FEATURE:0cxx_static_assert
    Feature record: CXX_FEATURE:0cxx_strong_enums
    Feature record: CXX_FEATURE:1cxx_template_template_parameters
    Feature record: CXX_FEATURE:0cxx_thread_local
    Feature record: CXX_FEATURE:0cxx_trailing_return_types
    Feature record: CXX_FEATURE:0cxx_unicode_literals
    Feature record: CXX_FEATURE:0cxx_uniform_initialization
    Feature record: CXX_FEATURE:0cxx_unrestricted_unions
    Feature record: CXX_FEATURE:0cxx_user_literals
    Feature record: CXX_FEATURE:0cxx_variable_templates
    Feature record: CXX_FEATURE:0cxx_variadic_macros
    Feature record: CXX_FEATURE:0cxx_variadic_templates
Determining if files termios.h;unistd.h;stdlib.h;stdio.h;errno.h;string.h;stdlib.h;ctype.h;sys/types.h;sys/ioctl.h;unistd.h exist passed with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_54100/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_54100.dir/build.make CMakeFiles/cmTC_54100.dir/build
Building C object CMakeFiles/cmTC_54100.dir/CheckIncludeFiles.c.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o CMakeFiles/cmTC_54100.dir/CheckIncludeFiles.c.o   -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckIncludeFiles.c
Linking C executable cmTC_54100
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_54100.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_54100.dir/CheckIncludeFiles.c.o  -o cmTC_54100


Determining if the include file pthread.h exists passed with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_63bb8/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_63bb8.dir/build.make CMakeFiles/cmTC_63bb8.dir/build
Building C object CMakeFiles/cmTC_63bb8.dir/CheckIncludeFile.c.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o CMakeFiles/cmTC_63bb8.dir/CheckIncludeFile.c.o   -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
Linking C executable cmTC_63bb8
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_63bb8.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_63bb8.dir/CheckIncludeFile.c.o  -o cmTC_63bb8


Determining if the pthread_create exist passed with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_65413/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_65413.dir/build.make CMakeFiles/cmTC_65413.dir/build
Building C object CMakeFiles/cmTC_65413.dir/CheckSymbolExists.c.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o CMakeFiles/cmTC_65413.dir/CheckSymbolExists.c.o   -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckSymbolExists.c
Linking C executable cmTC_65413
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_65413.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_65413.dir/CheckSymbolExists.c.o  -o cmTC_65413

File /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckSymbolExists.c:
/* */
#include <pthread.h>

int main(int argc, char** argv)
{
  (void)argv;
#ifndef pthread_create
  return ((int*)(&pthread_create))[argc];
#else
  (void)argc;
  return 0;
#endif
}

Performing C++ SOURCE FILE Test CXX_COMPILER_SUPPORTS_CPP14 succeeded with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_8dc9d/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_8dc9d.dir/build.make CMakeFiles/cmTC_8dc9d.dir/build
Building CXX object CMakeFiles/cmTC_8dc9d.dir/src.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++    -DCXX_COMPILER_SUPPORTS_CPP14 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -std=c++14 -o CMakeFiles/cmTC_8dc9d.dir/src.cxx.o -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_8dc9d
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_8dc9d.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++   -DCXX_COMPILER_SUPPORTS_CPP14 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_8dc9d.dir/src.cxx.o  -o cmTC_8dc9d

Source file was:
int main() { return 0; }
Performing C++ SOURCE FILE Test COMPILER_HAS_WALL succeeded with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_42823/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_42823.dir/build.make CMakeFiles/cmTC_42823.dir/build
Building CXX object CMakeFiles/cmTC_42823.dir/src.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -DCOMPILER_HAS_WALL -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -Wall -o CMakeFiles/cmTC_42823.dir/src.cxx.o -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_42823
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_42823.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -DCOMPILER_HAS_WALL -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_42823.dir/src.cxx.o  -o cmTC_42823

Source file was:
int main() { return 0; }
Performing C++ SOURCE FILE Test COMPILER_HAS_PEDANTIC succeeded with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_80e65/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_80e65.dir/build.make CMakeFiles/cmTC_80e65.dir/build
Building CXX object CMakeFiles/cmTC_80e65.dir/src.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -DCOMPILER_HAS_PEDANTIC -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -pedantic -o CMakeFiles/cmTC_80e65.dir/src.cxx.o -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_80e65
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_80e65.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -DCOMPILER_HAS_PEDANTIC -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_80e65.dir/src.cxx.o  -o cmTC_80e65

Source file was:
int main() { return 0; }
Performing C++ SOURCE FILE Test COMPILER_HAS_WNO_EXTENDED_OFFSETOF succeeded with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_8e943/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_8e943.dir/build.make CMakeFiles/cmTC_8e943.dir/build
Building CXX object CMakeFiles/cmTC_8e943.dir/src.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic -DCOMPILER_HAS_WNO_EXTENDED_OFFSETOF -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -Wno-extended-offsetof -o CMakeFiles/cmTC_8e943.dir/src.cxx.o -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_8e943
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_8e943.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic -DCOMPILER_HAS_WNO_EXTENDED_OFFSETOF -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_8e943.dir/src.cxx.o  -o cmTC_8e943

Source file was:
int main() { return 0; }
Performing C++ SOURCE FILE Test COMPILER_HAS_WNO_DEPRECATED succeeded with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_dbaf4/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_dbaf4.dir/build.make CMakeFiles/cmTC_dbaf4.dir/build
Building CXX object CMakeFiles/cmTC_dbaf4.dir/src.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic -Wno-extended-offsetof -DCOMPILER_HAS_WNO_DEPRECATED -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -Wno-error=deprecated-declarations -o CMakeFiles/cmTC_dbaf4.dir/src.cxx.o -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_dbaf4
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_dbaf4.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic -Wno-extended-offsetof -DCOMPILER_HAS_WNO_DEPRECATED -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_dbaf4.dir/src.cxx.o  -o cmTC_dbaf4

Source file was:
int main() { return 0; }
Performing C++ SOURCE FILE Test CLANG_HAS_MARCH_NATIVE succeeded with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_a1785/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_a1785.dir/build.make CMakeFiles/cmTC_a1785.dir/build
Building CXX object CMakeFiles/cmTC_a1785.dir/src.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -DCLANG_HAS_MARCH_NATIVE -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -march=native -o CMakeFiles/cmTC_a1785.dir/src.cxx.o -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_a1785
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_a1785.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -DCLANG_HAS_MARCH_NATIVE -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_a1785.dir/src.cxx.o  -o cmTC_a1785

Source file was:
int main() { return 0; }
Performing C++ SOURCE FILE Test HAVE_CXX_FLAG_STD_CXX11 succeeded with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_66e80/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_66e80.dir/build.make CMakeFiles/cmTC_66e80.dir/build
Building CXX object CMakeFiles/cmTC_66e80.dir/src.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native -DHAVE_CXX_FLAG_STD_CXX11 -std=c++11 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -std=c++11 -o CMakeFiles/cmTC_66e80.dir/src.cxx.o -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_66e80
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_66e80.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native -DHAVE_CXX_FLAG_STD_CXX11 -std=c++11 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_66e80.dir/src.cxx.o  -o cmTC_66e80

Source file was:
int main() { return 0; }
Performing C++ SOURCE FILE Test HAVE_CXX_FLAG_WALL succeeded with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_99388/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_99388.dir/build.make CMakeFiles/cmTC_99388.dir/build
Building CXX object CMakeFiles/cmTC_99388.dir/src.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native -std=c++11 -DHAVE_CXX_FLAG_WALL -Wall -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -Wall -o CMakeFiles/cmTC_99388.dir/src.cxx.o -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_99388
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_99388.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native -std=c++11 -DHAVE_CXX_FLAG_WALL -Wall -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_99388.dir/src.cxx.o  -o cmTC_99388

Source file was:
int main() { return 0; }
Performing C++ SOURCE FILE Test HAVE_CXX_FLAG_WEXTRA succeeded with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_341fe/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_341fe.dir/build.make CMakeFiles/cmTC_341fe.dir/build
Building CXX object CMakeFiles/cmTC_341fe.dir/src.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native -std=c++11 -Wall -DHAVE_CXX_FLAG_WEXTRA -Wextra -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -Wextra -o CMakeFiles/cmTC_341fe.dir/src.cxx.o -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_341fe
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_341fe.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native -std=c++11 -Wall -DHAVE_CXX_FLAG_WEXTRA -Wextra -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_341fe.dir/src.cxx.o  -o cmTC_341fe

Source file was:
int main() { return 0; }
Performing C++ SOURCE FILE Test HAVE_CXX_FLAG_WSHADOW succeeded with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_66a80/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_66a80.dir/build.make CMakeFiles/cmTC_66a80.dir/build
Building CXX object CMakeFiles/cmTC_66a80.dir/src.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native -std=c++11 -Wall -Wextra -DHAVE_CXX_FLAG_WSHADOW -Wshadow -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -Wshadow -o CMakeFiles/cmTC_66a80.dir/src.cxx.o -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_66a80
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_66a80.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native -std=c++11 -Wall -Wextra -DHAVE_CXX_FLAG_WSHADOW -Wshadow -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_66a80.dir/src.cxx.o  -o cmTC_66a80

Source file was:
int main() { return 0; }
Performing C++ SOURCE FILE Test HAVE_CXX_FLAG_WERROR succeeded with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_4eb3b/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_4eb3b.dir/build.make CMakeFiles/cmTC_4eb3b.dir/build
Building CXX object CMakeFiles/cmTC_4eb3b.dir/src.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native -std=c++11 -Wall -Wextra -Wshadow -DHAVE_CXX_FLAG_WERROR -Werror -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -Werror -o CMakeFiles/cmTC_4eb3b.dir/src.cxx.o -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_4eb3b
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_4eb3b.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native -std=c++11 -Wall -Wextra -Wshadow -DHAVE_CXX_FLAG_WERROR -Werror -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_4eb3b.dir/src.cxx.o  -o cmTC_4eb3b

Source file was:
int main() { return 0; }
Performing C++ SOURCE FILE Test HAVE_CXX_FLAG_PEDANTIC succeeded with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_75a33/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_75a33.dir/build.make CMakeFiles/cmTC_75a33.dir/build
Building CXX object CMakeFiles/cmTC_75a33.dir/src.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native -std=c++11 -Wall -Wextra -Wshadow -DHAVE_CXX_FLAG_PEDANTIC -pedantic -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -pedantic -o CMakeFiles/cmTC_75a33.dir/src.cxx.o -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_75a33
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_75a33.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native -std=c++11 -Wall -Wextra -Wshadow -DHAVE_CXX_FLAG_PEDANTIC -pedantic -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_75a33.dir/src.cxx.o  -o cmTC_75a33

Source file was:
int main() { return 0; }
Performing C++ SOURCE FILE Test HAVE_CXX_FLAG_PEDANTIC_ERRORS succeeded with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_1c259/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_1c259.dir/build.make CMakeFiles/cmTC_1c259.dir/build
Building CXX object CMakeFiles/cmTC_1c259.dir/src.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native -std=c++11 -Wall -Wextra -Wshadow -pedantic -DHAVE_CXX_FLAG_PEDANTIC_ERRORS -pedantic-errors -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -pedantic-errors -o CMakeFiles/cmTC_1c259.dir/src.cxx.o -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_1c259
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_1c259.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native -std=c++11 -Wall -Wextra -Wshadow -pedantic -DHAVE_CXX_FLAG_PEDANTIC_ERRORS -pedantic-errors -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_1c259.dir/src.cxx.o  -o cmTC_1c259

Source file was:
int main() { return 0; }
Performing C++ SOURCE FILE Test HAVE_CXX_FLAG_WSHORTEN_64_TO_32 succeeded with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_47512/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_47512.dir/build.make CMakeFiles/cmTC_47512.dir/build
Building CXX object CMakeFiles/cmTC_47512.dir/src.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native -std=c++11 -Wall -Wextra -Wshadow -pedantic -pedantic-errors -DHAVE_CXX_FLAG_WSHORTEN_64_TO_32 -Wshorten-64-to-32 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -Wshorten-64-to-32 -o CMakeFiles/cmTC_47512.dir/src.cxx.o -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_47512
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_47512.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native -std=c++11 -Wall -Wextra -Wshadow -pedantic -pedantic-errors -DHAVE_CXX_FLAG_WSHORTEN_64_TO_32 -Wshorten-64-to-32 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_47512.dir/src.cxx.o  -o cmTC_47512

Source file was:
int main() { return 0; }
Performing C++ SOURCE FILE Test HAVE_CXX_FLAG_WFLOAT_EQUAL succeeded with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_b49c9/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_b49c9.dir/build.make CMakeFiles/cmTC_b49c9.dir/build
Building CXX object CMakeFiles/cmTC_b49c9.dir/src.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native -std=c++11 -Wall -Wextra -Wshadow -pedantic -pedantic-errors -Wshorten-64-to-32 -DHAVE_CXX_FLAG_WFLOAT_EQUAL -Wfloat-equal -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -Wfloat-equal -o CMakeFiles/cmTC_b49c9.dir/src.cxx.o -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_b49c9
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_b49c9.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native -std=c++11 -Wall -Wextra -Wshadow -pedantic -pedantic-errors -Wshorten-64-to-32 -DHAVE_CXX_FLAG_WFLOAT_EQUAL -Wfloat-equal -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_b49c9.dir/src.cxx.o  -o cmTC_b49c9

Source file was:
int main() { return 0; }
Performing C++ SOURCE FILE Test HAVE_CXX_FLAG_FSTRICT_ALIASING succeeded with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_798c3/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_798c3.dir/build.make CMakeFiles/cmTC_798c3.dir/build
Building CXX object CMakeFiles/cmTC_798c3.dir/src.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native -std=c++11 -Wall -Wextra -Wshadow -pedantic -pedantic-errors -Wshorten-64-to-32 -Wfloat-equal -DHAVE_CXX_FLAG_FSTRICT_ALIASING -fstrict-aliasing -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -fstrict-aliasing -o CMakeFiles/cmTC_798c3.dir/src.cxx.o -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_798c3
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_798c3.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native -std=c++11 -Wall -Wextra -Wshadow -pedantic -pedantic-errors -Wshorten-64-to-32 -Wfloat-equal -DHAVE_CXX_FLAG_FSTRICT_ALIASING -fstrict-aliasing -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_798c3.dir/src.cxx.o  -o cmTC_798c3

Source file was:
int main() { return 0; }
Performing C++ SOURCE FILE Test HAVE_CXX_FLAG_WSTRICT_ALIASING succeeded with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_ebc72/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_ebc72.dir/build.make CMakeFiles/cmTC_ebc72.dir/build
Building CXX object CMakeFiles/cmTC_ebc72.dir/src.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native -std=c++11 -Wall -Wextra -Wshadow -pedantic -pedantic-errors -Wshorten-64-to-32 -Wfloat-equal -fstrict-aliasing -DHAVE_CXX_FLAG_WSTRICT_ALIASING -Wstrict-aliasing -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -Wstrict-aliasing -o CMakeFiles/cmTC_ebc72.dir/src.cxx.o -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_ebc72
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_ebc72.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native -std=c++11 -Wall -Wextra -Wshadow -pedantic -pedantic-errors -Wshorten-64-to-32 -Wfloat-equal -fstrict-aliasing -DHAVE_CXX_FLAG_WSTRICT_ALIASING -Wstrict-aliasing -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_ebc72.dir/src.cxx.o  -o cmTC_ebc72

Source file was:
int main() { return 0; }
Performing C++ SOURCE FILE Test HAVE_CXX_FLAG_WTHREAD_SAFETY succeeded with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_5bf47/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_5bf47.dir/build.make CMakeFiles/cmTC_5bf47.dir/build
Building CXX object CMakeFiles/cmTC_5bf47.dir/src.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native -std=c++11 -Wall -Wextra -Wshadow -pedantic -pedantic-errors -Wshorten-64-to-32 -Wfloat-equal -fstrict-aliasing -Wstrict-aliasing -DHAVE_CXX_FLAG_WTHREAD_SAFETY -Wthread-safety -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -Wthread-safety -o CMakeFiles/cmTC_5bf47.dir/src.cxx.o -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_5bf47
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_5bf47.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native -std=c++11 -Wall -Wextra -Wshadow -pedantic -pedantic-errors -Wshorten-64-to-32 -Wfloat-equal -fstrict-aliasing -Wstrict-aliasing -DHAVE_CXX_FLAG_WTHREAD_SAFETY -Wthread-safety -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_5bf47.dir/src.cxx.o  -o cmTC_5bf47

Source file was:
int main() { return 0; }
Performing C++ SOURCE FILE Test HAVE_CXX_FLAG_COVERAGE succeeded with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_f6db0/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_f6db0.dir/build.make CMakeFiles/cmTC_f6db0.dir/build
Building CXX object CMakeFiles/cmTC_f6db0.dir/src.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native -std=c++11 -Wall -Wextra -Wshadow -pedantic -pedantic-errors -Wshorten-64-to-32 -Wfloat-equal -fstrict-aliasing -Wstrict-aliasing -Wthread-safety -DHAVE_CXX_FLAG_COVERAGE --coverage -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   --coverage -o CMakeFiles/cmTC_f6db0.dir/src.cxx.o -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_f6db0
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_f6db0.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native -std=c++11 -Wall -Wextra -Wshadow -pedantic -pedantic-errors -Wshorten-64-to-32 -Wfloat-equal -fstrict-aliasing -Wstrict-aliasing -Wthread-safety -DHAVE_CXX_FLAG_COVERAGE --coverage -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_f6db0.dir/src.cxx.o  -o cmTC_f6db0

Source file was:
int main() { return 0; }
Performing C++ SOURCE FILE Test HAVE_BUILTIN_EXPECT succeeded with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_23f14/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_23f14.dir/build.make CMakeFiles/cmTC_23f14.dir/build
Building CXX object CMakeFiles/cmTC_23f14.dir/src.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native -DHAVE_BUILTIN_EXPECT -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o CMakeFiles/cmTC_23f14.dir/src.cxx.o -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_23f14
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_23f14.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native -DHAVE_BUILTIN_EXPECT -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_23f14.dir/src.cxx.o  -o cmTC_23f14

Source file was:

  int main(int argc, char **argv) {
    if (__builtin_expect(argc, 1)) {
      return 0;
    } else {
      return argc;
    }
  }

Determining if the include file sys/types.h exists passed with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_9a28a/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_9a28a.dir/build.make CMakeFiles/cmTC_9a28a.dir/build
Building C object CMakeFiles/cmTC_9a28a.dir/CheckIncludeFile.c.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o CMakeFiles/cmTC_9a28a.dir/CheckIncludeFile.c.o   -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
Linking C executable cmTC_9a28a
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_9a28a.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_9a28a.dir/CheckIncludeFile.c.o  -o cmTC_9a28a


Determining if the include file stdint.h exists passed with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_a03d8/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_a03d8.dir/build.make CMakeFiles/cmTC_a03d8.dir/build
Building C object CMakeFiles/cmTC_a03d8.dir/CheckIncludeFile.c.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o CMakeFiles/cmTC_a03d8.dir/CheckIncludeFile.c.o   -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
Linking C executable cmTC_a03d8
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_a03d8.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_a03d8.dir/CheckIncludeFile.c.o  -o cmTC_a03d8


Determining if the include file stddef.h exists passed with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_cbd73/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_cbd73.dir/build.make CMakeFiles/cmTC_cbd73.dir/build
Building C object CMakeFiles/cmTC_cbd73.dir/CheckIncludeFile.c.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o CMakeFiles/cmTC_cbd73.dir/CheckIncludeFile.c.o   -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
Linking C executable cmTC_cbd73
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_cbd73.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_cbd73.dir/CheckIncludeFile.c.o  -o cmTC_cbd73


Determining size of unsigned short passed with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_6e0c2/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_6e0c2.dir/build.make CMakeFiles/cmTC_6e0c2.dir/build
Building C object CMakeFiles/cmTC_6e0c2.dir/CMAKE_SIZEOF_UNSIGNED_SHORT.c.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o CMakeFiles/cmTC_6e0c2.dir/CMAKE_SIZEOF_UNSIGNED_SHORT.c.o   -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CheckTypeSize/CMAKE_SIZEOF_UNSIGNED_SHORT.c
Linking C executable cmTC_6e0c2
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_6e0c2.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_6e0c2.dir/CMAKE_SIZEOF_UNSIGNED_SHORT.c.o  -o cmTC_6e0c2


Determining if the system is big endian passed with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_496de/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_496de.dir/build.make CMakeFiles/cmTC_496de.dir/build
Building C object CMakeFiles/cmTC_496de.dir/TestEndianess.c.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o CMakeFiles/cmTC_496de.dir/TestEndianess.c.o   -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/TestEndianess.c
Linking C executable cmTC_496de
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_496de.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_496de.dir/TestEndianess.c.o  -o cmTC_496de

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;
}


Performing C++ SOURCE FILE Test COMPILER_HAS_WNO_OVERFLOW succeeded with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_908d3/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_908d3.dir/build.make CMakeFiles/cmTC_908d3.dir/build
Building CXX object CMakeFiles/cmTC_908d3.dir/src.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native -DCOMPILER_HAS_WNO_OVERFLOW -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -Wno-overflow -o CMakeFiles/cmTC_908d3.dir/src.cxx.o -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_908d3
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_908d3.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native -DCOMPILER_HAS_WNO_OVERFLOW -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_908d3.dir/src.cxx.o  -o cmTC_908d3

Source file was:
int main() { return 0; }
Determining if the include file unistd.h exists passed with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_ddd86/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_ddd86.dir/build.make CMakeFiles/cmTC_ddd86.dir/build
Building CXX object CMakeFiles/cmTC_ddd86.dir/CheckIncludeFile.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native  -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o CMakeFiles/cmTC_ddd86.dir/CheckIncludeFile.cxx.o -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckIncludeFile.cxx
Linking CXX executable cmTC_ddd86
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_ddd86.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native  -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_ddd86.dir/CheckIncludeFile.cxx.o  -o cmTC_ddd86


Determining if the include file inttypes.h exists passed with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_39fd8/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_39fd8.dir/build.make CMakeFiles/cmTC_39fd8.dir/build
Building CXX object CMakeFiles/cmTC_39fd8.dir/CheckIncludeFile.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native  -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o CMakeFiles/cmTC_39fd8.dir/CheckIncludeFile.cxx.o -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckIncludeFile.cxx
Linking CXX executable cmTC_39fd8
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_39fd8.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native  -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_39fd8.dir/CheckIncludeFile.cxx.o  -o cmTC_39fd8


Determining if the include file sys/stat.h exists passed with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_10cbd/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_10cbd.dir/build.make CMakeFiles/cmTC_10cbd.dir/build
Building CXX object CMakeFiles/cmTC_10cbd.dir/CheckIncludeFile.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native  -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o CMakeFiles/cmTC_10cbd.dir/CheckIncludeFile.cxx.o -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckIncludeFile.cxx
Linking CXX executable cmTC_10cbd
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_10cbd.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native  -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_10cbd.dir/CheckIncludeFile.cxx.o  -o cmTC_10cbd


Determining if the include file fnmatch.h exists passed with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_41532/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_41532.dir/build.make CMakeFiles/cmTC_41532.dir/build
Building CXX object CMakeFiles/cmTC_41532.dir/CheckIncludeFile.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native  -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o CMakeFiles/cmTC_41532.dir/CheckIncludeFile.cxx.o -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckIncludeFile.cxx
Linking CXX executable cmTC_41532
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_41532.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native  -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_41532.dir/CheckIncludeFile.cxx.o  -o cmTC_41532


Determining size of uint32_t passed with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_62786/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_62786.dir/build.make CMakeFiles/cmTC_62786.dir/build
Building CXX object CMakeFiles/cmTC_62786.dir/uint32_t.cpp.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native  -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o CMakeFiles/cmTC_62786.dir/uint32_t.cpp.o -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CheckTypeSize/uint32_t.cpp
Linking CXX executable cmTC_62786
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_62786.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native  -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_62786.dir/uint32_t.cpp.o  -o cmTC_62786


Determining if the strtoll exist passed with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_23e8a/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_23e8a.dir/build.make CMakeFiles/cmTC_23e8a.dir/build
Building CXX object CMakeFiles/cmTC_23e8a.dir/CheckSymbolExists.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native  -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o CMakeFiles/cmTC_23e8a.dir/CheckSymbolExists.cxx.o -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckSymbolExists.cxx
Linking CXX executable cmTC_23e8a
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_23e8a.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native  -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_23e8a.dir/CheckSymbolExists.cxx.o  -o cmTC_23e8a

File /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckSymbolExists.cxx:
/* */
#include <stdlib.h>

int main(int argc, char** argv)
{
  (void)argv;
#ifndef strtoll
  return ((int*)(&strtoll))[argc];
#else
  (void)argc;
  return 0;
#endif
}

Determining size of pthread_rwlock_t passed with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_07baf/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_07baf.dir/build.make CMakeFiles/cmTC_07baf.dir/build
Building CXX object CMakeFiles/cmTC_07baf.dir/RWLOCK.cpp.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native  -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o CMakeFiles/cmTC_07baf.dir/RWLOCK.cpp.o -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CheckTypeSize/RWLOCK.cpp
Linking CXX executable cmTC_07baf
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_07baf.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native  -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_07baf.dir/RWLOCK.cpp.o  -o cmTC_07baf


Performing C++ SOURCE FILE Test COMPILER_HAS_WNO_UNUSED_LOCAL_TYPEDEF succeeded with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_be3be/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_be3be.dir/build.make CMakeFiles/cmTC_be3be.dir/build
Building CXX object CMakeFiles/cmTC_be3be.dir/src.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native -DCOMPILER_HAS_WNO_UNUSED_LOCAL_TYPEDEF -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -Wno-unused-local-typedef -o CMakeFiles/cmTC_be3be.dir/src.cxx.o -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_be3be
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_be3be.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native -DCOMPILER_HAS_WNO_UNUSED_LOCAL_TYPEDEF -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_be3be.dir/src.cxx.o  -o cmTC_be3be

Source file was:
int main() { return 0; }
Determining if the include file dlfcn.h exists passed with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_020a9/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_020a9.dir/build.make CMakeFiles/cmTC_020a9.dir/build
Building C object CMakeFiles/cmTC_020a9.dir/CheckIncludeFile.c.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o CMakeFiles/cmTC_020a9.dir/CheckIncludeFile.c.o   -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
Linking C executable cmTC_020a9
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_020a9.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_020a9.dir/CheckIncludeFile.c.o  -o cmTC_020a9


Determining if the include file execinfo.h exists passed with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_ad204/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_ad204.dir/build.make CMakeFiles/cmTC_ad204.dir/build
Building C object CMakeFiles/cmTC_ad204.dir/CheckIncludeFile.c.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o CMakeFiles/cmTC_ad204.dir/CheckIncludeFile.c.o   -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
Linking C executable cmTC_ad204
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_ad204.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_ad204.dir/CheckIncludeFile.c.o  -o cmTC_ad204


Determining if the include file glob.h exists passed with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_add2a/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_add2a.dir/build.make CMakeFiles/cmTC_add2a.dir/build
Building C object CMakeFiles/cmTC_add2a.dir/CheckIncludeFile.c.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o CMakeFiles/cmTC_add2a.dir/CheckIncludeFile.c.o   -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
Linking C executable cmTC_add2a
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_add2a.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_add2a.dir/CheckIncludeFile.c.o  -o cmTC_add2a


Determining if the include file libunwind.h exists passed with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_e908f/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_e908f.dir/build.make CMakeFiles/cmTC_e908f.dir/build
Building C object CMakeFiles/cmTC_e908f.dir/CheckIncludeFile.c.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o CMakeFiles/cmTC_e908f.dir/CheckIncludeFile.c.o   -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
Linking C executable cmTC_e908f
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_e908f.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_e908f.dir/CheckIncludeFile.c.o  -o cmTC_e908f


Determining if the include file memory.h exists passed with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_9acb4/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_9acb4.dir/build.make CMakeFiles/cmTC_9acb4.dir/build
Building C object CMakeFiles/cmTC_9acb4.dir/CheckIncludeFile.c.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o CMakeFiles/cmTC_9acb4.dir/CheckIncludeFile.c.o   -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
Linking C executable cmTC_9acb4
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_9acb4.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_9acb4.dir/CheckIncludeFile.c.o  -o cmTC_9acb4


Determining if the include file pwd.h exists passed with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_31e84/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_31e84.dir/build.make CMakeFiles/cmTC_31e84.dir/build
Building C object CMakeFiles/cmTC_31e84.dir/CheckIncludeFile.c.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o CMakeFiles/cmTC_31e84.dir/CheckIncludeFile.c.o   -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
Linking C executable cmTC_31e84
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_31e84.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_31e84.dir/CheckIncludeFile.c.o  -o cmTC_31e84


Determining if the include file stdlib.h exists passed with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_c15f5/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_c15f5.dir/build.make CMakeFiles/cmTC_c15f5.dir/build
Building C object CMakeFiles/cmTC_c15f5.dir/CheckIncludeFile.c.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o CMakeFiles/cmTC_c15f5.dir/CheckIncludeFile.c.o   -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
Linking C executable cmTC_c15f5
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_c15f5.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_c15f5.dir/CheckIncludeFile.c.o  -o cmTC_c15f5


Determining if the include file string.h exists passed with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_364e3/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_364e3.dir/build.make CMakeFiles/cmTC_364e3.dir/build
Building C object CMakeFiles/cmTC_364e3.dir/CheckIncludeFile.c.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o CMakeFiles/cmTC_364e3.dir/CheckIncludeFile.c.o   -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
Linking C executable cmTC_364e3
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_364e3.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_364e3.dir/CheckIncludeFile.c.o  -o cmTC_364e3


Determining if the include file strings.h exists passed with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_a5eeb/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_a5eeb.dir/build.make CMakeFiles/cmTC_a5eeb.dir/build
Building C object CMakeFiles/cmTC_a5eeb.dir/CheckIncludeFile.c.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o CMakeFiles/cmTC_a5eeb.dir/CheckIncludeFile.c.o   -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
Linking C executable cmTC_a5eeb
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_a5eeb.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_a5eeb.dir/CheckIncludeFile.c.o  -o cmTC_a5eeb


Determining if the include file sys/syscall.h exists passed with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_06767/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_06767.dir/build.make CMakeFiles/cmTC_06767.dir/build
Building C object CMakeFiles/cmTC_06767.dir/CheckIncludeFile.c.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o CMakeFiles/cmTC_06767.dir/CheckIncludeFile.c.o   -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
Linking C executable cmTC_06767
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_06767.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_06767.dir/CheckIncludeFile.c.o  -o cmTC_06767


Determining if the include file sys/time.h exists passed with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_65a9a/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_65a9a.dir/build.make CMakeFiles/cmTC_65a9a.dir/build
Building C object CMakeFiles/cmTC_65a9a.dir/CheckIncludeFile.c.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o CMakeFiles/cmTC_65a9a.dir/CheckIncludeFile.c.o   -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
Linking C executable cmTC_65a9a
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_65a9a.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_65a9a.dir/CheckIncludeFile.c.o  -o cmTC_65a9a


Determining if the include file sys/utsname.h exists passed with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_b57a4/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_b57a4.dir/build.make CMakeFiles/cmTC_b57a4.dir/build
Building C object CMakeFiles/cmTC_b57a4.dir/CheckIncludeFile.c.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o CMakeFiles/cmTC_b57a4.dir/CheckIncludeFile.c.o   -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
Linking C executable cmTC_b57a4
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_b57a4.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_b57a4.dir/CheckIncludeFile.c.o  -o cmTC_b57a4


Determining if the include file syslog.h exists passed with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_e6d02/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_e6d02.dir/build.make CMakeFiles/cmTC_e6d02.dir/build
Building C object CMakeFiles/cmTC_e6d02.dir/CheckIncludeFile.c.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o CMakeFiles/cmTC_e6d02.dir/CheckIncludeFile.c.o   -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
Linking C executable cmTC_e6d02
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_e6d02.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_e6d02.dir/CheckIncludeFile.c.o  -o cmTC_e6d02


Determining if the include file unwind.h exists passed with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_8ac81/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_8ac81.dir/build.make CMakeFiles/cmTC_8ac81.dir/build
Building C object CMakeFiles/cmTC_8ac81.dir/CheckIncludeFile.c.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o CMakeFiles/cmTC_8ac81.dir/CheckIncludeFile.c.o   -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
Linking C executable cmTC_8ac81
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_8ac81.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_8ac81.dir/CheckIncludeFile.c.o  -o cmTC_8ac81


Determining if the include file ext/hash_map exists passed with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_af3f4/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_af3f4.dir/build.make CMakeFiles/cmTC_af3f4.dir/build
Building CXX object CMakeFiles/cmTC_af3f4.dir/CheckIncludeFile.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native  -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o CMakeFiles/cmTC_af3f4.dir/CheckIncludeFile.cxx.o -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckIncludeFile.cxx
In file included from /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckIncludeFile.cxx:1:
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include/c++/v1/ext/hash_map:213:5: warning: Use of the header <ext/hash_map> is deprecated.  Migrate to <unordered_map> [-W#warnings]
#   warning Use of the header <ext/hash_map> is deprecated.  Migrate to <unordered_map>
    ^
1 warning generated.
Linking CXX executable cmTC_af3f4
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_af3f4.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native  -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_af3f4.dir/CheckIncludeFile.cxx.o  -o cmTC_af3f4


Determining if the include file ext/hash_set exists passed with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_48a2e/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_48a2e.dir/build.make CMakeFiles/cmTC_48a2e.dir/build
Building CXX object CMakeFiles/cmTC_48a2e.dir/CheckIncludeFile.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native  -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o CMakeFiles/cmTC_48a2e.dir/CheckIncludeFile.cxx.o -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckIncludeFile.cxx
In file included from /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckIncludeFile.cxx:1:
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include/c++/v1/ext/hash_set:205:5: warning: Use of the header <ext/hash_set> is deprecated.  Migrate to <unordered_set> [-W#warnings]
#   warning Use of the header <ext/hash_set> is deprecated.  Migrate to <unordered_set>
    ^
1 warning generated.
Linking CXX executable cmTC_48a2e
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_48a2e.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native  -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_48a2e.dir/CheckIncludeFile.cxx.o  -o cmTC_48a2e


Determining if the include file unordered_map exists passed with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_308a2/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_308a2.dir/build.make CMakeFiles/cmTC_308a2.dir/build
Building CXX object CMakeFiles/cmTC_308a2.dir/CheckIncludeFile.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native  -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o CMakeFiles/cmTC_308a2.dir/CheckIncludeFile.cxx.o -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckIncludeFile.cxx
Linking CXX executable cmTC_308a2
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_308a2.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native  -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_308a2.dir/CheckIncludeFile.cxx.o  -o cmTC_308a2


Determining if the include file unordered_set exists passed with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_1ef38/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_1ef38.dir/build.make CMakeFiles/cmTC_1ef38.dir/build
Building CXX object CMakeFiles/cmTC_1ef38.dir/CheckIncludeFile.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native  -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o CMakeFiles/cmTC_1ef38.dir/CheckIncludeFile.cxx.o -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckIncludeFile.cxx
Linking CXX executable cmTC_1ef38
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_1ef38.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native  -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_1ef38.dir/CheckIncludeFile.cxx.o  -o cmTC_1ef38


Determining size of u_int16_t passed with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_f9e24/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_f9e24.dir/build.make CMakeFiles/cmTC_f9e24.dir/build
Building C object CMakeFiles/cmTC_f9e24.dir/HAVE_U_INT16_T.c.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o CMakeFiles/cmTC_f9e24.dir/HAVE_U_INT16_T.c.o   -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CheckTypeSize/HAVE_U_INT16_T.c
Linking C executable cmTC_f9e24
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_f9e24.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_f9e24.dir/HAVE_U_INT16_T.c.o  -o cmTC_f9e24


Determining size of uint16_t passed with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_8663c/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_8663c.dir/build.make CMakeFiles/cmTC_8663c.dir/build
Building C object CMakeFiles/cmTC_8663c.dir/HAVE_UINT16_T.c.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o CMakeFiles/cmTC_8663c.dir/HAVE_UINT16_T.c.o   -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CheckTypeSize/HAVE_UINT16_T.c
Linking C executable cmTC_8663c
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_8663c.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_8663c.dir/HAVE_UINT16_T.c.o  -o cmTC_8663c


Determining if the function dladdr exists passed with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_22e83/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_22e83.dir/build.make CMakeFiles/cmTC_22e83.dir/build
Building C object CMakeFiles/cmTC_22e83.dir/CheckFunctionExists.c.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc   -DCHECK_FUNCTION_EXISTS=dladdr -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o CMakeFiles/cmTC_22e83.dir/CheckFunctionExists.c.o   -c /usr/local/Cellar/cmake/3.10.1/share/cmake/Modules/CheckFunctionExists.c
Linking C executable cmTC_22e83
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_22e83.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc  -DCHECK_FUNCTION_EXISTS=dladdr -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_22e83.dir/CheckFunctionExists.c.o  -o cmTC_22e83


Determining if the function fcntl exists passed with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_9f75b/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_9f75b.dir/build.make CMakeFiles/cmTC_9f75b.dir/build
Building C object CMakeFiles/cmTC_9f75b.dir/CheckFunctionExists.c.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc   -DCHECK_FUNCTION_EXISTS=fcntl -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o CMakeFiles/cmTC_9f75b.dir/CheckFunctionExists.c.o   -c /usr/local/Cellar/cmake/3.10.1/share/cmake/Modules/CheckFunctionExists.c
Linking C executable cmTC_9f75b
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_9f75b.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc  -DCHECK_FUNCTION_EXISTS=fcntl -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_9f75b.dir/CheckFunctionExists.c.o  -o cmTC_9f75b


Determining if the function pread exists passed with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_d5d78/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_d5d78.dir/build.make CMakeFiles/cmTC_d5d78.dir/build
Building C object CMakeFiles/cmTC_d5d78.dir/CheckFunctionExists.c.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc   -DCHECK_FUNCTION_EXISTS=pread -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o CMakeFiles/cmTC_d5d78.dir/CheckFunctionExists.c.o   -c /usr/local/Cellar/cmake/3.10.1/share/cmake/Modules/CheckFunctionExists.c
Linking C executable cmTC_d5d78
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_d5d78.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc  -DCHECK_FUNCTION_EXISTS=pread -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_d5d78.dir/CheckFunctionExists.c.o  -o cmTC_d5d78


Determining if the function pwrite exists passed with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_123a9/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_123a9.dir/build.make CMakeFiles/cmTC_123a9.dir/build
Building C object CMakeFiles/cmTC_123a9.dir/CheckFunctionExists.c.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc   -DCHECK_FUNCTION_EXISTS=pwrite -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o CMakeFiles/cmTC_123a9.dir/CheckFunctionExists.c.o   -c /usr/local/Cellar/cmake/3.10.1/share/cmake/Modules/CheckFunctionExists.c
Linking C executable cmTC_123a9
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_123a9.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc  -DCHECK_FUNCTION_EXISTS=pwrite -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_123a9.dir/CheckFunctionExists.c.o  -o cmTC_123a9


Determining if the function sigaction exists passed with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_7ec0c/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_7ec0c.dir/build.make CMakeFiles/cmTC_7ec0c.dir/build
Building C object CMakeFiles/cmTC_7ec0c.dir/CheckFunctionExists.c.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc   -DCHECK_FUNCTION_EXISTS=sigaction -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o CMakeFiles/cmTC_7ec0c.dir/CheckFunctionExists.c.o   -c /usr/local/Cellar/cmake/3.10.1/share/cmake/Modules/CheckFunctionExists.c
Linking C executable cmTC_7ec0c
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_7ec0c.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc  -DCHECK_FUNCTION_EXISTS=sigaction -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_7ec0c.dir/CheckFunctionExists.c.o  -o cmTC_7ec0c


Determining if the function sigaltstack exists passed with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_c7cd4/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_c7cd4.dir/build.make CMakeFiles/cmTC_c7cd4.dir/build
Building C object CMakeFiles/cmTC_c7cd4.dir/CheckFunctionExists.c.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc   -DCHECK_FUNCTION_EXISTS=sigaltstack -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o CMakeFiles/cmTC_c7cd4.dir/CheckFunctionExists.c.o   -c /usr/local/Cellar/cmake/3.10.1/share/cmake/Modules/CheckFunctionExists.c
Linking C executable cmTC_c7cd4
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_c7cd4.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc  -DCHECK_FUNCTION_EXISTS=sigaltstack -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_c7cd4.dir/CheckFunctionExists.c.o  -o cmTC_c7cd4


Performing C++ SOURCE FILE Test HAVE_NO_DEPRECATED succeeded with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_64196/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_64196.dir/build.make CMakeFiles/cmTC_64196.dir/build
Building CXX object CMakeFiles/cmTC_64196.dir/src.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native -DHAVE_NO_DEPRECATED -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -Wdeprecated -o CMakeFiles/cmTC_64196.dir/src.cxx.o -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_64196
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_64196.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native -DHAVE_NO_DEPRECATED -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_64196.dir/src.cxx.o  -o cmTC_64196

Source file was:
int main() { return 0; }
Performing C++ SOURCE FILE Test HAVE_NO_UNNAMED_TYPE_TEMPLATE_ARGS succeeded with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_81e25/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_81e25.dir/build.make CMakeFiles/cmTC_81e25.dir/build
Building CXX object CMakeFiles/cmTC_81e25.dir/src.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native -DHAVE_NO_UNNAMED_TYPE_TEMPLATE_ARGS -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -Wunnamed-type-template-args -o CMakeFiles/cmTC_81e25.dir/src.cxx.o -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_81e25
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_81e25.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native -DHAVE_NO_UNNAMED_TYPE_TEMPLATE_ARGS -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_81e25.dir/src.cxx.o  -o cmTC_81e25

Source file was:
int main() { return 0; }
Determining if the snprintf exist passed with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_2f41e/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_2f41e.dir/build.make CMakeFiles/cmTC_2f41e.dir/build
Building C object CMakeFiles/cmTC_2f41e.dir/CheckSymbolExists.c.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o CMakeFiles/cmTC_2f41e.dir/CheckSymbolExists.c.o   -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckSymbolExists.c
Linking C executable cmTC_2f41e
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_2f41e.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_2f41e.dir/CheckSymbolExists.c.o  -o cmTC_2f41e

File /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckSymbolExists.c:
/* */
#include <stdio.h>

int main(int argc, char** argv)
{
  (void)argv;
#ifndef snprintf
  return ((int*)(&snprintf))[argc];
#else
  (void)argc;
  return 0;
#endif
}

Performing C SOURCE FILE Test HAVE___ATTRIBUTE__ succeeded with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_c6af6/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_c6af6.dir/build.make CMakeFiles/cmTC_c6af6.dir/build
Building C object CMakeFiles/cmTC_c6af6.dir/src.c.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc   -DHAVE___ATTRIBUTE__ -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o CMakeFiles/cmTC_c6af6.dir/src.c.o   -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.c
Linking C executable cmTC_c6af6
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_c6af6.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc  -DHAVE___ATTRIBUTE__ -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_c6af6.dir/src.c.o  -o cmTC_c6af6

Source file was:

#include <stdlib.h>
static void foo(void) __attribute__ ((unused));
int main(void) { return 0; }

Performing C SOURCE FILE Test HAVE___ATTRIBUTE__VISIBILITY_DEFAULT succeeded with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_54f26/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_54f26.dir/build.make CMakeFiles/cmTC_54f26.dir/build
Building C object CMakeFiles/cmTC_54f26.dir/src.c.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc   -DHAVE___ATTRIBUTE__VISIBILITY_DEFAULT -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o CMakeFiles/cmTC_54f26.dir/src.c.o   -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.c
Linking C executable cmTC_54f26
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_54f26.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc  -DHAVE___ATTRIBUTE__VISIBILITY_DEFAULT -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_54f26.dir/src.c.o  -o cmTC_54f26

Source file was:

#include <stdlib.h>
static void foo(void) __attribute__ ((visibility("default")));
int main(void) { return 0; }

Performing C SOURCE FILE Test HAVE___ATTRIBUTE__VISIBILITY_HIDDEN succeeded with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_a790d/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_a790d.dir/build.make CMakeFiles/cmTC_a790d.dir/build
Building C object CMakeFiles/cmTC_a790d.dir/src.c.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc   -DHAVE___ATTRIBUTE__VISIBILITY_HIDDEN -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o CMakeFiles/cmTC_a790d.dir/src.c.o   -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.c
Linking C executable cmTC_a790d
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_a790d.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc  -DHAVE___ATTRIBUTE__VISIBILITY_HIDDEN -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_a790d.dir/src.c.o  -o cmTC_a790d

Source file was:

#include <stdlib.h>
static void foo(void) __attribute__ ((visibility("hidden")));
int main(void) { return 0; }

Performing C SOURCE FILE Test HAVE___BUILTIN_EXPECT succeeded with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_11b22/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_11b22.dir/build.make CMakeFiles/cmTC_11b22.dir/build
Building C object CMakeFiles/cmTC_11b22.dir/src.c.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc   -DHAVE___BUILTIN_EXPECT -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o CMakeFiles/cmTC_11b22.dir/src.c.o   -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.c
Linking C executable cmTC_11b22
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_11b22.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc  -DHAVE___BUILTIN_EXPECT -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_11b22.dir/src.c.o  -o cmTC_11b22

Source file was:

int main(void) { if (__builtin_expect(0, 0)) return 1; return 0; }

Performing C SOURCE FILE Test HAVE___SYNC_VAL_COMPARE_AND_SWAP succeeded with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_26a13/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_26a13.dir/build.make CMakeFiles/cmTC_26a13.dir/build
Building C object CMakeFiles/cmTC_26a13.dir/src.c.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc   -DHAVE___SYNC_VAL_COMPARE_AND_SWAP -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o CMakeFiles/cmTC_26a13.dir/src.c.o   -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.c
Linking C executable cmTC_26a13
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_26a13.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc  -DHAVE___SYNC_VAL_COMPARE_AND_SWAP -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_26a13.dir/src.c.o  -o cmTC_26a13

Source file was:

int main(void)
{
  int a; if (__sync_val_compare_and_swap(&a, 0, 1)) return 1; return 0;
}

Performing C++ SOURCE FILE Test STL_STD_NAMESPACE succeeded with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_3683d/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_3683d.dir/build.make CMakeFiles/cmTC_3683d.dir/build
Building CXX object CMakeFiles/cmTC_3683d.dir/src.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native -DSTL_STD_NAMESPACE -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o CMakeFiles/cmTC_3683d.dir/src.cxx.o -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_3683d
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_3683d.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native -DSTL_STD_NAMESPACE -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_3683d.dir/src.cxx.o  -o cmTC_3683d

Source file was:

#include <vector>
std::vector<int> t; int main() { }

Performing C++ SOURCE FILE Test HAVE_USING_OPERATOR succeeded with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_1b2dc/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_1b2dc.dir/build.make CMakeFiles/cmTC_1b2dc.dir/build
Building CXX object CMakeFiles/cmTC_1b2dc.dir/src.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native -DHAVE_USING_OPERATOR -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o CMakeFiles/cmTC_1b2dc.dir/src.cxx.o -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_1b2dc
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_1b2dc.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native -DHAVE_USING_OPERATOR -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_1b2dc.dir/src.cxx.o  -o cmTC_1b2dc

Source file was:

#include <iostream>
std::ostream& operator<<(std::ostream&, struct s);
using ::operator<<;
int main() { }

Performing C++ SOURCE FILE Test HAVE_NAMESPACES succeeded with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_253fb/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_253fb.dir/build.make CMakeFiles/cmTC_253fb.dir/build
Building CXX object CMakeFiles/cmTC_253fb.dir/src.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native -DHAVE_NAMESPACES -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o CMakeFiles/cmTC_253fb.dir/src.cxx.o -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_253fb
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_253fb.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native -DHAVE_NAMESPACES -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_253fb.dir/src.cxx.o  -o cmTC_253fb

Source file was:

namespace Outer { namespace Inner { int i = 0; }}
using namespace Outer::Inner;;
int main() { return i; }

Performing C++ SOURCE FILE Test COMPILER_HAS_WNO_SIGN_ERROR succeeded with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_a5b95/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_a5b95.dir/build.make CMakeFiles/cmTC_a5b95.dir/build
Building CXX object CMakeFiles/cmTC_a5b95.dir/src.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native -DCOMPILER_HAS_WNO_SIGN_ERROR -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -Wno-sign-compare -o CMakeFiles/cmTC_a5b95.dir/src.cxx.o -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_a5b95
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_a5b95.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native -DCOMPILER_HAS_WNO_SIGN_ERROR -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_a5b95.dir/src.cxx.o  -o cmTC_a5b95

Source file was:
int main() { return 0; }
Performing C++ SOURCE FILE Test COMPILER_HAS_WNO_PEDANTIC succeeded with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_5c42e/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_5c42e.dir/build.make CMakeFiles/cmTC_5c42e.dir/build
Building CXX object CMakeFiles/cmTC_5c42e.dir/src.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native -DCOMPILER_HAS_WNO_PEDANTIC -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -Wno-pedantic -o CMakeFiles/cmTC_5c42e.dir/src.cxx.o -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_5c42e
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_5c42e.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native -DCOMPILER_HAS_WNO_PEDANTIC -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_5c42e.dir/src.cxx.o  -o cmTC_5c42e

Source file was:
int main() { return 0; }
Performing C++ SOURCE FILE Test COMPILER_HAS_STD_CXX11 succeeded with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_cb620/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_cb620.dir/build.make CMakeFiles/cmTC_cb620.dir/build
Building CXX object CMakeFiles/cmTC_cb620.dir/src.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native -DCOMPILER_HAS_STD_CXX11 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -std=c++11 -o CMakeFiles/cmTC_cb620.dir/src.cxx.o -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_cb620
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_cb620.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native -DCOMPILER_HAS_STD_CXX11 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_cb620.dir/src.cxx.o  -o cmTC_cb620

Source file was:
int main() { return 0; }
Performing C++ SOURCE FILE Test COMPILER_HAS_WNO_UNUSED_VARIABLE succeeded with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_95928/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_95928.dir/build.make CMakeFiles/cmTC_95928.dir/build
Building CXX object CMakeFiles/cmTC_95928.dir/src.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native -std=c++11 -Wall -pedantic -DCOMPILER_HAS_WNO_UNUSED_VARIABLE -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -Wno-unused-variable -o CMakeFiles/cmTC_95928.dir/src.cxx.o -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_95928
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_95928.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native -std=c++11 -Wall -pedantic -DCOMPILER_HAS_WNO_UNUSED_VARIABLE -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_95928.dir/src.cxx.o  -o cmTC_95928

Source file was:
int main() { return 0; }
Performing C++ SOURCE FILE Test COMPILER_HAS_WNO_DEPRECATED_REGISTER succeeded with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_63a38/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_63a38.dir/build.make CMakeFiles/cmTC_63a38.dir/build
Building CXX object CMakeFiles/cmTC_63a38.dir/src.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native -DCOMPILER_HAS_WNO_DEPRECATED_REGISTER -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -Wno-deprecated-register -o CMakeFiles/cmTC_63a38.dir/src.cxx.o -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_63a38
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_63a38.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native -DCOMPILER_HAS_WNO_DEPRECATED_REGISTER -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_63a38.dir/src.cxx.o  -o cmTC_63a38

Source file was:
int main() { return 0; }
Determining if files unistd.h exist passed with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_5d6a6/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_5d6a6.dir/build.make CMakeFiles/cmTC_5d6a6.dir/build
Building C object CMakeFiles/cmTC_5d6a6.dir/CheckIncludeFiles.c.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o CMakeFiles/cmTC_5d6a6.dir/CheckIncludeFiles.c.o   -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckIncludeFiles.c
Linking C executable cmTC_5d6a6
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_5d6a6.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_5d6a6.dir/CheckIncludeFiles.c.o  -o cmTC_5d6a6


Determining if files fcntl.h;glob.h;unistd.h;sys/stat.h;sys/types.h exist passed with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_0f41d/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_0f41d.dir/build.make CMakeFiles/cmTC_0f41d.dir/build
Building C object CMakeFiles/cmTC_0f41d.dir/CheckIncludeFiles.c.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o CMakeFiles/cmTC_0f41d.dir/CheckIncludeFiles.c.o   -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckIncludeFiles.c
Linking C executable cmTC_0f41d
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_0f41d.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_0f41d.dir/CheckIncludeFiles.c.o  -o cmTC_0f41d


Performing C++ SOURCE FILE Test QUICKSTEP_HAVE_MMAP_PLAIN succeeded with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_e9e5d/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_e9e5d.dir/build.make CMakeFiles/cmTC_e9e5d.dir/build
Building CXX object CMakeFiles/cmTC_e9e5d.dir/src.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native -DQUICKSTEP_HAVE_MMAP_PLAIN -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o CMakeFiles/cmTC_e9e5d.dir/src.cxx.o -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_e9e5d
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_e9e5d.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native -DQUICKSTEP_HAVE_MMAP_PLAIN -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_e9e5d.dir/src.cxx.o  -o cmTC_e9e5d

Source file was:

    #include <sys/mman.h>

    int main() {
      void *mem = mmap(nullptr,
                       0x200000,
                       PROT_READ | PROT_WRITE,
                       MAP_PRIVATE | MAP_ANONYMOUS,
                       -1, 0);
      munmap(mem, 0x200000);
      return 0;
    }

Determining size of size_t passed with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_f0189/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_f0189.dir/build.make CMakeFiles/cmTC_f0189.dir/build
Building C object CMakeFiles/cmTC_f0189.dir/SIZEOF_SIZE_T.c.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o CMakeFiles/cmTC_f0189.dir/SIZEOF_SIZE_T.c.o   -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CheckTypeSize/SIZEOF_SIZE_T.c
Linking C executable cmTC_f0189
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_f0189.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_f0189.dir/SIZEOF_SIZE_T.c.o  -o cmTC_f0189


Performing C++ SOURCE FILE Test QUICKSTEP_HAVE_CPP11_THREADS succeeded with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_79897/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_79897.dir/build.make CMakeFiles/cmTC_79897.dir/build
Building CXX object CMakeFiles/cmTC_79897.dir/src.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native -DQUICKSTEP_HAVE_CPP11_THREADS -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o CMakeFiles/cmTC_79897.dir/src.cxx.o -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_79897
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_79897.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native -DQUICKSTEP_HAVE_CPP11_THREADS -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_79897.dir/src.cxx.o  -o cmTC_79897

Source file was:

#include <thread>
#include <mutex>
#include <condition_variable>

int main() {
  std::thread t;

  std::mutex m;
  std::recursive_mutex rm;

  std::condition_variable_any cv;

  std::lock_guard<std::mutex> lock_m(m);
  std::lock_guard<std::recursive_mutex> lock_rm(rm);

  return 0;
}

Performing C++ SOURCE FILE Test QUICKSTEP_HAVE_CPP14_SHARED_TIMED_MUTEX succeeded with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_fda3c/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_fda3c.dir/build.make CMakeFiles/cmTC_fda3c.dir/build
Building CXX object CMakeFiles/cmTC_fda3c.dir/src.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native -DQUICKSTEP_HAVE_CPP14_SHARED_TIMED_MUTEX -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o CMakeFiles/cmTC_fda3c.dir/src.cxx.o -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_fda3c
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_fda3c.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native -DQUICKSTEP_HAVE_CPP14_SHARED_TIMED_MUTEX -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_fda3c.dir/src.cxx.o  -o cmTC_fda3c

Source file was:

#include <shared_mutex>

int main() {
  std::shared_timed_mutex m;

  m.lock();
  m.unlock();

  m.lock_shared();
  m.unlock_shared();

  return 0;
}

Performing C++ SOURCE FILE Test QUICKSTEP_HAVE_CPP11_YIELD succeeded with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_623bc/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_623bc.dir/build.make CMakeFiles/cmTC_623bc.dir/build
Building CXX object CMakeFiles/cmTC_623bc.dir/src.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native -DQUICKSTEP_HAVE_CPP11_YIELD -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o CMakeFiles/cmTC_623bc.dir/src.cxx.o -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_623bc
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_623bc.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native -DQUICKSTEP_HAVE_CPP11_YIELD -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_623bc.dir/src.cxx.o  -o cmTC_623bc

Source file was:

#include <thread>

int main() {
  std::this_thread::yield();
  return 0;
}

Determining size of time_t passed with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_d753f/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_d753f.dir/build.make CMakeFiles/cmTC_d753f.dir/build
Building C object CMakeFiles/cmTC_d753f.dir/SIZEOF_TIME_T.c.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o CMakeFiles/cmTC_d753f.dir/SIZEOF_TIME_T.c.o   -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CheckTypeSize/SIZEOF_TIME_T.c
Linking C executable cmTC_d753f
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_d753f.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_d753f.dir/SIZEOF_TIME_T.c.o  -o cmTC_d753f


Determining if the strnlen exist passed with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_b6dfb/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_b6dfb.dir/build.make CMakeFiles/cmTC_b6dfb.dir/build
Building CXX object CMakeFiles/cmTC_b6dfb.dir/CheckSymbolExists.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native  -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o CMakeFiles/cmTC_b6dfb.dir/CheckSymbolExists.cxx.o -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckSymbolExists.cxx
Linking CXX executable cmTC_b6dfb
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_b6dfb.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native  -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_b6dfb.dir/CheckSymbolExists.cxx.o  -o cmTC_b6dfb

File /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckSymbolExists.cxx:
/* */
#include <cstring>

int main(int argc, char** argv)
{
  (void)argv;
#ifndef strnlen
  return ((int*)(&strnlen))[argc];
#else
  (void)argc;
  return 0;
#endif
}

Determining if the gmtime_r exist passed with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_9201c/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_9201c.dir/build.make CMakeFiles/cmTC_9201c.dir/build
Building CXX object CMakeFiles/cmTC_9201c.dir/CheckSymbolExists.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native  -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o CMakeFiles/cmTC_9201c.dir/CheckSymbolExists.cxx.o -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckSymbolExists.cxx
Linking CXX executable cmTC_9201c
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_9201c.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native  -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_9201c.dir/CheckSymbolExists.cxx.o  -o cmTC_9201c

File /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckSymbolExists.cxx:
/* */
#include <ctime>

int main(int argc, char** argv)
{
  (void)argv;
#ifndef gmtime_r
  return ((int*)(&gmtime_r))[argc];
#else
  (void)argc;
  return 0;
#endif
}

Determining if the localtime_r exist passed with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_76c1a/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_76c1a.dir/build.make CMakeFiles/cmTC_76c1a.dir/build
Building CXX object CMakeFiles/cmTC_76c1a.dir/CheckSymbolExists.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native  -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o CMakeFiles/cmTC_76c1a.dir/CheckSymbolExists.cxx.o -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckSymbolExists.cxx
Linking CXX executable cmTC_76c1a
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_76c1a.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native  -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_76c1a.dir/CheckSymbolExists.cxx.o  -o cmTC_76c1a

File /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckSymbolExists.cxx:
/* */
#include <ctime>

int main(int argc, char** argv)
{
  (void)argv;
#ifndef localtime_r
  return ((int*)(&localtime_r))[argc];
#else
  (void)argc;
  return 0;
#endif
}

Determining if the timegm exist passed with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_27ec2/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_27ec2.dir/build.make CMakeFiles/cmTC_27ec2.dir/build
Building CXX object CMakeFiles/cmTC_27ec2.dir/CheckSymbolExists.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native  -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o CMakeFiles/cmTC_27ec2.dir/CheckSymbolExists.cxx.o -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckSymbolExists.cxx
Linking CXX executable cmTC_27ec2
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_27ec2.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native  -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_27ec2.dir/CheckSymbolExists.cxx.o  -o cmTC_27ec2

File /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckSymbolExists.cxx:
/* */
#include <ctime>

int main(int argc, char** argv)
{
  (void)argv;
#ifndef timegm
  return ((int*)(&timegm))[argc];
#else
  (void)argc;
  return 0;
#endif
}

Determining if the setenv exist passed with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_8c5e1/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_8c5e1.dir/build.make CMakeFiles/cmTC_8c5e1.dir/build
Building CXX object CMakeFiles/cmTC_8c5e1.dir/CheckSymbolExists.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native  -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o CMakeFiles/cmTC_8c5e1.dir/CheckSymbolExists.cxx.o -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckSymbolExists.cxx
Linking CXX executable cmTC_8c5e1
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_8c5e1.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native  -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_8c5e1.dir/CheckSymbolExists.cxx.o  -o cmTC_8c5e1

File /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckSymbolExists.cxx:
/* */
#include <stdlib.h>

int main(int argc, char** argv)
{
  (void)argv;
#ifndef setenv
  return ((int*)(&setenv))[argc];
#else
  (void)argc;
  return 0;
#endif
}

Determining if the tzset exist passed with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_9c6f0/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_9c6f0.dir/build.make CMakeFiles/cmTC_9c6f0.dir/build
Building CXX object CMakeFiles/cmTC_9c6f0.dir/CheckSymbolExists.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native  -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o CMakeFiles/cmTC_9c6f0.dir/CheckSymbolExists.cxx.o -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckSymbolExists.cxx
Linking CXX executable cmTC_9c6f0
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_9c6f0.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native  -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_9c6f0.dir/CheckSymbolExists.cxx.o  -o cmTC_9c6f0

File /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckSymbolExists.cxx:
/* */
#include <time.h>

int main(int argc, char** argv)
{
  (void)argv;
#ifndef tzset
  return ((int*)(&tzset))[argc];
#else
  (void)argc;
  return 0;
#endif
}

Performing C++ SOURCE FILE Test COMPILER_HAS_WNO_SELF_MOVE succeeded with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_de1c3/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_de1c3.dir/build.make CMakeFiles/cmTC_de1c3.dir/build
Building CXX object CMakeFiles/cmTC_de1c3.dir/src.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native -DCOMPILER_HAS_WNO_SELF_MOVE -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -Wno-self-move -o CMakeFiles/cmTC_de1c3.dir/src.cxx.o -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_de1c3
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_de1c3.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native -DCOMPILER_HAS_WNO_SELF_MOVE -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_de1c3.dir/src.cxx.o  -o cmTC_de1c3

Source file was:
int main() { return 0; }
Performing C++ SOURCE FILE Test QUICKSTEP_HAVE_BUILTIN_POPCOUNT succeeded with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_be531/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_be531.dir/build.make CMakeFiles/cmTC_be531.dir/build
Building CXX object CMakeFiles/cmTC_be531.dir/src.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native -DQUICKSTEP_HAVE_BUILTIN_POPCOUNT -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o CMakeFiles/cmTC_be531.dir/src.cxx.o -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_be531
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_be531.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native -DQUICKSTEP_HAVE_BUILTIN_POPCOUNT -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_be531.dir/src.cxx.o  -o cmTC_be531

Source file was:

  int main() {
    return __builtin_popcount(1234);
  }

Performing C++ SOURCE FILE Test QUICKSTEP_HAVE_BUILTIN_CLZ succeeded with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_2fc59/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_2fc59.dir/build.make CMakeFiles/cmTC_2fc59.dir/build
Building CXX object CMakeFiles/cmTC_2fc59.dir/src.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native -DQUICKSTEP_HAVE_BUILTIN_CLZ -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o CMakeFiles/cmTC_2fc59.dir/src.cxx.o -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_2fc59
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_2fc59.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native -DQUICKSTEP_HAVE_BUILTIN_CLZ -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_2fc59.dir/src.cxx.o  -o cmTC_2fc59

Source file was:

  int main() {
    return __builtin_clz(12340);
  }

Performing C++ SOURCE FILE Test QUICKSTEP_HAVE_BUILTIN_CTZ succeeded with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_383a8/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_383a8.dir/build.make CMakeFiles/cmTC_383a8.dir/build
Building CXX object CMakeFiles/cmTC_383a8.dir/src.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native -DQUICKSTEP_HAVE_BUILTIN_CTZ -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o CMakeFiles/cmTC_383a8.dir/src.cxx.o -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_383a8
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_383a8.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native -DQUICKSTEP_HAVE_BUILTIN_CTZ -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_383a8.dir/src.cxx.o  -o cmTC_383a8

Source file was:

  int main() {
    return __builtin_ctz(12340);
  }

Performing C++ SOURCE FILE Test QUICKSTEP_HAVE_STD_ALIGN succeeded with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_2c7b3/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_2c7b3.dir/build.make CMakeFiles/cmTC_2c7b3.dir/build
Building CXX object CMakeFiles/cmTC_2c7b3.dir/src.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native -DQUICKSTEP_HAVE_STD_ALIGN -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o CMakeFiles/cmTC_2c7b3.dir/src.cxx.o -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx:9:11: warning: unused variable 'aligned' [-Wunused-variable]
    void *aligned = std::align(8, 8, ptr, space);
          ^
1 warning generated.
Linking CXX executable cmTC_2c7b3
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_2c7b3.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native -DQUICKSTEP_HAVE_STD_ALIGN -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_2c7b3.dir/src.cxx.o  -o cmTC_2c7b3

Source file was:

  #include <cstddef>
  #include <memory>

  int main() {
    void *ptr = nullptr;
    std::size_t space = 16;

    void *aligned = std::align(8, 8, ptr, space);
    return 0;
  }

Performing C++ SOURCE FILE Test QUICKSTEP_HAVE_POSIX_MEMALIGN succeeded with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_5a733/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_5a733.dir/build.make CMakeFiles/cmTC_5a733.dir/build
Building CXX object CMakeFiles/cmTC_5a733.dir/src.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native -DQUICKSTEP_HAVE_POSIX_MEMALIGN -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o CMakeFiles/cmTC_5a733.dir/src.cxx.o -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_5a733
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_5a733.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native -DQUICKSTEP_HAVE_POSIX_MEMALIGN -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_5a733.dir/src.cxx.o  -o cmTC_5a733

Source file was:

  #include <stdlib.h>

  int main() {
    void *ptr;
    return posix_memalign(&ptr, 64, 256);
  }

Performing C++ SOURCE FILE Test QUICKSTEP_HAVE_SYSCONF succeeded with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_380a3/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_380a3.dir/build.make CMakeFiles/cmTC_380a3.dir/build
Building CXX object CMakeFiles/cmTC_380a3.dir/src.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++    -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native -DQUICKSTEP_HAVE_SYSCONF -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o CMakeFiles/cmTC_380a3.dir/src.cxx.o -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_380a3
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_380a3.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++   -std=c++14 -Wall -pedantic -Wno-extended-offsetof -Wno-error=deprecated-declarations -march=native -DQUICKSTEP_HAVE_SYSCONF -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_380a3.dir/src.cxx.o  -o cmTC_380a3

Source file was:

  #include <unistd.h>
  int main() {
  return (sysconf(_SC_PAGE_SIZE) > 0 && sysconf(_SC_PHYS_PAGES) > 0);
  }

Determining if files glob.h exist passed with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_f8c1d/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_f8c1d.dir/build.make CMakeFiles/cmTC_f8c1d.dir/build
Building C object CMakeFiles/cmTC_f8c1d.dir/CheckIncludeFiles.c.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o CMakeFiles/cmTC_f8c1d.dir/CheckIncludeFiles.c.o   -c /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckIncludeFiles.c
Linking C executable cmTC_f8c1d
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_f8c1d.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc   -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_f8c1d.dir/CheckIncludeFiles.c.o  -o cmTC_f8c1d


Determining if the function open_memstream exists passed with the following output:
Change Dir: /Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_6044c/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_6044c.dir/build.make CMakeFiles/cmTC_6044c.dir/build
Building C object CMakeFiles/cmTC_6044c.dir/CheckFunctionExists.c.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc   -DCHECK_FUNCTION_EXISTS=open_memstream -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk   -o CMakeFiles/cmTC_6044c.dir/CheckFunctionExists.c.o   -c /usr/local/Cellar/cmake/3.10.1/share/cmake/Modules/CheckFunctionExists.c
Linking C executable cmTC_6044c
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_6044c.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc  -DCHECK_FUNCTION_EXISTS=open_memstream -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names   CMakeFiles/cmTC_6044c.dir/CheckFunctionExists.c.o  -o cmTC_6044c



On Sun, Jan 7, 2018 at 10:54 PM, Harshad Deshmukh <ha...@cs.wisc.edu>> wrote:
Hi Robert,


I can't find your attachments. Can you please resend or paste the logs in the email text?


Thanks,

Harshad

________________________________
From: Robert Claus <ro...@gmail.com>>
Sent: Sunday, January 7, 2018 9:41:32 PM
To: dev@quickstep.incubator.apache.org<ma...@quickstep.incubator.apache.org>
Subject: CMake Issues After iOS Upgrade

Hi Quickstep Team,

I finally upgraded my Mac to 10.13.1 this weekend but I can't get cmake to succeed anymore.  I'm guessing it's a flag I'm missing, but I'm having trouble figuring out what exactly and could use some help.  Any ideas what could be causing the issue?

CMakeError and Output are attached.

Thanks!
-Robert


Re: CMake Issues After iOS Upgrade

Posted by Robert Claus <ro...@gmail.com>.
Attaching again and adding to email body.



CMakeError.log

Determining if files hdfs/hdfs.h exist failed with the following output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_df941/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_df941.dir/build.make CMakeFiles/cmTC_df941.dir/build
Building C object CMakeFiles/cmTC_df941.dir/CheckIncludeFiles.c.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
 -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -o CMakeFiles/cmTC_df941.dir/CheckIncludeFiles.c.o   -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckIncludeFiles.c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckIncludeFiles.c:2:10:
fatal error: 'hdfs/hdfs.h' file not found
#include <hdfs/hdfs.h>
         ^~~~~~~~~~~~~
1 error generated.
make[1]: *** [CMakeFiles/cmTC_df941.dir/CheckIncludeFiles.c.o] Error 1
make: *** [cmTC_df941/fast] Error 2

Source:
/* */
#include <hdfs/hdfs.h>


int main(void){return 0;}

Performing C++ SOURCE FILE Test
HAVE_CXX_FLAG_WZERO_AS_NULL_POINTER_CONSTANT failed with the following
output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_312d6/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_312d6.dir/build.make CMakeFiles/cmTC_312d6.dir/build
Building CXX object CMakeFiles/cmTC_312d6.dir/src.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
  -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native -std=c++11 -Wall -Wextra
-Wshadow -pedantic -pedantic-errors -Wshorten-64-to-32 -Wfloat-equal
-fstrict-aliasing -DHAVE_CXX_FLAG_WZERO_AS_NULL_POINTER_CONSTANT
-Wzero-as-null-pointer-constant -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -Wzero-as-null-pointer-constant -o CMakeFiles/cmTC_312d6.dir/src.cxx.o -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
warning: unknown warning option '-Wzero-as-null-pointer-constant'; did you
mean '-Wint-to-void-pointer-cast'? [-Wunknown-warning-option]
warning: unknown warning option '-Wzero-as-null-pointer-constant'; did you
mean '-Wint-to-void-pointer-cast'? [-Wunknown-warning-option]
2 warnings generated.
Linking CXX executable cmTC_312d6
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_312d6.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
 -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native -std=c++11 -Wall -Wextra
-Wshadow -pedantic -pedantic-errors -Wshorten-64-to-32 -Wfloat-equal
-fstrict-aliasing -DHAVE_CXX_FLAG_WZERO_AS_NULL_POINTER_CONSTANT
-Wzero-as-null-pointer-constant -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_312d6.dir/src.cxx.o  -o cmTC_312d6

Source file was:
int main() { return 0; }
Determining if the include file syscall.h exists failed with the following
output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_f8ddd/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_f8ddd.dir/build.make CMakeFiles/cmTC_f8ddd.dir/build
Building C object CMakeFiles/cmTC_f8ddd.dir/CheckIncludeFile.c.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
 -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -o CMakeFiles/cmTC_f8ddd.dir/CheckIncludeFile.c.o   -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c:1:10:
fatal error: 'syscall.h' file not found
#include <syscall.h>
         ^~~~~~~~~~~
1 error generated.
make[1]: *** [CMakeFiles/cmTC_f8ddd.dir/CheckIncludeFile.c.o] Error 1
make: *** [cmTC_f8ddd/fast] Error 2


Determining if the include file ucontext.h exists failed with the following
output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_98a6d/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_98a6d.dir/build.make CMakeFiles/cmTC_98a6d.dir/build
Building C object CMakeFiles/cmTC_98a6d.dir/CheckIncludeFile.c.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
 -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -o CMakeFiles/cmTC_98a6d.dir/CheckIncludeFile.c.o   -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
In file included from
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c:1:
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/usr/include/ucontext.h:43:2:
error: The deprecated ucontext routines require _XOPEN_SOURCE to be defined
#error The deprecated ucontext routines require _XOPEN_SOURCE to be defined
 ^
1 error generated.
make[1]: *** [CMakeFiles/cmTC_98a6d.dir/CheckIncludeFile.c.o] Error 1
make: *** [cmTC_98a6d/fast] Error 2


Determining if the include file ext/slist exists failed with the following
output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_cef81/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_cef81.dir/build.make CMakeFiles/cmTC_cef81.dir/build
Building CXX object CMakeFiles/cmTC_cef81.dir/CheckIncludeFile.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
  -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native  -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -o CMakeFiles/cmTC_cef81.dir/CheckIncludeFile.cxx.o -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckIncludeFile.cxx
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckIncludeFile.cxx:1:10:
fatal error: 'ext/slist' file not found
#include <ext/slist>
         ^~~~~~~~~~~
1 error generated.
make[1]: *** [CMakeFiles/cmTC_cef81.dir/CheckIncludeFile.cxx.o] Error 1
make: *** [cmTC_cef81/fast] Error 2


Determining if the include file tr1/unordered_map exists failed with the
following output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_c39b5/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_c39b5.dir/build.make CMakeFiles/cmTC_c39b5.dir/build
Building CXX object CMakeFiles/cmTC_c39b5.dir/CheckIncludeFile.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
  -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native  -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -o CMakeFiles/cmTC_c39b5.dir/CheckIncludeFile.cxx.o -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckIncludeFile.cxx
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckIncludeFile.cxx:1:10:
fatal error: 'tr1/unordered_map' file not found
#include <tr1/unordered_map>
         ^~~~~~~~~~~~~~~~~~~
1 error generated.
make[1]: *** [CMakeFiles/cmTC_c39b5.dir/CheckIncludeFile.cxx.o] Error 1
make: *** [cmTC_c39b5/fast] Error 2


Determining if the include file tr1/unordered_set exists failed with the
following output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_e67da/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_e67da.dir/build.make CMakeFiles/cmTC_e67da.dir/build
Building CXX object CMakeFiles/cmTC_e67da.dir/CheckIncludeFile.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
  -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native  -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -o CMakeFiles/cmTC_e67da.dir/CheckIncludeFile.cxx.o -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckIncludeFile.cxx
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckIncludeFile.cxx:1:10:
fatal error: 'tr1/unordered_set' file not found
#include <tr1/unordered_set>
         ^~~~~~~~~~~~~~~~~~~
1 error generated.
make[1]: *** [CMakeFiles/cmTC_e67da.dir/CheckIncludeFile.cxx.o] Error 1
make: *** [cmTC_e67da/fast] Error 2


Determining size of unsigned __int16 failed with the following output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_dbb53/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_dbb53.dir/build.make CMakeFiles/cmTC_dbb53.dir/build
Building C object CMakeFiles/cmTC_dbb53.dir/HAVE___UINT16.c.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
 -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -o CMakeFiles/cmTC_dbb53.dir/HAVE___UINT16.c.o   -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CheckTypeSize/HAVE___UINT16.c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CheckTypeSize/HAVE___UINT16.c:25:12:
error: expected ')'
  ('0' + ((SIZE / 10000)%10)),
           ^
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CheckTypeSize/HAVE___UINT16.c:23:31:
note: expanded from macro 'SIZE'
#define SIZE (sizeof(unsigned __int16))
                              ^
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CheckTypeSize/HAVE___UINT16.c:25:12:
note: to match this '('
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CheckTypeSize/HAVE___UINT16.c:23:21:
note: expanded from macro 'SIZE'
#define SIZE (sizeof(unsigned __int16))
                    ^
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CheckTypeSize/HAVE___UINT16.c:26:12:
error: expected ')'
  ('0' + ((SIZE / 1000)%10)),
           ^
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CheckTypeSize/HAVE___UINT16.c:23:31:
note: expanded from macro 'SIZE'
#define SIZE (sizeof(unsigned __int16))
                              ^
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CheckTypeSize/HAVE___UINT16.c:26:12:
note: to match this '('
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CheckTypeSize/HAVE___UINT16.c:23:21:
note: expanded from macro 'SIZE'
#define SIZE (sizeof(unsigned __int16))
                    ^
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CheckTypeSize/HAVE___UINT16.c:27:12:
error: expected ')'
  ('0' + ((SIZE / 100)%10)),
           ^
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CheckTypeSize/HAVE___UINT16.c:23:31:
note: expanded from macro 'SIZE'
#define SIZE (sizeof(unsigned __int16))
                              ^
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CheckTypeSize/HAVE___UINT16.c:27:12:
note: to match this '('
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CheckTypeSize/HAVE___UINT16.c:23:21:
note: expanded from macro 'SIZE'
#define SIZE (sizeof(unsigned __int16))
                    ^
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CheckTypeSize/HAVE___UINT16.c:28:12:
error: expected ')'
  ('0' + ((SIZE / 10)%10)),
           ^
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CheckTypeSize/HAVE___UINT16.c:23:31:
note: expanded from macro 'SIZE'
#define SIZE (sizeof(unsigned __int16))
                              ^
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CheckTypeSize/HAVE___UINT16.c:28:12:
note: to match this '('
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CheckTypeSize/HAVE___UINT16.c:23:21:
note: expanded from macro 'SIZE'
#define SIZE (sizeof(unsigned __int16))
                    ^
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CheckTypeSize/HAVE___UINT16.c:29:12:
error: expected ')'
  ('0' +  (SIZE    % 10)),
           ^
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CheckTypeSize/HAVE___UINT16.c:23:31:
note: expanded from macro 'SIZE'
#define SIZE (sizeof(unsigned __int16))
                              ^
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CheckTypeSize/HAVE___UINT16.c:29:12:
note: to match this '('
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CheckTypeSize/HAVE___UINT16.c:23:21:
note: expanded from macro 'SIZE'
#define SIZE (sizeof(unsigned __int16))
                    ^
5 errors generated.
make[1]: *** [CMakeFiles/cmTC_dbb53.dir/HAVE___UINT16.c.o] Error 1
make: *** [cmTC_dbb53/fast] Error 2

/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CheckTypeSize/HAVE___UINT16.c:
#include <sys/types.h>
#include <stdint.h>
#include <stddef.h>


#undef KEY
#if defined(__i386)
# define KEY '_','_','i','3','8','6'
#elif defined(__x86_64)
# define KEY '_','_','x','8','6','_','6','4'
#elif defined(__ppc__)
# define KEY '_','_','p','p','c','_','_'
#elif defined(__ppc64__)
# define KEY '_','_','p','p','c','6','4','_','_'
#elif defined(__aarch64__)
# define KEY '_','_','a','a','r','c','h','6','4','_','_'
#elif defined(__ARM_ARCH_7A__)
# define KEY '_','_','A','R','M','_','A','R','C','H','_','7','A','_','_'
#elif defined(__ARM_ARCH_7S__)
# define KEY '_','_','A','R','M','_','A','R','C','H','_','7','S','_','_'
#endif

#define SIZE (sizeof(unsigned __int16))
char info_size[] =  {'I', 'N', 'F', 'O', ':', 's','i','z','e','[',
  ('0' + ((SIZE / 10000)%10)),
  ('0' + ((SIZE / 1000)%10)),
  ('0' + ((SIZE / 100)%10)),
  ('0' + ((SIZE / 10)%10)),
  ('0' +  (SIZE    % 10)),
  ']',
#ifdef KEY
  ' ','k','e','y','[', KEY, ']',
#endif
  '\0'};

#ifdef __CLASSIC_C__
int main(argc, argv) int argc; char *argv[];
#else
int main(int argc, char *argv[])
#endif
{
  int require = 0;
  require += info_size[argc];
  (void)argv;
  return require;
}


Determining if the function get_static_proc_name exists in the unwind
failed with the following output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_2363c/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_2363c.dir/build.make CMakeFiles/cmTC_2363c.dir/build
Building C object CMakeFiles/cmTC_2363c.dir/CheckFunctionExists.c.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
 -DCHECK_FUNCTION_EXISTS=get_static_proc_name -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -o CMakeFiles/cmTC_2363c.dir/CheckFunctionExists.c.o   -c
/usr/local/Cellar/cmake/3.10.1/share/cmake/Modules/CheckFunctionExists.c
Linking C executable cmTC_2363c
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_2363c.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
-DCHECK_FUNCTION_EXISTS=get_static_proc_name -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_2363c.dir/CheckFunctionExists.c.o  -o cmTC_2363c -lunwind
ld: library not found for -lunwind
clang: error: linker command failed with exit code 1 (use -v to see
invocation)
make[1]: *** [cmTC_2363c] Error 1
make: *** [cmTC_2363c/fast] Error 2


Performing C SOURCE FILE Test HAVE___DECLSPEC failed with the following
output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_e5741/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_e5741.dir/build.make CMakeFiles/cmTC_e5741.dir/build
Building C object CMakeFiles/cmTC_e5741.dir/src.c.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
 -DHAVE___DECLSPEC -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -o CMakeFiles/cmTC_e5741.dir/src.c.o   -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.c:2:27:
error: parameter named 'a' is missing
__declspec(selectany) int a;
                          ^
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.c:3:5:
error: parameter named 'main' is missing
int main(void) { return 0; }
    ^
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.c:3:15:
error: expected ';' at end of declaration
int main(void) { return 0; }
              ^
              ;
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.c:2:1:
warning: type specifier missing, defaults to 'int' [-Wimplicit-int]
__declspec(selectany) int a;
^
1 warning and 3 errors generated.
make[1]: *** [CMakeFiles/cmTC_e5741.dir/src.c.o] Error 1
make: *** [cmTC_e5741/fast] Error 2

Source file was:

__declspec(selectany) int a;
int main(void) { return 0; }

Performing C++ SOURCE FILE Test STL_NO_NAMESPACE failed with the following
output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_82b3e/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_82b3e.dir/build.make CMakeFiles/cmTC_82b3e.dir/build
Building CXX object CMakeFiles/cmTC_82b3e.dir/src.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
  -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native -DSTL_NO_NAMESPACE
-isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -o CMakeFiles/cmTC_82b3e.dir/src.cxx.o -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx:3:1:
error: no template named 'vector'; did you mean 'std::vector'?
vector<int> t; int main() { }
^~~~~~
std::vector
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include/c++/v1/vector:450:28:
note: 'std::vector' declared here
class _LIBCPP_TEMPLATE_VIS vector
                           ^
1 error generated.
make[1]: *** [CMakeFiles/cmTC_82b3e.dir/src.cxx.o] Error 1
make: *** [cmTC_82b3e/fast] Error 2

Source file was:

#include <vector>
vector<int> t; int main() { }

Performing C++ SOURCE FILE Test COMPILER_HAS_WNO_UNUSED_BUT_SET_VARIABLE
failed with the following output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_2c168/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_2c168.dir/build.make CMakeFiles/cmTC_2c168.dir/build
Building CXX object CMakeFiles/cmTC_2c168.dir/src.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
  -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native -std=c++11 -Wall -pedantic
-DCOMPILER_HAS_WNO_UNUSED_BUT_SET_VARIABLE -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -Wno-unused-but-set-variable -o CMakeFiles/cmTC_2c168.dir/src.cxx.o -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
warning: unknown warning option '-Wno-unused-but-set-variable'; did you
mean '-Wno-unused-const-variable'? [-Wunknown-warning-option]
1 warning generated.
Linking CXX executable cmTC_2c168
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_2c168.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
 -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native -std=c++11 -Wall -pedantic
-DCOMPILER_HAS_WNO_UNUSED_BUT_SET_VARIABLE -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_2c168.dir/src.cxx.o  -o cmTC_2c168

Source file was:
int main() { return 0; }
Performing C++ SOURCE FILE Test QUICKSTEP_HAVE_MMAP_LINUX_HUGETLB failed
with the following output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_e93bd/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_e93bd.dir/build.make CMakeFiles/cmTC_e93bd.dir/build
Building CXX object CMakeFiles/cmTC_e93bd.dir/src.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
  -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native
-DQUICKSTEP_HAVE_MMAP_LINUX_HUGETLB -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -o CMakeFiles/cmTC_e93bd.dir/src.cxx.o -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx:11:52:
error: use of undeclared identifier 'MAP_HUGETLB'
                     MAP_PRIVATE | MAP_ANONYMOUS | MAP_HUGETLB,
                                                   ^
1 error generated.
make[1]: *** [CMakeFiles/cmTC_e93bd.dir/src.cxx.o] Error 1
make: *** [cmTC_e93bd/fast] Error 2

Source file was:

  #ifndef _GNU_SOURCE
  #define _GNU_SOURCE
  #endif
  #include <sys/mman.h>

  int main() {
    void *mem = mmap(nullptr,
                     0x200000,
                     PROT_READ | PROT_WRITE,
                     MAP_PRIVATE | MAP_ANONYMOUS | MAP_HUGETLB,
                     -1, 0);
    munmap(mem, 0x200000);
    return 0;
  }

Performing C++ SOURCE FILE Test QUICKSTEP_HAVE_MMAP_BSD_SUPERPAGE failed
with the following output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_fe126/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_fe126.dir/build.make CMakeFiles/cmTC_fe126.dir/build
Building CXX object CMakeFiles/cmTC_fe126.dir/src.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
  -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native
-DQUICKSTEP_HAVE_MMAP_BSD_SUPERPAGE -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -o CMakeFiles/cmTC_fe126.dir/src.cxx.o -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx:9:54:
error: use of undeclared identifier 'MAP_ALIGNED_SUPER'
                       MAP_PRIVATE | MAP_ANONYMOUS | MAP_ALIGNED_SUPER,
                                                     ^
1 error generated.
make[1]: *** [CMakeFiles/cmTC_fe126.dir/src.cxx.o] Error 1
make: *** [cmTC_fe126/fast] Error 2

Source file was:

    #define _BSD_SOURCE
    #include <sys/mman.h>

    int main() {
      void *mem = mmap(nullptr,
                       0x200000,
                       PROT_READ | PROT_WRITE,
                       MAP_PRIVATE | MAP_ANONYMOUS | MAP_ALIGNED_SUPER,
                       -1, 0);
      munmap(mem, 0x200000);
      return 0;
    }

Performing C++ SOURCE FILE Test QUICKSTEP_HAVE_CPP17_SHARED_MUTEX failed
with the following output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_e3a80/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_e3a80.dir/build.make CMakeFiles/cmTC_e3a80.dir/build
Building CXX object CMakeFiles/cmTC_e3a80.dir/src.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
  -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native
-DQUICKSTEP_HAVE_CPP17_SHARED_MUTEX -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -o CMakeFiles/cmTC_e3a80.dir/src.cxx.o -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx:5:8:
error: no type named 'shared_mutex' in namespace 'std'
  std::shared_mutex m;
  ~~~~~^
1 error generated.
make[1]: *** [CMakeFiles/cmTC_e3a80.dir/src.cxx.o] Error 1
make: *** [cmTC_e3a80/fast] Error 2

Source file was:

#include <shared_mutex>

int main() {
  std::shared_mutex m;

  m.lock();
  m.unlock();

  m.lock_shared();
  m.unlock_shared();

  return 0;
}

Performing C++ SOURCE FILE Test QUICKSTEP_HAVE_PTHREAD_SETAFFINITY_NP_LINUX
failed with the following output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_f92a4/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_f92a4.dir/build.make CMakeFiles/cmTC_f92a4.dir/build
Building CXX object CMakeFiles/cmTC_f92a4.dir/src.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
  -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native
-DQUICKSTEP_HAVE_PTHREAD_SETAFFINITY_NP_LINUX -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -o CMakeFiles/cmTC_f92a4.dir/src.cxx.o -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx:9:5:
error: unknown type name 'cpu_set_t'
    cpu_set_t cpuset;
    ^
1 error generated.
make[1]: *** [CMakeFiles/cmTC_f92a4.dir/src.cxx.o] Error 1
make: *** [cmTC_f92a4/fast] Error 2

Source file was:

  #ifndef _GNU_SOURCE
  #define _GNU_SOURCE 1
  #endif
  #include <pthread.h>
  #include <sched.h>

  int main() {
    cpu_set_t cpuset;
    CPU_ZERO(&cpuset);
    CPU_SET(0, &cpuset);
    if (pthread_setaffinity_np(pthread_self(), sizeof(cpuset), &cpuset) !=
0) {
      return 1;
    }
    return 0;
  }

Performing C++ SOURCE FILE Test
QUICKSTEP_HAVE_PTHREAD_SETAFFINITY_NP_FREEBSD failed with the following
output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_deb6c/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_deb6c.dir/build.make CMakeFiles/cmTC_deb6c.dir/build
Building CXX object CMakeFiles/cmTC_deb6c.dir/src.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
  -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native
-DQUICKSTEP_HAVE_PTHREAD_SETAFFINITY_NP_FREEBSD -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -o CMakeFiles/cmTC_deb6c.dir/src.cxx.o -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx:6:14:
fatal error: 'pthread_np.h' file not found
    #include <pthread_np.h>
             ^~~~~~~~~~~~~~
1 error generated.
make[1]: *** [CMakeFiles/cmTC_deb6c.dir/src.cxx.o] Error 1
make: *** [cmTC_deb6c/fast] Error 2

Source file was:

    #ifndef _BSD_SOURCE
    #define _BSD_SOURCE 1
    #endif
    #include <pthread.h>
    #include <pthread_np.h>
    #include <sched.h>

    int main() {
      cpuset_t cpuset;
      CPU_ZERO(&cpuset);
      CPU_SET(0, &cpuset);
      if (pthread_setaffinity_np(pthread_self(), sizeof(cpuset), &cpuset)
!= 0) {
        return 1;
      }
      return 0;
    }

Performing C++ SOURCE FILE Test
QUICKSTEP_HAVE_PTHREAD_SETAFFINITY_NP_NETBSD failed with the following
output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_5d440/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_5d440.dir/build.make CMakeFiles/cmTC_5d440.dir/build
Building CXX object CMakeFiles/cmTC_5d440.dir/src.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
  -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native
-DQUICKSTEP_HAVE_PTHREAD_SETAFFINITY_NP_NETBSD -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -o CMakeFiles/cmTC_5d440.dir/src.cxx.o -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx:9:7:
error: unknown type name 'cpuset_t'
      cpuset_t *cset = cpuset_create();
      ^
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx:9:24:
error: use of undeclared identifier 'cpuset_create'
      cpuset_t *cset = cpuset_create();
                       ^
2 errors generated.
make[1]: *** [CMakeFiles/cmTC_5d440.dir/src.cxx.o] Error 1
make: *** [cmTC_5d440/fast] Error 2

Source file was:

    #ifndef _BSD_SOURCE
    #define _BSD_SOURCE 1
    #endif
    #include <pthread.h>
    #include <sched.h>

    int main() {
      cpuset_t *cset = cpuset_create();
      if (cpuset_set(0, cset) != 0) {
        return 1;
      }
      if (pthread_setaffinity_np(pthread_self(), cpuset_size(cset), cset)
!= 0) {
        return 1;
      }
      cpuset_destroy(cset);
      return 0;
    }

Performing C++ SOURCE FILE Test QUICKSTEP_HAVE_ALIGNED_ALLOC failed with
the following output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_bd82e/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_bd82e.dir/build.make CMakeFiles/cmTC_bd82e.dir/build
Building CXX object CMakeFiles/cmTC_bd82e.dir/src.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
  -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native
-DQUICKSTEP_HAVE_ALIGNED_ALLOC -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -o CMakeFiles/cmTC_bd82e.dir/src.cxx.o -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx:5:17:
error: use of undeclared identifier 'aligned_alloc'
    void *ptr = aligned_alloc(64, 256);
                ^
1 error generated.
make[1]: *** [CMakeFiles/cmTC_bd82e.dir/src.cxx.o] Error 1
make: *** [cmTC_bd82e/fast] Error 2

Source file was:

  #include <stdlib.h>

  int main() {
    void *ptr = aligned_alloc(64, 256);
    return 0;
  }





CMakeOutput.log:


The system is: Darwin - 17.2.0 - x86_64
Compiling the C compiler identification source file "CMakeCCompilerId.c"
succeeded.
Compiler:
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
Build flags:
Id flags:

The output was:
0


Compilation of the C compiler identification source "CMakeCCompilerId.c"
produced "a.out"

The C compiler identification is AppleClang, found in
"/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/3.10.1/CompilerIdC/a.out"

Compiling the CXX compiler identification source file
"CMakeCXXCompilerId.cpp" succeeded.
Compiler:
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
Build flags:
Id flags:

The output was:
0


Compilation of the CXX compiler identification source
"CMakeCXXCompilerId.cpp" produced "a.out"

The CXX compiler identification is AppleClang, found in
"/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/3.10.1/CompilerIdCXX/a.out"

Determining if the C compiler works passed with the following output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_e6cae/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_e6cae.dir/build.make CMakeFiles/cmTC_e6cae.dir/build
Building C object CMakeFiles/cmTC_e6cae.dir/testCCompiler.c.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
 -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -o CMakeFiles/cmTC_e6cae.dir/testCCompiler.c.o   -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/testCCompiler.c
Linking C executable cmTC_e6cae
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_e6cae.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
 -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_e6cae.dir/testCCompiler.c.o  -o cmTC_e6cae


Detecting C compiler ABI info compiled with the following output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_4141b/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_4141b.dir/build.make CMakeFiles/cmTC_4141b.dir/build
Building C object CMakeFiles/cmTC_4141b.dir/CMakeCCompilerABI.c.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
 -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -o CMakeFiles/cmTC_4141b.dir/CMakeCCompilerABI.c.o   -c
/usr/local/Cellar/cmake/3.10.1/share/cmake/Modules/CMakeCCompilerABI.c
Linking C executable cmTC_4141b
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_4141b.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
 -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names  -v -Wl,-v
CMakeFiles/cmTC_4141b.dir/CMakeCCompilerABI.c.o  -o cmTC_4141b
Apple LLVM version 9.0.0 (clang-900.0.39.2)
Target: x86_64-apple-darwin17.2.0
Thread model: posix
InstalledDir:
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin
 "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld"
-demangle -lto_library
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/libLTO.dylib
-dynamic -arch x86_64 -macosx_version_min 10.13.0 -syslibroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-o cmTC_4141b -search_paths_first -headerpad_max_install_names -v
CMakeFiles/cmTC_4141b.dir/CMakeCCompilerABI.c.o -lSystem
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/9.0.0/lib/darwin/libclang_rt.osx.a
@(#)PROGRAM:ld  PROJECT:ld64-305
configured to support archs: armv6 armv7 armv7s arm64 i386 x86_64 x86_64h
armv6m armv7k armv7m armv7em (tvOS)
Library search paths:
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/usr/lib
Framework search paths:
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/System/Library/Frameworks/


Parsed C implicit link information from above output:
  link line regex: [^(
*|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*(
|$)]
  ignore line: [Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp]
  ignore line: []
  ignore line: [Run Build Command:"/usr/bin/make" "cmTC_4141b/fast"]
  ignore line: [/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_4141b.dir/build.make CMakeFiles/cmTC_4141b.dir/build]
  ignore line: [Building C object
CMakeFiles/cmTC_4141b.dir/CMakeCCompilerABI.c.o]
  ignore line:
[/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
 -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -o CMakeFiles/cmTC_4141b.dir/CMakeCCompilerABI.c.o   -c
/usr/local/Cellar/cmake/3.10.1/share/cmake/Modules/CMakeCCompilerABI.c]
  ignore line: [Linking C executable cmTC_4141b]
  ignore line: [/usr/local/Cellar/cmake/3.10.1/bin/cmake -E
cmake_link_script CMakeFiles/cmTC_4141b.dir/link.txt --verbose=1]
  ignore line:
[/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
 -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names  -v -Wl,-v
CMakeFiles/cmTC_4141b.dir/CMakeCCompilerABI.c.o  -o cmTC_4141b ]
  ignore line: [Apple LLVM version 9.0.0 (clang-900.0.39.2)]
  ignore line: [Target: x86_64-apple-darwin17.2.0]
  ignore line: [Thread model: posix]
  ignore line: [InstalledDir:
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin]
  link line: [
"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld"
-demangle -lto_library
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/libLTO.dylib
-dynamic -arch x86_64 -macosx_version_min 10.13.0 -syslibroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-o cmTC_4141b -search_paths_first -headerpad_max_install_names -v
CMakeFiles/cmTC_4141b.dir/CMakeCCompilerABI.c.o -lSystem
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/9.0.0/lib/darwin/libclang_rt.osx.a]
    arg
[/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld]
==> ignore
    arg [-demangle] ==> ignore
    arg [-lto_library] ==> ignore, skip following value
    arg
[/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/libLTO.dylib]
==> skip value of -lto_library
    arg [-dynamic] ==> ignore
    arg [-arch] ==> ignore
    arg [x86_64] ==> ignore
    arg [-macosx_version_min] ==> ignore
    arg [10.13.0] ==> ignore
    arg [-syslibroot] ==> ignore
    arg
[/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk]
==> ignore
    arg [-o] ==> ignore
    arg [cmTC_4141b] ==> ignore
    arg [-search_paths_first] ==> ignore
    arg [-headerpad_max_install_names] ==> ignore
    arg [-v] ==> ignore
    arg [CMakeFiles/cmTC_4141b.dir/CMakeCCompilerABI.c.o] ==> ignore
    arg [-lSystem] ==> lib [System]
    arg
[/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/9.0.0/lib/darwin/libclang_rt.osx.a]
==> lib
[/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/9.0.0/lib/darwin/libclang_rt.osx.a]
  Library search paths:
[;/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/usr/lib]
  Framework search paths:
[;/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/System/Library/Frameworks/]
  remove lib [System]
  remove lib
[/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/9.0.0/lib/darwin/libclang_rt.osx.a]
  collapse library dir
[/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/usr/lib]
==>
[/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/usr/lib]
  collapse framework dir
[/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/System/Library/Frameworks/]
==>
[/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/System/Library/Frameworks]
  implicit libs: []
  implicit dirs:
[/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/usr/lib]
  implicit fwks:
[/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/System/Library/Frameworks]




Detecting C [-std=c11] compiler features compiled with the following output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_6d580/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_6d580.dir/build.make CMakeFiles/cmTC_6d580.dir/build
Building C object CMakeFiles/cmTC_6d580.dir/feature_tests.c.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
 -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -std=c11 -o CMakeFiles/cmTC_6d580.dir/feature_tests.c.o   -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/feature_tests.c
Linking C executable cmTC_6d580
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_6d580.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
 -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_6d580.dir/feature_tests.c.o  -o cmTC_6d580


    Feature record: C_FEATURE:1c_function_prototypes
    Feature record: C_FEATURE:1c_restrict
    Feature record: C_FEATURE:1c_static_assert
    Feature record: C_FEATURE:1c_variadic_macros


Detecting C [-std=c99] compiler features compiled with the following output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_9aab9/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_9aab9.dir/build.make CMakeFiles/cmTC_9aab9.dir/build
Building C object CMakeFiles/cmTC_9aab9.dir/feature_tests.c.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
 -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -std=c99 -o CMakeFiles/cmTC_9aab9.dir/feature_tests.c.o   -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/feature_tests.c
Linking C executable cmTC_9aab9
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_9aab9.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
 -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_9aab9.dir/feature_tests.c.o  -o cmTC_9aab9


    Feature record: C_FEATURE:1c_function_prototypes
    Feature record: C_FEATURE:1c_restrict
    Feature record: C_FEATURE:0c_static_assert
    Feature record: C_FEATURE:1c_variadic_macros


Detecting C [-std=c90] compiler features compiled with the following output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_9acb2/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_9acb2.dir/build.make CMakeFiles/cmTC_9acb2.dir/build
Building C object CMakeFiles/cmTC_9acb2.dir/feature_tests.c.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
 -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -std=c90 -o CMakeFiles/cmTC_9acb2.dir/feature_tests.c.o   -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/feature_tests.c
Linking C executable cmTC_9acb2
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_9acb2.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
 -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_9acb2.dir/feature_tests.c.o  -o cmTC_9acb2


    Feature record: C_FEATURE:1c_function_prototypes
    Feature record: C_FEATURE:0c_restrict
    Feature record: C_FEATURE:0c_static_assert
    Feature record: C_FEATURE:0c_variadic_macros
Determining if the CXX compiler works passed with the following output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_426aa/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_426aa.dir/build.make CMakeFiles/cmTC_426aa.dir/build
Building CXX object CMakeFiles/cmTC_426aa.dir/testCXXCompiler.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
  -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -o CMakeFiles/cmTC_426aa.dir/testCXXCompiler.cxx.o -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/testCXXCompiler.cxx
Linking CXX executable cmTC_426aa
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_426aa.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
  -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_426aa.dir/testCXXCompiler.cxx.o  -o cmTC_426aa


Detecting CXX compiler ABI info compiled with the following output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_36284/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_36284.dir/build.make CMakeFiles/cmTC_36284.dir/build
Building CXX object CMakeFiles/cmTC_36284.dir/CMakeCXXCompilerABI.cpp.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
  -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -o CMakeFiles/cmTC_36284.dir/CMakeCXXCompilerABI.cpp.o -c
/usr/local/Cellar/cmake/3.10.1/share/cmake/Modules/CMakeCXXCompilerABI.cpp
Linking CXX executable cmTC_36284
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_36284.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
  -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names  -v -Wl,-v
CMakeFiles/cmTC_36284.dir/CMakeCXXCompilerABI.cpp.o  -o cmTC_36284
Apple LLVM version 9.0.0 (clang-900.0.39.2)
Target: x86_64-apple-darwin17.2.0
Thread model: posix
InstalledDir:
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin
 "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld"
-demangle -lto_library
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/libLTO.dylib
-dynamic -arch x86_64 -macosx_version_min 10.13.0 -syslibroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-o cmTC_36284 -search_paths_first -headerpad_max_install_names -v
CMakeFiles/cmTC_36284.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lSystem
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/9.0.0/lib/darwin/libclang_rt.osx.a
@(#)PROGRAM:ld  PROJECT:ld64-305
configured to support archs: armv6 armv7 armv7s arm64 i386 x86_64 x86_64h
armv6m armv7k armv7m armv7em (tvOS)
Library search paths:
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/usr/lib
Framework search paths:
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/System/Library/Frameworks/


Parsed CXX implicit link information from above output:
  link line regex: [^(
*|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*(
|$)]
  ignore line: [Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp]
  ignore line: []
  ignore line: [Run Build Command:"/usr/bin/make" "cmTC_36284/fast"]
  ignore line: [/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_36284.dir/build.make CMakeFiles/cmTC_36284.dir/build]
  ignore line: [Building CXX object
CMakeFiles/cmTC_36284.dir/CMakeCXXCompilerABI.cpp.o]
  ignore line:
[/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
  -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -o CMakeFiles/cmTC_36284.dir/CMakeCXXCompilerABI.cpp.o -c
/usr/local/Cellar/cmake/3.10.1/share/cmake/Modules/CMakeCXXCompilerABI.cpp]
  ignore line: [Linking CXX executable cmTC_36284]
  ignore line: [/usr/local/Cellar/cmake/3.10.1/bin/cmake -E
cmake_link_script CMakeFiles/cmTC_36284.dir/link.txt --verbose=1]
  ignore line:
[/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
  -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names  -v -Wl,-v
CMakeFiles/cmTC_36284.dir/CMakeCXXCompilerABI.cpp.o  -o cmTC_36284 ]
  ignore line: [Apple LLVM version 9.0.0 (clang-900.0.39.2)]
  ignore line: [Target: x86_64-apple-darwin17.2.0]
  ignore line: [Thread model: posix]
  ignore line: [InstalledDir:
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin]
  link line: [
"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld"
-demangle -lto_library
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/libLTO.dylib
-dynamic -arch x86_64 -macosx_version_min 10.13.0 -syslibroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-o cmTC_36284 -search_paths_first -headerpad_max_install_names -v
CMakeFiles/cmTC_36284.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lSystem
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/9.0.0/lib/darwin/libclang_rt.osx.a]
    arg
[/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld]
==> ignore
    arg [-demangle] ==> ignore
    arg [-lto_library] ==> ignore, skip following value
    arg
[/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/libLTO.dylib]
==> skip value of -lto_library
    arg [-dynamic] ==> ignore
    arg [-arch] ==> ignore
    arg [x86_64] ==> ignore
    arg [-macosx_version_min] ==> ignore
    arg [10.13.0] ==> ignore
    arg [-syslibroot] ==> ignore
    arg
[/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk]
==> ignore
    arg [-o] ==> ignore
    arg [cmTC_36284] ==> ignore
    arg [-search_paths_first] ==> ignore
    arg [-headerpad_max_install_names] ==> ignore
    arg [-v] ==> ignore
    arg [CMakeFiles/cmTC_36284.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore
    arg [-lc++] ==> lib [c++]
    arg [-lSystem] ==> lib [System]
    arg
[/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/9.0.0/lib/darwin/libclang_rt.osx.a]
==> lib
[/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/9.0.0/lib/darwin/libclang_rt.osx.a]
  Library search paths:
[;/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/usr/lib]
  Framework search paths:
[;/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/System/Library/Frameworks/]
  remove lib [System]
  remove lib
[/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/9.0.0/lib/darwin/libclang_rt.osx.a]
  collapse library dir
[/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/usr/lib]
==>
[/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/usr/lib]
  collapse framework dir
[/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/System/Library/Frameworks/]
==>
[/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/System/Library/Frameworks]
  implicit libs: [c++]
  implicit dirs:
[/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/usr/lib]
  implicit fwks:
[/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/System/Library/Frameworks]




Detecting CXX [-std=c++1z] compiler features compiled with the following
output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_01ed1/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_01ed1.dir/build.make CMakeFiles/cmTC_01ed1.dir/build
Building CXX object CMakeFiles/cmTC_01ed1.dir/feature_tests.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
  -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -std=c++1z -o CMakeFiles/cmTC_01ed1.dir/feature_tests.cxx.o -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/feature_tests.cxx
Linking CXX executable cmTC_01ed1
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_01ed1.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
  -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_01ed1.dir/feature_tests.cxx.o  -o cmTC_01ed1


    Feature record: CXX_FEATURE:1cxx_aggregate_default_initializers
    Feature record: CXX_FEATURE:1cxx_alias_templates
    Feature record: CXX_FEATURE:1cxx_alignas
    Feature record: CXX_FEATURE:1cxx_alignof
    Feature record: CXX_FEATURE:1cxx_attributes
    Feature record: CXX_FEATURE:1cxx_attribute_deprecated
    Feature record: CXX_FEATURE:1cxx_auto_type
    Feature record: CXX_FEATURE:1cxx_binary_literals
    Feature record: CXX_FEATURE:1cxx_constexpr
    Feature record: CXX_FEATURE:1cxx_contextual_conversions
    Feature record: CXX_FEATURE:1cxx_decltype
    Feature record: CXX_FEATURE:1cxx_decltype_auto
    Feature record: CXX_FEATURE:1cxx_decltype_incomplete_return_types
    Feature record: CXX_FEATURE:1cxx_default_function_template_args
    Feature record: CXX_FEATURE:1cxx_defaulted_functions
    Feature record: CXX_FEATURE:1cxx_defaulted_move_initializers
    Feature record: CXX_FEATURE:1cxx_delegating_constructors
    Feature record: CXX_FEATURE:1cxx_deleted_functions
    Feature record: CXX_FEATURE:1cxx_digit_separators
    Feature record: CXX_FEATURE:1cxx_enum_forward_declarations
    Feature record: CXX_FEATURE:1cxx_explicit_conversions
    Feature record: CXX_FEATURE:1cxx_extended_friend_declarations
    Feature record: CXX_FEATURE:1cxx_extern_templates
    Feature record: CXX_FEATURE:1cxx_final
    Feature record: CXX_FEATURE:1cxx_func_identifier
    Feature record: CXX_FEATURE:1cxx_generalized_initializers
    Feature record: CXX_FEATURE:1cxx_generic_lambdas
    Feature record: CXX_FEATURE:1cxx_inheriting_constructors
    Feature record: CXX_FEATURE:1cxx_inline_namespaces
    Feature record: CXX_FEATURE:1cxx_lambdas
    Feature record: CXX_FEATURE:1cxx_lambda_init_captures
    Feature record: CXX_FEATURE:1cxx_local_type_template_args
    Feature record: CXX_FEATURE:1cxx_long_long_type
    Feature record: CXX_FEATURE:1cxx_noexcept
    Feature record: CXX_FEATURE:1cxx_nonstatic_member_init
    Feature record: CXX_FEATURE:1cxx_nullptr
    Feature record: CXX_FEATURE:1cxx_override
    Feature record: CXX_FEATURE:1cxx_range_for
    Feature record: CXX_FEATURE:1cxx_raw_string_literals
    Feature record: CXX_FEATURE:1cxx_reference_qualified_functions
    Feature record: CXX_FEATURE:1cxx_relaxed_constexpr
    Feature record: CXX_FEATURE:1cxx_return_type_deduction
    Feature record: CXX_FEATURE:1cxx_right_angle_brackets
    Feature record: CXX_FEATURE:1cxx_rvalue_references
    Feature record: CXX_FEATURE:1cxx_sizeof_member
    Feature record: CXX_FEATURE:1cxx_static_assert
    Feature record: CXX_FEATURE:1cxx_strong_enums
    Feature record: CXX_FEATURE:1cxx_template_template_parameters
    Feature record: CXX_FEATURE:1cxx_thread_local
    Feature record: CXX_FEATURE:1cxx_trailing_return_types
    Feature record: CXX_FEATURE:1cxx_unicode_literals
    Feature record: CXX_FEATURE:1cxx_uniform_initialization
    Feature record: CXX_FEATURE:1cxx_unrestricted_unions
    Feature record: CXX_FEATURE:1cxx_user_literals
    Feature record: CXX_FEATURE:1cxx_variable_templates
    Feature record: CXX_FEATURE:1cxx_variadic_macros
    Feature record: CXX_FEATURE:1cxx_variadic_templates


Detecting CXX [-std=c++14] compiler features compiled with the following
output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_df532/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_df532.dir/build.make CMakeFiles/cmTC_df532.dir/build
Building CXX object CMakeFiles/cmTC_df532.dir/feature_tests.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
  -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -std=c++14 -o CMakeFiles/cmTC_df532.dir/feature_tests.cxx.o -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/feature_tests.cxx
Linking CXX executable cmTC_df532
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_df532.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
  -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_df532.dir/feature_tests.cxx.o  -o cmTC_df532


    Feature record: CXX_FEATURE:1cxx_aggregate_default_initializers
    Feature record: CXX_FEATURE:1cxx_alias_templates
    Feature record: CXX_FEATURE:1cxx_alignas
    Feature record: CXX_FEATURE:1cxx_alignof
    Feature record: CXX_FEATURE:1cxx_attributes
    Feature record: CXX_FEATURE:1cxx_attribute_deprecated
    Feature record: CXX_FEATURE:1cxx_auto_type
    Feature record: CXX_FEATURE:1cxx_binary_literals
    Feature record: CXX_FEATURE:1cxx_constexpr
    Feature record: CXX_FEATURE:1cxx_contextual_conversions
    Feature record: CXX_FEATURE:1cxx_decltype
    Feature record: CXX_FEATURE:1cxx_decltype_auto
    Feature record: CXX_FEATURE:1cxx_decltype_incomplete_return_types
    Feature record: CXX_FEATURE:1cxx_default_function_template_args
    Feature record: CXX_FEATURE:1cxx_defaulted_functions
    Feature record: CXX_FEATURE:1cxx_defaulted_move_initializers
    Feature record: CXX_FEATURE:1cxx_delegating_constructors
    Feature record: CXX_FEATURE:1cxx_deleted_functions
    Feature record: CXX_FEATURE:1cxx_digit_separators
    Feature record: CXX_FEATURE:1cxx_enum_forward_declarations
    Feature record: CXX_FEATURE:1cxx_explicit_conversions
    Feature record: CXX_FEATURE:1cxx_extended_friend_declarations
    Feature record: CXX_FEATURE:1cxx_extern_templates
    Feature record: CXX_FEATURE:1cxx_final
    Feature record: CXX_FEATURE:1cxx_func_identifier
    Feature record: CXX_FEATURE:1cxx_generalized_initializers
    Feature record: CXX_FEATURE:1cxx_generic_lambdas
    Feature record: CXX_FEATURE:1cxx_inheriting_constructors
    Feature record: CXX_FEATURE:1cxx_inline_namespaces
    Feature record: CXX_FEATURE:1cxx_lambdas
    Feature record: CXX_FEATURE:1cxx_lambda_init_captures
    Feature record: CXX_FEATURE:1cxx_local_type_template_args
    Feature record: CXX_FEATURE:1cxx_long_long_type
    Feature record: CXX_FEATURE:1cxx_noexcept
    Feature record: CXX_FEATURE:1cxx_nonstatic_member_init
    Feature record: CXX_FEATURE:1cxx_nullptr
    Feature record: CXX_FEATURE:1cxx_override
    Feature record: CXX_FEATURE:1cxx_range_for
    Feature record: CXX_FEATURE:1cxx_raw_string_literals
    Feature record: CXX_FEATURE:1cxx_reference_qualified_functions
    Feature record: CXX_FEATURE:1cxx_relaxed_constexpr
    Feature record: CXX_FEATURE:1cxx_return_type_deduction
    Feature record: CXX_FEATURE:1cxx_right_angle_brackets
    Feature record: CXX_FEATURE:1cxx_rvalue_references
    Feature record: CXX_FEATURE:1cxx_sizeof_member
    Feature record: CXX_FEATURE:1cxx_static_assert
    Feature record: CXX_FEATURE:1cxx_strong_enums
    Feature record: CXX_FEATURE:1cxx_template_template_parameters
    Feature record: CXX_FEATURE:1cxx_thread_local
    Feature record: CXX_FEATURE:1cxx_trailing_return_types
    Feature record: CXX_FEATURE:1cxx_unicode_literals
    Feature record: CXX_FEATURE:1cxx_uniform_initialization
    Feature record: CXX_FEATURE:1cxx_unrestricted_unions
    Feature record: CXX_FEATURE:1cxx_user_literals
    Feature record: CXX_FEATURE:1cxx_variable_templates
    Feature record: CXX_FEATURE:1cxx_variadic_macros
    Feature record: CXX_FEATURE:1cxx_variadic_templates


Detecting CXX [-std=c++11] compiler features compiled with the following
output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_55647/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_55647.dir/build.make CMakeFiles/cmTC_55647.dir/build
Building CXX object CMakeFiles/cmTC_55647.dir/feature_tests.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
  -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -std=c++11 -o CMakeFiles/cmTC_55647.dir/feature_tests.cxx.o -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/feature_tests.cxx
Linking CXX executable cmTC_55647
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_55647.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
  -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_55647.dir/feature_tests.cxx.o  -o cmTC_55647


    Feature record: CXX_FEATURE:0cxx_aggregate_default_initializers
    Feature record: CXX_FEATURE:1cxx_alias_templates
    Feature record: CXX_FEATURE:1cxx_alignas
    Feature record: CXX_FEATURE:1cxx_alignof
    Feature record: CXX_FEATURE:1cxx_attributes
    Feature record: CXX_FEATURE:0cxx_attribute_deprecated
    Feature record: CXX_FEATURE:1cxx_auto_type
    Feature record: CXX_FEATURE:0cxx_binary_literals
    Feature record: CXX_FEATURE:1cxx_constexpr
    Feature record: CXX_FEATURE:0cxx_contextual_conversions
    Feature record: CXX_FEATURE:1cxx_decltype
    Feature record: CXX_FEATURE:0cxx_decltype_auto
    Feature record: CXX_FEATURE:1cxx_decltype_incomplete_return_types
    Feature record: CXX_FEATURE:1cxx_default_function_template_args
    Feature record: CXX_FEATURE:1cxx_defaulted_functions
    Feature record: CXX_FEATURE:1cxx_defaulted_move_initializers
    Feature record: CXX_FEATURE:1cxx_delegating_constructors
    Feature record: CXX_FEATURE:1cxx_deleted_functions
    Feature record: CXX_FEATURE:0cxx_digit_separators
    Feature record: CXX_FEATURE:1cxx_enum_forward_declarations
    Feature record: CXX_FEATURE:1cxx_explicit_conversions
    Feature record: CXX_FEATURE:1cxx_extended_friend_declarations
    Feature record: CXX_FEATURE:1cxx_extern_templates
    Feature record: CXX_FEATURE:1cxx_final
    Feature record: CXX_FEATURE:1cxx_func_identifier
    Feature record: CXX_FEATURE:1cxx_generalized_initializers
    Feature record: CXX_FEATURE:0cxx_generic_lambdas
    Feature record: CXX_FEATURE:1cxx_inheriting_constructors
    Feature record: CXX_FEATURE:1cxx_inline_namespaces
    Feature record: CXX_FEATURE:1cxx_lambdas
    Feature record: CXX_FEATURE:0cxx_lambda_init_captures
    Feature record: CXX_FEATURE:1cxx_local_type_template_args
    Feature record: CXX_FEATURE:1cxx_long_long_type
    Feature record: CXX_FEATURE:1cxx_noexcept
    Feature record: CXX_FEATURE:1cxx_nonstatic_member_init
    Feature record: CXX_FEATURE:1cxx_nullptr
    Feature record: CXX_FEATURE:1cxx_override
    Feature record: CXX_FEATURE:1cxx_range_for
    Feature record: CXX_FEATURE:1cxx_raw_string_literals
    Feature record: CXX_FEATURE:1cxx_reference_qualified_functions
    Feature record: CXX_FEATURE:0cxx_relaxed_constexpr
    Feature record: CXX_FEATURE:0cxx_return_type_deduction
    Feature record: CXX_FEATURE:1cxx_right_angle_brackets
    Feature record: CXX_FEATURE:1cxx_rvalue_references
    Feature record: CXX_FEATURE:1cxx_sizeof_member
    Feature record: CXX_FEATURE:1cxx_static_assert
    Feature record: CXX_FEATURE:1cxx_strong_enums
    Feature record: CXX_FEATURE:1cxx_template_template_parameters
    Feature record: CXX_FEATURE:1cxx_thread_local
    Feature record: CXX_FEATURE:1cxx_trailing_return_types
    Feature record: CXX_FEATURE:1cxx_unicode_literals
    Feature record: CXX_FEATURE:1cxx_uniform_initialization
    Feature record: CXX_FEATURE:1cxx_unrestricted_unions
    Feature record: CXX_FEATURE:1cxx_user_literals
    Feature record: CXX_FEATURE:0cxx_variable_templates
    Feature record: CXX_FEATURE:1cxx_variadic_macros
    Feature record: CXX_FEATURE:1cxx_variadic_templates


Detecting CXX [-std=c++98] compiler features compiled with the following
output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_ff15c/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_ff15c.dir/build.make CMakeFiles/cmTC_ff15c.dir/build
Building CXX object CMakeFiles/cmTC_ff15c.dir/feature_tests.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
  -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -std=c++98 -o CMakeFiles/cmTC_ff15c.dir/feature_tests.cxx.o -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/feature_tests.cxx
Linking CXX executable cmTC_ff15c
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_ff15c.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
  -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_ff15c.dir/feature_tests.cxx.o  -o cmTC_ff15c


    Feature record: CXX_FEATURE:0cxx_aggregate_default_initializers
    Feature record: CXX_FEATURE:0cxx_alias_templates
    Feature record: CXX_FEATURE:0cxx_alignas
    Feature record: CXX_FEATURE:0cxx_alignof
    Feature record: CXX_FEATURE:0cxx_attributes
    Feature record: CXX_FEATURE:0cxx_attribute_deprecated
    Feature record: CXX_FEATURE:0cxx_auto_type
    Feature record: CXX_FEATURE:0cxx_binary_literals
    Feature record: CXX_FEATURE:0cxx_constexpr
    Feature record: CXX_FEATURE:0cxx_contextual_conversions
    Feature record: CXX_FEATURE:0cxx_decltype
    Feature record: CXX_FEATURE:0cxx_decltype_auto
    Feature record: CXX_FEATURE:0cxx_decltype_incomplete_return_types
    Feature record: CXX_FEATURE:0cxx_default_function_template_args
    Feature record: CXX_FEATURE:0cxx_defaulted_functions
    Feature record: CXX_FEATURE:0cxx_defaulted_move_initializers
    Feature record: CXX_FEATURE:0cxx_delegating_constructors
    Feature record: CXX_FEATURE:0cxx_deleted_functions
    Feature record: CXX_FEATURE:0cxx_digit_separators
    Feature record: CXX_FEATURE:0cxx_enum_forward_declarations
    Feature record: CXX_FEATURE:0cxx_explicit_conversions
    Feature record: CXX_FEATURE:0cxx_extended_friend_declarations
    Feature record: CXX_FEATURE:0cxx_extern_templates
    Feature record: CXX_FEATURE:0cxx_final
    Feature record: CXX_FEATURE:0cxx_func_identifier
    Feature record: CXX_FEATURE:0cxx_generalized_initializers
    Feature record: CXX_FEATURE:0cxx_generic_lambdas
    Feature record: CXX_FEATURE:0cxx_inheriting_constructors
    Feature record: CXX_FEATURE:0cxx_inline_namespaces
    Feature record: CXX_FEATURE:0cxx_lambdas
    Feature record: CXX_FEATURE:0cxx_lambda_init_captures
    Feature record: CXX_FEATURE:0cxx_local_type_template_args
    Feature record: CXX_FEATURE:0cxx_long_long_type
    Feature record: CXX_FEATURE:0cxx_noexcept
    Feature record: CXX_FEATURE:0cxx_nonstatic_member_init
    Feature record: CXX_FEATURE:0cxx_nullptr
    Feature record: CXX_FEATURE:0cxx_override
    Feature record: CXX_FEATURE:0cxx_range_for
    Feature record: CXX_FEATURE:0cxx_raw_string_literals
    Feature record: CXX_FEATURE:0cxx_reference_qualified_functions
    Feature record: CXX_FEATURE:0cxx_relaxed_constexpr
    Feature record: CXX_FEATURE:0cxx_return_type_deduction
    Feature record: CXX_FEATURE:0cxx_right_angle_brackets
    Feature record: CXX_FEATURE:0cxx_rvalue_references
    Feature record: CXX_FEATURE:0cxx_sizeof_member
    Feature record: CXX_FEATURE:0cxx_static_assert
    Feature record: CXX_FEATURE:0cxx_strong_enums
    Feature record: CXX_FEATURE:1cxx_template_template_parameters
    Feature record: CXX_FEATURE:0cxx_thread_local
    Feature record: CXX_FEATURE:0cxx_trailing_return_types
    Feature record: CXX_FEATURE:0cxx_unicode_literals
    Feature record: CXX_FEATURE:0cxx_uniform_initialization
    Feature record: CXX_FEATURE:0cxx_unrestricted_unions
    Feature record: CXX_FEATURE:0cxx_user_literals
    Feature record: CXX_FEATURE:0cxx_variable_templates
    Feature record: CXX_FEATURE:0cxx_variadic_macros
    Feature record: CXX_FEATURE:0cxx_variadic_templates
Determining if files
termios.h;unistd.h;stdlib.h;stdio.h;errno.h;string.h;stdlib.h;ctype.h;sys/types.h;sys/ioctl.h;unistd.h
exist passed with the following output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_54100/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_54100.dir/build.make CMakeFiles/cmTC_54100.dir/build
Building C object CMakeFiles/cmTC_54100.dir/CheckIncludeFiles.c.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
 -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -o CMakeFiles/cmTC_54100.dir/CheckIncludeFiles.c.o   -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckIncludeFiles.c
Linking C executable cmTC_54100
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_54100.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
 -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_54100.dir/CheckIncludeFiles.c.o  -o cmTC_54100


Determining if the include file pthread.h exists passed with the following
output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_63bb8/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_63bb8.dir/build.make CMakeFiles/cmTC_63bb8.dir/build
Building C object CMakeFiles/cmTC_63bb8.dir/CheckIncludeFile.c.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
 -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -o CMakeFiles/cmTC_63bb8.dir/CheckIncludeFile.c.o   -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
Linking C executable cmTC_63bb8
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_63bb8.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
 -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_63bb8.dir/CheckIncludeFile.c.o  -o cmTC_63bb8


Determining if the pthread_create exist passed with the following output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_65413/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_65413.dir/build.make CMakeFiles/cmTC_65413.dir/build
Building C object CMakeFiles/cmTC_65413.dir/CheckSymbolExists.c.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
 -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -o CMakeFiles/cmTC_65413.dir/CheckSymbolExists.c.o   -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckSymbolExists.c
Linking C executable cmTC_65413
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_65413.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
 -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_65413.dir/CheckSymbolExists.c.o  -o cmTC_65413

File
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckSymbolExists.c:
/* */
#include <pthread.h>

int main(int argc, char** argv)
{
  (void)argv;
#ifndef pthread_create
  return ((int*)(&pthread_create))[argc];
#else
  (void)argc;
  return 0;
#endif
}

Performing C++ SOURCE FILE Test CXX_COMPILER_SUPPORTS_CPP14 succeeded with
the following output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_8dc9d/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_8dc9d.dir/build.make CMakeFiles/cmTC_8dc9d.dir/build
Building CXX object CMakeFiles/cmTC_8dc9d.dir/src.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
  -DCXX_COMPILER_SUPPORTS_CPP14 -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -std=c++14 -o CMakeFiles/cmTC_8dc9d.dir/src.cxx.o -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_8dc9d
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_8dc9d.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
 -DCXX_COMPILER_SUPPORTS_CPP14 -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_8dc9d.dir/src.cxx.o  -o cmTC_8dc9d

Source file was:
int main() { return 0; }
Performing C++ SOURCE FILE Test COMPILER_HAS_WALL succeeded with the
following output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_42823/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_42823.dir/build.make CMakeFiles/cmTC_42823.dir/build
Building CXX object CMakeFiles/cmTC_42823.dir/src.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
  -std=c++14 -DCOMPILER_HAS_WALL -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -Wall -o CMakeFiles/cmTC_42823.dir/src.cxx.o -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_42823
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_42823.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
 -std=c++14 -DCOMPILER_HAS_WALL -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_42823.dir/src.cxx.o  -o cmTC_42823

Source file was:
int main() { return 0; }
Performing C++ SOURCE FILE Test COMPILER_HAS_PEDANTIC succeeded with the
following output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_80e65/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_80e65.dir/build.make CMakeFiles/cmTC_80e65.dir/build
Building CXX object CMakeFiles/cmTC_80e65.dir/src.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
  -std=c++14 -Wall -DCOMPILER_HAS_PEDANTIC -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -pedantic -o CMakeFiles/cmTC_80e65.dir/src.cxx.o -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_80e65
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_80e65.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
 -std=c++14 -Wall -DCOMPILER_HAS_PEDANTIC -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_80e65.dir/src.cxx.o  -o cmTC_80e65

Source file was:
int main() { return 0; }
Performing C++ SOURCE FILE Test COMPILER_HAS_WNO_EXTENDED_OFFSETOF
succeeded with the following output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_8e943/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_8e943.dir/build.make CMakeFiles/cmTC_8e943.dir/build
Building CXX object CMakeFiles/cmTC_8e943.dir/src.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
  -std=c++14 -Wall -pedantic -DCOMPILER_HAS_WNO_EXTENDED_OFFSETOF -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -Wno-extended-offsetof -o CMakeFiles/cmTC_8e943.dir/src.cxx.o -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_8e943
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_8e943.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
 -std=c++14 -Wall -pedantic -DCOMPILER_HAS_WNO_EXTENDED_OFFSETOF -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_8e943.dir/src.cxx.o  -o cmTC_8e943

Source file was:
int main() { return 0; }
Performing C++ SOURCE FILE Test COMPILER_HAS_WNO_DEPRECATED succeeded with
the following output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_dbaf4/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_dbaf4.dir/build.make CMakeFiles/cmTC_dbaf4.dir/build
Building CXX object CMakeFiles/cmTC_dbaf4.dir/src.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
  -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-DCOMPILER_HAS_WNO_DEPRECATED -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -Wno-error=deprecated-declarations -o CMakeFiles/cmTC_dbaf4.dir/src.cxx.o
-c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_dbaf4
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_dbaf4.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
 -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-DCOMPILER_HAS_WNO_DEPRECATED -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_dbaf4.dir/src.cxx.o  -o cmTC_dbaf4

Source file was:
int main() { return 0; }
Performing C++ SOURCE FILE Test CLANG_HAS_MARCH_NATIVE succeeded with the
following output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_a1785/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_a1785.dir/build.make CMakeFiles/cmTC_a1785.dir/build
Building CXX object CMakeFiles/cmTC_a1785.dir/src.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
  -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -DCLANG_HAS_MARCH_NATIVE -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -march=native -o CMakeFiles/cmTC_a1785.dir/src.cxx.o -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_a1785
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_a1785.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
 -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -DCLANG_HAS_MARCH_NATIVE -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_a1785.dir/src.cxx.o  -o cmTC_a1785

Source file was:
int main() { return 0; }
Performing C++ SOURCE FILE Test HAVE_CXX_FLAG_STD_CXX11 succeeded with the
following output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_66e80/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_66e80.dir/build.make CMakeFiles/cmTC_66e80.dir/build
Building CXX object CMakeFiles/cmTC_66e80.dir/src.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
  -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native -DHAVE_CXX_FLAG_STD_CXX11
-std=c++11 -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -std=c++11 -o CMakeFiles/cmTC_66e80.dir/src.cxx.o -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_66e80
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_66e80.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
 -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native -DHAVE_CXX_FLAG_STD_CXX11
-std=c++11 -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_66e80.dir/src.cxx.o  -o cmTC_66e80

Source file was:
int main() { return 0; }
Performing C++ SOURCE FILE Test HAVE_CXX_FLAG_WALL succeeded with the
following output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_99388/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_99388.dir/build.make CMakeFiles/cmTC_99388.dir/build
Building CXX object CMakeFiles/cmTC_99388.dir/src.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
  -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native -std=c++11
-DHAVE_CXX_FLAG_WALL -Wall -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -Wall -o CMakeFiles/cmTC_99388.dir/src.cxx.o -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_99388
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_99388.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
 -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native -std=c++11
-DHAVE_CXX_FLAG_WALL -Wall -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_99388.dir/src.cxx.o  -o cmTC_99388

Source file was:
int main() { return 0; }
Performing C++ SOURCE FILE Test HAVE_CXX_FLAG_WEXTRA succeeded with the
following output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_341fe/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_341fe.dir/build.make CMakeFiles/cmTC_341fe.dir/build
Building CXX object CMakeFiles/cmTC_341fe.dir/src.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
  -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native -std=c++11 -Wall
-DHAVE_CXX_FLAG_WEXTRA -Wextra -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -Wextra -o CMakeFiles/cmTC_341fe.dir/src.cxx.o -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_341fe
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_341fe.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
 -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native -std=c++11 -Wall
-DHAVE_CXX_FLAG_WEXTRA -Wextra -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_341fe.dir/src.cxx.o  -o cmTC_341fe

Source file was:
int main() { return 0; }
Performing C++ SOURCE FILE Test HAVE_CXX_FLAG_WSHADOW succeeded with the
following output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_66a80/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_66a80.dir/build.make CMakeFiles/cmTC_66a80.dir/build
Building CXX object CMakeFiles/cmTC_66a80.dir/src.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
  -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native -std=c++11 -Wall -Wextra
-DHAVE_CXX_FLAG_WSHADOW -Wshadow -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -Wshadow -o CMakeFiles/cmTC_66a80.dir/src.cxx.o -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_66a80
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_66a80.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
 -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native -std=c++11 -Wall -Wextra
-DHAVE_CXX_FLAG_WSHADOW -Wshadow -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_66a80.dir/src.cxx.o  -o cmTC_66a80

Source file was:
int main() { return 0; }
Performing C++ SOURCE FILE Test HAVE_CXX_FLAG_WERROR succeeded with the
following output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_4eb3b/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_4eb3b.dir/build.make CMakeFiles/cmTC_4eb3b.dir/build
Building CXX object CMakeFiles/cmTC_4eb3b.dir/src.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
  -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native -std=c++11 -Wall -Wextra
-Wshadow -DHAVE_CXX_FLAG_WERROR -Werror -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -Werror -o CMakeFiles/cmTC_4eb3b.dir/src.cxx.o -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_4eb3b
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_4eb3b.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
 -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native -std=c++11 -Wall -Wextra
-Wshadow -DHAVE_CXX_FLAG_WERROR -Werror -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_4eb3b.dir/src.cxx.o  -o cmTC_4eb3b

Source file was:
int main() { return 0; }
Performing C++ SOURCE FILE Test HAVE_CXX_FLAG_PEDANTIC succeeded with the
following output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_75a33/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_75a33.dir/build.make CMakeFiles/cmTC_75a33.dir/build
Building CXX object CMakeFiles/cmTC_75a33.dir/src.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
  -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native -std=c++11 -Wall -Wextra
-Wshadow -DHAVE_CXX_FLAG_PEDANTIC -pedantic -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -pedantic -o CMakeFiles/cmTC_75a33.dir/src.cxx.o -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_75a33
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_75a33.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
 -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native -std=c++11 -Wall -Wextra
-Wshadow -DHAVE_CXX_FLAG_PEDANTIC -pedantic -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_75a33.dir/src.cxx.o  -o cmTC_75a33

Source file was:
int main() { return 0; }
Performing C++ SOURCE FILE Test HAVE_CXX_FLAG_PEDANTIC_ERRORS succeeded
with the following output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_1c259/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_1c259.dir/build.make CMakeFiles/cmTC_1c259.dir/build
Building CXX object CMakeFiles/cmTC_1c259.dir/src.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
  -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native -std=c++11 -Wall -Wextra
-Wshadow -pedantic -DHAVE_CXX_FLAG_PEDANTIC_ERRORS -pedantic-errors
-isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -pedantic-errors -o CMakeFiles/cmTC_1c259.dir/src.cxx.o -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_1c259
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_1c259.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
 -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native -std=c++11 -Wall -Wextra
-Wshadow -pedantic -DHAVE_CXX_FLAG_PEDANTIC_ERRORS -pedantic-errors
-isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_1c259.dir/src.cxx.o  -o cmTC_1c259

Source file was:
int main() { return 0; }
Performing C++ SOURCE FILE Test HAVE_CXX_FLAG_WSHORTEN_64_TO_32 succeeded
with the following output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_47512/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_47512.dir/build.make CMakeFiles/cmTC_47512.dir/build
Building CXX object CMakeFiles/cmTC_47512.dir/src.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
  -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native -std=c++11 -Wall -Wextra
-Wshadow -pedantic -pedantic-errors -DHAVE_CXX_FLAG_WSHORTEN_64_TO_32
-Wshorten-64-to-32 -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -Wshorten-64-to-32 -o CMakeFiles/cmTC_47512.dir/src.cxx.o -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_47512
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_47512.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
 -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native -std=c++11 -Wall -Wextra
-Wshadow -pedantic -pedantic-errors -DHAVE_CXX_FLAG_WSHORTEN_64_TO_32
-Wshorten-64-to-32 -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_47512.dir/src.cxx.o  -o cmTC_47512

Source file was:
int main() { return 0; }
Performing C++ SOURCE FILE Test HAVE_CXX_FLAG_WFLOAT_EQUAL succeeded with
the following output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_b49c9/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_b49c9.dir/build.make CMakeFiles/cmTC_b49c9.dir/build
Building CXX object CMakeFiles/cmTC_b49c9.dir/src.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
  -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native -std=c++11 -Wall -Wextra
-Wshadow -pedantic -pedantic-errors -Wshorten-64-to-32
-DHAVE_CXX_FLAG_WFLOAT_EQUAL -Wfloat-equal -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -Wfloat-equal -o CMakeFiles/cmTC_b49c9.dir/src.cxx.o -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_b49c9
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_b49c9.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
 -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native -std=c++11 -Wall -Wextra
-Wshadow -pedantic -pedantic-errors -Wshorten-64-to-32
-DHAVE_CXX_FLAG_WFLOAT_EQUAL -Wfloat-equal -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_b49c9.dir/src.cxx.o  -o cmTC_b49c9

Source file was:
int main() { return 0; }
Performing C++ SOURCE FILE Test HAVE_CXX_FLAG_FSTRICT_ALIASING succeeded
with the following output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_798c3/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_798c3.dir/build.make CMakeFiles/cmTC_798c3.dir/build
Building CXX object CMakeFiles/cmTC_798c3.dir/src.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
  -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native -std=c++11 -Wall -Wextra
-Wshadow -pedantic -pedantic-errors -Wshorten-64-to-32 -Wfloat-equal
-DHAVE_CXX_FLAG_FSTRICT_ALIASING -fstrict-aliasing -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -fstrict-aliasing -o CMakeFiles/cmTC_798c3.dir/src.cxx.o -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_798c3
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_798c3.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
 -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native -std=c++11 -Wall -Wextra
-Wshadow -pedantic -pedantic-errors -Wshorten-64-to-32 -Wfloat-equal
-DHAVE_CXX_FLAG_FSTRICT_ALIASING -fstrict-aliasing -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_798c3.dir/src.cxx.o  -o cmTC_798c3

Source file was:
int main() { return 0; }
Performing C++ SOURCE FILE Test HAVE_CXX_FLAG_WSTRICT_ALIASING succeeded
with the following output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_ebc72/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_ebc72.dir/build.make CMakeFiles/cmTC_ebc72.dir/build
Building CXX object CMakeFiles/cmTC_ebc72.dir/src.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
  -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native -std=c++11 -Wall -Wextra
-Wshadow -pedantic -pedantic-errors -Wshorten-64-to-32 -Wfloat-equal
-fstrict-aliasing -DHAVE_CXX_FLAG_WSTRICT_ALIASING -Wstrict-aliasing
-isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -Wstrict-aliasing -o CMakeFiles/cmTC_ebc72.dir/src.cxx.o -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_ebc72
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_ebc72.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
 -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native -std=c++11 -Wall -Wextra
-Wshadow -pedantic -pedantic-errors -Wshorten-64-to-32 -Wfloat-equal
-fstrict-aliasing -DHAVE_CXX_FLAG_WSTRICT_ALIASING -Wstrict-aliasing
-isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_ebc72.dir/src.cxx.o  -o cmTC_ebc72

Source file was:
int main() { return 0; }
Performing C++ SOURCE FILE Test HAVE_CXX_FLAG_WTHREAD_SAFETY succeeded with
the following output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_5bf47/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_5bf47.dir/build.make CMakeFiles/cmTC_5bf47.dir/build
Building CXX object CMakeFiles/cmTC_5bf47.dir/src.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
  -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native -std=c++11 -Wall -Wextra
-Wshadow -pedantic -pedantic-errors -Wshorten-64-to-32 -Wfloat-equal
-fstrict-aliasing -Wstrict-aliasing -DHAVE_CXX_FLAG_WTHREAD_SAFETY
-Wthread-safety -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -Wthread-safety -o CMakeFiles/cmTC_5bf47.dir/src.cxx.o -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_5bf47
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_5bf47.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
 -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native -std=c++11 -Wall -Wextra
-Wshadow -pedantic -pedantic-errors -Wshorten-64-to-32 -Wfloat-equal
-fstrict-aliasing -Wstrict-aliasing -DHAVE_CXX_FLAG_WTHREAD_SAFETY
-Wthread-safety -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_5bf47.dir/src.cxx.o  -o cmTC_5bf47

Source file was:
int main() { return 0; }
Performing C++ SOURCE FILE Test HAVE_CXX_FLAG_COVERAGE succeeded with the
following output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_f6db0/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_f6db0.dir/build.make CMakeFiles/cmTC_f6db0.dir/build
Building CXX object CMakeFiles/cmTC_f6db0.dir/src.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
  -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native -std=c++11 -Wall -Wextra
-Wshadow -pedantic -pedantic-errors -Wshorten-64-to-32 -Wfloat-equal
-fstrict-aliasing -Wstrict-aliasing -Wthread-safety
-DHAVE_CXX_FLAG_COVERAGE --coverage -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 --coverage -o CMakeFiles/cmTC_f6db0.dir/src.cxx.o -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_f6db0
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_f6db0.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
 -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native -std=c++11 -Wall -Wextra
-Wshadow -pedantic -pedantic-errors -Wshorten-64-to-32 -Wfloat-equal
-fstrict-aliasing -Wstrict-aliasing -Wthread-safety
-DHAVE_CXX_FLAG_COVERAGE --coverage -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_f6db0.dir/src.cxx.o  -o cmTC_f6db0

Source file was:
int main() { return 0; }
Performing C++ SOURCE FILE Test HAVE_BUILTIN_EXPECT succeeded with the
following output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_23f14/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_23f14.dir/build.make CMakeFiles/cmTC_23f14.dir/build
Building CXX object CMakeFiles/cmTC_23f14.dir/src.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
  -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native -DHAVE_BUILTIN_EXPECT
-isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -o CMakeFiles/cmTC_23f14.dir/src.cxx.o -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_23f14
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_23f14.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
 -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native -DHAVE_BUILTIN_EXPECT
-isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_23f14.dir/src.cxx.o  -o cmTC_23f14

Source file was:

  int main(int argc, char **argv) {
    if (__builtin_expect(argc, 1)) {
      return 0;
    } else {
      return argc;
    }
  }

Determining if the include file sys/types.h exists passed with the
following output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_9a28a/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_9a28a.dir/build.make CMakeFiles/cmTC_9a28a.dir/build
Building C object CMakeFiles/cmTC_9a28a.dir/CheckIncludeFile.c.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
 -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -o CMakeFiles/cmTC_9a28a.dir/CheckIncludeFile.c.o   -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
Linking C executable cmTC_9a28a
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_9a28a.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
 -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_9a28a.dir/CheckIncludeFile.c.o  -o cmTC_9a28a


Determining if the include file stdint.h exists passed with the following
output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_a03d8/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_a03d8.dir/build.make CMakeFiles/cmTC_a03d8.dir/build
Building C object CMakeFiles/cmTC_a03d8.dir/CheckIncludeFile.c.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
 -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -o CMakeFiles/cmTC_a03d8.dir/CheckIncludeFile.c.o   -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
Linking C executable cmTC_a03d8
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_a03d8.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
 -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_a03d8.dir/CheckIncludeFile.c.o  -o cmTC_a03d8


Determining if the include file stddef.h exists passed with the following
output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_cbd73/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_cbd73.dir/build.make CMakeFiles/cmTC_cbd73.dir/build
Building C object CMakeFiles/cmTC_cbd73.dir/CheckIncludeFile.c.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
 -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -o CMakeFiles/cmTC_cbd73.dir/CheckIncludeFile.c.o   -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
Linking C executable cmTC_cbd73
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_cbd73.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
 -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_cbd73.dir/CheckIncludeFile.c.o  -o cmTC_cbd73


Determining size of unsigned short passed with the following output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_6e0c2/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_6e0c2.dir/build.make CMakeFiles/cmTC_6e0c2.dir/build
Building C object CMakeFiles/cmTC_6e0c2.dir/CMAKE_SIZEOF_UNSIGNED_SHORT.c.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
 -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -o CMakeFiles/cmTC_6e0c2.dir/CMAKE_SIZEOF_UNSIGNED_SHORT.c.o   -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CheckTypeSize/CMAKE_SIZEOF_UNSIGNED_SHORT.c
Linking C executable cmTC_6e0c2
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_6e0c2.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
 -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_6e0c2.dir/CMAKE_SIZEOF_UNSIGNED_SHORT.c.o  -o cmTC_6e0c2


Determining if the system is big endian passed with the following output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_496de/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_496de.dir/build.make CMakeFiles/cmTC_496de.dir/build
Building C object CMakeFiles/cmTC_496de.dir/TestEndianess.c.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
 -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -o CMakeFiles/cmTC_496de.dir/TestEndianess.c.o   -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/TestEndianess.c
Linking C executable cmTC_496de
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_496de.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
 -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_496de.dir/TestEndianess.c.o  -o cmTC_496de

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;
}


Performing C++ SOURCE FILE Test COMPILER_HAS_WNO_OVERFLOW succeeded with
the following output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_908d3/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_908d3.dir/build.make CMakeFiles/cmTC_908d3.dir/build
Building CXX object CMakeFiles/cmTC_908d3.dir/src.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
  -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native
-DCOMPILER_HAS_WNO_OVERFLOW -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -Wno-overflow -o CMakeFiles/cmTC_908d3.dir/src.cxx.o -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_908d3
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_908d3.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
 -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native
-DCOMPILER_HAS_WNO_OVERFLOW -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_908d3.dir/src.cxx.o  -o cmTC_908d3

Source file was:
int main() { return 0; }
Determining if the include file unistd.h exists passed with the following
output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_ddd86/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_ddd86.dir/build.make CMakeFiles/cmTC_ddd86.dir/build
Building CXX object CMakeFiles/cmTC_ddd86.dir/CheckIncludeFile.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
  -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native  -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -o CMakeFiles/cmTC_ddd86.dir/CheckIncludeFile.cxx.o -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckIncludeFile.cxx
Linking CXX executable cmTC_ddd86
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_ddd86.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
 -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native  -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_ddd86.dir/CheckIncludeFile.cxx.o  -o cmTC_ddd86


Determining if the include file inttypes.h exists passed with the following
output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_39fd8/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_39fd8.dir/build.make CMakeFiles/cmTC_39fd8.dir/build
Building CXX object CMakeFiles/cmTC_39fd8.dir/CheckIncludeFile.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
  -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native  -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -o CMakeFiles/cmTC_39fd8.dir/CheckIncludeFile.cxx.o -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckIncludeFile.cxx
Linking CXX executable cmTC_39fd8
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_39fd8.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
 -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native  -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_39fd8.dir/CheckIncludeFile.cxx.o  -o cmTC_39fd8


Determining if the include file sys/stat.h exists passed with the following
output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_10cbd/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_10cbd.dir/build.make CMakeFiles/cmTC_10cbd.dir/build
Building CXX object CMakeFiles/cmTC_10cbd.dir/CheckIncludeFile.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
  -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native  -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -o CMakeFiles/cmTC_10cbd.dir/CheckIncludeFile.cxx.o -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckIncludeFile.cxx
Linking CXX executable cmTC_10cbd
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_10cbd.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
 -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native  -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_10cbd.dir/CheckIncludeFile.cxx.o  -o cmTC_10cbd


Determining if the include file fnmatch.h exists passed with the following
output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_41532/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_41532.dir/build.make CMakeFiles/cmTC_41532.dir/build
Building CXX object CMakeFiles/cmTC_41532.dir/CheckIncludeFile.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
  -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native  -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -o CMakeFiles/cmTC_41532.dir/CheckIncludeFile.cxx.o -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckIncludeFile.cxx
Linking CXX executable cmTC_41532
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_41532.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
 -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native  -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_41532.dir/CheckIncludeFile.cxx.o  -o cmTC_41532


Determining size of uint32_t passed with the following output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_62786/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_62786.dir/build.make CMakeFiles/cmTC_62786.dir/build
Building CXX object CMakeFiles/cmTC_62786.dir/uint32_t.cpp.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
  -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native  -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -o CMakeFiles/cmTC_62786.dir/uint32_t.cpp.o -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CheckTypeSize/uint32_t.cpp
Linking CXX executable cmTC_62786
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_62786.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
 -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native  -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_62786.dir/uint32_t.cpp.o  -o cmTC_62786


Determining if the strtoll exist passed with the following output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_23e8a/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_23e8a.dir/build.make CMakeFiles/cmTC_23e8a.dir/build
Building CXX object CMakeFiles/cmTC_23e8a.dir/CheckSymbolExists.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
  -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native  -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -o CMakeFiles/cmTC_23e8a.dir/CheckSymbolExists.cxx.o -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckSymbolExists.cxx
Linking CXX executable cmTC_23e8a
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_23e8a.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
 -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native  -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_23e8a.dir/CheckSymbolExists.cxx.o  -o cmTC_23e8a

File
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckSymbolExists.cxx:
/* */
#include <stdlib.h>

int main(int argc, char** argv)
{
  (void)argv;
#ifndef strtoll
  return ((int*)(&strtoll))[argc];
#else
  (void)argc;
  return 0;
#endif
}

Determining size of pthread_rwlock_t passed with the following output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_07baf/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_07baf.dir/build.make CMakeFiles/cmTC_07baf.dir/build
Building CXX object CMakeFiles/cmTC_07baf.dir/RWLOCK.cpp.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
  -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native  -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -o CMakeFiles/cmTC_07baf.dir/RWLOCK.cpp.o -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CheckTypeSize/RWLOCK.cpp
Linking CXX executable cmTC_07baf
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_07baf.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
 -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native  -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_07baf.dir/RWLOCK.cpp.o  -o cmTC_07baf


Performing C++ SOURCE FILE Test COMPILER_HAS_WNO_UNUSED_LOCAL_TYPEDEF
succeeded with the following output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_be3be/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_be3be.dir/build.make CMakeFiles/cmTC_be3be.dir/build
Building CXX object CMakeFiles/cmTC_be3be.dir/src.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
  -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native
-DCOMPILER_HAS_WNO_UNUSED_LOCAL_TYPEDEF -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -Wno-unused-local-typedef -o CMakeFiles/cmTC_be3be.dir/src.cxx.o -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_be3be
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_be3be.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
 -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native
-DCOMPILER_HAS_WNO_UNUSED_LOCAL_TYPEDEF -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_be3be.dir/src.cxx.o  -o cmTC_be3be

Source file was:
int main() { return 0; }
Determining if the include file dlfcn.h exists passed with the following
output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_020a9/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_020a9.dir/build.make CMakeFiles/cmTC_020a9.dir/build
Building C object CMakeFiles/cmTC_020a9.dir/CheckIncludeFile.c.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
 -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -o CMakeFiles/cmTC_020a9.dir/CheckIncludeFile.c.o   -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
Linking C executable cmTC_020a9
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_020a9.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
 -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_020a9.dir/CheckIncludeFile.c.o  -o cmTC_020a9


Determining if the include file execinfo.h exists passed with the following
output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_ad204/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_ad204.dir/build.make CMakeFiles/cmTC_ad204.dir/build
Building C object CMakeFiles/cmTC_ad204.dir/CheckIncludeFile.c.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
 -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -o CMakeFiles/cmTC_ad204.dir/CheckIncludeFile.c.o   -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
Linking C executable cmTC_ad204
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_ad204.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
 -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_ad204.dir/CheckIncludeFile.c.o  -o cmTC_ad204


Determining if the include file glob.h exists passed with the following
output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_add2a/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_add2a.dir/build.make CMakeFiles/cmTC_add2a.dir/build
Building C object CMakeFiles/cmTC_add2a.dir/CheckIncludeFile.c.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
 -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -o CMakeFiles/cmTC_add2a.dir/CheckIncludeFile.c.o   -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
Linking C executable cmTC_add2a
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_add2a.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
 -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_add2a.dir/CheckIncludeFile.c.o  -o cmTC_add2a


Determining if the include file libunwind.h exists passed with the
following output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_e908f/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_e908f.dir/build.make CMakeFiles/cmTC_e908f.dir/build
Building C object CMakeFiles/cmTC_e908f.dir/CheckIncludeFile.c.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
 -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -o CMakeFiles/cmTC_e908f.dir/CheckIncludeFile.c.o   -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
Linking C executable cmTC_e908f
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_e908f.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
 -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_e908f.dir/CheckIncludeFile.c.o  -o cmTC_e908f


Determining if the include file memory.h exists passed with the following
output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_9acb4/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_9acb4.dir/build.make CMakeFiles/cmTC_9acb4.dir/build
Building C object CMakeFiles/cmTC_9acb4.dir/CheckIncludeFile.c.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
 -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -o CMakeFiles/cmTC_9acb4.dir/CheckIncludeFile.c.o   -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
Linking C executable cmTC_9acb4
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_9acb4.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
 -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_9acb4.dir/CheckIncludeFile.c.o  -o cmTC_9acb4


Determining if the include file pwd.h exists passed with the following
output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_31e84/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_31e84.dir/build.make CMakeFiles/cmTC_31e84.dir/build
Building C object CMakeFiles/cmTC_31e84.dir/CheckIncludeFile.c.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
 -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -o CMakeFiles/cmTC_31e84.dir/CheckIncludeFile.c.o   -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
Linking C executable cmTC_31e84
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_31e84.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
 -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_31e84.dir/CheckIncludeFile.c.o  -o cmTC_31e84


Determining if the include file stdlib.h exists passed with the following
output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_c15f5/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_c15f5.dir/build.make CMakeFiles/cmTC_c15f5.dir/build
Building C object CMakeFiles/cmTC_c15f5.dir/CheckIncludeFile.c.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
 -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -o CMakeFiles/cmTC_c15f5.dir/CheckIncludeFile.c.o   -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
Linking C executable cmTC_c15f5
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_c15f5.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
 -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_c15f5.dir/CheckIncludeFile.c.o  -o cmTC_c15f5


Determining if the include file string.h exists passed with the following
output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_364e3/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_364e3.dir/build.make CMakeFiles/cmTC_364e3.dir/build
Building C object CMakeFiles/cmTC_364e3.dir/CheckIncludeFile.c.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
 -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -o CMakeFiles/cmTC_364e3.dir/CheckIncludeFile.c.o   -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
Linking C executable cmTC_364e3
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_364e3.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
 -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_364e3.dir/CheckIncludeFile.c.o  -o cmTC_364e3


Determining if the include file strings.h exists passed with the following
output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_a5eeb/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_a5eeb.dir/build.make CMakeFiles/cmTC_a5eeb.dir/build
Building C object CMakeFiles/cmTC_a5eeb.dir/CheckIncludeFile.c.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
 -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -o CMakeFiles/cmTC_a5eeb.dir/CheckIncludeFile.c.o   -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
Linking C executable cmTC_a5eeb
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_a5eeb.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
 -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_a5eeb.dir/CheckIncludeFile.c.o  -o cmTC_a5eeb


Determining if the include file sys/syscall.h exists passed with the
following output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_06767/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_06767.dir/build.make CMakeFiles/cmTC_06767.dir/build
Building C object CMakeFiles/cmTC_06767.dir/CheckIncludeFile.c.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
 -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -o CMakeFiles/cmTC_06767.dir/CheckIncludeFile.c.o   -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
Linking C executable cmTC_06767
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_06767.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
 -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_06767.dir/CheckIncludeFile.c.o  -o cmTC_06767


Determining if the include file sys/time.h exists passed with the following
output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_65a9a/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_65a9a.dir/build.make CMakeFiles/cmTC_65a9a.dir/build
Building C object CMakeFiles/cmTC_65a9a.dir/CheckIncludeFile.c.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
 -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -o CMakeFiles/cmTC_65a9a.dir/CheckIncludeFile.c.o   -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
Linking C executable cmTC_65a9a
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_65a9a.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
 -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_65a9a.dir/CheckIncludeFile.c.o  -o cmTC_65a9a


Determining if the include file sys/utsname.h exists passed with the
following output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_b57a4/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_b57a4.dir/build.make CMakeFiles/cmTC_b57a4.dir/build
Building C object CMakeFiles/cmTC_b57a4.dir/CheckIncludeFile.c.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
 -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -o CMakeFiles/cmTC_b57a4.dir/CheckIncludeFile.c.o   -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
Linking C executable cmTC_b57a4
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_b57a4.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
 -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_b57a4.dir/CheckIncludeFile.c.o  -o cmTC_b57a4


Determining if the include file syslog.h exists passed with the following
output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_e6d02/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_e6d02.dir/build.make CMakeFiles/cmTC_e6d02.dir/build
Building C object CMakeFiles/cmTC_e6d02.dir/CheckIncludeFile.c.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
 -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -o CMakeFiles/cmTC_e6d02.dir/CheckIncludeFile.c.o   -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
Linking C executable cmTC_e6d02
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_e6d02.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
 -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_e6d02.dir/CheckIncludeFile.c.o  -o cmTC_e6d02


Determining if the include file unwind.h exists passed with the following
output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_8ac81/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_8ac81.dir/build.make CMakeFiles/cmTC_8ac81.dir/build
Building C object CMakeFiles/cmTC_8ac81.dir/CheckIncludeFile.c.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
 -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -o CMakeFiles/cmTC_8ac81.dir/CheckIncludeFile.c.o   -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
Linking C executable cmTC_8ac81
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_8ac81.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
 -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_8ac81.dir/CheckIncludeFile.c.o  -o cmTC_8ac81


Determining if the include file ext/hash_map exists passed with the
following output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_af3f4/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_af3f4.dir/build.make CMakeFiles/cmTC_af3f4.dir/build
Building CXX object CMakeFiles/cmTC_af3f4.dir/CheckIncludeFile.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
  -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native  -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -o CMakeFiles/cmTC_af3f4.dir/CheckIncludeFile.cxx.o -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckIncludeFile.cxx
In file included from
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckIncludeFile.cxx:1:
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include/c++/v1/ext/hash_map:213:5:
warning: Use of the header <ext/hash_map> is deprecated.  Migrate to
<unordered_map> [-W#warnings]
#   warning Use of the header <ext/hash_map> is deprecated.  Migrate to
<unordered_map>
    ^
1 warning generated.
Linking CXX executable cmTC_af3f4
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_af3f4.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
 -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native  -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_af3f4.dir/CheckIncludeFile.cxx.o  -o cmTC_af3f4


Determining if the include file ext/hash_set exists passed with the
following output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_48a2e/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_48a2e.dir/build.make CMakeFiles/cmTC_48a2e.dir/build
Building CXX object CMakeFiles/cmTC_48a2e.dir/CheckIncludeFile.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
  -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native  -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -o CMakeFiles/cmTC_48a2e.dir/CheckIncludeFile.cxx.o -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckIncludeFile.cxx
In file included from
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckIncludeFile.cxx:1:
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include/c++/v1/ext/hash_set:205:5:
warning: Use of the header <ext/hash_set> is deprecated.  Migrate to
<unordered_set> [-W#warnings]
#   warning Use of the header <ext/hash_set> is deprecated.  Migrate to
<unordered_set>
    ^
1 warning generated.
Linking CXX executable cmTC_48a2e
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_48a2e.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
 -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native  -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_48a2e.dir/CheckIncludeFile.cxx.o  -o cmTC_48a2e


Determining if the include file unordered_map exists passed with the
following output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_308a2/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_308a2.dir/build.make CMakeFiles/cmTC_308a2.dir/build
Building CXX object CMakeFiles/cmTC_308a2.dir/CheckIncludeFile.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
  -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native  -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -o CMakeFiles/cmTC_308a2.dir/CheckIncludeFile.cxx.o -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckIncludeFile.cxx
Linking CXX executable cmTC_308a2
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_308a2.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
 -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native  -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_308a2.dir/CheckIncludeFile.cxx.o  -o cmTC_308a2


Determining if the include file unordered_set exists passed with the
following output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_1ef38/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_1ef38.dir/build.make CMakeFiles/cmTC_1ef38.dir/build
Building CXX object CMakeFiles/cmTC_1ef38.dir/CheckIncludeFile.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
  -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native  -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -o CMakeFiles/cmTC_1ef38.dir/CheckIncludeFile.cxx.o -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckIncludeFile.cxx
Linking CXX executable cmTC_1ef38
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_1ef38.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
 -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native  -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_1ef38.dir/CheckIncludeFile.cxx.o  -o cmTC_1ef38


Determining size of u_int16_t passed with the following output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_f9e24/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_f9e24.dir/build.make CMakeFiles/cmTC_f9e24.dir/build
Building C object CMakeFiles/cmTC_f9e24.dir/HAVE_U_INT16_T.c.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
 -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -o CMakeFiles/cmTC_f9e24.dir/HAVE_U_INT16_T.c.o   -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CheckTypeSize/HAVE_U_INT16_T.c
Linking C executable cmTC_f9e24
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_f9e24.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
 -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_f9e24.dir/HAVE_U_INT16_T.c.o  -o cmTC_f9e24


Determining size of uint16_t passed with the following output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_8663c/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_8663c.dir/build.make CMakeFiles/cmTC_8663c.dir/build
Building C object CMakeFiles/cmTC_8663c.dir/HAVE_UINT16_T.c.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
 -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -o CMakeFiles/cmTC_8663c.dir/HAVE_UINT16_T.c.o   -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CheckTypeSize/HAVE_UINT16_T.c
Linking C executable cmTC_8663c
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_8663c.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
 -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_8663c.dir/HAVE_UINT16_T.c.o  -o cmTC_8663c


Determining if the function dladdr exists passed with the following output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_22e83/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_22e83.dir/build.make CMakeFiles/cmTC_22e83.dir/build
Building C object CMakeFiles/cmTC_22e83.dir/CheckFunctionExists.c.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
 -DCHECK_FUNCTION_EXISTS=dladdr -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -o CMakeFiles/cmTC_22e83.dir/CheckFunctionExists.c.o   -c
/usr/local/Cellar/cmake/3.10.1/share/cmake/Modules/CheckFunctionExists.c
Linking C executable cmTC_22e83
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_22e83.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
-DCHECK_FUNCTION_EXISTS=dladdr -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_22e83.dir/CheckFunctionExists.c.o  -o cmTC_22e83


Determining if the function fcntl exists passed with the following output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_9f75b/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_9f75b.dir/build.make CMakeFiles/cmTC_9f75b.dir/build
Building C object CMakeFiles/cmTC_9f75b.dir/CheckFunctionExists.c.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
 -DCHECK_FUNCTION_EXISTS=fcntl -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -o CMakeFiles/cmTC_9f75b.dir/CheckFunctionExists.c.o   -c
/usr/local/Cellar/cmake/3.10.1/share/cmake/Modules/CheckFunctionExists.c
Linking C executable cmTC_9f75b
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_9f75b.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
-DCHECK_FUNCTION_EXISTS=fcntl -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_9f75b.dir/CheckFunctionExists.c.o  -o cmTC_9f75b


Determining if the function pread exists passed with the following output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_d5d78/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_d5d78.dir/build.make CMakeFiles/cmTC_d5d78.dir/build
Building C object CMakeFiles/cmTC_d5d78.dir/CheckFunctionExists.c.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
 -DCHECK_FUNCTION_EXISTS=pread -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -o CMakeFiles/cmTC_d5d78.dir/CheckFunctionExists.c.o   -c
/usr/local/Cellar/cmake/3.10.1/share/cmake/Modules/CheckFunctionExists.c
Linking C executable cmTC_d5d78
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_d5d78.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
-DCHECK_FUNCTION_EXISTS=pread -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_d5d78.dir/CheckFunctionExists.c.o  -o cmTC_d5d78


Determining if the function pwrite exists passed with the following output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_123a9/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_123a9.dir/build.make CMakeFiles/cmTC_123a9.dir/build
Building C object CMakeFiles/cmTC_123a9.dir/CheckFunctionExists.c.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
 -DCHECK_FUNCTION_EXISTS=pwrite -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -o CMakeFiles/cmTC_123a9.dir/CheckFunctionExists.c.o   -c
/usr/local/Cellar/cmake/3.10.1/share/cmake/Modules/CheckFunctionExists.c
Linking C executable cmTC_123a9
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_123a9.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
-DCHECK_FUNCTION_EXISTS=pwrite -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_123a9.dir/CheckFunctionExists.c.o  -o cmTC_123a9


Determining if the function sigaction exists passed with the following
output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_7ec0c/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_7ec0c.dir/build.make CMakeFiles/cmTC_7ec0c.dir/build
Building C object CMakeFiles/cmTC_7ec0c.dir/CheckFunctionExists.c.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
 -DCHECK_FUNCTION_EXISTS=sigaction -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -o CMakeFiles/cmTC_7ec0c.dir/CheckFunctionExists.c.o   -c
/usr/local/Cellar/cmake/3.10.1/share/cmake/Modules/CheckFunctionExists.c
Linking C executable cmTC_7ec0c
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_7ec0c.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
-DCHECK_FUNCTION_EXISTS=sigaction -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_7ec0c.dir/CheckFunctionExists.c.o  -o cmTC_7ec0c


Determining if the function sigaltstack exists passed with the following
output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_c7cd4/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_c7cd4.dir/build.make CMakeFiles/cmTC_c7cd4.dir/build
Building C object CMakeFiles/cmTC_c7cd4.dir/CheckFunctionExists.c.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
 -DCHECK_FUNCTION_EXISTS=sigaltstack -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -o CMakeFiles/cmTC_c7cd4.dir/CheckFunctionExists.c.o   -c
/usr/local/Cellar/cmake/3.10.1/share/cmake/Modules/CheckFunctionExists.c
Linking C executable cmTC_c7cd4
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_c7cd4.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
-DCHECK_FUNCTION_EXISTS=sigaltstack -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_c7cd4.dir/CheckFunctionExists.c.o  -o cmTC_c7cd4


Performing C++ SOURCE FILE Test HAVE_NO_DEPRECATED succeeded with the
following output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_64196/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_64196.dir/build.make CMakeFiles/cmTC_64196.dir/build
Building CXX object CMakeFiles/cmTC_64196.dir/src.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
  -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native -DHAVE_NO_DEPRECATED
-isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -Wdeprecated -o CMakeFiles/cmTC_64196.dir/src.cxx.o -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_64196
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_64196.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
 -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native -DHAVE_NO_DEPRECATED
-isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_64196.dir/src.cxx.o  -o cmTC_64196

Source file was:
int main() { return 0; }
Performing C++ SOURCE FILE Test HAVE_NO_UNNAMED_TYPE_TEMPLATE_ARGS
succeeded with the following output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_81e25/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_81e25.dir/build.make CMakeFiles/cmTC_81e25.dir/build
Building CXX object CMakeFiles/cmTC_81e25.dir/src.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
  -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native
-DHAVE_NO_UNNAMED_TYPE_TEMPLATE_ARGS -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -Wunnamed-type-template-args -o CMakeFiles/cmTC_81e25.dir/src.cxx.o -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_81e25
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_81e25.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
 -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native
-DHAVE_NO_UNNAMED_TYPE_TEMPLATE_ARGS -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_81e25.dir/src.cxx.o  -o cmTC_81e25

Source file was:
int main() { return 0; }
Determining if the snprintf exist passed with the following output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_2f41e/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_2f41e.dir/build.make CMakeFiles/cmTC_2f41e.dir/build
Building C object CMakeFiles/cmTC_2f41e.dir/CheckSymbolExists.c.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
 -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -o CMakeFiles/cmTC_2f41e.dir/CheckSymbolExists.c.o   -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckSymbolExists.c
Linking C executable cmTC_2f41e
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_2f41e.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
 -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_2f41e.dir/CheckSymbolExists.c.o  -o cmTC_2f41e

File
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckSymbolExists.c:
/* */
#include <stdio.h>

int main(int argc, char** argv)
{
  (void)argv;
#ifndef snprintf
  return ((int*)(&snprintf))[argc];
#else
  (void)argc;
  return 0;
#endif
}

Performing C SOURCE FILE Test HAVE___ATTRIBUTE__ succeeded with the
following output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_c6af6/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_c6af6.dir/build.make CMakeFiles/cmTC_c6af6.dir/build
Building C object CMakeFiles/cmTC_c6af6.dir/src.c.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
 -DHAVE___ATTRIBUTE__ -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -o CMakeFiles/cmTC_c6af6.dir/src.c.o   -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.c
Linking C executable cmTC_c6af6
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_c6af6.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
-DHAVE___ATTRIBUTE__ -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_c6af6.dir/src.c.o  -o cmTC_c6af6

Source file was:

#include <stdlib.h>
static void foo(void) __attribute__ ((unused));
int main(void) { return 0; }

Performing C SOURCE FILE Test HAVE___ATTRIBUTE__VISIBILITY_DEFAULT
succeeded with the following output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_54f26/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_54f26.dir/build.make CMakeFiles/cmTC_54f26.dir/build
Building C object CMakeFiles/cmTC_54f26.dir/src.c.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
 -DHAVE___ATTRIBUTE__VISIBILITY_DEFAULT -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -o CMakeFiles/cmTC_54f26.dir/src.c.o   -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.c
Linking C executable cmTC_54f26
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_54f26.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
-DHAVE___ATTRIBUTE__VISIBILITY_DEFAULT -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_54f26.dir/src.c.o  -o cmTC_54f26

Source file was:

#include <stdlib.h>
static void foo(void) __attribute__ ((visibility("default")));
int main(void) { return 0; }

Performing C SOURCE FILE Test HAVE___ATTRIBUTE__VISIBILITY_HIDDEN succeeded
with the following output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_a790d/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_a790d.dir/build.make CMakeFiles/cmTC_a790d.dir/build
Building C object CMakeFiles/cmTC_a790d.dir/src.c.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
 -DHAVE___ATTRIBUTE__VISIBILITY_HIDDEN -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -o CMakeFiles/cmTC_a790d.dir/src.c.o   -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.c
Linking C executable cmTC_a790d
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_a790d.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
-DHAVE___ATTRIBUTE__VISIBILITY_HIDDEN -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_a790d.dir/src.c.o  -o cmTC_a790d

Source file was:

#include <stdlib.h>
static void foo(void) __attribute__ ((visibility("hidden")));
int main(void) { return 0; }

Performing C SOURCE FILE Test HAVE___BUILTIN_EXPECT succeeded with the
following output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_11b22/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_11b22.dir/build.make CMakeFiles/cmTC_11b22.dir/build
Building C object CMakeFiles/cmTC_11b22.dir/src.c.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
 -DHAVE___BUILTIN_EXPECT -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -o CMakeFiles/cmTC_11b22.dir/src.c.o   -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.c
Linking C executable cmTC_11b22
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_11b22.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
-DHAVE___BUILTIN_EXPECT -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_11b22.dir/src.c.o  -o cmTC_11b22

Source file was:

int main(void) { if (__builtin_expect(0, 0)) return 1; return 0; }

Performing C SOURCE FILE Test HAVE___SYNC_VAL_COMPARE_AND_SWAP succeeded
with the following output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_26a13/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_26a13.dir/build.make CMakeFiles/cmTC_26a13.dir/build
Building C object CMakeFiles/cmTC_26a13.dir/src.c.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
 -DHAVE___SYNC_VAL_COMPARE_AND_SWAP -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -o CMakeFiles/cmTC_26a13.dir/src.c.o   -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.c
Linking C executable cmTC_26a13
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_26a13.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
-DHAVE___SYNC_VAL_COMPARE_AND_SWAP -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_26a13.dir/src.c.o  -o cmTC_26a13

Source file was:

int main(void)
{
  int a; if (__sync_val_compare_and_swap(&a, 0, 1)) return 1; return 0;
}

Performing C++ SOURCE FILE Test STL_STD_NAMESPACE succeeded with the
following output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_3683d/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_3683d.dir/build.make CMakeFiles/cmTC_3683d.dir/build
Building CXX object CMakeFiles/cmTC_3683d.dir/src.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
  -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native -DSTL_STD_NAMESPACE
-isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -o CMakeFiles/cmTC_3683d.dir/src.cxx.o -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_3683d
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_3683d.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
 -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native -DSTL_STD_NAMESPACE
-isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_3683d.dir/src.cxx.o  -o cmTC_3683d

Source file was:

#include <vector>
std::vector<int> t; int main() { }

Performing C++ SOURCE FILE Test HAVE_USING_OPERATOR succeeded with the
following output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_1b2dc/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_1b2dc.dir/build.make CMakeFiles/cmTC_1b2dc.dir/build
Building CXX object CMakeFiles/cmTC_1b2dc.dir/src.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
  -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native -DHAVE_USING_OPERATOR
-isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -o CMakeFiles/cmTC_1b2dc.dir/src.cxx.o -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_1b2dc
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_1b2dc.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
 -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native -DHAVE_USING_OPERATOR
-isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_1b2dc.dir/src.cxx.o  -o cmTC_1b2dc

Source file was:

#include <iostream>
std::ostream& operator<<(std::ostream&, struct s);
using ::operator<<;
int main() { }

Performing C++ SOURCE FILE Test HAVE_NAMESPACES succeeded with the
following output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_253fb/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_253fb.dir/build.make CMakeFiles/cmTC_253fb.dir/build
Building CXX object CMakeFiles/cmTC_253fb.dir/src.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
  -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native -DHAVE_NAMESPACES
-isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -o CMakeFiles/cmTC_253fb.dir/src.cxx.o -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_253fb
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_253fb.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
 -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native -DHAVE_NAMESPACES
-isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_253fb.dir/src.cxx.o  -o cmTC_253fb

Source file was:

namespace Outer { namespace Inner { int i = 0; }}
using namespace Outer::Inner;;
int main() { return i; }

Performing C++ SOURCE FILE Test COMPILER_HAS_WNO_SIGN_ERROR succeeded with
the following output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_a5b95/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_a5b95.dir/build.make CMakeFiles/cmTC_a5b95.dir/build
Building CXX object CMakeFiles/cmTC_a5b95.dir/src.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
  -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native
-DCOMPILER_HAS_WNO_SIGN_ERROR -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -Wno-sign-compare -o CMakeFiles/cmTC_a5b95.dir/src.cxx.o -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_a5b95
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_a5b95.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
 -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native
-DCOMPILER_HAS_WNO_SIGN_ERROR -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_a5b95.dir/src.cxx.o  -o cmTC_a5b95

Source file was:
int main() { return 0; }
Performing C++ SOURCE FILE Test COMPILER_HAS_WNO_PEDANTIC succeeded with
the following output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_5c42e/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_5c42e.dir/build.make CMakeFiles/cmTC_5c42e.dir/build
Building CXX object CMakeFiles/cmTC_5c42e.dir/src.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
  -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native
-DCOMPILER_HAS_WNO_PEDANTIC -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -Wno-pedantic -o CMakeFiles/cmTC_5c42e.dir/src.cxx.o -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_5c42e
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_5c42e.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
 -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native
-DCOMPILER_HAS_WNO_PEDANTIC -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_5c42e.dir/src.cxx.o  -o cmTC_5c42e

Source file was:
int main() { return 0; }
Performing C++ SOURCE FILE Test COMPILER_HAS_STD_CXX11 succeeded with the
following output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_cb620/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_cb620.dir/build.make CMakeFiles/cmTC_cb620.dir/build
Building CXX object CMakeFiles/cmTC_cb620.dir/src.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
  -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native -DCOMPILER_HAS_STD_CXX11
-isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -std=c++11 -o CMakeFiles/cmTC_cb620.dir/src.cxx.o -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_cb620
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_cb620.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
 -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native -DCOMPILER_HAS_STD_CXX11
-isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_cb620.dir/src.cxx.o  -o cmTC_cb620

Source file was:
int main() { return 0; }
Performing C++ SOURCE FILE Test COMPILER_HAS_WNO_UNUSED_VARIABLE succeeded
with the following output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_95928/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_95928.dir/build.make CMakeFiles/cmTC_95928.dir/build
Building CXX object CMakeFiles/cmTC_95928.dir/src.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
  -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native -std=c++11 -Wall -pedantic
-DCOMPILER_HAS_WNO_UNUSED_VARIABLE -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -Wno-unused-variable -o CMakeFiles/cmTC_95928.dir/src.cxx.o -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_95928
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_95928.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
 -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native -std=c++11 -Wall -pedantic
-DCOMPILER_HAS_WNO_UNUSED_VARIABLE -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_95928.dir/src.cxx.o  -o cmTC_95928

Source file was:
int main() { return 0; }
Performing C++ SOURCE FILE Test COMPILER_HAS_WNO_DEPRECATED_REGISTER
succeeded with the following output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_63a38/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_63a38.dir/build.make CMakeFiles/cmTC_63a38.dir/build
Building CXX object CMakeFiles/cmTC_63a38.dir/src.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
  -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native
-DCOMPILER_HAS_WNO_DEPRECATED_REGISTER -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -Wno-deprecated-register -o CMakeFiles/cmTC_63a38.dir/src.cxx.o -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_63a38
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_63a38.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
 -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native
-DCOMPILER_HAS_WNO_DEPRECATED_REGISTER -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_63a38.dir/src.cxx.o  -o cmTC_63a38

Source file was:
int main() { return 0; }
Determining if files unistd.h exist passed with the following output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_5d6a6/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_5d6a6.dir/build.make CMakeFiles/cmTC_5d6a6.dir/build
Building C object CMakeFiles/cmTC_5d6a6.dir/CheckIncludeFiles.c.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
 -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -o CMakeFiles/cmTC_5d6a6.dir/CheckIncludeFiles.c.o   -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckIncludeFiles.c
Linking C executable cmTC_5d6a6
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_5d6a6.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
 -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_5d6a6.dir/CheckIncludeFiles.c.o  -o cmTC_5d6a6


Determining if files fcntl.h;glob.h;unistd.h;sys/stat.h;sys/types.h exist
passed with the following output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_0f41d/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_0f41d.dir/build.make CMakeFiles/cmTC_0f41d.dir/build
Building C object CMakeFiles/cmTC_0f41d.dir/CheckIncludeFiles.c.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
 -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -o CMakeFiles/cmTC_0f41d.dir/CheckIncludeFiles.c.o   -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckIncludeFiles.c
Linking C executable cmTC_0f41d
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_0f41d.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
 -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_0f41d.dir/CheckIncludeFiles.c.o  -o cmTC_0f41d


Performing C++ SOURCE FILE Test QUICKSTEP_HAVE_MMAP_PLAIN succeeded with
the following output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_e9e5d/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_e9e5d.dir/build.make CMakeFiles/cmTC_e9e5d.dir/build
Building CXX object CMakeFiles/cmTC_e9e5d.dir/src.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
  -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native
-DQUICKSTEP_HAVE_MMAP_PLAIN -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -o CMakeFiles/cmTC_e9e5d.dir/src.cxx.o -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_e9e5d
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_e9e5d.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
 -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native
-DQUICKSTEP_HAVE_MMAP_PLAIN -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_e9e5d.dir/src.cxx.o  -o cmTC_e9e5d

Source file was:

    #include <sys/mman.h>

    int main() {
      void *mem = mmap(nullptr,
                       0x200000,
                       PROT_READ | PROT_WRITE,
                       MAP_PRIVATE | MAP_ANONYMOUS,
                       -1, 0);
      munmap(mem, 0x200000);
      return 0;
    }

Determining size of size_t passed with the following output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_f0189/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_f0189.dir/build.make CMakeFiles/cmTC_f0189.dir/build
Building C object CMakeFiles/cmTC_f0189.dir/SIZEOF_SIZE_T.c.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
 -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -o CMakeFiles/cmTC_f0189.dir/SIZEOF_SIZE_T.c.o   -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CheckTypeSize/SIZEOF_SIZE_T.c
Linking C executable cmTC_f0189
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_f0189.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
 -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_f0189.dir/SIZEOF_SIZE_T.c.o  -o cmTC_f0189


Performing C++ SOURCE FILE Test QUICKSTEP_HAVE_CPP11_THREADS succeeded with
the following output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_79897/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_79897.dir/build.make CMakeFiles/cmTC_79897.dir/build
Building CXX object CMakeFiles/cmTC_79897.dir/src.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
  -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native
-DQUICKSTEP_HAVE_CPP11_THREADS -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -o CMakeFiles/cmTC_79897.dir/src.cxx.o -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_79897
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_79897.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
 -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native
-DQUICKSTEP_HAVE_CPP11_THREADS -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_79897.dir/src.cxx.o  -o cmTC_79897

Source file was:

#include <thread>
#include <mutex>
#include <condition_variable>

int main() {
  std::thread t;

  std::mutex m;
  std::recursive_mutex rm;

  std::condition_variable_any cv;

  std::lock_guard<std::mutex> lock_m(m);
  std::lock_guard<std::recursive_mutex> lock_rm(rm);

  return 0;
}

Performing C++ SOURCE FILE Test QUICKSTEP_HAVE_CPP14_SHARED_TIMED_MUTEX
succeeded with the following output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_fda3c/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_fda3c.dir/build.make CMakeFiles/cmTC_fda3c.dir/build
Building CXX object CMakeFiles/cmTC_fda3c.dir/src.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
  -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native
-DQUICKSTEP_HAVE_CPP14_SHARED_TIMED_MUTEX -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -o CMakeFiles/cmTC_fda3c.dir/src.cxx.o -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_fda3c
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_fda3c.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
 -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native
-DQUICKSTEP_HAVE_CPP14_SHARED_TIMED_MUTEX -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_fda3c.dir/src.cxx.o  -o cmTC_fda3c

Source file was:

#include <shared_mutex>

int main() {
  std::shared_timed_mutex m;

  m.lock();
  m.unlock();

  m.lock_shared();
  m.unlock_shared();

  return 0;
}

Performing C++ SOURCE FILE Test QUICKSTEP_HAVE_CPP11_YIELD succeeded with
the following output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_623bc/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_623bc.dir/build.make CMakeFiles/cmTC_623bc.dir/build
Building CXX object CMakeFiles/cmTC_623bc.dir/src.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
  -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native
-DQUICKSTEP_HAVE_CPP11_YIELD -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -o CMakeFiles/cmTC_623bc.dir/src.cxx.o -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_623bc
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_623bc.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
 -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native
-DQUICKSTEP_HAVE_CPP11_YIELD -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_623bc.dir/src.cxx.o  -o cmTC_623bc

Source file was:

#include <thread>

int main() {
  std::this_thread::yield();
  return 0;
}

Determining size of time_t passed with the following output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_d753f/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_d753f.dir/build.make CMakeFiles/cmTC_d753f.dir/build
Building C object CMakeFiles/cmTC_d753f.dir/SIZEOF_TIME_T.c.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
 -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -o CMakeFiles/cmTC_d753f.dir/SIZEOF_TIME_T.c.o   -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CheckTypeSize/SIZEOF_TIME_T.c
Linking C executable cmTC_d753f
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_d753f.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
 -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_d753f.dir/SIZEOF_TIME_T.c.o  -o cmTC_d753f


Determining if the strnlen exist passed with the following output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_b6dfb/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_b6dfb.dir/build.make CMakeFiles/cmTC_b6dfb.dir/build
Building CXX object CMakeFiles/cmTC_b6dfb.dir/CheckSymbolExists.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
  -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native  -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -o CMakeFiles/cmTC_b6dfb.dir/CheckSymbolExists.cxx.o -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckSymbolExists.cxx
Linking CXX executable cmTC_b6dfb
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_b6dfb.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
 -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native  -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_b6dfb.dir/CheckSymbolExists.cxx.o  -o cmTC_b6dfb

File
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckSymbolExists.cxx:
/* */
#include <cstring>

int main(int argc, char** argv)
{
  (void)argv;
#ifndef strnlen
  return ((int*)(&strnlen))[argc];
#else
  (void)argc;
  return 0;
#endif
}

Determining if the gmtime_r exist passed with the following output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_9201c/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_9201c.dir/build.make CMakeFiles/cmTC_9201c.dir/build
Building CXX object CMakeFiles/cmTC_9201c.dir/CheckSymbolExists.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
  -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native  -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -o CMakeFiles/cmTC_9201c.dir/CheckSymbolExists.cxx.o -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckSymbolExists.cxx
Linking CXX executable cmTC_9201c
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_9201c.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
 -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native  -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_9201c.dir/CheckSymbolExists.cxx.o  -o cmTC_9201c

File
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckSymbolExists.cxx:
/* */
#include <ctime>

int main(int argc, char** argv)
{
  (void)argv;
#ifndef gmtime_r
  return ((int*)(&gmtime_r))[argc];
#else
  (void)argc;
  return 0;
#endif
}

Determining if the localtime_r exist passed with the following output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_76c1a/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_76c1a.dir/build.make CMakeFiles/cmTC_76c1a.dir/build
Building CXX object CMakeFiles/cmTC_76c1a.dir/CheckSymbolExists.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
  -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native  -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -o CMakeFiles/cmTC_76c1a.dir/CheckSymbolExists.cxx.o -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckSymbolExists.cxx
Linking CXX executable cmTC_76c1a
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_76c1a.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
 -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native  -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_76c1a.dir/CheckSymbolExists.cxx.o  -o cmTC_76c1a

File
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckSymbolExists.cxx:
/* */
#include <ctime>

int main(int argc, char** argv)
{
  (void)argv;
#ifndef localtime_r
  return ((int*)(&localtime_r))[argc];
#else
  (void)argc;
  return 0;
#endif
}

Determining if the timegm exist passed with the following output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_27ec2/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_27ec2.dir/build.make CMakeFiles/cmTC_27ec2.dir/build
Building CXX object CMakeFiles/cmTC_27ec2.dir/CheckSymbolExists.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
  -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native  -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -o CMakeFiles/cmTC_27ec2.dir/CheckSymbolExists.cxx.o -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckSymbolExists.cxx
Linking CXX executable cmTC_27ec2
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_27ec2.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
 -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native  -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_27ec2.dir/CheckSymbolExists.cxx.o  -o cmTC_27ec2

File
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckSymbolExists.cxx:
/* */
#include <ctime>

int main(int argc, char** argv)
{
  (void)argv;
#ifndef timegm
  return ((int*)(&timegm))[argc];
#else
  (void)argc;
  return 0;
#endif
}

Determining if the setenv exist passed with the following output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_8c5e1/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_8c5e1.dir/build.make CMakeFiles/cmTC_8c5e1.dir/build
Building CXX object CMakeFiles/cmTC_8c5e1.dir/CheckSymbolExists.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
  -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native  -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -o CMakeFiles/cmTC_8c5e1.dir/CheckSymbolExists.cxx.o -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckSymbolExists.cxx
Linking CXX executable cmTC_8c5e1
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_8c5e1.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
 -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native  -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_8c5e1.dir/CheckSymbolExists.cxx.o  -o cmTC_8c5e1

File
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckSymbolExists.cxx:
/* */
#include <stdlib.h>

int main(int argc, char** argv)
{
  (void)argv;
#ifndef setenv
  return ((int*)(&setenv))[argc];
#else
  (void)argc;
  return 0;
#endif
}

Determining if the tzset exist passed with the following output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_9c6f0/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_9c6f0.dir/build.make CMakeFiles/cmTC_9c6f0.dir/build
Building CXX object CMakeFiles/cmTC_9c6f0.dir/CheckSymbolExists.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
  -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native  -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -o CMakeFiles/cmTC_9c6f0.dir/CheckSymbolExists.cxx.o -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckSymbolExists.cxx
Linking CXX executable cmTC_9c6f0
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_9c6f0.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
 -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native  -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_9c6f0.dir/CheckSymbolExists.cxx.o  -o cmTC_9c6f0

File
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckSymbolExists.cxx:
/* */
#include <time.h>

int main(int argc, char** argv)
{
  (void)argv;
#ifndef tzset
  return ((int*)(&tzset))[argc];
#else
  (void)argc;
  return 0;
#endif
}

Performing C++ SOURCE FILE Test COMPILER_HAS_WNO_SELF_MOVE succeeded with
the following output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_de1c3/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_de1c3.dir/build.make CMakeFiles/cmTC_de1c3.dir/build
Building CXX object CMakeFiles/cmTC_de1c3.dir/src.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
  -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native
-DCOMPILER_HAS_WNO_SELF_MOVE -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -Wno-self-move -o CMakeFiles/cmTC_de1c3.dir/src.cxx.o -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_de1c3
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_de1c3.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
 -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native
-DCOMPILER_HAS_WNO_SELF_MOVE -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_de1c3.dir/src.cxx.o  -o cmTC_de1c3

Source file was:
int main() { return 0; }
Performing C++ SOURCE FILE Test QUICKSTEP_HAVE_BUILTIN_POPCOUNT succeeded
with the following output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_be531/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_be531.dir/build.make CMakeFiles/cmTC_be531.dir/build
Building CXX object CMakeFiles/cmTC_be531.dir/src.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
  -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native
-DQUICKSTEP_HAVE_BUILTIN_POPCOUNT -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -o CMakeFiles/cmTC_be531.dir/src.cxx.o -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_be531
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_be531.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
 -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native
-DQUICKSTEP_HAVE_BUILTIN_POPCOUNT -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_be531.dir/src.cxx.o  -o cmTC_be531

Source file was:

  int main() {
    return __builtin_popcount(1234);
  }

Performing C++ SOURCE FILE Test QUICKSTEP_HAVE_BUILTIN_CLZ succeeded with
the following output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_2fc59/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_2fc59.dir/build.make CMakeFiles/cmTC_2fc59.dir/build
Building CXX object CMakeFiles/cmTC_2fc59.dir/src.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
  -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native
-DQUICKSTEP_HAVE_BUILTIN_CLZ -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -o CMakeFiles/cmTC_2fc59.dir/src.cxx.o -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_2fc59
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_2fc59.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
 -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native
-DQUICKSTEP_HAVE_BUILTIN_CLZ -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_2fc59.dir/src.cxx.o  -o cmTC_2fc59

Source file was:

  int main() {
    return __builtin_clz(12340);
  }

Performing C++ SOURCE FILE Test QUICKSTEP_HAVE_BUILTIN_CTZ succeeded with
the following output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_383a8/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_383a8.dir/build.make CMakeFiles/cmTC_383a8.dir/build
Building CXX object CMakeFiles/cmTC_383a8.dir/src.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
  -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native
-DQUICKSTEP_HAVE_BUILTIN_CTZ -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -o CMakeFiles/cmTC_383a8.dir/src.cxx.o -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_383a8
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_383a8.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
 -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native
-DQUICKSTEP_HAVE_BUILTIN_CTZ -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_383a8.dir/src.cxx.o  -o cmTC_383a8

Source file was:

  int main() {
    return __builtin_ctz(12340);
  }

Performing C++ SOURCE FILE Test QUICKSTEP_HAVE_STD_ALIGN succeeded with the
following output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_2c7b3/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_2c7b3.dir/build.make CMakeFiles/cmTC_2c7b3.dir/build
Building CXX object CMakeFiles/cmTC_2c7b3.dir/src.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
  -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native -DQUICKSTEP_HAVE_STD_ALIGN
-isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -o CMakeFiles/cmTC_2c7b3.dir/src.cxx.o -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx:9:11:
warning: unused variable 'aligned' [-Wunused-variable]
    void *aligned = std::align(8, 8, ptr, space);
          ^
1 warning generated.
Linking CXX executable cmTC_2c7b3
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_2c7b3.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
 -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native -DQUICKSTEP_HAVE_STD_ALIGN
-isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_2c7b3.dir/src.cxx.o  -o cmTC_2c7b3

Source file was:

  #include <cstddef>
  #include <memory>

  int main() {
    void *ptr = nullptr;
    std::size_t space = 16;

    void *aligned = std::align(8, 8, ptr, space);
    return 0;
  }

Performing C++ SOURCE FILE Test QUICKSTEP_HAVE_POSIX_MEMALIGN succeeded
with the following output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_5a733/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_5a733.dir/build.make CMakeFiles/cmTC_5a733.dir/build
Building CXX object CMakeFiles/cmTC_5a733.dir/src.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
  -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native
-DQUICKSTEP_HAVE_POSIX_MEMALIGN -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -o CMakeFiles/cmTC_5a733.dir/src.cxx.o -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_5a733
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_5a733.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
 -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native
-DQUICKSTEP_HAVE_POSIX_MEMALIGN -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_5a733.dir/src.cxx.o  -o cmTC_5a733

Source file was:

  #include <stdlib.h>

  int main() {
    void *ptr;
    return posix_memalign(&ptr, 64, 256);
  }

Performing C++ SOURCE FILE Test QUICKSTEP_HAVE_SYSCONF succeeded with the
following output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_380a3/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_380a3.dir/build.make CMakeFiles/cmTC_380a3.dir/build
Building CXX object CMakeFiles/cmTC_380a3.dir/src.cxx.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
  -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native -DQUICKSTEP_HAVE_SYSCONF
-isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -o CMakeFiles/cmTC_380a3.dir/src.cxx.o -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_380a3
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_380a3.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
 -std=c++14 -Wall -pedantic -Wno-extended-offsetof
-Wno-error=deprecated-declarations -march=native -DQUICKSTEP_HAVE_SYSCONF
-isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_380a3.dir/src.cxx.o  -o cmTC_380a3

Source file was:

  #include <unistd.h>
  int main() {
  return (sysconf(_SC_PAGE_SIZE) > 0 && sysconf(_SC_PHYS_PAGES) > 0);
  }

Determining if files glob.h exist passed with the following output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_f8c1d/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_f8c1d.dir/build.make CMakeFiles/cmTC_f8c1d.dir/build
Building C object CMakeFiles/cmTC_f8c1d.dir/CheckIncludeFiles.c.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
 -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -o CMakeFiles/cmTC_f8c1d.dir/CheckIncludeFiles.c.o   -c
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp/CheckIncludeFiles.c
Linking C executable cmTC_f8c1d
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_f8c1d.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
 -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_f8c1d.dir/CheckIncludeFiles.c.o  -o cmTC_f8c1d


Determining if the function open_memstream exists passed with the following
output:
Change Dir:
/Users/robertclaus/Development/quickstepSQL/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_6044c/fast"
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f
CMakeFiles/cmTC_6044c.dir/build.make CMakeFiles/cmTC_6044c.dir/build
Building C object CMakeFiles/cmTC_6044c.dir/CheckFunctionExists.c.o
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
 -DCHECK_FUNCTION_EXISTS=open_memstream -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
 -o CMakeFiles/cmTC_6044c.dir/CheckFunctionExists.c.o   -c
/usr/local/Cellar/cmake/3.10.1/share/cmake/Modules/CheckFunctionExists.c
Linking C executable cmTC_6044c
/usr/local/Cellar/cmake/3.10.1/bin/cmake -E cmake_link_script
CMakeFiles/cmTC_6044c.dir/link.txt --verbose=1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
-DCHECK_FUNCTION_EXISTS=open_memstream -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk
-Wl,-search_paths_first -Wl,-headerpad_max_install_names
 CMakeFiles/cmTC_6044c.dir/CheckFunctionExists.c.o  -o cmTC_6044c



On Sun, Jan 7, 2018 at 10:54 PM, Harshad Deshmukh <ha...@cs.wisc.edu>
wrote:

> Hi Robert,
>
>
> I can't find your attachments. Can you please resend or paste the logs in
> the email text?
>
>
> Thanks,
>
> Harshad
>
> ________________________________
> From: Robert Claus <ro...@gmail.com>
> Sent: Sunday, January 7, 2018 9:41:32 PM
> To: dev@quickstep.incubator.apache.org
> Subject: CMake Issues After iOS Upgrade
>
> Hi Quickstep Team,
>
> I finally upgraded my Mac to 10.13.1 this weekend but I can't get cmake to
> succeed anymore.  I'm guessing it's a flag I'm missing, but I'm having
> trouble figuring out what exactly and could use some help.  Any ideas what
> could be causing the issue?
>
> CMakeError and Output are attached.
>
> Thanks!
> -Robert
>

Re: CMake Issues After iOS Upgrade

Posted by Harshad Deshmukh <ha...@cs.wisc.edu>.
Hi Robert,


I can't find your attachments. Can you please resend or paste the logs in the email text?


Thanks,

Harshad

________________________________
From: Robert Claus <ro...@gmail.com>
Sent: Sunday, January 7, 2018 9:41:32 PM
To: dev@quickstep.incubator.apache.org
Subject: CMake Issues After iOS Upgrade

Hi Quickstep Team,

I finally upgraded my Mac to 10.13.1 this weekend but I can't get cmake to succeed anymore.  I'm guessing it's a flag I'm missing, but I'm having trouble figuring out what exactly and could use some help.  Any ideas what could be causing the issue?

CMakeError and Output are attached.

Thanks!
-Robert