[vz-users] vzlogger unter FreeBSD

Oliver Lehmann lehmann at ans-netz.de
Mon Mar 2 23:07:08 CET 2015


Matthias Behr <mbehr at mcbehr.de> wrote:

> Die Fehler von cmake sind komisch.
>
> Kannst du mal folgendes machen:
>
> git clone …
> cd vzlogger
> mkdir build
> cd build
> export CC=/usr/local/gcc
> $ export CXX=/usr/local/g++
>
> cmake ..
> make
>
> und Logs schicken?

Woher nimmt cmake die Logik das er meint er müsse auf pthread_create  
testen und dafür -lpthreads als LDFLAGS anwenden? Unter FreeBSD gibts  
das so nicht, es wird -pthread als argument benötigt

cmake läuft nach aktuellem git clone nicht durch.

-------------- next part --------------
Determining if the pthread_create exist failed with the following output:
Change Dir: /root/vzlogger/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/local/bin/gmake" "cmTryCompileExec2412045508/fast"
/usr/local/bin/gmake -f CMakeFiles/cmTryCompileExec2412045508.dir/build.make CMakeFiles/cmTryCompileExec2412045508.dir/build
gmake[1]: Entering directory '/root/vzlogger/build/CMakeFiles/CMakeTmp'
/usr/local/bin/cmake -E cmake_progress_report /root/vzlogger/build/CMakeFiles/CMakeTmp/CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec2412045508.dir/CheckSymbolExists.c.o
/usr/local/bin/gcc48   -W -Wall -Wno-system-headers -std=gnu99 -fkeep-inline-functions    -o CMakeFiles/cmTryCompileExec2412045508.dir/CheckSymbolExists.c.o   -c /root/vzlogger/build/CMakeFiles/CMakeTmp/CheckSymbolExists.c
Linking C executable cmTryCompileExec2412045508
/usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec2412045508.dir/link.txt --verbose=1
/usr/local/bin/gcc48   -W -Wall -Wno-system-headers -std=gnu99 -fkeep-inline-functions    CMakeFiles/cmTryCompileExec2412045508.dir/CheckSymbolExists.c.o  -o cmTryCompileExec2412045508  
CMakeFiles/cmTryCompileExec2412045508.dir/CheckSymbolExists.c.o: In function `main':
CheckSymbolExists.c:(.text+0x16): undefined reference to `pthread_create'
collect2: error: ld returned 1 exit status
CMakeFiles/cmTryCompileExec2412045508.dir/build.make:88: recipe for target 'cmTryCompileExec2412045508' failed
gmake[1]: *** [cmTryCompileExec2412045508] Error 1
gmake[1]: Leaving directory '/root/vzlogger/build/CMakeFiles/CMakeTmp'
Makefile:118: recipe for target 'cmTryCompileExec2412045508/fast' failed
gmake: *** [cmTryCompileExec2412045508/fast] Error 2

File /root/vzlogger/build/CMakeFiles/CMakeTmp/CheckSymbolExists.c:
/* */
#include <pthread.h>

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

Determining if the function pthread_create exists in the pthreads failed with the following output:
Change Dir: /root/vzlogger/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/local/bin/gmake" "cmTryCompileExec3201495124/fast"
/usr/local/bin/gmake -f CMakeFiles/cmTryCompileExec3201495124.dir/build.make CMakeFiles/cmTryCompileExec3201495124.dir/build
gmake[1]: Entering directory '/root/vzlogger/build/CMakeFiles/CMakeTmp'
/usr/local/bin/cmake -E cmake_progress_report /root/vzlogger/build/CMakeFiles/CMakeTmp/CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec3201495124.dir/CheckFunctionExists.c.o
/usr/local/bin/gcc48   -W -Wall -Wno-system-headers -std=gnu99 -fkeep-inline-functions -DCHECK_FUNCTION_EXISTS=pthread_create   -o CMakeFiles/cmTryCompileExec3201495124.dir/CheckFunctionExists.c.o   -c /usr/local/share/cmake/Modules/CheckFunctionExists.c
Linking C executable cmTryCompileExec3201495124
/usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec3201495124.dir/link.txt --verbose=1
/usr/local/bin/gcc48   -W -Wall -Wno-system-headers -std=gnu99 -fkeep-inline-functions -DCHECK_FUNCTION_EXISTS=pthread_create   CMakeFiles/cmTryCompileExec3201495124.dir/CheckFunctionExists.c.o  -o cmTryCompileExec3201495124  -lpthreads 
/usr/local/bin/ld: cannot find -lpthreads
collect2: error: ld returned 1 exit status
CMakeFiles/cmTryCompileExec3201495124.dir/build.make:88: recipe for target 'cmTryCompileExec3201495124' failed
gmake[1]: *** [cmTryCompileExec3201495124] Error 1
gmake[1]: Leaving directory '/root/vzlogger/build/CMakeFiles/CMakeTmp'
Makefile:118: recipe for target 'cmTryCompileExec3201495124/fast' failed
gmake: *** [cmTryCompileExec3201495124/fast] Error 2


-------------- next part --------------
The system is: FreeBSD - 10.1-PRERELEASE - amd64
Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded.
Compiler: /usr/local/bin/gcc48 
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 GNU, found in "/root/vzlogger/build/CMakeFiles/3.1.3/CompilerIdC/a.out"

Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded.
Compiler: /usr/local/bin/g++48 
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 GNU, found in "/root/vzlogger/build/CMakeFiles/3.1.3/CompilerIdCXX/a.out"

Determining if the C compiler works passed with the following output:
Change Dir: /root/vzlogger/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/local/bin/gmake" "cmTryCompileExec3284574209/fast"
/usr/local/bin/gmake -f CMakeFiles/cmTryCompileExec3284574209.dir/build.make CMakeFiles/cmTryCompileExec3284574209.dir/build
gmake[1]: Entering directory '/root/vzlogger/build/CMakeFiles/CMakeTmp'
/usr/local/bin/cmake -E cmake_progress_report /root/vzlogger/build/CMakeFiles/CMakeTmp/CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec3284574209.dir/testCCompiler.c.o
/usr/local/bin/gcc48    -o CMakeFiles/cmTryCompileExec3284574209.dir/testCCompiler.c.o   -c /root/vzlogger/build/CMakeFiles/CMakeTmp/testCCompiler.c
Linking C executable cmTryCompileExec3284574209
/usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec3284574209.dir/link.txt --verbose=1
/usr/local/bin/gcc48      CMakeFiles/cmTryCompileExec3284574209.dir/testCCompiler.c.o  -o cmTryCompileExec3284574209  
gmake[1]: Leaving directory '/root/vzlogger/build/CMakeFiles/CMakeTmp'


Detecting C compiler ABI info compiled with the following output:
Change Dir: /root/vzlogger/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/local/bin/gmake" "cmTryCompileExec2185134310/fast"
/usr/local/bin/gmake -f CMakeFiles/cmTryCompileExec2185134310.dir/build.make CMakeFiles/cmTryCompileExec2185134310.dir/build
gmake[1]: Entering directory '/root/vzlogger/build/CMakeFiles/CMakeTmp'
/usr/local/bin/cmake -E cmake_progress_report /root/vzlogger/build/CMakeFiles/CMakeTmp/CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec2185134310.dir/CMakeCCompilerABI.c.o
/usr/local/bin/gcc48    -o CMakeFiles/cmTryCompileExec2185134310.dir/CMakeCCompilerABI.c.o   -c /usr/local/share/cmake/Modules/CMakeCCompilerABI.c
Linking C executable cmTryCompileExec2185134310
/usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec2185134310.dir/link.txt --verbose=1
/usr/local/bin/gcc48     -v CMakeFiles/cmTryCompileExec2185134310.dir/CMakeCCompilerABI.c.o  -o cmTryCompileExec2185134310   
Using built-in specs.
COLLECT_GCC=/usr/local/bin/gcc48
COLLECT_LTO_WRAPPER=/usr/local/libexec/gcc48/gcc/x86_64-portbld-freebsd10.0/4.8.5/lto-wrapper
Target: x86_64-portbld-freebsd10.0
Configured with: ./../gcc-4.8-20150212/configure --with-build-config=bootstrap-debug --disable-nls --enable-gnu-indirect-function --libdir=/usr/local/lib/gcc48 --libexecdir=/usr/local/libexec/gcc48 --program-suffix=48 --with-as=/usr/local/bin/as --with-gmp=/usr/local --with-gxx-include-dir=/usr/local/lib/gcc48/include/c++/ --with-ld=/usr/local/bin/ld --with-pkgversion='FreeBSD Ports Collection' --with-system-zlib --with-ecj-jar=/usr/local/share/java/ecj-4.5.jar --enable-languages=c,c++,objc,fortran,java --prefix=/usr/local --mandir=/usr/local/man --infodir=/usr/local/info/gcc48 --build=x86_64-portbld-freebsd10.0
Thread model: posix
gcc version 4.8.5 20150212 (prerelease) (FreeBSD Ports Collection) 
COMPILER_PATH=/usr/local/libexec/gcc48/gcc/x86_64-portbld-freebsd10.0/4.8.5/:/usr/local/libexec/gcc48/gcc/x86_64-portbld-freebsd10.0/4.8.5/:/usr/local/libexec/gcc48/gcc/x86_64-portbld-freebsd10.0/:/usr/local/lib/gcc48/gcc/x86_64-portbld-freebsd10.0/4.8.5/:/usr/local/lib/gcc48/gcc/x86_64-portbld-freebsd10.0/:/usr/local/lib/gcc48/gcc/x86_64-portbld-freebsd10.0/4.8.5/../../../../../x86_64-portbld-freebsd10.0/bin/
LIBRARY_PATH=/usr/local/lib/gcc48/gcc/x86_64-portbld-freebsd10.0/4.8.5/:/usr/local/lib/gcc48/gcc/x86_64-portbld-freebsd10.0/4.8.5/../../../../../x86_64-portbld-freebsd10.0/lib/:/usr/local/lib/gcc48/gcc/x86_64-portbld-freebsd10.0/4.8.5/../../../:/lib/:/usr/lib/
COLLECT_GCC_OPTIONS='-v' '-o' 'cmTryCompileExec2185134310' '-mtune=generic' '-march=x86-64'
 /usr/local/libexec/gcc48/gcc/x86_64-portbld-freebsd10.0/4.8.5/collect2 --eh-frame-hdr -V -dynamic-linker /libexec/ld-elf.so.1 -o cmTryCompileExec2185134310 /usr/lib/crt1.o /usr/lib/crti.o /usr/local/lib/gcc48/gcc/x86_64-portbld-freebsd10.0/4.8.5/crtbegin.o -L/usr/local/lib/gcc48/gcc/x86_64-portbld-freebsd10.0/4.8.5 -L/usr/local/lib/gcc48/gcc/x86_64-portbld-freebsd10.0/4.8.5/../../../../../x86_64-portbld-freebsd10.0/lib -L/usr/local/lib/gcc48/gcc/x86_64-portbld-freebsd10.0/4.8.5/../../.. CMakeFiles/cmTryCompileExec2185134310.dir/CMakeCCompilerABI.c.o -lgcc --as-needed -lgcc_s --no-as-needed -lc -lgcc --as-needed -lgcc_s --no-as-needed /usr/local/lib/gcc48/gcc/x86_64-portbld-freebsd10.0/4.8.5/crtend.o /usr/lib/crtn.o
GNU ld (GNU Binutils) 2.25
  Supported emulations:
   elf_x86_64_fbsd
   elf_i386_fbsd
   elf_x86_64
   elf_i386
   elf_l1om
   elf_l1om_fbsd
   elf_k1om
   elf_k1om_fbsd
gmake[1]: Leaving directory '/root/vzlogger/build/CMakeFiles/CMakeTmp'


Parsed C implicit link information from above output:
  link line regex: [^( *|.*[/\])(ld|([^/\]+-)?ld|collect2)[^/\]*( |$)]
  ignore line: [Change Dir: /root/vzlogger/build/CMakeFiles/CMakeTmp]
  ignore line: []
  ignore line: [Run Build Command:"/usr/local/bin/gmake" "cmTryCompileExec2185134310/fast"]
  ignore line: [/usr/local/bin/gmake -f CMakeFiles/cmTryCompileExec2185134310.dir/build.make CMakeFiles/cmTryCompileExec2185134310.dir/build]
  ignore line: [gmake[1]: Entering directory '/root/vzlogger/build/CMakeFiles/CMakeTmp']
  ignore line: [/usr/local/bin/cmake -E cmake_progress_report /root/vzlogger/build/CMakeFiles/CMakeTmp/CMakeFiles 1]
  ignore line: [Building C object CMakeFiles/cmTryCompileExec2185134310.dir/CMakeCCompilerABI.c.o]
  ignore line: [/usr/local/bin/gcc48    -o CMakeFiles/cmTryCompileExec2185134310.dir/CMakeCCompilerABI.c.o   -c /usr/local/share/cmake/Modules/CMakeCCompilerABI.c]
  ignore line: [Linking C executable cmTryCompileExec2185134310]
  ignore line: [/usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec2185134310.dir/link.txt --verbose=1]
  ignore line: [/usr/local/bin/gcc48     -v CMakeFiles/cmTryCompileExec2185134310.dir/CMakeCCompilerABI.c.o  -o cmTryCompileExec2185134310   ]
  ignore line: [Using built-in specs.]
  ignore line: [COLLECT_GCC=/usr/local/bin/gcc48]
  ignore line: [COLLECT_LTO_WRAPPER=/usr/local/libexec/gcc48/gcc/x86_64-portbld-freebsd10.0/4.8.5/lto-wrapper]
  ignore line: [Target: x86_64-portbld-freebsd10.0]
  ignore line: [Configured with: ./../gcc-4.8-20150212/configure --with-build-config=bootstrap-debug --disable-nls --enable-gnu-indirect-function --libdir=/usr/local/lib/gcc48 --libexecdir=/usr/local/libexec/gcc48 --program-suffix=48 --with-as=/usr/local/bin/as --with-gmp=/usr/local --with-gxx-include-dir=/usr/local/lib/gcc48/include/c++/ --with-ld=/usr/local/bin/ld --with-pkgversion='FreeBSD Ports Collection' --with-system-zlib --with-ecj-jar=/usr/local/share/java/ecj-4.5.jar --enable-languages=c,c++,objc,fortran,java --prefix=/usr/local --mandir=/usr/local/man --infodir=/usr/local/info/gcc48 --build=x86_64-portbld-freebsd10.0]
  ignore line: [Thread model: posix]
  ignore line: [gcc version 4.8.5 20150212 (prerelease) (FreeBSD Ports Collection) ]
  ignore line: [COMPILER_PATH=/usr/local/libexec/gcc48/gcc/x86_64-portbld-freebsd10.0/4.8.5/:/usr/local/libexec/gcc48/gcc/x86_64-portbld-freebsd10.0/4.8.5/:/usr/local/libexec/gcc48/gcc/x86_64-portbld-freebsd10.0/:/usr/local/lib/gcc48/gcc/x86_64-portbld-freebsd10.0/4.8.5/:/usr/local/lib/gcc48/gcc/x86_64-portbld-freebsd10.0/:/usr/local/lib/gcc48/gcc/x86_64-portbld-freebsd10.0/4.8.5/../../../../../x86_64-portbld-freebsd10.0/bin/]
  ignore line: [LIBRARY_PATH=/usr/local/lib/gcc48/gcc/x86_64-portbld-freebsd10.0/4.8.5/:/usr/local/lib/gcc48/gcc/x86_64-portbld-freebsd10.0/4.8.5/../../../../../x86_64-portbld-freebsd10.0/lib/:/usr/local/lib/gcc48/gcc/x86_64-portbld-freebsd10.0/4.8.5/../../../:/lib/:/usr/lib/]
  ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTryCompileExec2185134310' '-mtune=generic' '-march=x86-64']
  link line: [ /usr/local/libexec/gcc48/gcc/x86_64-portbld-freebsd10.0/4.8.5/collect2 --eh-frame-hdr -V -dynamic-linker /libexec/ld-elf.so.1 -o cmTryCompileExec2185134310 /usr/lib/crt1.o /usr/lib/crti.o /usr/local/lib/gcc48/gcc/x86_64-portbld-freebsd10.0/4.8.5/crtbegin.o -L/usr/local/lib/gcc48/gcc/x86_64-portbld-freebsd10.0/4.8.5 -L/usr/local/lib/gcc48/gcc/x86_64-portbld-freebsd10.0/4.8.5/../../../../../x86_64-portbld-freebsd10.0/lib -L/usr/local/lib/gcc48/gcc/x86_64-portbld-freebsd10.0/4.8.5/../../.. CMakeFiles/cmTryCompileExec2185134310.dir/CMakeCCompilerABI.c.o -lgcc --as-needed -lgcc_s --no-as-needed -lc -lgcc --as-needed -lgcc_s --no-as-needed /usr/local/lib/gcc48/gcc/x86_64-portbld-freebsd10.0/4.8.5/crtend.o /usr/lib/crtn.o]
    arg [/usr/local/libexec/gcc48/gcc/x86_64-portbld-freebsd10.0/4.8.5/collect2] ==> ignore
    arg [--eh-frame-hdr] ==> ignore
    arg [-V] ==> ignore
    arg [-dynamic-linker] ==> ignore
    arg [/libexec/ld-elf.so.1] ==> ignore
    arg [-o] ==> ignore
    arg [cmTryCompileExec2185134310] ==> ignore
    arg [/usr/lib/crt1.o] ==> ignore
    arg [/usr/lib/crti.o] ==> ignore
    arg [/usr/local/lib/gcc48/gcc/x86_64-portbld-freebsd10.0/4.8.5/crtbegin.o] ==> ignore
    arg [-L/usr/local/lib/gcc48/gcc/x86_64-portbld-freebsd10.0/4.8.5] ==> dir [/usr/local/lib/gcc48/gcc/x86_64-portbld-freebsd10.0/4.8.5]
    arg [-L/usr/local/lib/gcc48/gcc/x86_64-portbld-freebsd10.0/4.8.5/../../../../../x86_64-portbld-freebsd10.0/lib] ==> dir [/usr/local/lib/gcc48/gcc/x86_64-portbld-freebsd10.0/4.8.5/../../../../../x86_64-portbld-freebsd10.0/lib]
    arg [-L/usr/local/lib/gcc48/gcc/x86_64-portbld-freebsd10.0/4.8.5/../../..] ==> dir [/usr/local/lib/gcc48/gcc/x86_64-portbld-freebsd10.0/4.8.5/../../..]
    arg [CMakeFiles/cmTryCompileExec2185134310.dir/CMakeCCompilerABI.c.o] ==> ignore
    arg [-lgcc] ==> lib [gcc]
    arg [--as-needed] ==> ignore
    arg [-lgcc_s] ==> lib [gcc_s]
    arg [--no-as-needed] ==> ignore
    arg [-lc] ==> lib [c]
    arg [-lgcc] ==> lib [gcc]
    arg [--as-needed] ==> ignore
    arg [-lgcc_s] ==> lib [gcc_s]
    arg [--no-as-needed] ==> ignore
    arg [/usr/local/lib/gcc48/gcc/x86_64-portbld-freebsd10.0/4.8.5/crtend.o] ==> ignore
    arg [/usr/lib/crtn.o] ==> ignore
  remove lib [gcc]
  remove lib [gcc_s]
  remove lib [gcc]
  remove lib [gcc_s]
  collapse library dir [/usr/local/lib/gcc48/gcc/x86_64-portbld-freebsd10.0/4.8.5] ==> [/usr/local/lib/gcc48/gcc/x86_64-portbld-freebsd10.0/4.8.5]
  collapse library dir [/usr/local/lib/gcc48/gcc/x86_64-portbld-freebsd10.0/4.8.5/../../../../../x86_64-portbld-freebsd10.0/lib] ==> [/usr/local/x86_64-portbld-freebsd10.0/lib]
  collapse library dir [/usr/local/lib/gcc48/gcc/x86_64-portbld-freebsd10.0/4.8.5/../../..] ==> [/usr/local/lib/gcc48]
  implicit libs: [c]
  implicit dirs: [/usr/local/lib/gcc48/gcc/x86_64-portbld-freebsd10.0/4.8.5;/usr/local/x86_64-portbld-freebsd10.0/lib;/usr/local/lib/gcc48]
  implicit fwks: []




Detecting C [-std=c90] compiler features compiled with the following output:
Change Dir: /root/vzlogger/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/local/bin/gmake" "cmTryCompileExec4290858091/fast"
/usr/local/bin/gmake -f CMakeFiles/cmTryCompileExec4290858091.dir/build.make CMakeFiles/cmTryCompileExec4290858091.dir/build
gmake[1]: Entering directory '/root/vzlogger/build/CMakeFiles/CMakeTmp'
/usr/local/bin/cmake -E cmake_progress_report /root/vzlogger/build/CMakeFiles/CMakeTmp/CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec4290858091.dir/feature_tests.c.o
/usr/local/bin/gcc48   -std=c90 -o CMakeFiles/cmTryCompileExec4290858091.dir/feature_tests.c.o   -c /root/vzlogger/build/CMakeFiles/feature_tests.c
Linking C executable cmTryCompileExec4290858091
/usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec4290858091.dir/link.txt --verbose=1
/usr/local/bin/gcc48      CMakeFiles/cmTryCompileExec4290858091.dir/feature_tests.c.o  -o cmTryCompileExec4290858091  
gmake[1]: Leaving directory '/root/vzlogger/build/CMakeFiles/CMakeTmp'


    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


Detecting C [-std=c99] compiler features compiled with the following output:
Change Dir: /root/vzlogger/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/local/bin/gmake" "cmTryCompileExec272223657/fast"
/usr/local/bin/gmake -f CMakeFiles/cmTryCompileExec272223657.dir/build.make CMakeFiles/cmTryCompileExec272223657.dir/build
gmake[1]: Entering directory '/root/vzlogger/build/CMakeFiles/CMakeTmp'
/usr/local/bin/cmake -E cmake_progress_report /root/vzlogger/build/CMakeFiles/CMakeTmp/CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec272223657.dir/feature_tests.c.o
/usr/local/bin/gcc48   -std=c99 -o CMakeFiles/cmTryCompileExec272223657.dir/feature_tests.c.o   -c /root/vzlogger/build/CMakeFiles/feature_tests.c
Linking C executable cmTryCompileExec272223657
/usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec272223657.dir/link.txt --verbose=1
/usr/local/bin/gcc48      CMakeFiles/cmTryCompileExec272223657.dir/feature_tests.c.o  -o cmTryCompileExec272223657  
gmake[1]: Leaving directory '/root/vzlogger/build/CMakeFiles/CMakeTmp'


    Feature record: C_FEATURE:0c_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=c11] compiler features compiled with the following output:
Change Dir: /root/vzlogger/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/local/bin/gmake" "cmTryCompileExec3591165687/fast"
/usr/local/bin/gmake -f CMakeFiles/cmTryCompileExec3591165687.dir/build.make CMakeFiles/cmTryCompileExec3591165687.dir/build
gmake[1]: Entering directory '/root/vzlogger/build/CMakeFiles/CMakeTmp'
/usr/local/bin/cmake -E cmake_progress_report /root/vzlogger/build/CMakeFiles/CMakeTmp/CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec3591165687.dir/feature_tests.c.o
/usr/local/bin/gcc48   -std=c11 -o CMakeFiles/cmTryCompileExec3591165687.dir/feature_tests.c.o   -c /root/vzlogger/build/CMakeFiles/feature_tests.c
Linking C executable cmTryCompileExec3591165687
/usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec3591165687.dir/link.txt --verbose=1
/usr/local/bin/gcc48      CMakeFiles/cmTryCompileExec3591165687.dir/feature_tests.c.o  -o cmTryCompileExec3591165687  
gmake[1]: Leaving directory '/root/vzlogger/build/CMakeFiles/CMakeTmp'


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

Run Build Command:"/usr/local/bin/gmake" "cmTryCompileExec3086878593/fast"
/usr/local/bin/gmake -f CMakeFiles/cmTryCompileExec3086878593.dir/build.make CMakeFiles/cmTryCompileExec3086878593.dir/build
gmake[1]: Entering directory '/root/vzlogger/build/CMakeFiles/CMakeTmp'
/usr/local/bin/cmake -E cmake_progress_report /root/vzlogger/build/CMakeFiles/CMakeTmp/CMakeFiles 1
Building CXX object CMakeFiles/cmTryCompileExec3086878593.dir/testCXXCompiler.cxx.o
/usr/local/bin/g++48     -o CMakeFiles/cmTryCompileExec3086878593.dir/testCXXCompiler.cxx.o -c /root/vzlogger/build/CMakeFiles/CMakeTmp/testCXXCompiler.cxx
Linking CXX executable cmTryCompileExec3086878593
/usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec3086878593.dir/link.txt --verbose=1
/usr/local/bin/g++48       CMakeFiles/cmTryCompileExec3086878593.dir/testCXXCompiler.cxx.o  -o cmTryCompileExec3086878593  
gmake[1]: Leaving directory '/root/vzlogger/build/CMakeFiles/CMakeTmp'


Detecting CXX compiler ABI info compiled with the following output:
Change Dir: /root/vzlogger/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/local/bin/gmake" "cmTryCompileExec3121345823/fast"
/usr/local/bin/gmake -f CMakeFiles/cmTryCompileExec3121345823.dir/build.make CMakeFiles/cmTryCompileExec3121345823.dir/build
gmake[1]: Entering directory '/root/vzlogger/build/CMakeFiles/CMakeTmp'
/usr/local/bin/cmake -E cmake_progress_report /root/vzlogger/build/CMakeFiles/CMakeTmp/CMakeFiles 1
Building CXX object CMakeFiles/cmTryCompileExec3121345823.dir/CMakeCXXCompilerABI.cpp.o
/usr/local/bin/g++48     -o CMakeFiles/cmTryCompileExec3121345823.dir/CMakeCXXCompilerABI.cpp.o -c /usr/local/share/cmake/Modules/CMakeCXXCompilerABI.cpp
Linking CXX executable cmTryCompileExec3121345823
/usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec3121345823.dir/link.txt --verbose=1
/usr/local/bin/g++48      -v CMakeFiles/cmTryCompileExec3121345823.dir/CMakeCXXCompilerABI.cpp.o  -o cmTryCompileExec3121345823   
Using built-in specs.
COLLECT_GCC=/usr/local/bin/g++48
COLLECT_LTO_WRAPPER=/usr/local/libexec/gcc48/gcc/x86_64-portbld-freebsd10.0/4.8.5/lto-wrapper
Target: x86_64-portbld-freebsd10.0
Configured with: ./../gcc-4.8-20150212/configure --with-build-config=bootstrap-debug --disable-nls --enable-gnu-indirect-function --libdir=/usr/local/lib/gcc48 --libexecdir=/usr/local/libexec/gcc48 --program-suffix=48 --with-as=/usr/local/bin/as --with-gmp=/usr/local --with-gxx-include-dir=/usr/local/lib/gcc48/include/c++/ --with-ld=/usr/local/bin/ld --with-pkgversion='FreeBSD Ports Collection' --with-system-zlib --with-ecj-jar=/usr/local/share/java/ecj-4.5.jar --enable-languages=c,c++,objc,fortran,java --prefix=/usr/local --mandir=/usr/local/man --infodir=/usr/local/info/gcc48 --build=x86_64-portbld-freebsd10.0
Thread model: posix
gcc version 4.8.5 20150212 (prerelease) (FreeBSD Ports Collection) 
COMPILER_PATH=/usr/local/libexec/gcc48/gcc/x86_64-portbld-freebsd10.0/4.8.5/:/usr/local/libexec/gcc48/gcc/x86_64-portbld-freebsd10.0/4.8.5/:/usr/local/libexec/gcc48/gcc/x86_64-portbld-freebsd10.0/:/usr/local/lib/gcc48/gcc/x86_64-portbld-freebsd10.0/4.8.5/:/usr/local/lib/gcc48/gcc/x86_64-portbld-freebsd10.0/:/usr/local/lib/gcc48/gcc/x86_64-portbld-freebsd10.0/4.8.5/../../../../../x86_64-portbld-freebsd10.0/bin/
LIBRARY_PATH=/usr/local/lib/gcc48/gcc/x86_64-portbld-freebsd10.0/4.8.5/:/usr/local/lib/gcc48/gcc/x86_64-portbld-freebsd10.0/4.8.5/../../../../../x86_64-portbld-freebsd10.0/lib/:/usr/local/lib/gcc48/gcc/x86_64-portbld-freebsd10.0/4.8.5/../../../:/lib/:/usr/lib/
COLLECT_GCC_OPTIONS='-v' '-o' 'cmTryCompileExec3121345823' '-shared-libgcc' '-mtune=generic' '-march=x86-64'
 /usr/local/libexec/gcc48/gcc/x86_64-portbld-freebsd10.0/4.8.5/collect2 --eh-frame-hdr -V -dynamic-linker /libexec/ld-elf.so.1 -o cmTryCompileExec3121345823 /usr/lib/crt1.o /usr/lib/crti.o /usr/local/lib/gcc48/gcc/x86_64-portbld-freebsd10.0/4.8.5/crtbegin.o -L/usr/local/lib/gcc48/gcc/x86_64-portbld-freebsd10.0/4.8.5 -L/usr/local/lib/gcc48/gcc/x86_64-portbld-freebsd10.0/4.8.5/../../../../../x86_64-portbld-freebsd10.0/lib -L/usr/local/lib/gcc48/gcc/x86_64-portbld-freebsd10.0/4.8.5/../../.. CMakeFiles/cmTryCompileExec3121345823.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/local/lib/gcc48/gcc/x86_64-portbld-freebsd10.0/4.8.5/crtend.o /usr/lib/crtn.o
GNU ld (GNU Binutils) 2.25
  Supported emulations:
   elf_x86_64_fbsd
   elf_i386_fbsd
   elf_x86_64
   elf_i386
   elf_l1om
   elf_l1om_fbsd
   elf_k1om
   elf_k1om_fbsd
gmake[1]: Leaving directory '/root/vzlogger/build/CMakeFiles/CMakeTmp'


Parsed CXX implicit link information from above output:
  link line regex: [^( *|.*[/\])(ld|([^/\]+-)?ld|collect2)[^/\]*( |$)]
  ignore line: [Change Dir: /root/vzlogger/build/CMakeFiles/CMakeTmp]
  ignore line: []
  ignore line: [Run Build Command:"/usr/local/bin/gmake" "cmTryCompileExec3121345823/fast"]
  ignore line: [/usr/local/bin/gmake -f CMakeFiles/cmTryCompileExec3121345823.dir/build.make CMakeFiles/cmTryCompileExec3121345823.dir/build]
  ignore line: [gmake[1]: Entering directory '/root/vzlogger/build/CMakeFiles/CMakeTmp']
  ignore line: [/usr/local/bin/cmake -E cmake_progress_report /root/vzlogger/build/CMakeFiles/CMakeTmp/CMakeFiles 1]
  ignore line: [Building CXX object CMakeFiles/cmTryCompileExec3121345823.dir/CMakeCXXCompilerABI.cpp.o]
  ignore line: [/usr/local/bin/g++48     -o CMakeFiles/cmTryCompileExec3121345823.dir/CMakeCXXCompilerABI.cpp.o -c /usr/local/share/cmake/Modules/CMakeCXXCompilerABI.cpp]
  ignore line: [Linking CXX executable cmTryCompileExec3121345823]
  ignore line: [/usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec3121345823.dir/link.txt --verbose=1]
  ignore line: [/usr/local/bin/g++48      -v CMakeFiles/cmTryCompileExec3121345823.dir/CMakeCXXCompilerABI.cpp.o  -o cmTryCompileExec3121345823   ]
  ignore line: [Using built-in specs.]
  ignore line: [COLLECT_GCC=/usr/local/bin/g++48]
  ignore line: [COLLECT_LTO_WRAPPER=/usr/local/libexec/gcc48/gcc/x86_64-portbld-freebsd10.0/4.8.5/lto-wrapper]
  ignore line: [Target: x86_64-portbld-freebsd10.0]
  ignore line: [Configured with: ./../gcc-4.8-20150212/configure --with-build-config=bootstrap-debug --disable-nls --enable-gnu-indirect-function --libdir=/usr/local/lib/gcc48 --libexecdir=/usr/local/libexec/gcc48 --program-suffix=48 --with-as=/usr/local/bin/as --with-gmp=/usr/local --with-gxx-include-dir=/usr/local/lib/gcc48/include/c++/ --with-ld=/usr/local/bin/ld --with-pkgversion='FreeBSD Ports Collection' --with-system-zlib --with-ecj-jar=/usr/local/share/java/ecj-4.5.jar --enable-languages=c,c++,objc,fortran,java --prefix=/usr/local --mandir=/usr/local/man --infodir=/usr/local/info/gcc48 --build=x86_64-portbld-freebsd10.0]
  ignore line: [Thread model: posix]
  ignore line: [gcc version 4.8.5 20150212 (prerelease) (FreeBSD Ports Collection) ]
  ignore line: [COMPILER_PATH=/usr/local/libexec/gcc48/gcc/x86_64-portbld-freebsd10.0/4.8.5/:/usr/local/libexec/gcc48/gcc/x86_64-portbld-freebsd10.0/4.8.5/:/usr/local/libexec/gcc48/gcc/x86_64-portbld-freebsd10.0/:/usr/local/lib/gcc48/gcc/x86_64-portbld-freebsd10.0/4.8.5/:/usr/local/lib/gcc48/gcc/x86_64-portbld-freebsd10.0/:/usr/local/lib/gcc48/gcc/x86_64-portbld-freebsd10.0/4.8.5/../../../../../x86_64-portbld-freebsd10.0/bin/]
  ignore line: [LIBRARY_PATH=/usr/local/lib/gcc48/gcc/x86_64-portbld-freebsd10.0/4.8.5/:/usr/local/lib/gcc48/gcc/x86_64-portbld-freebsd10.0/4.8.5/../../../../../x86_64-portbld-freebsd10.0/lib/:/usr/local/lib/gcc48/gcc/x86_64-portbld-freebsd10.0/4.8.5/../../../:/lib/:/usr/lib/]
  ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTryCompileExec3121345823' '-shared-libgcc' '-mtune=generic' '-march=x86-64']
  link line: [ /usr/local/libexec/gcc48/gcc/x86_64-portbld-freebsd10.0/4.8.5/collect2 --eh-frame-hdr -V -dynamic-linker /libexec/ld-elf.so.1 -o cmTryCompileExec3121345823 /usr/lib/crt1.o /usr/lib/crti.o /usr/local/lib/gcc48/gcc/x86_64-portbld-freebsd10.0/4.8.5/crtbegin.o -L/usr/local/lib/gcc48/gcc/x86_64-portbld-freebsd10.0/4.8.5 -L/usr/local/lib/gcc48/gcc/x86_64-portbld-freebsd10.0/4.8.5/../../../../../x86_64-portbld-freebsd10.0/lib -L/usr/local/lib/gcc48/gcc/x86_64-portbld-freebsd10.0/4.8.5/../../.. CMakeFiles/cmTryCompileExec3121345823.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/local/lib/gcc48/gcc/x86_64-portbld-freebsd10.0/4.8.5/crtend.o /usr/lib/crtn.o]
    arg [/usr/local/libexec/gcc48/gcc/x86_64-portbld-freebsd10.0/4.8.5/collect2] ==> ignore
    arg [--eh-frame-hdr] ==> ignore
    arg [-V] ==> ignore
    arg [-dynamic-linker] ==> ignore
    arg [/libexec/ld-elf.so.1] ==> ignore
    arg [-o] ==> ignore
    arg [cmTryCompileExec3121345823] ==> ignore
    arg [/usr/lib/crt1.o] ==> ignore
    arg [/usr/lib/crti.o] ==> ignore
    arg [/usr/local/lib/gcc48/gcc/x86_64-portbld-freebsd10.0/4.8.5/crtbegin.o] ==> ignore
    arg [-L/usr/local/lib/gcc48/gcc/x86_64-portbld-freebsd10.0/4.8.5] ==> dir [/usr/local/lib/gcc48/gcc/x86_64-portbld-freebsd10.0/4.8.5]
    arg [-L/usr/local/lib/gcc48/gcc/x86_64-portbld-freebsd10.0/4.8.5/../../../../../x86_64-portbld-freebsd10.0/lib] ==> dir [/usr/local/lib/gcc48/gcc/x86_64-portbld-freebsd10.0/4.8.5/../../../../../x86_64-portbld-freebsd10.0/lib]
    arg [-L/usr/local/lib/gcc48/gcc/x86_64-portbld-freebsd10.0/4.8.5/../../..] ==> dir [/usr/local/lib/gcc48/gcc/x86_64-portbld-freebsd10.0/4.8.5/../../..]
    arg [CMakeFiles/cmTryCompileExec3121345823.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore
    arg [-lstdc++] ==> lib [stdc++]
    arg [-lm] ==> lib [m]
    arg [-lgcc_s] ==> lib [gcc_s]
    arg [-lgcc] ==> lib [gcc]
    arg [-lc] ==> lib [c]
    arg [-lgcc_s] ==> lib [gcc_s]
    arg [-lgcc] ==> lib [gcc]
    arg [/usr/local/lib/gcc48/gcc/x86_64-portbld-freebsd10.0/4.8.5/crtend.o] ==> ignore
    arg [/usr/lib/crtn.o] ==> ignore
  remove lib [gcc_s]
  remove lib [gcc]
  remove lib [gcc_s]
  remove lib [gcc]
  collapse library dir [/usr/local/lib/gcc48/gcc/x86_64-portbld-freebsd10.0/4.8.5] ==> [/usr/local/lib/gcc48/gcc/x86_64-portbld-freebsd10.0/4.8.5]
  collapse library dir [/usr/local/lib/gcc48/gcc/x86_64-portbld-freebsd10.0/4.8.5/../../../../../x86_64-portbld-freebsd10.0/lib] ==> [/usr/local/x86_64-portbld-freebsd10.0/lib]
  collapse library dir [/usr/local/lib/gcc48/gcc/x86_64-portbld-freebsd10.0/4.8.5/../../..] ==> [/usr/local/lib/gcc48]
  implicit libs: [stdc++;m;c]
  implicit dirs: [/usr/local/lib/gcc48/gcc/x86_64-portbld-freebsd10.0/4.8.5;/usr/local/x86_64-portbld-freebsd10.0/lib;/usr/local/lib/gcc48]
  implicit fwks: []




Detecting CXX [-std=c++1y] compiler features compiled with the following output:
Change Dir: /root/vzlogger/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/local/bin/gmake" "cmTryCompileExec3280286389/fast"
/usr/local/bin/gmake -f CMakeFiles/cmTryCompileExec3280286389.dir/build.make CMakeFiles/cmTryCompileExec3280286389.dir/build
gmake[1]: Entering directory '/root/vzlogger/build/CMakeFiles/CMakeTmp'
/usr/local/bin/cmake -E cmake_progress_report /root/vzlogger/build/CMakeFiles/CMakeTmp/CMakeFiles 1
Building CXX object CMakeFiles/cmTryCompileExec3280286389.dir/feature_tests.cxx.o
/usr/local/bin/g++48    -std=c++1y -o CMakeFiles/cmTryCompileExec3280286389.dir/feature_tests.cxx.o -c /root/vzlogger/build/CMakeFiles/feature_tests.cxx
Linking CXX executable cmTryCompileExec3280286389
/usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec3280286389.dir/link.txt --verbose=1
/usr/local/bin/g++48       CMakeFiles/cmTryCompileExec3280286389.dir/feature_tests.cxx.o  -o cmTryCompileExec3280286389  
gmake[1]: Leaving directory '/root/vzlogger/build/CMakeFiles/CMakeTmp'


    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_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_variadic_macros
    Feature record: CXX_FEATURE:1cxx_variadic_templates


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

Run Build Command:"/usr/local/bin/gmake" "cmTryCompileExec968870411/fast"
/usr/local/bin/gmake -f CMakeFiles/cmTryCompileExec968870411.dir/build.make CMakeFiles/cmTryCompileExec968870411.dir/build
gmake[1]: Entering directory '/root/vzlogger/build/CMakeFiles/CMakeTmp'
/usr/local/bin/cmake -E cmake_progress_report /root/vzlogger/build/CMakeFiles/CMakeTmp/CMakeFiles 1
Building CXX object CMakeFiles/cmTryCompileExec968870411.dir/feature_tests.cxx.o
/usr/local/bin/g++48    -std=c++11 -o CMakeFiles/cmTryCompileExec968870411.dir/feature_tests.cxx.o -c /root/vzlogger/build/CMakeFiles/feature_tests.cxx
Linking CXX executable cmTryCompileExec968870411
/usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec968870411.dir/link.txt --verbose=1
/usr/local/bin/g++48       CMakeFiles/cmTryCompileExec968870411.dir/feature_tests.cxx.o  -o cmTryCompileExec968870411  
gmake[1]: Leaving directory '/root/vzlogger/build/CMakeFiles/CMakeTmp'


    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_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_variadic_macros
    Feature record: CXX_FEATURE:1cxx_variadic_templates


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

Run Build Command:"/usr/local/bin/gmake" "cmTryCompileExec1372429249/fast"
/usr/local/bin/gmake -f CMakeFiles/cmTryCompileExec1372429249.dir/build.make CMakeFiles/cmTryCompileExec1372429249.dir/build
gmake[1]: Entering directory '/root/vzlogger/build/CMakeFiles/CMakeTmp'
/usr/local/bin/cmake -E cmake_progress_report /root/vzlogger/build/CMakeFiles/CMakeTmp/CMakeFiles 1
Building CXX object CMakeFiles/cmTryCompileExec1372429249.dir/feature_tests.cxx.o
/usr/local/bin/g++48    -std=c++98 -o CMakeFiles/cmTryCompileExec1372429249.dir/feature_tests.cxx.o -c /root/vzlogger/build/CMakeFiles/feature_tests.cxx
Linking CXX executable cmTryCompileExec1372429249
/usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec1372429249.dir/link.txt --verbose=1
/usr/local/bin/g++48       CMakeFiles/cmTryCompileExec1372429249.dir/feature_tests.cxx.o  -o cmTryCompileExec1372429249  
gmake[1]: Leaving directory '/root/vzlogger/build/CMakeFiles/CMakeTmp'


    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_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_variadic_macros
    Feature record: CXX_FEATURE:0cxx_variadic_templates
Performing C++ SOURCE FILE Test W_NO_IGNORED_QUALIFIERS succeded with the following output:
Change Dir: /root/vzlogger/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/local/bin/gmake" "cmTryCompileExec2193634913/fast"
/usr/local/bin/gmake -f CMakeFiles/cmTryCompileExec2193634913.dir/build.make CMakeFiles/cmTryCompileExec2193634913.dir/build
gmake[1]: Entering directory '/root/vzlogger/build/CMakeFiles/CMakeTmp'
/usr/local/bin/cmake -E cmake_progress_report /root/vzlogger/build/CMakeFiles/CMakeTmp/CMakeFiles 1
Building CXX object CMakeFiles/cmTryCompileExec2193634913.dir/src.cxx.o
/usr/local/bin/g++48    -W -Wall -Wextra -Werror -Wnon-virtual-dtor -Wno-system-headers -Winit-self -Wmissing-include-dirs -Wno-pragmas -Wredundant-decls -Wno-unused-parameter -std=c++0x -fpermissive -DW_NO_IGNORED_QUALIFIERS -Wno-ignored-qualifiers   -o CMakeFiles/cmTryCompileExec2193634913.dir/src.cxx.o -c /root/vzlogger/build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTryCompileExec2193634913
/usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec2193634913.dir/link.txt --verbose=1
/usr/local/bin/g++48    -W -Wall -Wextra -Werror -Wnon-virtual-dtor -Wno-system-headers -Winit-self -Wmissing-include-dirs -Wno-pragmas -Wredundant-decls -Wno-unused-parameter -std=c++0x -fpermissive -DW_NO_IGNORED_QUALIFIERS -Wno-ignored-qualifiers   CMakeFiles/cmTryCompileExec2193634913.dir/src.cxx.o  -o cmTryCompileExec2193634913  
gmake[1]: Leaving directory '/root/vzlogger/build/CMakeFiles/CMakeTmp'

Source file was:
int main () { return 0; }
Determining if files pthread.h exist passed with the following output:
Change Dir: /root/vzlogger/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/local/bin/gmake" "cmTryCompileExec104744327/fast"
/usr/local/bin/gmake -f CMakeFiles/cmTryCompileExec104744327.dir/build.make CMakeFiles/cmTryCompileExec104744327.dir/build
gmake[1]: Entering directory '/root/vzlogger/build/CMakeFiles/CMakeTmp'
/usr/local/bin/cmake -E cmake_progress_report /root/vzlogger/build/CMakeFiles/CMakeTmp/CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec104744327.dir/CheckIncludeFiles.c.o
/usr/local/bin/gcc48   -W -Wall -Wno-system-headers -std=gnu99 -fkeep-inline-functions    -o CMakeFiles/cmTryCompileExec104744327.dir/CheckIncludeFiles.c.o   -c /root/vzlogger/build/CMakeFiles/CMakeTmp/CheckIncludeFiles.c
Linking C executable cmTryCompileExec104744327
/usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec104744327.dir/link.txt --verbose=1
/usr/local/bin/gcc48   -W -Wall -Wno-system-headers -std=gnu99 -fkeep-inline-functions    CMakeFiles/cmTryCompileExec104744327.dir/CheckIncludeFiles.c.o  -o cmTryCompileExec104744327  
gmake[1]: Leaving directory '/root/vzlogger/build/CMakeFiles/CMakeTmp'


Determining if the function pthread_create exists in the pthread passed with the following output:
Change Dir: /root/vzlogger/build/CMakeFiles/CMakeTmp

Run Build Command:"/usr/local/bin/gmake" "cmTryCompileExec890625450/fast"
/usr/local/bin/gmake -f CMakeFiles/cmTryCompileExec890625450.dir/build.make CMakeFiles/cmTryCompileExec890625450.dir/build
gmake[1]: Entering directory '/root/vzlogger/build/CMakeFiles/CMakeTmp'
/usr/local/bin/cmake -E cmake_progress_report /root/vzlogger/build/CMakeFiles/CMakeTmp/CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec890625450.dir/CheckFunctionExists.c.o
/usr/local/bin/gcc48   -W -Wall -Wno-system-headers -std=gnu99 -fkeep-inline-functions -DCHECK_FUNCTION_EXISTS=pthread_create   -o CMakeFiles/cmTryCompileExec890625450.dir/CheckFunctionExists.c.o   -c /usr/local/share/cmake/Modules/CheckFunctionExists.c
Linking C executable cmTryCompileExec890625450
/usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec890625450.dir/link.txt --verbose=1
/usr/local/bin/gcc48   -W -Wall -Wno-system-headers -std=gnu99 -fkeep-inline-functions -DCHECK_FUNCTION_EXISTS=pthread_create   CMakeFiles/cmTryCompileExec890625450.dir/CheckFunctionExists.c.o  -o cmTryCompileExec890625450  -lpthread 
gmake[1]: Leaving directory '/root/vzlogger/build/CMakeFiles/CMakeTmp'




More information about the volkszaehler-users mailing list