Re: error executing ./do_cmake.sh

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



okay, so after installing valgrind, and running ./do_cmake.sh heres the error output:
https://paste.sh/1dQL3GSW#YLXkLHPyoV9dlyTh8g_pdzow

please find attached the error logs

On Thu, Oct 29, 2020 at 5:46 PM Brad Hubbard <bhubbard@xxxxxxxxxx> wrote:
So if you install valgrind how far does ./do_cmake.sh get now?

If it still errors out could you include the entire output of the
script as well as CMakeError.log and CMakeOutput.log?

On Thu, Oct 29, 2020 at 8:22 PM dorinda bassey <dorindabassey@xxxxxxxxx> wrote:
>
> when i ran "./install-deps.sh" it completed without error
> here's the output
> https://paste.sh/vqn_g5Gz#Ido8-oMLfE1PGY8cFtUlkjHO
>
> On Wed, Oct 28, 2020 at 12:14 PM kefu chai <tchaikov@xxxxxxxxx> wrote:
>>
>> On Wed, Oct 28, 2020 at 10:05 PM dorinda bassey <dorindabassey@xxxxxxxxx> wrote:
>> >
>> > okay so i've tried this:
>> > $ rm -rf build
>> > $ mkdir build && cd $_
>> > $ cmake3 -DWITH_PYTHON3=3.8 -DWITH_CCACHE=ON --trace-expand ..
>> > and got this error output:
>> > https://paste.sh/0orAJVkM#khoF1X09kmguHO5cC9JBEY3n
>> > ps: i used "cmake -DWITH_PYTHON3=3.8 -DWITH_CCACHE=ON --trace-expand" since cmake3 is not installed.
>> >
>> > then i tried installing python 3 again, which is already installed on my machine
>>
>> the missing dependencies are provided by python3-all-dev i think. what
>> was the output when you were running ./install-deps.sh ? did it
>> completed without error?
>>
>> > and reran the command:
>> > $ rm -rf build
>> > $ mkdir build && cd $_
>> > $ cmake3 -DWITH_PYTHON3=3.8 -DWITH_CCACHE=ON --trace-expand ..
>> > this time the error output is different:
>> > https://paste.sh/zB2AqQ09#0ArXE7MyMEPqnJppIXW7N2Bs
>> > please find attached error log for this.
>> >
>> > On Tue, Oct 27, 2020 at 7:44 PM Brad Hubbard <bhubbard@xxxxxxxxxx> wrote:
>> >>
>> >> later
>> >>
>> >>
>> >> On Wed, Oct 28, 2020 at 2:00 AM <dorindabassey@xxxxxxxxx> wrote:
>> >> >
>> >> > Yes, I have done that, before i got the error above.
>> >> > but i noticed that once i installed curl, and ran these "./install-deps.sh" "./do_cmake.sh" again, i was able to get some more dependencies
>> >> > now this is the error am recieving: https://paste.sh/fNyA_5fb#r7QJDagMxlRuHh6i591bB21s
>> >> > quite similar but this time the error output is about python3, however i have python 2.7 and python 3.8.0 installed on my machine.
>> >>
>> >> You could try the following to see if it assists with debugging the issue.
>> >>
>> >> $ rm -rf build
>> >> $ bash -x ./do_cmake.sh 2>&1|grep "^+ cmake"
>> >> + cmake3 -DWITH_PYTHON3=3.8 -DWITH_CCACHE=ON ..
>> >>
>> >> The above gives you the base command you want to run later (it may be
>> >> different to mine) that we add '--trace-expand' to shortly.
>> >>
>> >> $ rm -rf build
>> >> $ mkdir build && cd $_
>> >> $ cmake3 -DWITH_PYTHON3=3.8 -DWITH_CCACHE=ON --trace-expand ..
>> >>
>> >> See if that gives you any more information about why it can't find python3.
>> >>
>> >> --
>> >> Cheers,
>> >> Brad
>> >>
>> > _______________________________________________
>> > Dev mailing list -- dev@xxxxxxx
>> > To unsubscribe send an email to dev-leave@xxxxxxx
>>
>>
>>
>> --
>> Regards
>> Kefu Chai



--
Cheers,
Brad

Determining if the pthread_create exist failed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_3a056/fast"
/usr/bin/make -f CMakeFiles/cmTC_3a056.dir/build.make CMakeFiles/cmTC_3a056.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_3a056.dir/CheckSymbolExists.c.o
/usr/bin/cc    -o CMakeFiles/cmTC_3a056.dir/CheckSymbolExists.c.o   -c /home/dorinda/ceph/CMakeFiles/CMakeTmp/CheckSymbolExists.c
Linking C executable cmTC_3a056
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_3a056.dir/link.txt --verbose=1
/usr/bin/cc      CMakeFiles/cmTC_3a056.dir/CheckSymbolExists.c.o  -o cmTC_3a056 
CMakeFiles/cmTC_3a056.dir/CheckSymbolExists.c.o: In function `main':
CheckSymbolExists.c:(.text+0x1b): undefined reference to `pthread_create'
collect2: error: ld returned 1 exit status
CMakeFiles/cmTC_3a056.dir/build.make:97: recipe for target 'cmTC_3a056' failed
make[1]: *** [cmTC_3a056] Error 1
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Makefile:126: recipe for target 'cmTC_3a056/fast' failed
make: *** [cmTC_3a056/fast] Error 2

File /home/dorinda/ceph/CMakeFiles/CMakeTmp/CheckSymbolExists.c:
/* */
#include <pthread.h>

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

Determining if the function pthread_create exists in the pthreads failed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_27727/fast"
/usr/bin/make -f CMakeFiles/cmTC_27727.dir/build.make CMakeFiles/cmTC_27727.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_27727.dir/CheckFunctionExists.c.o
/usr/bin/cc   -DCHECK_FUNCTION_EXISTS=pthread_create   -o CMakeFiles/cmTC_27727.dir/CheckFunctionExists.c.o   -c /usr/share/cmake-3.10/Modules/CheckFunctionExists.c
Linking C executable cmTC_27727
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_27727.dir/link.txt --verbose=1
/usr/bin/cc  -DCHECK_FUNCTION_EXISTS=pthread_create    CMakeFiles/cmTC_27727.dir/CheckFunctionExists.c.o  -o cmTC_27727 -lpthreads 
/usr/bin/ld: cannot find -lpthreads
collect2: error: ld returned 1 exit status
CMakeFiles/cmTC_27727.dir/build.make:97: recipe for target 'cmTC_27727' failed
make[1]: *** [cmTC_27727] Error 1
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Makefile:126: recipe for target 'cmTC_27727/fast' failed
make: *** [cmTC_27727/fast] Error 2


Determining if the function sigdescr_np exists failed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_29565/fast"
/usr/bin/make -f CMakeFiles/cmTC_29565.dir/build.make CMakeFiles/cmTC_29565.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_29565.dir/CheckFunctionExists.c.o
/usr/bin/cc   -DCHECK_FUNCTION_EXISTS=sigdescr_np   -o CMakeFiles/cmTC_29565.dir/CheckFunctionExists.c.o   -c /usr/share/cmake-3.10/Modules/CheckFunctionExists.c
Linking C executable cmTC_29565
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_29565.dir/link.txt --verbose=1
/usr/bin/cc  -DCHECK_FUNCTION_EXISTS=sigdescr_np    CMakeFiles/cmTC_29565.dir/CheckFunctionExists.c.o  -o cmTC_29565 
CMakeFiles/cmTC_29565.dir/CheckFunctionExists.c.o: In function `main':
CheckFunctionExists.c:(.text+0x10): undefined reference to `sigdescr_np'
collect2: error: ld returned 1 exit status
CMakeFiles/cmTC_29565.dir/build.make:97: recipe for target 'cmTC_29565' failed
make[1]: *** [cmTC_29565] Error 1
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Makefile:126: recipe for target 'cmTC_29565/fast' failed
make: *** [cmTC_29565/fast] Error 2


Determining if the function pthread_set_name_np exists failed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_8f7bd/fast"
/usr/bin/make -f CMakeFiles/cmTC_8f7bd.dir/build.make CMakeFiles/cmTC_8f7bd.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_8f7bd.dir/CheckFunctionExists.c.o
/usr/bin/cc   -DCHECK_FUNCTION_EXISTS=pthread_set_name_np   -o CMakeFiles/cmTC_8f7bd.dir/CheckFunctionExists.c.o   -c /usr/share/cmake-3.10/Modules/CheckFunctionExists.c
Linking C executable cmTC_8f7bd
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_8f7bd.dir/link.txt --verbose=1
/usr/bin/cc  -DCHECK_FUNCTION_EXISTS=pthread_set_name_np    CMakeFiles/cmTC_8f7bd.dir/CheckFunctionExists.c.o  -o cmTC_8f7bd -lpthread 
CMakeFiles/cmTC_8f7bd.dir/CheckFunctionExists.c.o: In function `main':
CheckFunctionExists.c:(.text+0x10): undefined reference to `pthread_set_name_np'
collect2: error: ld returned 1 exit status
CMakeFiles/cmTC_8f7bd.dir/build.make:97: recipe for target 'cmTC_8f7bd' failed
make[1]: *** [cmTC_8f7bd] Error 1
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Makefile:126: recipe for target 'cmTC_8f7bd/fast' failed
make: *** [cmTC_8f7bd/fast] Error 2


Determining if the function pthread_get_name_np exists failed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_a359a/fast"
/usr/bin/make -f CMakeFiles/cmTC_a359a.dir/build.make CMakeFiles/cmTC_a359a.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_a359a.dir/CheckFunctionExists.c.o
/usr/bin/cc   -DCHECK_FUNCTION_EXISTS=pthread_get_name_np   -o CMakeFiles/cmTC_a359a.dir/CheckFunctionExists.c.o   -c /usr/share/cmake-3.10/Modules/CheckFunctionExists.c
Linking C executable cmTC_a359a
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_a359a.dir/link.txt --verbose=1
/usr/bin/cc  -DCHECK_FUNCTION_EXISTS=pthread_get_name_np    CMakeFiles/cmTC_a359a.dir/CheckFunctionExists.c.o  -o cmTC_a359a -lpthread 
CMakeFiles/cmTC_a359a.dir/CheckFunctionExists.c.o: In function `main':
CheckFunctionExists.c:(.text+0x10): undefined reference to `pthread_get_name_np'
collect2: error: ld returned 1 exit status
CMakeFiles/cmTC_a359a.dir/build.make:97: recipe for target 'cmTC_a359a' failed
make[1]: *** [cmTC_a359a] Error 1
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Makefile:126: recipe for target 'cmTC_a359a/fast' failed
make: *** [cmTC_a359a/fast] Error 2


Determining if the function getprogname exists failed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_bf1af/fast"
/usr/bin/make -f CMakeFiles/cmTC_bf1af.dir/build.make CMakeFiles/cmTC_bf1af.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_bf1af.dir/CheckFunctionExists.c.o
/usr/bin/cc   -DCHECK_FUNCTION_EXISTS=getprogname   -o CMakeFiles/cmTC_bf1af.dir/CheckFunctionExists.c.o   -c /usr/share/cmake-3.10/Modules/CheckFunctionExists.c
Linking C executable cmTC_bf1af
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_bf1af.dir/link.txt --verbose=1
/usr/bin/cc  -DCHECK_FUNCTION_EXISTS=getprogname    CMakeFiles/cmTC_bf1af.dir/CheckFunctionExists.c.o  -o cmTC_bf1af 
CMakeFiles/cmTC_bf1af.dir/CheckFunctionExists.c.o: In function `main':
CheckFunctionExists.c:(.text+0x10): undefined reference to `getprogname'
collect2: error: ld returned 1 exit status
CMakeFiles/cmTC_bf1af.dir/build.make:97: recipe for target 'cmTC_bf1af' failed
make[1]: *** [cmTC_bf1af] Error 1
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Makefile:126: recipe for target 'cmTC_bf1af/fast' failed
make: *** [cmTC_bf1af/fast] Error 2


Determining if the function gettid exists failed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_21926/fast"
/usr/bin/make -f CMakeFiles/cmTC_21926.dir/build.make CMakeFiles/cmTC_21926.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_21926.dir/CheckFunctionExists.c.o
/usr/bin/cc   -DCHECK_FUNCTION_EXISTS=gettid   -o CMakeFiles/cmTC_21926.dir/CheckFunctionExists.c.o   -c /usr/share/cmake-3.10/Modules/CheckFunctionExists.c
Linking C executable cmTC_21926
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_21926.dir/link.txt --verbose=1
/usr/bin/cc  -DCHECK_FUNCTION_EXISTS=gettid    CMakeFiles/cmTC_21926.dir/CheckFunctionExists.c.o  -o cmTC_21926 
CMakeFiles/cmTC_21926.dir/CheckFunctionExists.c.o: In function `main':
CheckFunctionExists.c:(.text+0x10): undefined reference to `gettid'
collect2: error: ld returned 1 exit status
CMakeFiles/cmTC_21926.dir/build.make:97: recipe for target 'cmTC_21926' failed
make[1]: *** [cmTC_21926] Error 1
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Makefile:126: recipe for target 'cmTC_21926/fast' failed
make: *** [cmTC_21926/fast] Error 2


Determining if files valgrind/helgrind.h exist failed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_cc8ef/fast"
/usr/bin/make -f CMakeFiles/cmTC_cc8ef.dir/build.make CMakeFiles/cmTC_cc8ef.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_cc8ef.dir/CheckIncludeFiles.c.o
/usr/bin/cc    -o CMakeFiles/cmTC_cc8ef.dir/CheckIncludeFiles.c.o   -c /home/dorinda/ceph/CMakeFiles/CMakeTmp/CheckIncludeFiles.c
/home/dorinda/ceph/CMakeFiles/CMakeTmp/CheckIncludeFiles.c:2:10: fatal error: valgrind/helgrind.h: No such file or directory
    2 | #include <valgrind/helgrind.h>
      |          ^~~~~~~~~~~~~~~~~~~~~
compilation terminated.
CMakeFiles/cmTC_cc8ef.dir/build.make:65: recipe for target 'CMakeFiles/cmTC_cc8ef.dir/CheckIncludeFiles.c.o' failed
make[1]: *** [CMakeFiles/cmTC_cc8ef.dir/CheckIncludeFiles.c.o] Error 1
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Makefile:126: recipe for target 'cmTC_cc8ef/fast' failed
make: *** [cmTC_cc8ef/fast] Error 2

Source:
/* */
#include <valgrind/helgrind.h>


int main(void){return 0;}

Performing C SOURCE FILE Test HAVE_STAT_ST_MTIMESPEC_TV_NSEC failed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_db0e9/fast"
/usr/bin/make -f CMakeFiles/cmTC_db0e9.dir/build.make CMakeFiles/cmTC_db0e9.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_db0e9.dir/src.c.o
/usr/bin/cc   -DHAVE_STAT_ST_MTIMESPEC_TV_NSEC   -o CMakeFiles/cmTC_db0e9.dir/src.c.o   -c /home/dorinda/ceph/CMakeFiles/CMakeTmp/src.c
/home/dorinda/ceph/CMakeFiles/CMakeTmp/src.c: In function ‘main’:
/home/dorinda/ceph/CMakeFiles/CMakeTmp/src.c:6:35: error: ‘struct stat’ has no member named ‘st_mtimespec’
    6 |    (void)sizeof(((struct stat *)0)->st_mtimespec.tv_nsec);
      |                                   ^~
CMakeFiles/cmTC_db0e9.dir/build.make:65: recipe for target 'CMakeFiles/cmTC_db0e9.dir/src.c.o' failed
make[1]: *** [CMakeFiles/cmTC_db0e9.dir/src.c.o] Error 1
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Makefile:126: recipe for target 'cmTC_db0e9/fast' failed
make: *** [cmTC_db0e9/fast] Error 2

Source file was:

#include <sys/stat.h>

int main()
{
   (void)sizeof(((struct stat *)0)->st_mtimespec.tv_nsec);
   return 0;
}

Performing C++ SOURCE FILE Test HAVE_IBV_EXP failed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_0380b/fast"
/usr/bin/make -f CMakeFiles/cmTC_0380b.dir/build.make CMakeFiles/cmTC_0380b.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_0380b.dir/src.cxx.o
/usr/bin/c++    -DHAVE_IBV_EXP -fPIE   -o CMakeFiles/cmTC_0380b.dir/src.cxx.o -c /home/dorinda/ceph/CMakeFiles/CMakeTmp/src.cxx
/home/dorinda/ceph/CMakeFiles/CMakeTmp/src.cxx: In function ‘int main()’:
/home/dorinda/ceph/CMakeFiles/CMakeTmp/src.cxx:5:31: error: aggregate ‘main()::ibv_exp_gid_attr gid_attr’ has incomplete type and cannot be defined
       struct ibv_exp_gid_attr gid_attr;
                               ^~~~~~~~
/home/dorinda/ceph/CMakeFiles/CMakeTmp/src.cxx:6:7: error: ‘ibv_exp_query_gid_attr’ was not declared in this scope
       ibv_exp_query_gid_attr(ctxt, 1, 0, &gid_attr);
       ^~~~~~~~~~~~~~~~~~~~~~
/home/dorinda/ceph/CMakeFiles/CMakeTmp/src.cxx:6:7: note: suggested alternative: ‘ibv_exp_gid_attr’
       ibv_exp_query_gid_attr(ctxt, 1, 0, &gid_attr);
       ^~~~~~~~~~~~~~~~~~~~~~
       ibv_exp_gid_attr
CMakeFiles/cmTC_0380b.dir/build.make:65: recipe for target 'CMakeFiles/cmTC_0380b.dir/src.cxx.o' failed
make[1]: *** [CMakeFiles/cmTC_0380b.dir/src.cxx.o] Error 1
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Makefile:126: recipe for target 'cmTC_0380b/fast' failed
make: *** [cmTC_0380b/fast] Error 2

Source file was:

    #include <infiniband/verbs.h>
    int main() {
      struct ibv_context* ctxt;
      struct ibv_exp_gid_attr gid_attr;
      ibv_exp_query_gid_attr(ctxt, 1, 0, &gid_attr);
      return 0;
    } 
Determining if the pthread_create exist failed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_9ede4/fast"
/usr/bin/make -f CMakeFiles/cmTC_9ede4.dir/build.make CMakeFiles/cmTC_9ede4.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_9ede4.dir/CheckSymbolExists.c.o
/usr/bin/cc    -o CMakeFiles/cmTC_9ede4.dir/CheckSymbolExists.c.o   -c /home/dorinda/ceph/CMakeFiles/CMakeTmp/CheckSymbolExists.c
Linking C executable cmTC_9ede4
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_9ede4.dir/link.txt --verbose=1
/usr/bin/cc      CMakeFiles/cmTC_9ede4.dir/CheckSymbolExists.c.o  -o cmTC_9ede4 
CMakeFiles/cmTC_9ede4.dir/CheckSymbolExists.c.o: In function `main':
CheckSymbolExists.c:(.text+0x1b): undefined reference to `pthread_create'
collect2: error: ld returned 1 exit status
CMakeFiles/cmTC_9ede4.dir/build.make:97: recipe for target 'cmTC_9ede4' failed
make[1]: *** [cmTC_9ede4] Error 1
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Makefile:126: recipe for target 'cmTC_9ede4/fast' failed
make: *** [cmTC_9ede4/fast] Error 2

File /home/dorinda/ceph/CMakeFiles/CMakeTmp/CheckSymbolExists.c:
/* */
#include <pthread.h>

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

Determining if the function pthread_create exists in the pthreads failed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_0ccca/fast"
/usr/bin/make -f CMakeFiles/cmTC_0ccca.dir/build.make CMakeFiles/cmTC_0ccca.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_0ccca.dir/CheckFunctionExists.c.o
/usr/bin/cc   -DCHECK_FUNCTION_EXISTS=pthread_create   -o CMakeFiles/cmTC_0ccca.dir/CheckFunctionExists.c.o   -c /usr/share/cmake-3.10/Modules/CheckFunctionExists.c
Linking C executable cmTC_0ccca
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_0ccca.dir/link.txt --verbose=1
/usr/bin/cc  -DCHECK_FUNCTION_EXISTS=pthread_create    CMakeFiles/cmTC_0ccca.dir/CheckFunctionExists.c.o  -o cmTC_0ccca -lpthreads 
/usr/bin/ld: cannot find -lpthreads
collect2: error: ld returned 1 exit status
CMakeFiles/cmTC_0ccca.dir/build.make:97: recipe for target 'cmTC_0ccca' failed
make[1]: *** [cmTC_0ccca] Error 1
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Makefile:126: recipe for target 'cmTC_0ccca/fast' failed
make: *** [cmTC_0ccca/fast] Error 2


Determining if the function sigdescr_np exists failed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_64e07/fast"
/usr/bin/make -f CMakeFiles/cmTC_64e07.dir/build.make CMakeFiles/cmTC_64e07.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_64e07.dir/CheckFunctionExists.c.o
/usr/bin/cc   -DCHECK_FUNCTION_EXISTS=sigdescr_np   -o CMakeFiles/cmTC_64e07.dir/CheckFunctionExists.c.o   -c /usr/share/cmake-3.10/Modules/CheckFunctionExists.c
Linking C executable cmTC_64e07
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_64e07.dir/link.txt --verbose=1
/usr/bin/cc  -DCHECK_FUNCTION_EXISTS=sigdescr_np    CMakeFiles/cmTC_64e07.dir/CheckFunctionExists.c.o  -o cmTC_64e07 
CMakeFiles/cmTC_64e07.dir/CheckFunctionExists.c.o: In function `main':
CheckFunctionExists.c:(.text+0x10): undefined reference to `sigdescr_np'
collect2: error: ld returned 1 exit status
CMakeFiles/cmTC_64e07.dir/build.make:97: recipe for target 'cmTC_64e07' failed
make[1]: *** [cmTC_64e07] Error 1
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Makefile:126: recipe for target 'cmTC_64e07/fast' failed
make: *** [cmTC_64e07/fast] Error 2


Determining if the function pthread_set_name_np exists failed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_4b8b2/fast"
/usr/bin/make -f CMakeFiles/cmTC_4b8b2.dir/build.make CMakeFiles/cmTC_4b8b2.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_4b8b2.dir/CheckFunctionExists.c.o
/usr/bin/cc   -DCHECK_FUNCTION_EXISTS=pthread_set_name_np   -o CMakeFiles/cmTC_4b8b2.dir/CheckFunctionExists.c.o   -c /usr/share/cmake-3.10/Modules/CheckFunctionExists.c
Linking C executable cmTC_4b8b2
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_4b8b2.dir/link.txt --verbose=1
/usr/bin/cc  -DCHECK_FUNCTION_EXISTS=pthread_set_name_np    CMakeFiles/cmTC_4b8b2.dir/CheckFunctionExists.c.o  -o cmTC_4b8b2 -lpthread 
CMakeFiles/cmTC_4b8b2.dir/CheckFunctionExists.c.o: In function `main':
CheckFunctionExists.c:(.text+0x10): undefined reference to `pthread_set_name_np'
collect2: error: ld returned 1 exit status
CMakeFiles/cmTC_4b8b2.dir/build.make:97: recipe for target 'cmTC_4b8b2' failed
make[1]: *** [cmTC_4b8b2] Error 1
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Makefile:126: recipe for target 'cmTC_4b8b2/fast' failed
make: *** [cmTC_4b8b2/fast] Error 2


Determining if the function pthread_get_name_np exists failed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_26c29/fast"
/usr/bin/make -f CMakeFiles/cmTC_26c29.dir/build.make CMakeFiles/cmTC_26c29.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_26c29.dir/CheckFunctionExists.c.o
/usr/bin/cc   -DCHECK_FUNCTION_EXISTS=pthread_get_name_np   -o CMakeFiles/cmTC_26c29.dir/CheckFunctionExists.c.o   -c /usr/share/cmake-3.10/Modules/CheckFunctionExists.c
Linking C executable cmTC_26c29
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_26c29.dir/link.txt --verbose=1
/usr/bin/cc  -DCHECK_FUNCTION_EXISTS=pthread_get_name_np    CMakeFiles/cmTC_26c29.dir/CheckFunctionExists.c.o  -o cmTC_26c29 -lpthread 
CMakeFiles/cmTC_26c29.dir/CheckFunctionExists.c.o: In function `main':
CheckFunctionExists.c:(.text+0x10): undefined reference to `pthread_get_name_np'
collect2: error: ld returned 1 exit status
CMakeFiles/cmTC_26c29.dir/build.make:97: recipe for target 'cmTC_26c29' failed
make[1]: *** [cmTC_26c29] Error 1
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Makefile:126: recipe for target 'cmTC_26c29/fast' failed
make: *** [cmTC_26c29/fast] Error 2


Determining if the function getprogname exists failed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_1a7e2/fast"
/usr/bin/make -f CMakeFiles/cmTC_1a7e2.dir/build.make CMakeFiles/cmTC_1a7e2.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_1a7e2.dir/CheckFunctionExists.c.o
/usr/bin/cc   -DCHECK_FUNCTION_EXISTS=getprogname   -o CMakeFiles/cmTC_1a7e2.dir/CheckFunctionExists.c.o   -c /usr/share/cmake-3.10/Modules/CheckFunctionExists.c
Linking C executable cmTC_1a7e2
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_1a7e2.dir/link.txt --verbose=1
/usr/bin/cc  -DCHECK_FUNCTION_EXISTS=getprogname    CMakeFiles/cmTC_1a7e2.dir/CheckFunctionExists.c.o  -o cmTC_1a7e2 
CMakeFiles/cmTC_1a7e2.dir/CheckFunctionExists.c.o: In function `main':
CheckFunctionExists.c:(.text+0x10): undefined reference to `getprogname'
collect2: error: ld returned 1 exit status
CMakeFiles/cmTC_1a7e2.dir/build.make:97: recipe for target 'cmTC_1a7e2' failed
make[1]: *** [cmTC_1a7e2] Error 1
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Makefile:126: recipe for target 'cmTC_1a7e2/fast' failed
make: *** [cmTC_1a7e2/fast] Error 2


Determining if the function gettid exists failed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_3a9da/fast"
/usr/bin/make -f CMakeFiles/cmTC_3a9da.dir/build.make CMakeFiles/cmTC_3a9da.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_3a9da.dir/CheckFunctionExists.c.o
/usr/bin/cc   -DCHECK_FUNCTION_EXISTS=gettid   -o CMakeFiles/cmTC_3a9da.dir/CheckFunctionExists.c.o   -c /usr/share/cmake-3.10/Modules/CheckFunctionExists.c
Linking C executable cmTC_3a9da
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_3a9da.dir/link.txt --verbose=1
/usr/bin/cc  -DCHECK_FUNCTION_EXISTS=gettid    CMakeFiles/cmTC_3a9da.dir/CheckFunctionExists.c.o  -o cmTC_3a9da 
CMakeFiles/cmTC_3a9da.dir/CheckFunctionExists.c.o: In function `main':
CheckFunctionExists.c:(.text+0x10): undefined reference to `gettid'
collect2: error: ld returned 1 exit status
CMakeFiles/cmTC_3a9da.dir/build.make:97: recipe for target 'cmTC_3a9da' failed
make[1]: *** [cmTC_3a9da] Error 1
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Makefile:126: recipe for target 'cmTC_3a9da/fast' failed
make: *** [cmTC_3a9da/fast] Error 2


Performing C SOURCE FILE Test HAVE_STAT_ST_MTIMESPEC_TV_NSEC failed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_82a8c/fast"
/usr/bin/make -f CMakeFiles/cmTC_82a8c.dir/build.make CMakeFiles/cmTC_82a8c.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_82a8c.dir/src.c.o
/usr/bin/cc   -DHAVE_STAT_ST_MTIMESPEC_TV_NSEC   -o CMakeFiles/cmTC_82a8c.dir/src.c.o   -c /home/dorinda/ceph/CMakeFiles/CMakeTmp/src.c
/home/dorinda/ceph/CMakeFiles/CMakeTmp/src.c: In function ‘main’:
/home/dorinda/ceph/CMakeFiles/CMakeTmp/src.c:6:35: error: ‘struct stat’ has no member named ‘st_mtimespec’
    6 |    (void)sizeof(((struct stat *)0)->st_mtimespec.tv_nsec);
      |                                   ^~
CMakeFiles/cmTC_82a8c.dir/build.make:65: recipe for target 'CMakeFiles/cmTC_82a8c.dir/src.c.o' failed
make[1]: *** [CMakeFiles/cmTC_82a8c.dir/src.c.o] Error 1
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Makefile:126: recipe for target 'cmTC_82a8c/fast' failed
make: *** [cmTC_82a8c/fast] Error 2

Source file was:

#include <sys/stat.h>

int main()
{
   (void)sizeof(((struct stat *)0)->st_mtimespec.tv_nsec);
   return 0;
}

Performing C++ SOURCE FILE Test HAVE_IBV_EXP failed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_cb5a0/fast"
/usr/bin/make -f CMakeFiles/cmTC_cb5a0.dir/build.make CMakeFiles/cmTC_cb5a0.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_cb5a0.dir/src.cxx.o
/usr/bin/c++    -DHAVE_IBV_EXP -fPIE   -o CMakeFiles/cmTC_cb5a0.dir/src.cxx.o -c /home/dorinda/ceph/CMakeFiles/CMakeTmp/src.cxx
/home/dorinda/ceph/CMakeFiles/CMakeTmp/src.cxx: In function ‘int main()’:
/home/dorinda/ceph/CMakeFiles/CMakeTmp/src.cxx:5:31: error: aggregate ‘main()::ibv_exp_gid_attr gid_attr’ has incomplete type and cannot be defined
       struct ibv_exp_gid_attr gid_attr;
                               ^~~~~~~~
/home/dorinda/ceph/CMakeFiles/CMakeTmp/src.cxx:6:7: error: ‘ibv_exp_query_gid_attr’ was not declared in this scope
       ibv_exp_query_gid_attr(ctxt, 1, 0, &gid_attr);
       ^~~~~~~~~~~~~~~~~~~~~~
/home/dorinda/ceph/CMakeFiles/CMakeTmp/src.cxx:6:7: note: suggested alternative: ‘ibv_exp_gid_attr’
       ibv_exp_query_gid_attr(ctxt, 1, 0, &gid_attr);
       ^~~~~~~~~~~~~~~~~~~~~~
       ibv_exp_gid_attr
CMakeFiles/cmTC_cb5a0.dir/build.make:65: recipe for target 'CMakeFiles/cmTC_cb5a0.dir/src.cxx.o' failed
make[1]: *** [CMakeFiles/cmTC_cb5a0.dir/src.cxx.o] Error 1
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Makefile:126: recipe for target 'cmTC_cb5a0/fast' failed
make: *** [cmTC_cb5a0/fast] Error 2

Source file was:

    #include <infiniband/verbs.h>
    int main() {
      struct ibv_context* ctxt;
      struct ibv_exp_gid_attr gid_attr;
      ibv_exp_query_gid_attr(ctxt, 1, 0, &gid_attr);
      return 0;
    } 
The system is: Linux - 5.4.0-52-generic - x86_64
Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded.
Compiler: /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 GNU, found in "/home/dorinda/ceph/CMakeFiles/3.10.2/CompilerIdCXX/a.out"

Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded.
Compiler: /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 GNU, found in "/home/dorinda/ceph/CMakeFiles/3.10.2/CompilerIdC/a.out"

Determining if the CXX compiler works passed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_234c0/fast"
/usr/bin/make -f CMakeFiles/cmTC_234c0.dir/build.make CMakeFiles/cmTC_234c0.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_234c0.dir/testCXXCompiler.cxx.o
/usr/bin/c++     -o CMakeFiles/cmTC_234c0.dir/testCXXCompiler.cxx.o -c /home/dorinda/ceph/CMakeFiles/CMakeTmp/testCXXCompiler.cxx
Linking CXX executable cmTC_234c0
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_234c0.dir/link.txt --verbose=1
/usr/bin/c++       CMakeFiles/cmTC_234c0.dir/testCXXCompiler.cxx.o  -o cmTC_234c0 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'


Detecting CXX compiler ABI info compiled with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_46534/fast"
/usr/bin/make -f CMakeFiles/cmTC_46534.dir/build.make CMakeFiles/cmTC_46534.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_46534.dir/CMakeCXXCompilerABI.cpp.o
/usr/bin/c++     -o CMakeFiles/cmTC_46534.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.10/Modules/CMakeCXXCompilerABI.cpp
Linking CXX executable cmTC_46534
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_46534.dir/link.txt --verbose=1
/usr/bin/c++      -v CMakeFiles/cmTC_46534.dir/CMakeCXXCompilerABI.cpp.o  -o cmTC_46534 
Using built-in specs.
COLLECT_GCC=/usr/bin/c++
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/9/lto-wrapper
OFFLOAD_TARGET_NAMES=nvptx-none:hsa
OFFLOAD_TARGET_DEFAULT=1
Target: x86_64-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Ubuntu 9.3.0-11ubuntu0~18.04.1' --with-bugurl=file:///usr/share/doc/gcc-9/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++,gm2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-9 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none,hsa --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu
Thread model: posix
gcc version 9.3.0 (Ubuntu 9.3.0-11ubuntu0~18.04.1) 
COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/
LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../:/lib/:/usr/lib/
COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_46534' '-shared-libgcc' '-mtune=generic' '-march=x86-64'
 /usr/lib/gcc/x86_64-linux-gnu/9/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/9/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/9/lto-wrapper -plugin-opt=-fresolution=/tmp/ccI4Vcft.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_46534 /usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/9/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/9 -L/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/9/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/9/../../.. CMakeFiles/cmTC_46534.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/9/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/crtn.o
COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_46534' '-shared-libgcc' '-mtune=generic' '-march=x86-64'
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'


Parsed CXX implicit link information from above output:
  link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)]
  ignore line: [Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp]
  ignore line: []
  ignore line: [Run Build Command:"/usr/bin/make" "cmTC_46534/fast"]
  ignore line: [/usr/bin/make -f CMakeFiles/cmTC_46534.dir/build.make CMakeFiles/cmTC_46534.dir/build]
  ignore line: [make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp']
  ignore line: [Building CXX object CMakeFiles/cmTC_46534.dir/CMakeCXXCompilerABI.cpp.o]
  ignore line: [/usr/bin/c++     -o CMakeFiles/cmTC_46534.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.10/Modules/CMakeCXXCompilerABI.cpp]
  ignore line: [Linking CXX executable cmTC_46534]
  ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_46534.dir/link.txt --verbose=1]
  ignore line: [/usr/bin/c++      -v CMakeFiles/cmTC_46534.dir/CMakeCXXCompilerABI.cpp.o  -o cmTC_46534 ]
  ignore line: [Using built-in specs.]
  ignore line: [COLLECT_GCC=/usr/bin/c++]
  ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/9/lto-wrapper]
  ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none:hsa]
  ignore line: [OFFLOAD_TARGET_DEFAULT=1]
  ignore line: [Target: x86_64-linux-gnu]
  ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 9.3.0-11ubuntu0~18.04.1' --with-bugurl=file:///usr/share/doc/gcc-9/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++,gm2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-9 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none,hsa --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu]
  ignore line: [Thread model: posix]
  ignore line: [gcc version 9.3.0 (Ubuntu 9.3.0-11ubuntu0~18.04.1) ]
  ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/]
  ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../:/lib/:/usr/lib/]
  ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_46534' '-shared-libgcc' '-mtune=generic' '-march=x86-64']
  link line: [ /usr/lib/gcc/x86_64-linux-gnu/9/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/9/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/9/lto-wrapper -plugin-opt=-fresolution=/tmp/ccI4Vcft.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_46534 /usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/9/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/9 -L/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/9/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/9/../../.. CMakeFiles/cmTC_46534.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/9/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/crtn.o]
    arg [/usr/lib/gcc/x86_64-linux-gnu/9/collect2] ==> ignore
    arg [-plugin] ==> ignore
    arg [/usr/lib/gcc/x86_64-linux-gnu/9/liblto_plugin.so] ==> ignore
    arg [-plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/9/lto-wrapper] ==> ignore
    arg [-plugin-opt=-fresolution=/tmp/ccI4Vcft.res] ==> ignore
    arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore
    arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
    arg [-plugin-opt=-pass-through=-lc] ==> ignore
    arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore
    arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
    arg [--build-id] ==> ignore
    arg [--eh-frame-hdr] ==> ignore
    arg [-m] ==> ignore
    arg [elf_x86_64] ==> ignore
    arg [--hash-style=gnu] ==> ignore
    arg [--as-needed] ==> ignore
    arg [-dynamic-linker] ==> ignore
    arg [/lib64/ld-linux-x86-64.so.2] ==> ignore
    arg [-pie] ==> ignore
    arg [-znow] ==> ignore
    arg [-zrelro] ==> ignore
    arg [-o] ==> ignore
    arg [cmTC_46534] ==> ignore
    arg [/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/Scrt1.o] ==> ignore
    arg [/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/crti.o] ==> ignore
    arg [/usr/lib/gcc/x86_64-linux-gnu/9/crtbeginS.o] ==> ignore
    arg [-L/usr/lib/gcc/x86_64-linux-gnu/9] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/9]
    arg [-L/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu]
    arg [-L/usr/lib/gcc/x86_64-linux-gnu/9/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/9/../../../../lib]
    arg [-L/lib/x86_64-linux-gnu] ==> dir [/lib/x86_64-linux-gnu]
    arg [-L/lib/../lib] ==> dir [/lib/../lib]
    arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu]
    arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib]
    arg [-L/usr/lib/gcc/x86_64-linux-gnu/9/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/9/../../..]
    arg [CMakeFiles/cmTC_46534.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/lib/gcc/x86_64-linux-gnu/9/crtendS.o] ==> ignore
    arg [/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/crtn.o] ==> ignore
  collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/9] ==> [/usr/lib/gcc/x86_64-linux-gnu/9]
  collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu]
  collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/9/../../../../lib] ==> [/usr/lib]
  collapse library dir [/lib/x86_64-linux-gnu] ==> [/lib/x86_64-linux-gnu]
  collapse library dir [/lib/../lib] ==> [/lib]
  collapse library dir [/usr/lib/x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu]
  collapse library dir [/usr/lib/../lib] ==> [/usr/lib]
  collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/9/../../..] ==> [/usr/lib]
  implicit libs: [stdc++;m;gcc_s;gcc;c;gcc_s;gcc]
  implicit dirs: [/usr/lib/gcc/x86_64-linux-gnu/9;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib]
  implicit fwks: []




Detecting CXX [-std=c++1z] compiler features compiled with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_3d50d/fast"
/usr/bin/make -f CMakeFiles/cmTC_3d50d.dir/build.make CMakeFiles/cmTC_3d50d.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_3d50d.dir/feature_tests.cxx.o
/usr/bin/c++    -std=c++1z -o CMakeFiles/cmTC_3d50d.dir/feature_tests.cxx.o -c /home/dorinda/ceph/CMakeFiles/feature_tests.cxx
Linking CXX executable cmTC_3d50d
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_3d50d.dir/link.txt --verbose=1
/usr/bin/c++       CMakeFiles/cmTC_3d50d.dir/feature_tests.cxx.o  -o cmTC_3d50d 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'


    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: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_93ee9/fast"
/usr/bin/make -f CMakeFiles/cmTC_93ee9.dir/build.make CMakeFiles/cmTC_93ee9.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_93ee9.dir/feature_tests.cxx.o
/usr/bin/c++    -std=c++14 -o CMakeFiles/cmTC_93ee9.dir/feature_tests.cxx.o -c /home/dorinda/ceph/CMakeFiles/feature_tests.cxx
Linking CXX executable cmTC_93ee9
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_93ee9.dir/link.txt --verbose=1
/usr/bin/c++       CMakeFiles/cmTC_93ee9.dir/feature_tests.cxx.o  -o cmTC_93ee9 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'


    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: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_61818/fast"
/usr/bin/make -f CMakeFiles/cmTC_61818.dir/build.make CMakeFiles/cmTC_61818.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_61818.dir/feature_tests.cxx.o
/usr/bin/c++    -std=c++11 -o CMakeFiles/cmTC_61818.dir/feature_tests.cxx.o -c /home/dorinda/ceph/CMakeFiles/feature_tests.cxx
Linking CXX executable cmTC_61818
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_61818.dir/link.txt --verbose=1
/usr/bin/c++       CMakeFiles/cmTC_61818.dir/feature_tests.cxx.o  -o cmTC_61818 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'


    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: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_25042/fast"
/usr/bin/make -f CMakeFiles/cmTC_25042.dir/build.make CMakeFiles/cmTC_25042.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_25042.dir/feature_tests.cxx.o
/usr/bin/c++    -std=c++98 -o CMakeFiles/cmTC_25042.dir/feature_tests.cxx.o -c /home/dorinda/ceph/CMakeFiles/feature_tests.cxx
Linking CXX executable cmTC_25042
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_25042.dir/link.txt --verbose=1
/usr/bin/c++       CMakeFiles/cmTC_25042.dir/feature_tests.cxx.o  -o cmTC_25042 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'


    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 the C compiler works passed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_142e5/fast"
/usr/bin/make -f CMakeFiles/cmTC_142e5.dir/build.make CMakeFiles/cmTC_142e5.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_142e5.dir/testCCompiler.c.o
/usr/bin/cc    -o CMakeFiles/cmTC_142e5.dir/testCCompiler.c.o   -c /home/dorinda/ceph/CMakeFiles/CMakeTmp/testCCompiler.c
Linking C executable cmTC_142e5
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_142e5.dir/link.txt --verbose=1
/usr/bin/cc      CMakeFiles/cmTC_142e5.dir/testCCompiler.c.o  -o cmTC_142e5 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'


Detecting C compiler ABI info compiled with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_0d256/fast"
/usr/bin/make -f CMakeFiles/cmTC_0d256.dir/build.make CMakeFiles/cmTC_0d256.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_0d256.dir/CMakeCCompilerABI.c.o
/usr/bin/cc    -o CMakeFiles/cmTC_0d256.dir/CMakeCCompilerABI.c.o   -c /usr/share/cmake-3.10/Modules/CMakeCCompilerABI.c
Linking C executable cmTC_0d256
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_0d256.dir/link.txt --verbose=1
/usr/bin/cc     -v CMakeFiles/cmTC_0d256.dir/CMakeCCompilerABI.c.o  -o cmTC_0d256 
Using built-in specs.
COLLECT_GCC=/usr/bin/cc
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/9/lto-wrapper
OFFLOAD_TARGET_NAMES=nvptx-none:hsa
OFFLOAD_TARGET_DEFAULT=1
Target: x86_64-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Ubuntu 9.3.0-11ubuntu0~18.04.1' --with-bugurl=file:///usr/share/doc/gcc-9/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++,gm2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-9 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none,hsa --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu
Thread model: posix
gcc version 9.3.0 (Ubuntu 9.3.0-11ubuntu0~18.04.1) 
COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/
LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../:/lib/:/usr/lib/
COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_0d256' '-mtune=generic' '-march=x86-64'
 /usr/lib/gcc/x86_64-linux-gnu/9/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/9/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/9/lto-wrapper -plugin-opt=-fresolution=/tmp/ccWQeOAg.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_0d256 /usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/9/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/9 -L/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/9/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/9/../../.. CMakeFiles/cmTC_0d256.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-linux-gnu/9/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/crtn.o
COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_0d256' '-mtune=generic' '-march=x86-64'
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'


Parsed C implicit link information from above output:
  link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)]
  ignore line: [Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp]
  ignore line: []
  ignore line: [Run Build Command:"/usr/bin/make" "cmTC_0d256/fast"]
  ignore line: [/usr/bin/make -f CMakeFiles/cmTC_0d256.dir/build.make CMakeFiles/cmTC_0d256.dir/build]
  ignore line: [make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp']
  ignore line: [Building C object CMakeFiles/cmTC_0d256.dir/CMakeCCompilerABI.c.o]
  ignore line: [/usr/bin/cc    -o CMakeFiles/cmTC_0d256.dir/CMakeCCompilerABI.c.o   -c /usr/share/cmake-3.10/Modules/CMakeCCompilerABI.c]
  ignore line: [Linking C executable cmTC_0d256]
  ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_0d256.dir/link.txt --verbose=1]
  ignore line: [/usr/bin/cc     -v CMakeFiles/cmTC_0d256.dir/CMakeCCompilerABI.c.o  -o cmTC_0d256 ]
  ignore line: [Using built-in specs.]
  ignore line: [COLLECT_GCC=/usr/bin/cc]
  ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/9/lto-wrapper]
  ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none:hsa]
  ignore line: [OFFLOAD_TARGET_DEFAULT=1]
  ignore line: [Target: x86_64-linux-gnu]
  ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 9.3.0-11ubuntu0~18.04.1' --with-bugurl=file:///usr/share/doc/gcc-9/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++,gm2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-9 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none,hsa --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu]
  ignore line: [Thread model: posix]
  ignore line: [gcc version 9.3.0 (Ubuntu 9.3.0-11ubuntu0~18.04.1) ]
  ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/]
  ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../:/lib/:/usr/lib/]
  ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_0d256' '-mtune=generic' '-march=x86-64']
  link line: [ /usr/lib/gcc/x86_64-linux-gnu/9/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/9/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/9/lto-wrapper -plugin-opt=-fresolution=/tmp/ccWQeOAg.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_0d256 /usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/9/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/9 -L/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/9/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/9/../../.. CMakeFiles/cmTC_0d256.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-linux-gnu/9/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/crtn.o]
    arg [/usr/lib/gcc/x86_64-linux-gnu/9/collect2] ==> ignore
    arg [-plugin] ==> ignore
    arg [/usr/lib/gcc/x86_64-linux-gnu/9/liblto_plugin.so] ==> ignore
    arg [-plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/9/lto-wrapper] ==> ignore
    arg [-plugin-opt=-fresolution=/tmp/ccWQeOAg.res] ==> ignore
    arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
    arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore
    arg [-plugin-opt=-pass-through=-lc] ==> ignore
    arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
    arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore
    arg [--build-id] ==> ignore
    arg [--eh-frame-hdr] ==> ignore
    arg [-m] ==> ignore
    arg [elf_x86_64] ==> ignore
    arg [--hash-style=gnu] ==> ignore
    arg [--as-needed] ==> ignore
    arg [-dynamic-linker] ==> ignore
    arg [/lib64/ld-linux-x86-64.so.2] ==> ignore
    arg [-pie] ==> ignore
    arg [-znow] ==> ignore
    arg [-zrelro] ==> ignore
    arg [-o] ==> ignore
    arg [cmTC_0d256] ==> ignore
    arg [/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/Scrt1.o] ==> ignore
    arg [/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/crti.o] ==> ignore
    arg [/usr/lib/gcc/x86_64-linux-gnu/9/crtbeginS.o] ==> ignore
    arg [-L/usr/lib/gcc/x86_64-linux-gnu/9] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/9]
    arg [-L/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu]
    arg [-L/usr/lib/gcc/x86_64-linux-gnu/9/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/9/../../../../lib]
    arg [-L/lib/x86_64-linux-gnu] ==> dir [/lib/x86_64-linux-gnu]
    arg [-L/lib/../lib] ==> dir [/lib/../lib]
    arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu]
    arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib]
    arg [-L/usr/lib/gcc/x86_64-linux-gnu/9/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/9/../../..]
    arg [CMakeFiles/cmTC_0d256.dir/CMakeCCompilerABI.c.o] ==> ignore
    arg [-lgcc] ==> lib [gcc]
    arg [--push-state] ==> ignore
    arg [--as-needed] ==> ignore
    arg [-lgcc_s] ==> lib [gcc_s]
    arg [--pop-state] ==> ignore
    arg [-lc] ==> lib [c]
    arg [-lgcc] ==> lib [gcc]
    arg [--push-state] ==> ignore
    arg [--as-needed] ==> ignore
    arg [-lgcc_s] ==> lib [gcc_s]
    arg [--pop-state] ==> ignore
    arg [/usr/lib/gcc/x86_64-linux-gnu/9/crtendS.o] ==> ignore
    arg [/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/crtn.o] ==> ignore
  collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/9] ==> [/usr/lib/gcc/x86_64-linux-gnu/9]
  collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu]
  collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/9/../../../../lib] ==> [/usr/lib]
  collapse library dir [/lib/x86_64-linux-gnu] ==> [/lib/x86_64-linux-gnu]
  collapse library dir [/lib/../lib] ==> [/lib]
  collapse library dir [/usr/lib/x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu]
  collapse library dir [/usr/lib/../lib] ==> [/usr/lib]
  collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/9/../../..] ==> [/usr/lib]
  implicit libs: [gcc;gcc_s;c;gcc;gcc_s]
  implicit dirs: [/usr/lib/gcc/x86_64-linux-gnu/9;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib]
  implicit fwks: []




Detecting C [-std=c11] compiler features compiled with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_61961/fast"
/usr/bin/make -f CMakeFiles/cmTC_61961.dir/build.make CMakeFiles/cmTC_61961.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_61961.dir/feature_tests.c.o
/usr/bin/cc   -std=c11 -o CMakeFiles/cmTC_61961.dir/feature_tests.c.o   -c /home/dorinda/ceph/CMakeFiles/feature_tests.c
Linking C executable cmTC_61961
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_61961.dir/link.txt --verbose=1
/usr/bin/cc      CMakeFiles/cmTC_61961.dir/feature_tests.c.o  -o cmTC_61961 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'


    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: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_6197a/fast"
/usr/bin/make -f CMakeFiles/cmTC_6197a.dir/build.make CMakeFiles/cmTC_6197a.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_6197a.dir/feature_tests.c.o
/usr/bin/cc   -std=c99 -o CMakeFiles/cmTC_6197a.dir/feature_tests.c.o   -c /home/dorinda/ceph/CMakeFiles/feature_tests.c
Linking C executable cmTC_6197a
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_6197a.dir/link.txt --verbose=1
/usr/bin/cc      CMakeFiles/cmTC_6197a.dir/feature_tests.c.o  -o cmTC_6197a 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'


    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: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_d76a2/fast"
/usr/bin/make -f CMakeFiles/cmTC_d76a2.dir/build.make CMakeFiles/cmTC_d76a2.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_d76a2.dir/feature_tests.c.o
/usr/bin/cc   -std=c90 -o CMakeFiles/cmTC_d76a2.dir/feature_tests.c.o   -c /home/dorinda/ceph/CMakeFiles/feature_tests.c
Linking C executable cmTC_d76a2
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_d76a2.dir/link.txt --verbose=1
/usr/bin/cc      CMakeFiles/cmTC_d76a2.dir/feature_tests.c.o  -o cmTC_d76a2 
make[1]: Leaving directory '/home/dorinda/ceph/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
Determining if the include file pthread.h exists passed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_59e45/fast"
/usr/bin/make -f CMakeFiles/cmTC_59e45.dir/build.make CMakeFiles/cmTC_59e45.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_59e45.dir/CheckIncludeFile.c.o
/usr/bin/cc    -o CMakeFiles/cmTC_59e45.dir/CheckIncludeFile.c.o   -c /home/dorinda/ceph/CMakeFiles/CMakeTmp/CheckIncludeFile.c
Linking C executable cmTC_59e45
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_59e45.dir/link.txt --verbose=1
/usr/bin/cc      CMakeFiles/cmTC_59e45.dir/CheckIncludeFile.c.o  -o cmTC_59e45 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'


Determining if the function pthread_create exists in the pthread passed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_d376c/fast"
/usr/bin/make -f CMakeFiles/cmTC_d376c.dir/build.make CMakeFiles/cmTC_d376c.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_d376c.dir/CheckFunctionExists.c.o
/usr/bin/cc   -DCHECK_FUNCTION_EXISTS=pthread_create   -o CMakeFiles/cmTC_d376c.dir/CheckFunctionExists.c.o   -c /usr/share/cmake-3.10/Modules/CheckFunctionExists.c
Linking C executable cmTC_d376c
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_d376c.dir/link.txt --verbose=1
/usr/bin/cc  -DCHECK_FUNCTION_EXISTS=pthread_create    CMakeFiles/cmTC_d376c.dir/CheckFunctionExists.c.o  -o cmTC_d376c -lpthread 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'


Determining if the function fallocate exists passed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_e85ad/fast"
/usr/bin/make -f CMakeFiles/cmTC_e85ad.dir/build.make CMakeFiles/cmTC_e85ad.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_e85ad.dir/CheckFunctionExists.c.o
/usr/bin/cc   -DCHECK_FUNCTION_EXISTS=fallocate   -o CMakeFiles/cmTC_e85ad.dir/CheckFunctionExists.c.o   -c /usr/share/cmake-3.10/Modules/CheckFunctionExists.c
Linking C executable cmTC_e85ad
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_e85ad.dir/link.txt --verbose=1
/usr/bin/cc  -DCHECK_FUNCTION_EXISTS=fallocate    CMakeFiles/cmTC_e85ad.dir/CheckFunctionExists.c.o  -o cmTC_e85ad 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'


Determining if the function posix_fadvise exists passed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_016ff/fast"
/usr/bin/make -f CMakeFiles/cmTC_016ff.dir/build.make CMakeFiles/cmTC_016ff.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_016ff.dir/CheckFunctionExists.c.o
/usr/bin/cc   -DCHECK_FUNCTION_EXISTS=posix_fadvise   -o CMakeFiles/cmTC_016ff.dir/CheckFunctionExists.c.o   -c /usr/share/cmake-3.10/Modules/CheckFunctionExists.c
Linking C executable cmTC_016ff
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_016ff.dir/link.txt --verbose=1
/usr/bin/cc  -DCHECK_FUNCTION_EXISTS=posix_fadvise    CMakeFiles/cmTC_016ff.dir/CheckFunctionExists.c.o  -o cmTC_016ff 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'


Determining if the function posix_fallocate exists passed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_f0111/fast"
/usr/bin/make -f CMakeFiles/cmTC_f0111.dir/build.make CMakeFiles/cmTC_f0111.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_f0111.dir/CheckFunctionExists.c.o
/usr/bin/cc   -DCHECK_FUNCTION_EXISTS=posix_fallocate   -o CMakeFiles/cmTC_f0111.dir/CheckFunctionExists.c.o   -c /usr/share/cmake-3.10/Modules/CheckFunctionExists.c
Linking C executable cmTC_f0111
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_f0111.dir/link.txt --verbose=1
/usr/bin/cc  -DCHECK_FUNCTION_EXISTS=posix_fallocate    CMakeFiles/cmTC_f0111.dir/CheckFunctionExists.c.o  -o cmTC_f0111 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'


Determining if the function syncfs exists passed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_fcc13/fast"
/usr/bin/make -f CMakeFiles/cmTC_fcc13.dir/build.make CMakeFiles/cmTC_fcc13.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_fcc13.dir/CheckFunctionExists.c.o
/usr/bin/cc   -DCHECK_FUNCTION_EXISTS=syncfs   -o CMakeFiles/cmTC_fcc13.dir/CheckFunctionExists.c.o   -c /usr/share/cmake-3.10/Modules/CheckFunctionExists.c
Linking C executable cmTC_fcc13
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_fcc13.dir/link.txt --verbose=1
/usr/bin/cc  -DCHECK_FUNCTION_EXISTS=syncfs    CMakeFiles/cmTC_fcc13.dir/CheckFunctionExists.c.o  -o cmTC_fcc13 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'


Determining if the function sync_file_range exists passed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_b57b1/fast"
/usr/bin/make -f CMakeFiles/cmTC_b57b1.dir/build.make CMakeFiles/cmTC_b57b1.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_b57b1.dir/CheckFunctionExists.c.o
/usr/bin/cc   -DCHECK_FUNCTION_EXISTS=sync_file_range   -o CMakeFiles/cmTC_b57b1.dir/CheckFunctionExists.c.o   -c /usr/share/cmake-3.10/Modules/CheckFunctionExists.c
Linking C executable cmTC_b57b1
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_b57b1.dir/link.txt --verbose=1
/usr/bin/cc  -DCHECK_FUNCTION_EXISTS=sync_file_range    CMakeFiles/cmTC_b57b1.dir/CheckFunctionExists.c.o  -o cmTC_b57b1 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'


Determining if the function pwritev exists passed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_f1580/fast"
/usr/bin/make -f CMakeFiles/cmTC_f1580.dir/build.make CMakeFiles/cmTC_f1580.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_f1580.dir/CheckFunctionExists.c.o
/usr/bin/cc   -DCHECK_FUNCTION_EXISTS=pwritev   -o CMakeFiles/cmTC_f1580.dir/CheckFunctionExists.c.o   -c /usr/share/cmake-3.10/Modules/CheckFunctionExists.c
Linking C executable cmTC_f1580
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_f1580.dir/link.txt --verbose=1
/usr/bin/cc  -DCHECK_FUNCTION_EXISTS=pwritev    CMakeFiles/cmTC_f1580.dir/CheckFunctionExists.c.o  -o cmTC_f1580 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'


Determining if the function splice exists passed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_c08bf/fast"
/usr/bin/make -f CMakeFiles/cmTC_c08bf.dir/build.make CMakeFiles/cmTC_c08bf.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_c08bf.dir/CheckFunctionExists.c.o
/usr/bin/cc   -DCHECK_FUNCTION_EXISTS=splice   -o CMakeFiles/cmTC_c08bf.dir/CheckFunctionExists.c.o   -c /usr/share/cmake-3.10/Modules/CheckFunctionExists.c
Linking C executable cmTC_c08bf
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_c08bf.dir/link.txt --verbose=1
/usr/bin/cc  -DCHECK_FUNCTION_EXISTS=splice    CMakeFiles/cmTC_c08bf.dir/CheckFunctionExists.c.o  -o cmTC_c08bf 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'


Determining if the function getgrouplist exists passed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_7ba19/fast"
/usr/bin/make -f CMakeFiles/cmTC_7ba19.dir/build.make CMakeFiles/cmTC_7ba19.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_7ba19.dir/CheckFunctionExists.c.o
/usr/bin/cc   -DCHECK_FUNCTION_EXISTS=getgrouplist   -o CMakeFiles/cmTC_7ba19.dir/CheckFunctionExists.c.o   -c /usr/share/cmake-3.10/Modules/CheckFunctionExists.c
Linking C executable cmTC_7ba19
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_7ba19.dir/link.txt --verbose=1
/usr/bin/cc  -DCHECK_FUNCTION_EXISTS=getgrouplist    CMakeFiles/cmTC_7ba19.dir/CheckFunctionExists.c.o  -o cmTC_7ba19 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'


Determining if the function fdatasync exists passed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_fdf04/fast"
/usr/bin/make -f CMakeFiles/cmTC_fdf04.dir/build.make CMakeFiles/cmTC_fdf04.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_fdf04.dir/CheckFunctionExists.c.o
/usr/bin/cc   -DCHECK_FUNCTION_EXISTS=fdatasync   -o CMakeFiles/cmTC_fdf04.dir/CheckFunctionExists.c.o   -c /usr/share/cmake-3.10/Modules/CheckFunctionExists.c
Linking C executable cmTC_fdf04
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_fdf04.dir/link.txt --verbose=1
/usr/bin/cc  -DCHECK_FUNCTION_EXISTS=fdatasync    CMakeFiles/cmTC_fdf04.dir/CheckFunctionExists.c.o  -o cmTC_fdf04 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'


Determining if the function strerror_r exists passed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_61f57/fast"
/usr/bin/make -f CMakeFiles/cmTC_61f57.dir/build.make CMakeFiles/cmTC_61f57.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_61f57.dir/CheckFunctionExists.c.o
/usr/bin/cc   -DCHECK_FUNCTION_EXISTS=strerror_r   -o CMakeFiles/cmTC_61f57.dir/CheckFunctionExists.c.o   -c /usr/share/cmake-3.10/Modules/CheckFunctionExists.c
Linking C executable cmTC_61f57
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_61f57.dir/link.txt --verbose=1
/usr/bin/cc  -DCHECK_FUNCTION_EXISTS=strerror_r    CMakeFiles/cmTC_61f57.dir/CheckFunctionExists.c.o  -o cmTC_61f57 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'


Determining if the function name_to_handle_at exists passed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_bbed9/fast"
/usr/bin/make -f CMakeFiles/cmTC_bbed9.dir/build.make CMakeFiles/cmTC_bbed9.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_bbed9.dir/CheckFunctionExists.c.o
/usr/bin/cc   -DCHECK_FUNCTION_EXISTS=name_to_handle_at   -o CMakeFiles/cmTC_bbed9.dir/CheckFunctionExists.c.o   -c /usr/share/cmake-3.10/Modules/CheckFunctionExists.c
Linking C executable cmTC_bbed9
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_bbed9.dir/link.txt --verbose=1
/usr/bin/cc  -DCHECK_FUNCTION_EXISTS=name_to_handle_at    CMakeFiles/cmTC_bbed9.dir/CheckFunctionExists.c.o  -o cmTC_bbed9 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'


Determining if the function pipe2 exists passed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_3eb7e/fast"
/usr/bin/make -f CMakeFiles/cmTC_3eb7e.dir/build.make CMakeFiles/cmTC_3eb7e.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_3eb7e.dir/CheckFunctionExists.c.o
/usr/bin/cc   -DCHECK_FUNCTION_EXISTS=pipe2   -o CMakeFiles/cmTC_3eb7e.dir/CheckFunctionExists.c.o   -c /usr/share/cmake-3.10/Modules/CheckFunctionExists.c
Linking C executable cmTC_3eb7e
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_3eb7e.dir/link.txt --verbose=1
/usr/bin/cc  -DCHECK_FUNCTION_EXISTS=pipe2    CMakeFiles/cmTC_3eb7e.dir/CheckFunctionExists.c.o  -o cmTC_3eb7e 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'


Determining if the function accept4 exists passed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_baf86/fast"
/usr/bin/make -f CMakeFiles/cmTC_baf86.dir/build.make CMakeFiles/cmTC_baf86.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_baf86.dir/CheckFunctionExists.c.o
/usr/bin/cc   -DCHECK_FUNCTION_EXISTS=accept4   -o CMakeFiles/cmTC_baf86.dir/CheckFunctionExists.c.o   -c /usr/share/cmake-3.10/Modules/CheckFunctionExists.c
Linking C executable cmTC_baf86
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_baf86.dir/link.txt --verbose=1
/usr/bin/cc  -DCHECK_FUNCTION_EXISTS=accept4    CMakeFiles/cmTC_baf86.dir/CheckFunctionExists.c.o  -o cmTC_baf86 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'


Determining if the function pthread_spin_init exists passed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_d0281/fast"
/usr/bin/make -f CMakeFiles/cmTC_d0281.dir/build.make CMakeFiles/cmTC_d0281.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_d0281.dir/CheckFunctionExists.c.o
/usr/bin/cc   -DCHECK_FUNCTION_EXISTS=pthread_spin_init   -o CMakeFiles/cmTC_d0281.dir/CheckFunctionExists.c.o   -c /usr/share/cmake-3.10/Modules/CheckFunctionExists.c
Linking C executable cmTC_d0281
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_d0281.dir/link.txt --verbose=1
/usr/bin/cc  -DCHECK_FUNCTION_EXISTS=pthread_spin_init    CMakeFiles/cmTC_d0281.dir/CheckFunctionExists.c.o  -o cmTC_d0281 -lpthread 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'


Determining if the function pthread_setname_np exists passed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_d20f9/fast"
/usr/bin/make -f CMakeFiles/cmTC_d20f9.dir/build.make CMakeFiles/cmTC_d20f9.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_d20f9.dir/CheckFunctionExists.c.o
/usr/bin/cc   -DCHECK_FUNCTION_EXISTS=pthread_setname_np   -o CMakeFiles/cmTC_d20f9.dir/CheckFunctionExists.c.o   -c /usr/share/cmake-3.10/Modules/CheckFunctionExists.c
Linking C executable cmTC_d20f9
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_d20f9.dir/link.txt --verbose=1
/usr/bin/cc  -DCHECK_FUNCTION_EXISTS=pthread_setname_np    CMakeFiles/cmTC_d20f9.dir/CheckFunctionExists.c.o  -o cmTC_d20f9 -lpthread 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'


Determining if the function pthread_getname_np exists passed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_82d63/fast"
/usr/bin/make -f CMakeFiles/cmTC_82d63.dir/build.make CMakeFiles/cmTC_82d63.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_82d63.dir/CheckFunctionExists.c.o
/usr/bin/cc   -DCHECK_FUNCTION_EXISTS=pthread_getname_np   -o CMakeFiles/cmTC_82d63.dir/CheckFunctionExists.c.o   -c /usr/share/cmake-3.10/Modules/CheckFunctionExists.c
Linking C executable cmTC_82d63
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_82d63.dir/link.txt --verbose=1
/usr/bin/cc  -DCHECK_FUNCTION_EXISTS=pthread_getname_np    CMakeFiles/cmTC_82d63.dir/CheckFunctionExists.c.o  -o cmTC_82d63 -lpthread 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'


Determining if the function pthread_rwlockattr_setkind_np exists passed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_c809e/fast"
/usr/bin/make -f CMakeFiles/cmTC_c809e.dir/build.make CMakeFiles/cmTC_c809e.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_c809e.dir/CheckFunctionExists.c.o
/usr/bin/cc   -DCHECK_FUNCTION_EXISTS=pthread_rwlockattr_setkind_np   -o CMakeFiles/cmTC_c809e.dir/CheckFunctionExists.c.o   -c /usr/share/cmake-3.10/Modules/CheckFunctionExists.c
Linking C executable cmTC_c809e
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_c809e.dir/link.txt --verbose=1
/usr/bin/cc  -DCHECK_FUNCTION_EXISTS=pthread_rwlockattr_setkind_np    CMakeFiles/cmTC_c809e.dir/CheckFunctionExists.c.o  -o cmTC_c809e -lpthread 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'


Determining if the function eventfd exists passed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_5b94b/fast"
/usr/bin/make -f CMakeFiles/cmTC_5b94b.dir/build.make CMakeFiles/cmTC_5b94b.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_5b94b.dir/CheckFunctionExists.c.o
/usr/bin/cc   -DCHECK_FUNCTION_EXISTS=eventfd   -o CMakeFiles/cmTC_5b94b.dir/CheckFunctionExists.c.o   -c /usr/share/cmake-3.10/Modules/CheckFunctionExists.c
Linking C executable cmTC_5b94b
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_5b94b.dir/link.txt --verbose=1
/usr/bin/cc  -DCHECK_FUNCTION_EXISTS=eventfd    CMakeFiles/cmTC_5b94b.dir/CheckFunctionExists.c.o  -o cmTC_5b94b 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'


Determining if files linux/types.h exist passed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_c56a1/fast"
/usr/bin/make -f CMakeFiles/cmTC_c56a1.dir/build.make CMakeFiles/cmTC_c56a1.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_c56a1.dir/CheckIncludeFiles.c.o
/usr/bin/cc    -o CMakeFiles/cmTC_c56a1.dir/CheckIncludeFiles.c.o   -c /home/dorinda/ceph/CMakeFiles/CMakeTmp/CheckIncludeFiles.c
Linking C executable cmTC_c56a1
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_c56a1.dir/link.txt --verbose=1
/usr/bin/cc      CMakeFiles/cmTC_c56a1.dir/CheckIncludeFiles.c.o  -o cmTC_c56a1 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'


Determining if files linux/version.h exist passed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_544bb/fast"
/usr/bin/make -f CMakeFiles/cmTC_544bb.dir/build.make CMakeFiles/cmTC_544bb.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_544bb.dir/CheckIncludeFiles.c.o
/usr/bin/cc    -o CMakeFiles/cmTC_544bb.dir/CheckIncludeFiles.c.o   -c /home/dorinda/ceph/CMakeFiles/CMakeTmp/CheckIncludeFiles.c
Linking C executable cmTC_544bb
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_544bb.dir/link.txt --verbose=1
/usr/bin/cc      CMakeFiles/cmTC_544bb.dir/CheckIncludeFiles.c.o  -o cmTC_544bb 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'


Determining if files arpa/nameser_compat.h exist passed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_534f0/fast"
/usr/bin/make -f CMakeFiles/cmTC_534f0.dir/build.make CMakeFiles/cmTC_534f0.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_534f0.dir/CheckIncludeFiles.c.o
/usr/bin/cc    -o CMakeFiles/cmTC_534f0.dir/CheckIncludeFiles.c.o   -c /home/dorinda/ceph/CMakeFiles/CMakeTmp/CheckIncludeFiles.c
Linking C executable cmTC_534f0
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_534f0.dir/link.txt --verbose=1
/usr/bin/cc      CMakeFiles/cmTC_534f0.dir/CheckIncludeFiles.c.o  -o cmTC_534f0 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'


Determining if files sys/mount.h exist passed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_bf061/fast"
/usr/bin/make -f CMakeFiles/cmTC_bf061.dir/build.make CMakeFiles/cmTC_bf061.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_bf061.dir/CheckIncludeFiles.c.o
/usr/bin/cc    -o CMakeFiles/cmTC_bf061.dir/CheckIncludeFiles.c.o   -c /home/dorinda/ceph/CMakeFiles/CMakeTmp/CheckIncludeFiles.c
Linking C executable cmTC_bf061
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_bf061.dir/link.txt --verbose=1
/usr/bin/cc      CMakeFiles/cmTC_bf061.dir/CheckIncludeFiles.c.o  -o cmTC_bf061 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'


Determining if files sys/param.h exist passed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_d06ad/fast"
/usr/bin/make -f CMakeFiles/cmTC_d06ad.dir/build.make CMakeFiles/cmTC_d06ad.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_d06ad.dir/CheckIncludeFiles.c.o
/usr/bin/cc    -o CMakeFiles/cmTC_d06ad.dir/CheckIncludeFiles.c.o   -c /home/dorinda/ceph/CMakeFiles/CMakeTmp/CheckIncludeFiles.c
Linking C executable cmTC_d06ad
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_d06ad.dir/link.txt --verbose=1
/usr/bin/cc      CMakeFiles/cmTC_d06ad.dir/CheckIncludeFiles.c.o  -o cmTC_d06ad 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'


Determining if files sys/types.h exist passed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_f5808/fast"
/usr/bin/make -f CMakeFiles/cmTC_f5808.dir/build.make CMakeFiles/cmTC_f5808.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_f5808.dir/CheckIncludeFiles.c.o
/usr/bin/cc    -o CMakeFiles/cmTC_f5808.dir/CheckIncludeFiles.c.o   -c /home/dorinda/ceph/CMakeFiles/CMakeTmp/CheckIncludeFiles.c
Linking C executable cmTC_f5808
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_f5808.dir/link.txt --verbose=1
/usr/bin/cc      CMakeFiles/cmTC_f5808.dir/CheckIncludeFiles.c.o  -o cmTC_f5808 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'


Determining if files sys/vfs.h exist passed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_dd39c/fast"
/usr/bin/make -f CMakeFiles/cmTC_dd39c.dir/build.make CMakeFiles/cmTC_dd39c.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_dd39c.dir/CheckIncludeFiles.c.o
/usr/bin/cc    -o CMakeFiles/cmTC_dd39c.dir/CheckIncludeFiles.c.o   -c /home/dorinda/ceph/CMakeFiles/CMakeTmp/CheckIncludeFiles.c
Linking C executable cmTC_dd39c
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_dd39c.dir/link.txt --verbose=1
/usr/bin/cc      CMakeFiles/cmTC_dd39c.dir/CheckIncludeFiles.c.o  -o cmTC_dd39c 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'


Determining if files sys/prctl.h exist passed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_d5742/fast"
/usr/bin/make -f CMakeFiles/cmTC_d5742.dir/build.make CMakeFiles/cmTC_d5742.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_d5742.dir/CheckIncludeFiles.c.o
/usr/bin/cc    -o CMakeFiles/cmTC_d5742.dir/CheckIncludeFiles.c.o   -c /home/dorinda/ceph/CMakeFiles/CMakeTmp/CheckIncludeFiles.c
Linking C executable cmTC_d5742
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_d5742.dir/link.txt --verbose=1
/usr/bin/cc      CMakeFiles/cmTC_d5742.dir/CheckIncludeFiles.c.o  -o cmTC_d5742 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'


Determining if files execinfo.h exist passed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_1d2ea/fast"
/usr/bin/make -f CMakeFiles/cmTC_1d2ea.dir/build.make CMakeFiles/cmTC_1d2ea.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_1d2ea.dir/CheckIncludeFiles.c.o
/usr/bin/cc    -o CMakeFiles/cmTC_1d2ea.dir/CheckIncludeFiles.c.o   -c /home/dorinda/ceph/CMakeFiles/CMakeTmp/CheckIncludeFiles.c
Linking C executable cmTC_1d2ea
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_1d2ea.dir/link.txt --verbose=1
/usr/bin/cc      CMakeFiles/cmTC_1d2ea.dir/CheckIncludeFiles.c.o  -o cmTC_1d2ea 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'


Determining if files sched.h exist passed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_51678/fast"
/usr/bin/make -f CMakeFiles/cmTC_51678.dir/build.make CMakeFiles/cmTC_51678.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_51678.dir/CheckIncludeFiles.c.o
/usr/bin/cc    -o CMakeFiles/cmTC_51678.dir/CheckIncludeFiles.c.o   -c /home/dorinda/ceph/CMakeFiles/CMakeTmp/CheckIncludeFiles.c
Linking C executable cmTC_51678
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_51678.dir/link.txt --verbose=1
/usr/bin/cc      CMakeFiles/cmTC_51678.dir/CheckIncludeFiles.c.o  -o cmTC_51678 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'


Determining if the include file stdint.h exists passed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_e8dff/fast"
/usr/bin/make -f CMakeFiles/cmTC_e8dff.dir/build.make CMakeFiles/cmTC_e8dff.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_e8dff.dir/CheckIncludeFile.c.o
/usr/bin/cc    -o CMakeFiles/cmTC_e8dff.dir/CheckIncludeFile.c.o   -c /home/dorinda/ceph/CMakeFiles/CMakeTmp/CheckIncludeFile.c
Linking C executable cmTC_e8dff
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_e8dff.dir/link.txt --verbose=1
/usr/bin/cc      CMakeFiles/cmTC_e8dff.dir/CheckIncludeFile.c.o  -o cmTC_e8dff 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'


Determining if the include file stddef.h exists passed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_827f8/fast"
/usr/bin/make -f CMakeFiles/cmTC_827f8.dir/build.make CMakeFiles/cmTC_827f8.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_827f8.dir/CheckIncludeFile.c.o
/usr/bin/cc    -o CMakeFiles/cmTC_827f8.dir/CheckIncludeFile.c.o   -c /home/dorinda/ceph/CMakeFiles/CMakeTmp/CheckIncludeFile.c
Linking C executable cmTC_827f8
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_827f8.dir/link.txt --verbose=1
/usr/bin/cc      CMakeFiles/cmTC_827f8.dir/CheckIncludeFile.c.o  -o cmTC_827f8 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'


Determining size of __u8 passed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_cc3ec/fast"
/usr/bin/make -f CMakeFiles/cmTC_cc3ec.dir/build.make CMakeFiles/cmTC_cc3ec.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_cc3ec.dir/__U8.c.o
/usr/bin/cc    -o CMakeFiles/cmTC_cc3ec.dir/__U8.c.o   -c /home/dorinda/ceph/CMakeFiles/CheckTypeSize/__U8.c
Linking C executable cmTC_cc3ec
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_cc3ec.dir/link.txt --verbose=1
/usr/bin/cc      CMakeFiles/cmTC_cc3ec.dir/__U8.c.o  -o cmTC_cc3ec 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'


Determining size of __u16 passed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_d16ab/fast"
/usr/bin/make -f CMakeFiles/cmTC_d16ab.dir/build.make CMakeFiles/cmTC_d16ab.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_d16ab.dir/__U16.c.o
/usr/bin/cc    -o CMakeFiles/cmTC_d16ab.dir/__U16.c.o   -c /home/dorinda/ceph/CMakeFiles/CheckTypeSize/__U16.c
Linking C executable cmTC_d16ab
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_d16ab.dir/link.txt --verbose=1
/usr/bin/cc      CMakeFiles/cmTC_d16ab.dir/__U16.c.o  -o cmTC_d16ab 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'


Determining size of __u32 passed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_bc278/fast"
/usr/bin/make -f CMakeFiles/cmTC_bc278.dir/build.make CMakeFiles/cmTC_bc278.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_bc278.dir/__U32.c.o
/usr/bin/cc    -o CMakeFiles/cmTC_bc278.dir/__U32.c.o   -c /home/dorinda/ceph/CMakeFiles/CheckTypeSize/__U32.c
Linking C executable cmTC_bc278
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_bc278.dir/link.txt --verbose=1
/usr/bin/cc      CMakeFiles/cmTC_bc278.dir/__U32.c.o  -o cmTC_bc278 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'


Determining size of __u64 passed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_57165/fast"
/usr/bin/make -f CMakeFiles/cmTC_57165.dir/build.make CMakeFiles/cmTC_57165.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_57165.dir/__U64.c.o
/usr/bin/cc    -o CMakeFiles/cmTC_57165.dir/__U64.c.o   -c /home/dorinda/ceph/CMakeFiles/CheckTypeSize/__U64.c
Linking C executable cmTC_57165
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_57165.dir/link.txt --verbose=1
/usr/bin/cc      CMakeFiles/cmTC_57165.dir/__U64.c.o  -o cmTC_57165 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'


Determining size of __s8 passed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_831e7/fast"
/usr/bin/make -f CMakeFiles/cmTC_831e7.dir/build.make CMakeFiles/cmTC_831e7.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_831e7.dir/__S8.c.o
/usr/bin/cc    -o CMakeFiles/cmTC_831e7.dir/__S8.c.o   -c /home/dorinda/ceph/CMakeFiles/CheckTypeSize/__S8.c
Linking C executable cmTC_831e7
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_831e7.dir/link.txt --verbose=1
/usr/bin/cc      CMakeFiles/cmTC_831e7.dir/__S8.c.o  -o cmTC_831e7 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'


Determining size of __s16 passed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_80289/fast"
/usr/bin/make -f CMakeFiles/cmTC_80289.dir/build.make CMakeFiles/cmTC_80289.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_80289.dir/__S16.c.o
/usr/bin/cc    -o CMakeFiles/cmTC_80289.dir/__S16.c.o   -c /home/dorinda/ceph/CMakeFiles/CheckTypeSize/__S16.c
Linking C executable cmTC_80289
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_80289.dir/link.txt --verbose=1
/usr/bin/cc      CMakeFiles/cmTC_80289.dir/__S16.c.o  -o cmTC_80289 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'


Determining size of __s32 passed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_f6f5e/fast"
/usr/bin/make -f CMakeFiles/cmTC_f6f5e.dir/build.make CMakeFiles/cmTC_f6f5e.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_f6f5e.dir/__S32.c.o
/usr/bin/cc    -o CMakeFiles/cmTC_f6f5e.dir/__S32.c.o   -c /home/dorinda/ceph/CMakeFiles/CheckTypeSize/__S32.c
Linking C executable cmTC_f6f5e
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_f6f5e.dir/link.txt --verbose=1
/usr/bin/cc      CMakeFiles/cmTC_f6f5e.dir/__S32.c.o  -o cmTC_f6f5e 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'


Determining size of __s64 passed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_750a2/fast"
/usr/bin/make -f CMakeFiles/cmTC_750a2.dir/build.make CMakeFiles/cmTC_750a2.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_750a2.dir/__S64.c.o
/usr/bin/cc    -o CMakeFiles/cmTC_750a2.dir/__S64.c.o   -c /home/dorinda/ceph/CMakeFiles/CheckTypeSize/__S64.c
Linking C executable cmTC_750a2
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_750a2.dir/link.txt --verbose=1
/usr/bin/cc      CMakeFiles/cmTC_750a2.dir/__S64.c.o  -o cmTC_750a2 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'


Determining if the _POSIX_TIMERS exist passed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_35483/fast"
/usr/bin/make -f CMakeFiles/cmTC_35483.dir/build.make CMakeFiles/cmTC_35483.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_35483.dir/CheckSymbolExists.c.o
/usr/bin/cc    -o CMakeFiles/cmTC_35483.dir/CheckSymbolExists.c.o   -c /home/dorinda/ceph/CMakeFiles/CMakeTmp/CheckSymbolExists.c
Linking C executable cmTC_35483
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_35483.dir/link.txt --verbose=1
/usr/bin/cc      CMakeFiles/cmTC_35483.dir/CheckSymbolExists.c.o  -o cmTC_35483 -lrt 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'

File /home/dorinda/ceph/CMakeFiles/CMakeTmp/CheckSymbolExists.c:
/* */
#include <unistd.h>
#include <time.h>

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

Determining if the res_nquery exist passed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_fed8b/fast"
/usr/bin/make -f CMakeFiles/cmTC_fed8b.dir/build.make CMakeFiles/cmTC_fed8b.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_fed8b.dir/CheckSymbolExists.c.o
/usr/bin/cc    -o CMakeFiles/cmTC_fed8b.dir/CheckSymbolExists.c.o   -c /home/dorinda/ceph/CMakeFiles/CMakeTmp/CheckSymbolExists.c
Linking C executable cmTC_fed8b
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_fed8b.dir/link.txt --verbose=1
/usr/bin/cc      CMakeFiles/cmTC_fed8b.dir/CheckSymbolExists.c.o  -o cmTC_fed8b 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'

File /home/dorinda/ceph/CMakeFiles/CMakeTmp/CheckSymbolExists.c:
/* */
#include <resolv.h>

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

Determining if the F_SETPIPE_SZ exist passed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_f0455/fast"
/usr/bin/make -f CMakeFiles/cmTC_f0455.dir/build.make CMakeFiles/cmTC_f0455.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_f0455.dir/CheckSymbolExists.c.o
/usr/bin/cc    -o CMakeFiles/cmTC_f0455.dir/CheckSymbolExists.c.o   -c /home/dorinda/ceph/CMakeFiles/CMakeTmp/CheckSymbolExists.c
Linking C executable cmTC_f0455
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_f0455.dir/link.txt --verbose=1
/usr/bin/cc      CMakeFiles/cmTC_f0455.dir/CheckSymbolExists.c.o  -o cmTC_f0455 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'

File /home/dorinda/ceph/CMakeFiles/CMakeTmp/CheckSymbolExists.c:
/* */
#include <linux/fcntl.h>

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

Determining if the __func__ exist passed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_b8b1a/fast"
/usr/bin/make -f CMakeFiles/cmTC_b8b1a.dir/build.make CMakeFiles/cmTC_b8b1a.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_b8b1a.dir/CheckSymbolExists.c.o
/usr/bin/cc    -o CMakeFiles/cmTC_b8b1a.dir/CheckSymbolExists.c.o   -c /home/dorinda/ceph/CMakeFiles/CMakeTmp/CheckSymbolExists.c
Linking C executable cmTC_b8b1a
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_b8b1a.dir/link.txt --verbose=1
/usr/bin/cc      CMakeFiles/cmTC_b8b1a.dir/CheckSymbolExists.c.o  -o cmTC_b8b1a 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'

File /home/dorinda/ceph/CMakeFiles/CMakeTmp/CheckSymbolExists.c:
/* */

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

Determining if the __PRETTY_FUNCTION__ exist passed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_f7a3c/fast"
/usr/bin/make -f CMakeFiles/cmTC_f7a3c.dir/build.make CMakeFiles/cmTC_f7a3c.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_f7a3c.dir/CheckSymbolExists.c.o
/usr/bin/cc    -o CMakeFiles/cmTC_f7a3c.dir/CheckSymbolExists.c.o   -c /home/dorinda/ceph/CMakeFiles/CMakeTmp/CheckSymbolExists.c
Linking C executable cmTC_f7a3c
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_f7a3c.dir/link.txt --verbose=1
/usr/bin/cc      CMakeFiles/cmTC_f7a3c.dir/CheckSymbolExists.c.o  -o cmTC_f7a3c 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'

File /home/dorinda/ceph/CMakeFiles/CMakeTmp/CheckSymbolExists.c:
/* */

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

Determining if the getentropy exist passed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_6cc3a/fast"
/usr/bin/make -f CMakeFiles/cmTC_6cc3a.dir/build.make CMakeFiles/cmTC_6cc3a.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_6cc3a.dir/CheckSymbolExists.c.o
/usr/bin/cc    -o CMakeFiles/cmTC_6cc3a.dir/CheckSymbolExists.c.o   -c /home/dorinda/ceph/CMakeFiles/CMakeTmp/CheckSymbolExists.c
Linking C executable cmTC_6cc3a
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_6cc3a.dir/link.txt --verbose=1
/usr/bin/cc      CMakeFiles/cmTC_6cc3a.dir/CheckSymbolExists.c.o  -o cmTC_6cc3a 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'

File /home/dorinda/ceph/CMakeFiles/CMakeTmp/CheckSymbolExists.c:
/* */
#include <unistd.h>

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

Performing C++ SOURCE FILE Test STRERROR_R_CHAR_P succeeded with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_a762c/fast"
/usr/bin/make -f CMakeFiles/cmTC_a762c.dir/build.make CMakeFiles/cmTC_a762c.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_a762c.dir/src.cxx.o
/usr/bin/c++    -DSTRERROR_R_CHAR_P   -o CMakeFiles/cmTC_a762c.dir/src.cxx.o -c /home/dorinda/ceph/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_a762c
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_a762c.dir/link.txt --verbose=1
/usr/bin/c++   -DSTRERROR_R_CHAR_P    CMakeFiles/cmTC_a762c.dir/src.cxx.o  -o cmTC_a762c 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'

Source file was:

  #include <string.h>
  int main() { char x = *strerror_r(0, &x, sizeof(x)); return 0; }
  
Performing C SOURCE FILE Test HAVE_STAT_ST_MTIM_TV_NSEC succeeded with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_4a80f/fast"
/usr/bin/make -f CMakeFiles/cmTC_4a80f.dir/build.make CMakeFiles/cmTC_4a80f.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_4a80f.dir/src.c.o
/usr/bin/cc   -DHAVE_STAT_ST_MTIM_TV_NSEC   -o CMakeFiles/cmTC_4a80f.dir/src.c.o   -c /home/dorinda/ceph/CMakeFiles/CMakeTmp/src.c
Linking C executable cmTC_4a80f
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_4a80f.dir/link.txt --verbose=1
/usr/bin/cc  -DHAVE_STAT_ST_MTIM_TV_NSEC    CMakeFiles/cmTC_4a80f.dir/src.c.o  -o cmTC_4a80f 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'

Source file was:

#include <sys/stat.h>

int main()
{
   (void)sizeof(((struct stat *)0)->st_mtim.tv_nsec);
   return 0;
}

Performing C++ SOURCE FILE Test HAVE_UNALIGNED_ACCESS succeeded with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_2cef9/fast"
/usr/bin/make -f CMakeFiles/cmTC_2cef9.dir/build.make CMakeFiles/cmTC_2cef9.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_2cef9.dir/src.cxx.o
/usr/bin/c++    -DHAVE_UNALIGNED_ACCESS  -std=c++17   -o CMakeFiles/cmTC_2cef9.dir/src.cxx.o -c /home/dorinda/ceph/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_2cef9
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_2cef9.dir/link.txt --verbose=1
/usr/bin/c++   -DHAVE_UNALIGNED_ACCESS  -std=c++17    CMakeFiles/cmTC_2cef9.dir/src.cxx.o  -o cmTC_2cef9 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'

Return value: 1
Source file was:

#include <cstdint>
#include <iterator>

#ifdef _WIN32
#include <winsock2.h>
#else
#include <arpa/inet.h>
#endif

uint32_t load(char* p, size_t offset)
{
  return *reinterpret_cast<uint32_t*>(p + offset);
}

bool good(uint32_t lhs, uint32_t big_endian)
{
  return lhs == ntohl(big_endian);
}

int main(int argc, char **argv)
{
  char a1[] = "ABCDEFG";
  uint32_t a2[] = {0x41424344,
                   0x42434445,
                   0x43444546,
                   0x44454647};
  for (size_t i = 0; i < std::size(a2); i++) {
    if (!good(load(a1, i), a2[i])) {
      return 1;
    }
  }
}
Performing C++ SOURCE FILE Test HAVE_CXX11_ATOMIC succeeded with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_42dc1/fast"
/usr/bin/make -f CMakeFiles/cmTC_42dc1.dir/build.make CMakeFiles/cmTC_42dc1.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_42dc1.dir/src.cxx.o
/usr/bin/c++    -DHAVE_CXX11_ATOMIC  -std=c++11 -fPIE   -o CMakeFiles/cmTC_42dc1.dir/src.cxx.o -c /home/dorinda/ceph/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_42dc1
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_42dc1.dir/link.txt --verbose=1
/usr/bin/c++   -DHAVE_CXX11_ATOMIC  -std=c++11    CMakeFiles/cmTC_42dc1.dir/src.cxx.o  -o cmTC_42dc1 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'

Source file was:

#include <atomic>
#include <cstdint>

#if __s390x__
// Boost needs 16-byte atomics for tagged pointers.
// These are implemented via inline instructions on the platform
// if 16-byte alignment can be proven, and are delegated to libatomic
// library routines otherwise.  Whether or not alignment is provably
// OK for a std::atomic unfortunately depends on compiler version and
// optimization levels, and also on the details of the expression.
// We specifically test access via an otherwise unknown pointer here
// to ensure we get the most complex case.  If this access can be
// done without libatomic, then all accesses can be done.
bool atomic16(std::atomic<unsigned __int128> *ptr)
{
  return *ptr != 0;
}
#endif

int main() {
  std::atomic<uint8_t> w1;
  std::atomic<uint16_t> w2;
  std::atomic<uint32_t> w4;
  std::atomic<uint64_t> w8;
  return w1 + w2 + w4 + w8;
}

Determining if the backtrace exist passed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_f0406/fast"
/usr/bin/make -f CMakeFiles/cmTC_f0406.dir/build.make CMakeFiles/cmTC_f0406.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_f0406.dir/CheckSymbolExists.c.o
/usr/bin/cc   -fPIE   -o CMakeFiles/cmTC_f0406.dir/CheckSymbolExists.c.o   -c /home/dorinda/ceph/CMakeFiles/CMakeTmp/CheckSymbolExists.c
Linking C executable cmTC_f0406
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_f0406.dir/link.txt --verbose=1
/usr/bin/cc      CMakeFiles/cmTC_f0406.dir/CheckSymbolExists.c.o  -o cmTC_f0406 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'

File /home/dorinda/ceph/CMakeFiles/CMakeTmp/CheckSymbolExists.c:
/* */
#include <execinfo.h>

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

Determining if the curl_multi_wait exist passed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_260e8/fast"
/usr/bin/make -f CMakeFiles/cmTC_260e8.dir/build.make CMakeFiles/cmTC_260e8.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_260e8.dir/CheckSymbolExists.c.o
/usr/bin/cc  -I/usr/include/x86_64-linux-gnu  -fPIE   -o CMakeFiles/cmTC_260e8.dir/CheckSymbolExists.c.o   -c /home/dorinda/ceph/CMakeFiles/CMakeTmp/CheckSymbolExists.c
Linking C executable cmTC_260e8
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_260e8.dir/link.txt --verbose=1
/usr/bin/cc      CMakeFiles/cmTC_260e8.dir/CheckSymbolExists.c.o  -o cmTC_260e8 /usr/lib/x86_64-linux-gnu/libcurl.so 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'

File /home/dorinda/ceph/CMakeFiles/CMakeTmp/CheckSymbolExists.c:
/* */
#include <curl/curl.h>

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

The system is: Linux - 5.4.0-52-generic - x86_64
Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded.
Compiler: /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 GNU, found in "/home/dorinda/ceph/CMakeFiles/3.10.2/CompilerIdCXX/a.out"

Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded.
Compiler: /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 GNU, found in "/home/dorinda/ceph/CMakeFiles/3.10.2/CompilerIdC/a.out"

Determining if the CXX compiler works passed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_987f2/fast"
/usr/bin/make -f CMakeFiles/cmTC_987f2.dir/build.make CMakeFiles/cmTC_987f2.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_987f2.dir/testCXXCompiler.cxx.o
/usr/bin/c++     -o CMakeFiles/cmTC_987f2.dir/testCXXCompiler.cxx.o -c /home/dorinda/ceph/CMakeFiles/CMakeTmp/testCXXCompiler.cxx
Linking CXX executable cmTC_987f2
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_987f2.dir/link.txt --verbose=1
/usr/bin/c++       CMakeFiles/cmTC_987f2.dir/testCXXCompiler.cxx.o  -o cmTC_987f2 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'


Detecting CXX compiler ABI info compiled with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_641c0/fast"
/usr/bin/make -f CMakeFiles/cmTC_641c0.dir/build.make CMakeFiles/cmTC_641c0.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_641c0.dir/CMakeCXXCompilerABI.cpp.o
/usr/bin/c++     -o CMakeFiles/cmTC_641c0.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.10/Modules/CMakeCXXCompilerABI.cpp
Linking CXX executable cmTC_641c0
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_641c0.dir/link.txt --verbose=1
/usr/bin/c++      -v CMakeFiles/cmTC_641c0.dir/CMakeCXXCompilerABI.cpp.o  -o cmTC_641c0 
Using built-in specs.
COLLECT_GCC=/usr/bin/c++
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper
OFFLOAD_TARGET_NAMES=nvptx-none
OFFLOAD_TARGET_DEFAULT=1
Target: x86_64-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Ubuntu 7.5.0-3ubuntu1~18.04' --with-bugurl=file:///usr/share/doc/gcc-7/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-7 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu
Thread model: posix
gcc version 7.5.0 (Ubuntu 7.5.0-3ubuntu1~18.04) 
COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/
LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../:/lib/:/usr/lib/
COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_641c0' '-shared-libgcc' '-mtune=generic' '-march=x86-64'
 /usr/lib/gcc/x86_64-linux-gnu/7/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/7/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper -plugin-opt=-fresolution=/tmp/cc9o5Z3m.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_641c0 /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/7/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/7 -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/7/../../.. CMakeFiles/cmTC_641c0.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/7/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crtn.o
COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_641c0' '-shared-libgcc' '-mtune=generic' '-march=x86-64'
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'


Parsed CXX implicit link information from above output:
  link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)]
  ignore line: [Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp]
  ignore line: []
  ignore line: [Run Build Command:"/usr/bin/make" "cmTC_641c0/fast"]
  ignore line: [/usr/bin/make -f CMakeFiles/cmTC_641c0.dir/build.make CMakeFiles/cmTC_641c0.dir/build]
  ignore line: [make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp']
  ignore line: [Building CXX object CMakeFiles/cmTC_641c0.dir/CMakeCXXCompilerABI.cpp.o]
  ignore line: [/usr/bin/c++     -o CMakeFiles/cmTC_641c0.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.10/Modules/CMakeCXXCompilerABI.cpp]
  ignore line: [Linking CXX executable cmTC_641c0]
  ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_641c0.dir/link.txt --verbose=1]
  ignore line: [/usr/bin/c++      -v CMakeFiles/cmTC_641c0.dir/CMakeCXXCompilerABI.cpp.o  -o cmTC_641c0 ]
  ignore line: [Using built-in specs.]
  ignore line: [COLLECT_GCC=/usr/bin/c++]
  ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper]
  ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none]
  ignore line: [OFFLOAD_TARGET_DEFAULT=1]
  ignore line: [Target: x86_64-linux-gnu]
  ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 7.5.0-3ubuntu1~18.04' --with-bugurl=file:///usr/share/doc/gcc-7/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-7 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu]
  ignore line: [Thread model: posix]
  ignore line: [gcc version 7.5.0 (Ubuntu 7.5.0-3ubuntu1~18.04) ]
  ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/]
  ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../:/lib/:/usr/lib/]
  ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_641c0' '-shared-libgcc' '-mtune=generic' '-march=x86-64']
  link line: [ /usr/lib/gcc/x86_64-linux-gnu/7/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/7/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper -plugin-opt=-fresolution=/tmp/cc9o5Z3m.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_641c0 /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/7/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/7 -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/7/../../.. CMakeFiles/cmTC_641c0.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/7/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crtn.o]
    arg [/usr/lib/gcc/x86_64-linux-gnu/7/collect2] ==> ignore
    arg [-plugin] ==> ignore
    arg [/usr/lib/gcc/x86_64-linux-gnu/7/liblto_plugin.so] ==> ignore
    arg [-plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper] ==> ignore
    arg [-plugin-opt=-fresolution=/tmp/cc9o5Z3m.res] ==> ignore
    arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore
    arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
    arg [-plugin-opt=-pass-through=-lc] ==> ignore
    arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore
    arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
    arg [--build-id] ==> ignore
    arg [--eh-frame-hdr] ==> ignore
    arg [-m] ==> ignore
    arg [elf_x86_64] ==> ignore
    arg [--hash-style=gnu] ==> ignore
    arg [--as-needed] ==> ignore
    arg [-dynamic-linker] ==> ignore
    arg [/lib64/ld-linux-x86-64.so.2] ==> ignore
    arg [-pie] ==> ignore
    arg [-znow] ==> ignore
    arg [-zrelro] ==> ignore
    arg [-o] ==> ignore
    arg [cmTC_641c0] ==> ignore
    arg [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/Scrt1.o] ==> ignore
    arg [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crti.o] ==> ignore
    arg [/usr/lib/gcc/x86_64-linux-gnu/7/crtbeginS.o] ==> ignore
    arg [-L/usr/lib/gcc/x86_64-linux-gnu/7] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/7]
    arg [-L/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu]
    arg [-L/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib]
    arg [-L/lib/x86_64-linux-gnu] ==> dir [/lib/x86_64-linux-gnu]
    arg [-L/lib/../lib] ==> dir [/lib/../lib]
    arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu]
    arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib]
    arg [-L/usr/lib/gcc/x86_64-linux-gnu/7/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../..]
    arg [CMakeFiles/cmTC_641c0.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/lib/gcc/x86_64-linux-gnu/7/crtendS.o] ==> ignore
    arg [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crtn.o] ==> ignore
  collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/7] ==> [/usr/lib/gcc/x86_64-linux-gnu/7]
  collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu]
  collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib] ==> [/usr/lib]
  collapse library dir [/lib/x86_64-linux-gnu] ==> [/lib/x86_64-linux-gnu]
  collapse library dir [/lib/../lib] ==> [/lib]
  collapse library dir [/usr/lib/x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu]
  collapse library dir [/usr/lib/../lib] ==> [/usr/lib]
  collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../..] ==> [/usr/lib]
  implicit libs: [stdc++;m;gcc_s;gcc;c;gcc_s;gcc]
  implicit dirs: [/usr/lib/gcc/x86_64-linux-gnu/7;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib]
  implicit fwks: []




Detecting CXX [-std=c++1z] compiler features compiled with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_4677d/fast"
/usr/bin/make -f CMakeFiles/cmTC_4677d.dir/build.make CMakeFiles/cmTC_4677d.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_4677d.dir/feature_tests.cxx.o
/usr/bin/c++    -std=c++1z -o CMakeFiles/cmTC_4677d.dir/feature_tests.cxx.o -c /home/dorinda/ceph/CMakeFiles/feature_tests.cxx
Linking CXX executable cmTC_4677d
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_4677d.dir/link.txt --verbose=1
/usr/bin/c++       CMakeFiles/cmTC_4677d.dir/feature_tests.cxx.o  -o cmTC_4677d 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'


    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: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_960f8/fast"
/usr/bin/make -f CMakeFiles/cmTC_960f8.dir/build.make CMakeFiles/cmTC_960f8.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_960f8.dir/feature_tests.cxx.o
/usr/bin/c++    -std=c++14 -o CMakeFiles/cmTC_960f8.dir/feature_tests.cxx.o -c /home/dorinda/ceph/CMakeFiles/feature_tests.cxx
Linking CXX executable cmTC_960f8
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_960f8.dir/link.txt --verbose=1
/usr/bin/c++       CMakeFiles/cmTC_960f8.dir/feature_tests.cxx.o  -o cmTC_960f8 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'


    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: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_de731/fast"
/usr/bin/make -f CMakeFiles/cmTC_de731.dir/build.make CMakeFiles/cmTC_de731.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_de731.dir/feature_tests.cxx.o
/usr/bin/c++    -std=c++11 -o CMakeFiles/cmTC_de731.dir/feature_tests.cxx.o -c /home/dorinda/ceph/CMakeFiles/feature_tests.cxx
Linking CXX executable cmTC_de731
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_de731.dir/link.txt --verbose=1
/usr/bin/c++       CMakeFiles/cmTC_de731.dir/feature_tests.cxx.o  -o cmTC_de731 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'


    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: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_43ba5/fast"
/usr/bin/make -f CMakeFiles/cmTC_43ba5.dir/build.make CMakeFiles/cmTC_43ba5.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_43ba5.dir/feature_tests.cxx.o
/usr/bin/c++    -std=c++98 -o CMakeFiles/cmTC_43ba5.dir/feature_tests.cxx.o -c /home/dorinda/ceph/CMakeFiles/feature_tests.cxx
Linking CXX executable cmTC_43ba5
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_43ba5.dir/link.txt --verbose=1
/usr/bin/c++       CMakeFiles/cmTC_43ba5.dir/feature_tests.cxx.o  -o cmTC_43ba5 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'


    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 the C compiler works passed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_324fd/fast"
/usr/bin/make -f CMakeFiles/cmTC_324fd.dir/build.make CMakeFiles/cmTC_324fd.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_324fd.dir/testCCompiler.c.o
/usr/bin/cc    -o CMakeFiles/cmTC_324fd.dir/testCCompiler.c.o   -c /home/dorinda/ceph/CMakeFiles/CMakeTmp/testCCompiler.c
Linking C executable cmTC_324fd
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_324fd.dir/link.txt --verbose=1
/usr/bin/cc      CMakeFiles/cmTC_324fd.dir/testCCompiler.c.o  -o cmTC_324fd 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'


Detecting C compiler ABI info compiled with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_ea9c9/fast"
/usr/bin/make -f CMakeFiles/cmTC_ea9c9.dir/build.make CMakeFiles/cmTC_ea9c9.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_ea9c9.dir/CMakeCCompilerABI.c.o
/usr/bin/cc    -o CMakeFiles/cmTC_ea9c9.dir/CMakeCCompilerABI.c.o   -c /usr/share/cmake-3.10/Modules/CMakeCCompilerABI.c
Linking C executable cmTC_ea9c9
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_ea9c9.dir/link.txt --verbose=1
/usr/bin/cc     -v CMakeFiles/cmTC_ea9c9.dir/CMakeCCompilerABI.c.o  -o cmTC_ea9c9 
Using built-in specs.
COLLECT_GCC=/usr/bin/cc
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/9/lto-wrapper
OFFLOAD_TARGET_NAMES=nvptx-none:hsa
OFFLOAD_TARGET_DEFAULT=1
Target: x86_64-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Ubuntu 9.3.0-11ubuntu0~18.04.1' --with-bugurl=file:///usr/share/doc/gcc-9/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++,gm2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-9 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none,hsa --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu
Thread model: posix
gcc version 9.3.0 (Ubuntu 9.3.0-11ubuntu0~18.04.1) 
COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/
LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../:/lib/:/usr/lib/
COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_ea9c9' '-mtune=generic' '-march=x86-64'
 /usr/lib/gcc/x86_64-linux-gnu/9/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/9/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/9/lto-wrapper -plugin-opt=-fresolution=/tmp/ccRanzoj.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_ea9c9 /usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/9/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/9 -L/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/9/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/9/../../.. CMakeFiles/cmTC_ea9c9.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-linux-gnu/9/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/crtn.o
COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_ea9c9' '-mtune=generic' '-march=x86-64'
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'


Parsed C implicit link information from above output:
  link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)]
  ignore line: [Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp]
  ignore line: []
  ignore line: [Run Build Command:"/usr/bin/make" "cmTC_ea9c9/fast"]
  ignore line: [/usr/bin/make -f CMakeFiles/cmTC_ea9c9.dir/build.make CMakeFiles/cmTC_ea9c9.dir/build]
  ignore line: [make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp']
  ignore line: [Building C object CMakeFiles/cmTC_ea9c9.dir/CMakeCCompilerABI.c.o]
  ignore line: [/usr/bin/cc    -o CMakeFiles/cmTC_ea9c9.dir/CMakeCCompilerABI.c.o   -c /usr/share/cmake-3.10/Modules/CMakeCCompilerABI.c]
  ignore line: [Linking C executable cmTC_ea9c9]
  ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_ea9c9.dir/link.txt --verbose=1]
  ignore line: [/usr/bin/cc     -v CMakeFiles/cmTC_ea9c9.dir/CMakeCCompilerABI.c.o  -o cmTC_ea9c9 ]
  ignore line: [Using built-in specs.]
  ignore line: [COLLECT_GCC=/usr/bin/cc]
  ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/9/lto-wrapper]
  ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none:hsa]
  ignore line: [OFFLOAD_TARGET_DEFAULT=1]
  ignore line: [Target: x86_64-linux-gnu]
  ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 9.3.0-11ubuntu0~18.04.1' --with-bugurl=file:///usr/share/doc/gcc-9/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++,gm2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-9 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none,hsa --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu]
  ignore line: [Thread model: posix]
  ignore line: [gcc version 9.3.0 (Ubuntu 9.3.0-11ubuntu0~18.04.1) ]
  ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/]
  ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../:/lib/:/usr/lib/]
  ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_ea9c9' '-mtune=generic' '-march=x86-64']
  link line: [ /usr/lib/gcc/x86_64-linux-gnu/9/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/9/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/9/lto-wrapper -plugin-opt=-fresolution=/tmp/ccRanzoj.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_ea9c9 /usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/9/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/9 -L/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/9/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/9/../../.. CMakeFiles/cmTC_ea9c9.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-linux-gnu/9/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/crtn.o]
    arg [/usr/lib/gcc/x86_64-linux-gnu/9/collect2] ==> ignore
    arg [-plugin] ==> ignore
    arg [/usr/lib/gcc/x86_64-linux-gnu/9/liblto_plugin.so] ==> ignore
    arg [-plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/9/lto-wrapper] ==> ignore
    arg [-plugin-opt=-fresolution=/tmp/ccRanzoj.res] ==> ignore
    arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
    arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore
    arg [-plugin-opt=-pass-through=-lc] ==> ignore
    arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
    arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore
    arg [--build-id] ==> ignore
    arg [--eh-frame-hdr] ==> ignore
    arg [-m] ==> ignore
    arg [elf_x86_64] ==> ignore
    arg [--hash-style=gnu] ==> ignore
    arg [--as-needed] ==> ignore
    arg [-dynamic-linker] ==> ignore
    arg [/lib64/ld-linux-x86-64.so.2] ==> ignore
    arg [-pie] ==> ignore
    arg [-znow] ==> ignore
    arg [-zrelro] ==> ignore
    arg [-o] ==> ignore
    arg [cmTC_ea9c9] ==> ignore
    arg [/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/Scrt1.o] ==> ignore
    arg [/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/crti.o] ==> ignore
    arg [/usr/lib/gcc/x86_64-linux-gnu/9/crtbeginS.o] ==> ignore
    arg [-L/usr/lib/gcc/x86_64-linux-gnu/9] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/9]
    arg [-L/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu]
    arg [-L/usr/lib/gcc/x86_64-linux-gnu/9/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/9/../../../../lib]
    arg [-L/lib/x86_64-linux-gnu] ==> dir [/lib/x86_64-linux-gnu]
    arg [-L/lib/../lib] ==> dir [/lib/../lib]
    arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu]
    arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib]
    arg [-L/usr/lib/gcc/x86_64-linux-gnu/9/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/9/../../..]
    arg [CMakeFiles/cmTC_ea9c9.dir/CMakeCCompilerABI.c.o] ==> ignore
    arg [-lgcc] ==> lib [gcc]
    arg [--push-state] ==> ignore
    arg [--as-needed] ==> ignore
    arg [-lgcc_s] ==> lib [gcc_s]
    arg [--pop-state] ==> ignore
    arg [-lc] ==> lib [c]
    arg [-lgcc] ==> lib [gcc]
    arg [--push-state] ==> ignore
    arg [--as-needed] ==> ignore
    arg [-lgcc_s] ==> lib [gcc_s]
    arg [--pop-state] ==> ignore
    arg [/usr/lib/gcc/x86_64-linux-gnu/9/crtendS.o] ==> ignore
    arg [/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/crtn.o] ==> ignore
  collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/9] ==> [/usr/lib/gcc/x86_64-linux-gnu/9]
  collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu]
  collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/9/../../../../lib] ==> [/usr/lib]
  collapse library dir [/lib/x86_64-linux-gnu] ==> [/lib/x86_64-linux-gnu]
  collapse library dir [/lib/../lib] ==> [/lib]
  collapse library dir [/usr/lib/x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu]
  collapse library dir [/usr/lib/../lib] ==> [/usr/lib]
  collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/9/../../..] ==> [/usr/lib]
  implicit libs: [gcc;gcc_s;c;gcc;gcc_s]
  implicit dirs: [/usr/lib/gcc/x86_64-linux-gnu/9;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib]
  implicit fwks: []




Detecting C [-std=c11] compiler features compiled with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_0ca25/fast"
/usr/bin/make -f CMakeFiles/cmTC_0ca25.dir/build.make CMakeFiles/cmTC_0ca25.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_0ca25.dir/feature_tests.c.o
/usr/bin/cc   -std=c11 -o CMakeFiles/cmTC_0ca25.dir/feature_tests.c.o   -c /home/dorinda/ceph/CMakeFiles/feature_tests.c
Linking C executable cmTC_0ca25
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_0ca25.dir/link.txt --verbose=1
/usr/bin/cc      CMakeFiles/cmTC_0ca25.dir/feature_tests.c.o  -o cmTC_0ca25 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'


    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: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_6da15/fast"
/usr/bin/make -f CMakeFiles/cmTC_6da15.dir/build.make CMakeFiles/cmTC_6da15.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_6da15.dir/feature_tests.c.o
/usr/bin/cc   -std=c99 -o CMakeFiles/cmTC_6da15.dir/feature_tests.c.o   -c /home/dorinda/ceph/CMakeFiles/feature_tests.c
Linking C executable cmTC_6da15
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_6da15.dir/link.txt --verbose=1
/usr/bin/cc      CMakeFiles/cmTC_6da15.dir/feature_tests.c.o  -o cmTC_6da15 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'


    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: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_e38c5/fast"
/usr/bin/make -f CMakeFiles/cmTC_e38c5.dir/build.make CMakeFiles/cmTC_e38c5.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_e38c5.dir/feature_tests.c.o
/usr/bin/cc   -std=c90 -o CMakeFiles/cmTC_e38c5.dir/feature_tests.c.o   -c /home/dorinda/ceph/CMakeFiles/feature_tests.c
Linking C executable cmTC_e38c5
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_e38c5.dir/link.txt --verbose=1
/usr/bin/cc      CMakeFiles/cmTC_e38c5.dir/feature_tests.c.o  -o cmTC_e38c5 
make[1]: Leaving directory '/home/dorinda/ceph/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
Determining if the include file pthread.h exists passed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_e6be0/fast"
/usr/bin/make -f CMakeFiles/cmTC_e6be0.dir/build.make CMakeFiles/cmTC_e6be0.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_e6be0.dir/CheckIncludeFile.c.o
/usr/bin/cc    -o CMakeFiles/cmTC_e6be0.dir/CheckIncludeFile.c.o   -c /home/dorinda/ceph/CMakeFiles/CMakeTmp/CheckIncludeFile.c
Linking C executable cmTC_e6be0
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_e6be0.dir/link.txt --verbose=1
/usr/bin/cc      CMakeFiles/cmTC_e6be0.dir/CheckIncludeFile.c.o  -o cmTC_e6be0 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'


Determining if the function pthread_create exists in the pthread passed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_b1347/fast"
/usr/bin/make -f CMakeFiles/cmTC_b1347.dir/build.make CMakeFiles/cmTC_b1347.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_b1347.dir/CheckFunctionExists.c.o
/usr/bin/cc   -DCHECK_FUNCTION_EXISTS=pthread_create   -o CMakeFiles/cmTC_b1347.dir/CheckFunctionExists.c.o   -c /usr/share/cmake-3.10/Modules/CheckFunctionExists.c
Linking C executable cmTC_b1347
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_b1347.dir/link.txt --verbose=1
/usr/bin/cc  -DCHECK_FUNCTION_EXISTS=pthread_create    CMakeFiles/cmTC_b1347.dir/CheckFunctionExists.c.o  -o cmTC_b1347 -lpthread 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'


Determining if the function fallocate exists passed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_82c8d/fast"
/usr/bin/make -f CMakeFiles/cmTC_82c8d.dir/build.make CMakeFiles/cmTC_82c8d.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_82c8d.dir/CheckFunctionExists.c.o
/usr/bin/cc   -DCHECK_FUNCTION_EXISTS=fallocate   -o CMakeFiles/cmTC_82c8d.dir/CheckFunctionExists.c.o   -c /usr/share/cmake-3.10/Modules/CheckFunctionExists.c
Linking C executable cmTC_82c8d
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_82c8d.dir/link.txt --verbose=1
/usr/bin/cc  -DCHECK_FUNCTION_EXISTS=fallocate    CMakeFiles/cmTC_82c8d.dir/CheckFunctionExists.c.o  -o cmTC_82c8d 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'


Determining if the function posix_fadvise exists passed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_d1491/fast"
/usr/bin/make -f CMakeFiles/cmTC_d1491.dir/build.make CMakeFiles/cmTC_d1491.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_d1491.dir/CheckFunctionExists.c.o
/usr/bin/cc   -DCHECK_FUNCTION_EXISTS=posix_fadvise   -o CMakeFiles/cmTC_d1491.dir/CheckFunctionExists.c.o   -c /usr/share/cmake-3.10/Modules/CheckFunctionExists.c
Linking C executable cmTC_d1491
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_d1491.dir/link.txt --verbose=1
/usr/bin/cc  -DCHECK_FUNCTION_EXISTS=posix_fadvise    CMakeFiles/cmTC_d1491.dir/CheckFunctionExists.c.o  -o cmTC_d1491 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'


Determining if the function posix_fallocate exists passed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_29f37/fast"
/usr/bin/make -f CMakeFiles/cmTC_29f37.dir/build.make CMakeFiles/cmTC_29f37.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_29f37.dir/CheckFunctionExists.c.o
/usr/bin/cc   -DCHECK_FUNCTION_EXISTS=posix_fallocate   -o CMakeFiles/cmTC_29f37.dir/CheckFunctionExists.c.o   -c /usr/share/cmake-3.10/Modules/CheckFunctionExists.c
Linking C executable cmTC_29f37
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_29f37.dir/link.txt --verbose=1
/usr/bin/cc  -DCHECK_FUNCTION_EXISTS=posix_fallocate    CMakeFiles/cmTC_29f37.dir/CheckFunctionExists.c.o  -o cmTC_29f37 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'


Determining if the function syncfs exists passed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_2b048/fast"
/usr/bin/make -f CMakeFiles/cmTC_2b048.dir/build.make CMakeFiles/cmTC_2b048.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_2b048.dir/CheckFunctionExists.c.o
/usr/bin/cc   -DCHECK_FUNCTION_EXISTS=syncfs   -o CMakeFiles/cmTC_2b048.dir/CheckFunctionExists.c.o   -c /usr/share/cmake-3.10/Modules/CheckFunctionExists.c
Linking C executable cmTC_2b048
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_2b048.dir/link.txt --verbose=1
/usr/bin/cc  -DCHECK_FUNCTION_EXISTS=syncfs    CMakeFiles/cmTC_2b048.dir/CheckFunctionExists.c.o  -o cmTC_2b048 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'


Determining if the function sync_file_range exists passed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_e0027/fast"
/usr/bin/make -f CMakeFiles/cmTC_e0027.dir/build.make CMakeFiles/cmTC_e0027.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_e0027.dir/CheckFunctionExists.c.o
/usr/bin/cc   -DCHECK_FUNCTION_EXISTS=sync_file_range   -o CMakeFiles/cmTC_e0027.dir/CheckFunctionExists.c.o   -c /usr/share/cmake-3.10/Modules/CheckFunctionExists.c
Linking C executable cmTC_e0027
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_e0027.dir/link.txt --verbose=1
/usr/bin/cc  -DCHECK_FUNCTION_EXISTS=sync_file_range    CMakeFiles/cmTC_e0027.dir/CheckFunctionExists.c.o  -o cmTC_e0027 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'


Determining if the function pwritev exists passed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_af034/fast"
/usr/bin/make -f CMakeFiles/cmTC_af034.dir/build.make CMakeFiles/cmTC_af034.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_af034.dir/CheckFunctionExists.c.o
/usr/bin/cc   -DCHECK_FUNCTION_EXISTS=pwritev   -o CMakeFiles/cmTC_af034.dir/CheckFunctionExists.c.o   -c /usr/share/cmake-3.10/Modules/CheckFunctionExists.c
Linking C executable cmTC_af034
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_af034.dir/link.txt --verbose=1
/usr/bin/cc  -DCHECK_FUNCTION_EXISTS=pwritev    CMakeFiles/cmTC_af034.dir/CheckFunctionExists.c.o  -o cmTC_af034 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'


Determining if the function splice exists passed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_d9682/fast"
/usr/bin/make -f CMakeFiles/cmTC_d9682.dir/build.make CMakeFiles/cmTC_d9682.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_d9682.dir/CheckFunctionExists.c.o
/usr/bin/cc   -DCHECK_FUNCTION_EXISTS=splice   -o CMakeFiles/cmTC_d9682.dir/CheckFunctionExists.c.o   -c /usr/share/cmake-3.10/Modules/CheckFunctionExists.c
Linking C executable cmTC_d9682
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_d9682.dir/link.txt --verbose=1
/usr/bin/cc  -DCHECK_FUNCTION_EXISTS=splice    CMakeFiles/cmTC_d9682.dir/CheckFunctionExists.c.o  -o cmTC_d9682 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'


Determining if the function getgrouplist exists passed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_76148/fast"
/usr/bin/make -f CMakeFiles/cmTC_76148.dir/build.make CMakeFiles/cmTC_76148.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_76148.dir/CheckFunctionExists.c.o
/usr/bin/cc   -DCHECK_FUNCTION_EXISTS=getgrouplist   -o CMakeFiles/cmTC_76148.dir/CheckFunctionExists.c.o   -c /usr/share/cmake-3.10/Modules/CheckFunctionExists.c
Linking C executable cmTC_76148
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_76148.dir/link.txt --verbose=1
/usr/bin/cc  -DCHECK_FUNCTION_EXISTS=getgrouplist    CMakeFiles/cmTC_76148.dir/CheckFunctionExists.c.o  -o cmTC_76148 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'


Determining if the function fdatasync exists passed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_fe7a9/fast"
/usr/bin/make -f CMakeFiles/cmTC_fe7a9.dir/build.make CMakeFiles/cmTC_fe7a9.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_fe7a9.dir/CheckFunctionExists.c.o
/usr/bin/cc   -DCHECK_FUNCTION_EXISTS=fdatasync   -o CMakeFiles/cmTC_fe7a9.dir/CheckFunctionExists.c.o   -c /usr/share/cmake-3.10/Modules/CheckFunctionExists.c
Linking C executable cmTC_fe7a9
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_fe7a9.dir/link.txt --verbose=1
/usr/bin/cc  -DCHECK_FUNCTION_EXISTS=fdatasync    CMakeFiles/cmTC_fe7a9.dir/CheckFunctionExists.c.o  -o cmTC_fe7a9 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'


Determining if the function strerror_r exists passed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_7b49f/fast"
/usr/bin/make -f CMakeFiles/cmTC_7b49f.dir/build.make CMakeFiles/cmTC_7b49f.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_7b49f.dir/CheckFunctionExists.c.o
/usr/bin/cc   -DCHECK_FUNCTION_EXISTS=strerror_r   -o CMakeFiles/cmTC_7b49f.dir/CheckFunctionExists.c.o   -c /usr/share/cmake-3.10/Modules/CheckFunctionExists.c
Linking C executable cmTC_7b49f
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_7b49f.dir/link.txt --verbose=1
/usr/bin/cc  -DCHECK_FUNCTION_EXISTS=strerror_r    CMakeFiles/cmTC_7b49f.dir/CheckFunctionExists.c.o  -o cmTC_7b49f 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'


Determining if the function name_to_handle_at exists passed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_d74bf/fast"
/usr/bin/make -f CMakeFiles/cmTC_d74bf.dir/build.make CMakeFiles/cmTC_d74bf.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_d74bf.dir/CheckFunctionExists.c.o
/usr/bin/cc   -DCHECK_FUNCTION_EXISTS=name_to_handle_at   -o CMakeFiles/cmTC_d74bf.dir/CheckFunctionExists.c.o   -c /usr/share/cmake-3.10/Modules/CheckFunctionExists.c
Linking C executable cmTC_d74bf
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_d74bf.dir/link.txt --verbose=1
/usr/bin/cc  -DCHECK_FUNCTION_EXISTS=name_to_handle_at    CMakeFiles/cmTC_d74bf.dir/CheckFunctionExists.c.o  -o cmTC_d74bf 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'


Determining if the function pipe2 exists passed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_21684/fast"
/usr/bin/make -f CMakeFiles/cmTC_21684.dir/build.make CMakeFiles/cmTC_21684.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_21684.dir/CheckFunctionExists.c.o
/usr/bin/cc   -DCHECK_FUNCTION_EXISTS=pipe2   -o CMakeFiles/cmTC_21684.dir/CheckFunctionExists.c.o   -c /usr/share/cmake-3.10/Modules/CheckFunctionExists.c
Linking C executable cmTC_21684
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_21684.dir/link.txt --verbose=1
/usr/bin/cc  -DCHECK_FUNCTION_EXISTS=pipe2    CMakeFiles/cmTC_21684.dir/CheckFunctionExists.c.o  -o cmTC_21684 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'


Determining if the function accept4 exists passed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_0f30e/fast"
/usr/bin/make -f CMakeFiles/cmTC_0f30e.dir/build.make CMakeFiles/cmTC_0f30e.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_0f30e.dir/CheckFunctionExists.c.o
/usr/bin/cc   -DCHECK_FUNCTION_EXISTS=accept4   -o CMakeFiles/cmTC_0f30e.dir/CheckFunctionExists.c.o   -c /usr/share/cmake-3.10/Modules/CheckFunctionExists.c
Linking C executable cmTC_0f30e
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_0f30e.dir/link.txt --verbose=1
/usr/bin/cc  -DCHECK_FUNCTION_EXISTS=accept4    CMakeFiles/cmTC_0f30e.dir/CheckFunctionExists.c.o  -o cmTC_0f30e 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'


Determining if the function pthread_spin_init exists passed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_0252d/fast"
/usr/bin/make -f CMakeFiles/cmTC_0252d.dir/build.make CMakeFiles/cmTC_0252d.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_0252d.dir/CheckFunctionExists.c.o
/usr/bin/cc   -DCHECK_FUNCTION_EXISTS=pthread_spin_init   -o CMakeFiles/cmTC_0252d.dir/CheckFunctionExists.c.o   -c /usr/share/cmake-3.10/Modules/CheckFunctionExists.c
Linking C executable cmTC_0252d
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_0252d.dir/link.txt --verbose=1
/usr/bin/cc  -DCHECK_FUNCTION_EXISTS=pthread_spin_init    CMakeFiles/cmTC_0252d.dir/CheckFunctionExists.c.o  -o cmTC_0252d -lpthread 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'


Determining if the function pthread_setname_np exists passed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_96364/fast"
/usr/bin/make -f CMakeFiles/cmTC_96364.dir/build.make CMakeFiles/cmTC_96364.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_96364.dir/CheckFunctionExists.c.o
/usr/bin/cc   -DCHECK_FUNCTION_EXISTS=pthread_setname_np   -o CMakeFiles/cmTC_96364.dir/CheckFunctionExists.c.o   -c /usr/share/cmake-3.10/Modules/CheckFunctionExists.c
Linking C executable cmTC_96364
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_96364.dir/link.txt --verbose=1
/usr/bin/cc  -DCHECK_FUNCTION_EXISTS=pthread_setname_np    CMakeFiles/cmTC_96364.dir/CheckFunctionExists.c.o  -o cmTC_96364 -lpthread 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'


Determining if the function pthread_getname_np exists passed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_c7fe3/fast"
/usr/bin/make -f CMakeFiles/cmTC_c7fe3.dir/build.make CMakeFiles/cmTC_c7fe3.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_c7fe3.dir/CheckFunctionExists.c.o
/usr/bin/cc   -DCHECK_FUNCTION_EXISTS=pthread_getname_np   -o CMakeFiles/cmTC_c7fe3.dir/CheckFunctionExists.c.o   -c /usr/share/cmake-3.10/Modules/CheckFunctionExists.c
Linking C executable cmTC_c7fe3
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_c7fe3.dir/link.txt --verbose=1
/usr/bin/cc  -DCHECK_FUNCTION_EXISTS=pthread_getname_np    CMakeFiles/cmTC_c7fe3.dir/CheckFunctionExists.c.o  -o cmTC_c7fe3 -lpthread 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'


Determining if the function pthread_rwlockattr_setkind_np exists passed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_928d7/fast"
/usr/bin/make -f CMakeFiles/cmTC_928d7.dir/build.make CMakeFiles/cmTC_928d7.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_928d7.dir/CheckFunctionExists.c.o
/usr/bin/cc   -DCHECK_FUNCTION_EXISTS=pthread_rwlockattr_setkind_np   -o CMakeFiles/cmTC_928d7.dir/CheckFunctionExists.c.o   -c /usr/share/cmake-3.10/Modules/CheckFunctionExists.c
Linking C executable cmTC_928d7
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_928d7.dir/link.txt --verbose=1
/usr/bin/cc  -DCHECK_FUNCTION_EXISTS=pthread_rwlockattr_setkind_np    CMakeFiles/cmTC_928d7.dir/CheckFunctionExists.c.o  -o cmTC_928d7 -lpthread 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'


Determining if the function eventfd exists passed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_6d9ff/fast"
/usr/bin/make -f CMakeFiles/cmTC_6d9ff.dir/build.make CMakeFiles/cmTC_6d9ff.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_6d9ff.dir/CheckFunctionExists.c.o
/usr/bin/cc   -DCHECK_FUNCTION_EXISTS=eventfd   -o CMakeFiles/cmTC_6d9ff.dir/CheckFunctionExists.c.o   -c /usr/share/cmake-3.10/Modules/CheckFunctionExists.c
Linking C executable cmTC_6d9ff
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_6d9ff.dir/link.txt --verbose=1
/usr/bin/cc  -DCHECK_FUNCTION_EXISTS=eventfd    CMakeFiles/cmTC_6d9ff.dir/CheckFunctionExists.c.o  -o cmTC_6d9ff 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'


Determining if files linux/types.h exist passed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_eca3b/fast"
/usr/bin/make -f CMakeFiles/cmTC_eca3b.dir/build.make CMakeFiles/cmTC_eca3b.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_eca3b.dir/CheckIncludeFiles.c.o
/usr/bin/cc    -o CMakeFiles/cmTC_eca3b.dir/CheckIncludeFiles.c.o   -c /home/dorinda/ceph/CMakeFiles/CMakeTmp/CheckIncludeFiles.c
Linking C executable cmTC_eca3b
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_eca3b.dir/link.txt --verbose=1
/usr/bin/cc      CMakeFiles/cmTC_eca3b.dir/CheckIncludeFiles.c.o  -o cmTC_eca3b 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'


Determining if files linux/version.h exist passed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_4fbc6/fast"
/usr/bin/make -f CMakeFiles/cmTC_4fbc6.dir/build.make CMakeFiles/cmTC_4fbc6.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_4fbc6.dir/CheckIncludeFiles.c.o
/usr/bin/cc    -o CMakeFiles/cmTC_4fbc6.dir/CheckIncludeFiles.c.o   -c /home/dorinda/ceph/CMakeFiles/CMakeTmp/CheckIncludeFiles.c
Linking C executable cmTC_4fbc6
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_4fbc6.dir/link.txt --verbose=1
/usr/bin/cc      CMakeFiles/cmTC_4fbc6.dir/CheckIncludeFiles.c.o  -o cmTC_4fbc6 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'


Determining if files arpa/nameser_compat.h exist passed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_d5cd5/fast"
/usr/bin/make -f CMakeFiles/cmTC_d5cd5.dir/build.make CMakeFiles/cmTC_d5cd5.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_d5cd5.dir/CheckIncludeFiles.c.o
/usr/bin/cc    -o CMakeFiles/cmTC_d5cd5.dir/CheckIncludeFiles.c.o   -c /home/dorinda/ceph/CMakeFiles/CMakeTmp/CheckIncludeFiles.c
Linking C executable cmTC_d5cd5
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_d5cd5.dir/link.txt --verbose=1
/usr/bin/cc      CMakeFiles/cmTC_d5cd5.dir/CheckIncludeFiles.c.o  -o cmTC_d5cd5 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'


Determining if files sys/mount.h exist passed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_c159d/fast"
/usr/bin/make -f CMakeFiles/cmTC_c159d.dir/build.make CMakeFiles/cmTC_c159d.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_c159d.dir/CheckIncludeFiles.c.o
/usr/bin/cc    -o CMakeFiles/cmTC_c159d.dir/CheckIncludeFiles.c.o   -c /home/dorinda/ceph/CMakeFiles/CMakeTmp/CheckIncludeFiles.c
Linking C executable cmTC_c159d
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_c159d.dir/link.txt --verbose=1
/usr/bin/cc      CMakeFiles/cmTC_c159d.dir/CheckIncludeFiles.c.o  -o cmTC_c159d 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'


Determining if files sys/param.h exist passed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_77ca7/fast"
/usr/bin/make -f CMakeFiles/cmTC_77ca7.dir/build.make CMakeFiles/cmTC_77ca7.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_77ca7.dir/CheckIncludeFiles.c.o
/usr/bin/cc    -o CMakeFiles/cmTC_77ca7.dir/CheckIncludeFiles.c.o   -c /home/dorinda/ceph/CMakeFiles/CMakeTmp/CheckIncludeFiles.c
Linking C executable cmTC_77ca7
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_77ca7.dir/link.txt --verbose=1
/usr/bin/cc      CMakeFiles/cmTC_77ca7.dir/CheckIncludeFiles.c.o  -o cmTC_77ca7 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'


Determining if files sys/types.h exist passed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_a8446/fast"
/usr/bin/make -f CMakeFiles/cmTC_a8446.dir/build.make CMakeFiles/cmTC_a8446.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_a8446.dir/CheckIncludeFiles.c.o
/usr/bin/cc    -o CMakeFiles/cmTC_a8446.dir/CheckIncludeFiles.c.o   -c /home/dorinda/ceph/CMakeFiles/CMakeTmp/CheckIncludeFiles.c
Linking C executable cmTC_a8446
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_a8446.dir/link.txt --verbose=1
/usr/bin/cc      CMakeFiles/cmTC_a8446.dir/CheckIncludeFiles.c.o  -o cmTC_a8446 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'


Determining if files sys/vfs.h exist passed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_b1fa1/fast"
/usr/bin/make -f CMakeFiles/cmTC_b1fa1.dir/build.make CMakeFiles/cmTC_b1fa1.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_b1fa1.dir/CheckIncludeFiles.c.o
/usr/bin/cc    -o CMakeFiles/cmTC_b1fa1.dir/CheckIncludeFiles.c.o   -c /home/dorinda/ceph/CMakeFiles/CMakeTmp/CheckIncludeFiles.c
Linking C executable cmTC_b1fa1
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_b1fa1.dir/link.txt --verbose=1
/usr/bin/cc      CMakeFiles/cmTC_b1fa1.dir/CheckIncludeFiles.c.o  -o cmTC_b1fa1 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'


Determining if files sys/prctl.h exist passed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_6be09/fast"
/usr/bin/make -f CMakeFiles/cmTC_6be09.dir/build.make CMakeFiles/cmTC_6be09.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_6be09.dir/CheckIncludeFiles.c.o
/usr/bin/cc    -o CMakeFiles/cmTC_6be09.dir/CheckIncludeFiles.c.o   -c /home/dorinda/ceph/CMakeFiles/CMakeTmp/CheckIncludeFiles.c
Linking C executable cmTC_6be09
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_6be09.dir/link.txt --verbose=1
/usr/bin/cc      CMakeFiles/cmTC_6be09.dir/CheckIncludeFiles.c.o  -o cmTC_6be09 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'


Determining if files execinfo.h exist passed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_bcd8b/fast"
/usr/bin/make -f CMakeFiles/cmTC_bcd8b.dir/build.make CMakeFiles/cmTC_bcd8b.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_bcd8b.dir/CheckIncludeFiles.c.o
/usr/bin/cc    -o CMakeFiles/cmTC_bcd8b.dir/CheckIncludeFiles.c.o   -c /home/dorinda/ceph/CMakeFiles/CMakeTmp/CheckIncludeFiles.c
Linking C executable cmTC_bcd8b
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_bcd8b.dir/link.txt --verbose=1
/usr/bin/cc      CMakeFiles/cmTC_bcd8b.dir/CheckIncludeFiles.c.o  -o cmTC_bcd8b 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'


Determining if files sched.h exist passed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_0c52f/fast"
/usr/bin/make -f CMakeFiles/cmTC_0c52f.dir/build.make CMakeFiles/cmTC_0c52f.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_0c52f.dir/CheckIncludeFiles.c.o
/usr/bin/cc    -o CMakeFiles/cmTC_0c52f.dir/CheckIncludeFiles.c.o   -c /home/dorinda/ceph/CMakeFiles/CMakeTmp/CheckIncludeFiles.c
Linking C executable cmTC_0c52f
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_0c52f.dir/link.txt --verbose=1
/usr/bin/cc      CMakeFiles/cmTC_0c52f.dir/CheckIncludeFiles.c.o  -o cmTC_0c52f 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'


Determining if files valgrind/helgrind.h exist passed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_7dd75/fast"
/usr/bin/make -f CMakeFiles/cmTC_7dd75.dir/build.make CMakeFiles/cmTC_7dd75.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_7dd75.dir/CheckIncludeFiles.c.o
/usr/bin/cc    -o CMakeFiles/cmTC_7dd75.dir/CheckIncludeFiles.c.o   -c /home/dorinda/ceph/CMakeFiles/CMakeTmp/CheckIncludeFiles.c
Linking C executable cmTC_7dd75
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_7dd75.dir/link.txt --verbose=1
/usr/bin/cc      CMakeFiles/cmTC_7dd75.dir/CheckIncludeFiles.c.o  -o cmTC_7dd75 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'


Determining if the include file stdint.h exists passed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_9e656/fast"
/usr/bin/make -f CMakeFiles/cmTC_9e656.dir/build.make CMakeFiles/cmTC_9e656.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_9e656.dir/CheckIncludeFile.c.o
/usr/bin/cc    -o CMakeFiles/cmTC_9e656.dir/CheckIncludeFile.c.o   -c /home/dorinda/ceph/CMakeFiles/CMakeTmp/CheckIncludeFile.c
Linking C executable cmTC_9e656
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_9e656.dir/link.txt --verbose=1
/usr/bin/cc      CMakeFiles/cmTC_9e656.dir/CheckIncludeFile.c.o  -o cmTC_9e656 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'


Determining if the include file stddef.h exists passed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_2828f/fast"
/usr/bin/make -f CMakeFiles/cmTC_2828f.dir/build.make CMakeFiles/cmTC_2828f.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_2828f.dir/CheckIncludeFile.c.o
/usr/bin/cc    -o CMakeFiles/cmTC_2828f.dir/CheckIncludeFile.c.o   -c /home/dorinda/ceph/CMakeFiles/CMakeTmp/CheckIncludeFile.c
Linking C executable cmTC_2828f
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_2828f.dir/link.txt --verbose=1
/usr/bin/cc      CMakeFiles/cmTC_2828f.dir/CheckIncludeFile.c.o  -o cmTC_2828f 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'


Determining size of __u8 passed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_f62da/fast"
/usr/bin/make -f CMakeFiles/cmTC_f62da.dir/build.make CMakeFiles/cmTC_f62da.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_f62da.dir/__U8.c.o
/usr/bin/cc    -o CMakeFiles/cmTC_f62da.dir/__U8.c.o   -c /home/dorinda/ceph/CMakeFiles/CheckTypeSize/__U8.c
Linking C executable cmTC_f62da
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_f62da.dir/link.txt --verbose=1
/usr/bin/cc      CMakeFiles/cmTC_f62da.dir/__U8.c.o  -o cmTC_f62da 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'


Determining size of __u16 passed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_aac19/fast"
/usr/bin/make -f CMakeFiles/cmTC_aac19.dir/build.make CMakeFiles/cmTC_aac19.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_aac19.dir/__U16.c.o
/usr/bin/cc    -o CMakeFiles/cmTC_aac19.dir/__U16.c.o   -c /home/dorinda/ceph/CMakeFiles/CheckTypeSize/__U16.c
Linking C executable cmTC_aac19
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_aac19.dir/link.txt --verbose=1
/usr/bin/cc      CMakeFiles/cmTC_aac19.dir/__U16.c.o  -o cmTC_aac19 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'


Determining size of __u32 passed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_5eb0f/fast"
/usr/bin/make -f CMakeFiles/cmTC_5eb0f.dir/build.make CMakeFiles/cmTC_5eb0f.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_5eb0f.dir/__U32.c.o
/usr/bin/cc    -o CMakeFiles/cmTC_5eb0f.dir/__U32.c.o   -c /home/dorinda/ceph/CMakeFiles/CheckTypeSize/__U32.c
Linking C executable cmTC_5eb0f
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_5eb0f.dir/link.txt --verbose=1
/usr/bin/cc      CMakeFiles/cmTC_5eb0f.dir/__U32.c.o  -o cmTC_5eb0f 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'


Determining size of __u64 passed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_0df99/fast"
/usr/bin/make -f CMakeFiles/cmTC_0df99.dir/build.make CMakeFiles/cmTC_0df99.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_0df99.dir/__U64.c.o
/usr/bin/cc    -o CMakeFiles/cmTC_0df99.dir/__U64.c.o   -c /home/dorinda/ceph/CMakeFiles/CheckTypeSize/__U64.c
Linking C executable cmTC_0df99
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_0df99.dir/link.txt --verbose=1
/usr/bin/cc      CMakeFiles/cmTC_0df99.dir/__U64.c.o  -o cmTC_0df99 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'


Determining size of __s8 passed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_2fdbc/fast"
/usr/bin/make -f CMakeFiles/cmTC_2fdbc.dir/build.make CMakeFiles/cmTC_2fdbc.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_2fdbc.dir/__S8.c.o
/usr/bin/cc    -o CMakeFiles/cmTC_2fdbc.dir/__S8.c.o   -c /home/dorinda/ceph/CMakeFiles/CheckTypeSize/__S8.c
Linking C executable cmTC_2fdbc
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_2fdbc.dir/link.txt --verbose=1
/usr/bin/cc      CMakeFiles/cmTC_2fdbc.dir/__S8.c.o  -o cmTC_2fdbc 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'


Determining size of __s16 passed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_7326f/fast"
/usr/bin/make -f CMakeFiles/cmTC_7326f.dir/build.make CMakeFiles/cmTC_7326f.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_7326f.dir/__S16.c.o
/usr/bin/cc    -o CMakeFiles/cmTC_7326f.dir/__S16.c.o   -c /home/dorinda/ceph/CMakeFiles/CheckTypeSize/__S16.c
Linking C executable cmTC_7326f
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_7326f.dir/link.txt --verbose=1
/usr/bin/cc      CMakeFiles/cmTC_7326f.dir/__S16.c.o  -o cmTC_7326f 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'


Determining size of __s32 passed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_01773/fast"
/usr/bin/make -f CMakeFiles/cmTC_01773.dir/build.make CMakeFiles/cmTC_01773.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_01773.dir/__S32.c.o
/usr/bin/cc    -o CMakeFiles/cmTC_01773.dir/__S32.c.o   -c /home/dorinda/ceph/CMakeFiles/CheckTypeSize/__S32.c
Linking C executable cmTC_01773
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_01773.dir/link.txt --verbose=1
/usr/bin/cc      CMakeFiles/cmTC_01773.dir/__S32.c.o  -o cmTC_01773 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'


Determining size of __s64 passed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_730e1/fast"
/usr/bin/make -f CMakeFiles/cmTC_730e1.dir/build.make CMakeFiles/cmTC_730e1.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_730e1.dir/__S64.c.o
/usr/bin/cc    -o CMakeFiles/cmTC_730e1.dir/__S64.c.o   -c /home/dorinda/ceph/CMakeFiles/CheckTypeSize/__S64.c
Linking C executable cmTC_730e1
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_730e1.dir/link.txt --verbose=1
/usr/bin/cc      CMakeFiles/cmTC_730e1.dir/__S64.c.o  -o cmTC_730e1 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'


Determining if the _POSIX_TIMERS exist passed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_fb2c3/fast"
/usr/bin/make -f CMakeFiles/cmTC_fb2c3.dir/build.make CMakeFiles/cmTC_fb2c3.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_fb2c3.dir/CheckSymbolExists.c.o
/usr/bin/cc    -o CMakeFiles/cmTC_fb2c3.dir/CheckSymbolExists.c.o   -c /home/dorinda/ceph/CMakeFiles/CMakeTmp/CheckSymbolExists.c
Linking C executable cmTC_fb2c3
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_fb2c3.dir/link.txt --verbose=1
/usr/bin/cc      CMakeFiles/cmTC_fb2c3.dir/CheckSymbolExists.c.o  -o cmTC_fb2c3 -lrt 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'

File /home/dorinda/ceph/CMakeFiles/CMakeTmp/CheckSymbolExists.c:
/* */
#include <unistd.h>
#include <time.h>

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

Determining if the res_nquery exist passed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_eaef5/fast"
/usr/bin/make -f CMakeFiles/cmTC_eaef5.dir/build.make CMakeFiles/cmTC_eaef5.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_eaef5.dir/CheckSymbolExists.c.o
/usr/bin/cc    -o CMakeFiles/cmTC_eaef5.dir/CheckSymbolExists.c.o   -c /home/dorinda/ceph/CMakeFiles/CMakeTmp/CheckSymbolExists.c
Linking C executable cmTC_eaef5
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_eaef5.dir/link.txt --verbose=1
/usr/bin/cc      CMakeFiles/cmTC_eaef5.dir/CheckSymbolExists.c.o  -o cmTC_eaef5 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'

File /home/dorinda/ceph/CMakeFiles/CMakeTmp/CheckSymbolExists.c:
/* */
#include <resolv.h>

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

Determining if the F_SETPIPE_SZ exist passed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_516d2/fast"
/usr/bin/make -f CMakeFiles/cmTC_516d2.dir/build.make CMakeFiles/cmTC_516d2.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_516d2.dir/CheckSymbolExists.c.o
/usr/bin/cc    -o CMakeFiles/cmTC_516d2.dir/CheckSymbolExists.c.o   -c /home/dorinda/ceph/CMakeFiles/CMakeTmp/CheckSymbolExists.c
Linking C executable cmTC_516d2
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_516d2.dir/link.txt --verbose=1
/usr/bin/cc      CMakeFiles/cmTC_516d2.dir/CheckSymbolExists.c.o  -o cmTC_516d2 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'

File /home/dorinda/ceph/CMakeFiles/CMakeTmp/CheckSymbolExists.c:
/* */
#include <linux/fcntl.h>

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

Determining if the __func__ exist passed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_d1529/fast"
/usr/bin/make -f CMakeFiles/cmTC_d1529.dir/build.make CMakeFiles/cmTC_d1529.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_d1529.dir/CheckSymbolExists.c.o
/usr/bin/cc    -o CMakeFiles/cmTC_d1529.dir/CheckSymbolExists.c.o   -c /home/dorinda/ceph/CMakeFiles/CMakeTmp/CheckSymbolExists.c
Linking C executable cmTC_d1529
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_d1529.dir/link.txt --verbose=1
/usr/bin/cc      CMakeFiles/cmTC_d1529.dir/CheckSymbolExists.c.o  -o cmTC_d1529 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'

File /home/dorinda/ceph/CMakeFiles/CMakeTmp/CheckSymbolExists.c:
/* */

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

Determining if the __PRETTY_FUNCTION__ exist passed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_38442/fast"
/usr/bin/make -f CMakeFiles/cmTC_38442.dir/build.make CMakeFiles/cmTC_38442.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_38442.dir/CheckSymbolExists.c.o
/usr/bin/cc    -o CMakeFiles/cmTC_38442.dir/CheckSymbolExists.c.o   -c /home/dorinda/ceph/CMakeFiles/CMakeTmp/CheckSymbolExists.c
Linking C executable cmTC_38442
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_38442.dir/link.txt --verbose=1
/usr/bin/cc      CMakeFiles/cmTC_38442.dir/CheckSymbolExists.c.o  -o cmTC_38442 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'

File /home/dorinda/ceph/CMakeFiles/CMakeTmp/CheckSymbolExists.c:
/* */

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

Determining if the getentropy exist passed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_75d2e/fast"
/usr/bin/make -f CMakeFiles/cmTC_75d2e.dir/build.make CMakeFiles/cmTC_75d2e.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_75d2e.dir/CheckSymbolExists.c.o
/usr/bin/cc    -o CMakeFiles/cmTC_75d2e.dir/CheckSymbolExists.c.o   -c /home/dorinda/ceph/CMakeFiles/CMakeTmp/CheckSymbolExists.c
Linking C executable cmTC_75d2e
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_75d2e.dir/link.txt --verbose=1
/usr/bin/cc      CMakeFiles/cmTC_75d2e.dir/CheckSymbolExists.c.o  -o cmTC_75d2e 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'

File /home/dorinda/ceph/CMakeFiles/CMakeTmp/CheckSymbolExists.c:
/* */
#include <unistd.h>

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

Performing C++ SOURCE FILE Test STRERROR_R_CHAR_P succeeded with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_8a85a/fast"
/usr/bin/make -f CMakeFiles/cmTC_8a85a.dir/build.make CMakeFiles/cmTC_8a85a.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_8a85a.dir/src.cxx.o
/usr/bin/c++    -DSTRERROR_R_CHAR_P   -o CMakeFiles/cmTC_8a85a.dir/src.cxx.o -c /home/dorinda/ceph/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_8a85a
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_8a85a.dir/link.txt --verbose=1
/usr/bin/c++   -DSTRERROR_R_CHAR_P    CMakeFiles/cmTC_8a85a.dir/src.cxx.o  -o cmTC_8a85a 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'

Source file was:

  #include <string.h>
  int main() { char x = *strerror_r(0, &x, sizeof(x)); return 0; }
  
Performing C SOURCE FILE Test HAVE_STAT_ST_MTIM_TV_NSEC succeeded with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_7ae44/fast"
/usr/bin/make -f CMakeFiles/cmTC_7ae44.dir/build.make CMakeFiles/cmTC_7ae44.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_7ae44.dir/src.c.o
/usr/bin/cc   -DHAVE_STAT_ST_MTIM_TV_NSEC   -o CMakeFiles/cmTC_7ae44.dir/src.c.o   -c /home/dorinda/ceph/CMakeFiles/CMakeTmp/src.c
Linking C executable cmTC_7ae44
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_7ae44.dir/link.txt --verbose=1
/usr/bin/cc  -DHAVE_STAT_ST_MTIM_TV_NSEC    CMakeFiles/cmTC_7ae44.dir/src.c.o  -o cmTC_7ae44 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'

Source file was:

#include <sys/stat.h>

int main()
{
   (void)sizeof(((struct stat *)0)->st_mtim.tv_nsec);
   return 0;
}

Performing C++ SOURCE FILE Test HAVE_UNALIGNED_ACCESS succeeded with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_0f630/fast"
/usr/bin/make -f CMakeFiles/cmTC_0f630.dir/build.make CMakeFiles/cmTC_0f630.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_0f630.dir/src.cxx.o
/usr/bin/c++    -DHAVE_UNALIGNED_ACCESS  -std=c++17   -o CMakeFiles/cmTC_0f630.dir/src.cxx.o -c /home/dorinda/ceph/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_0f630
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_0f630.dir/link.txt --verbose=1
/usr/bin/c++   -DHAVE_UNALIGNED_ACCESS  -std=c++17    CMakeFiles/cmTC_0f630.dir/src.cxx.o  -o cmTC_0f630 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'

Return value: 1
Source file was:

#include <cstdint>
#include <iterator>

#ifdef _WIN32
#include <winsock2.h>
#else
#include <arpa/inet.h>
#endif

uint32_t load(char* p, size_t offset)
{
  return *reinterpret_cast<uint32_t*>(p + offset);
}

bool good(uint32_t lhs, uint32_t big_endian)
{
  return lhs == ntohl(big_endian);
}

int main(int argc, char **argv)
{
  char a1[] = "ABCDEFG";
  uint32_t a2[] = {0x41424344,
                   0x42434445,
                   0x43444546,
                   0x44454647};
  for (size_t i = 0; i < std::size(a2); i++) {
    if (!good(load(a1, i), a2[i])) {
      return 1;
    }
  }
}
Performing C++ SOURCE FILE Test HAVE_CXX11_ATOMIC succeeded with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_30ed6/fast"
/usr/bin/make -f CMakeFiles/cmTC_30ed6.dir/build.make CMakeFiles/cmTC_30ed6.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_30ed6.dir/src.cxx.o
/usr/bin/c++    -DHAVE_CXX11_ATOMIC  -std=c++11 -fPIE   -o CMakeFiles/cmTC_30ed6.dir/src.cxx.o -c /home/dorinda/ceph/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_30ed6
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_30ed6.dir/link.txt --verbose=1
/usr/bin/c++   -DHAVE_CXX11_ATOMIC  -std=c++11    CMakeFiles/cmTC_30ed6.dir/src.cxx.o  -o cmTC_30ed6 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'

Source file was:

#include <atomic>
#include <cstdint>

#if __s390x__
// Boost needs 16-byte atomics for tagged pointers.
// These are implemented via inline instructions on the platform
// if 16-byte alignment can be proven, and are delegated to libatomic
// library routines otherwise.  Whether or not alignment is provably
// OK for a std::atomic unfortunately depends on compiler version and
// optimization levels, and also on the details of the expression.
// We specifically test access via an otherwise unknown pointer here
// to ensure we get the most complex case.  If this access can be
// done without libatomic, then all accesses can be done.
bool atomic16(std::atomic<unsigned __int128> *ptr)
{
  return *ptr != 0;
}
#endif

int main() {
  std::atomic<uint8_t> w1;
  std::atomic<uint16_t> w2;
  std::atomic<uint32_t> w4;
  std::atomic<uint64_t> w8;
  return w1 + w2 + w4 + w8;
}

Determining if the backtrace exist passed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_5e207/fast"
/usr/bin/make -f CMakeFiles/cmTC_5e207.dir/build.make CMakeFiles/cmTC_5e207.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_5e207.dir/CheckSymbolExists.c.o
/usr/bin/cc   -fPIE   -o CMakeFiles/cmTC_5e207.dir/CheckSymbolExists.c.o   -c /home/dorinda/ceph/CMakeFiles/CMakeTmp/CheckSymbolExists.c
Linking C executable cmTC_5e207
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_5e207.dir/link.txt --verbose=1
/usr/bin/cc      CMakeFiles/cmTC_5e207.dir/CheckSymbolExists.c.o  -o cmTC_5e207 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'

File /home/dorinda/ceph/CMakeFiles/CMakeTmp/CheckSymbolExists.c:
/* */
#include <execinfo.h>

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

Determining if the curl_multi_wait exist passed with the following output:
Change Dir: /home/dorinda/ceph/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/make" "cmTC_f5148/fast"
/usr/bin/make -f CMakeFiles/cmTC_f5148.dir/build.make CMakeFiles/cmTC_f5148.dir/build
make[1]: Entering directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_f5148.dir/CheckSymbolExists.c.o
/usr/bin/cc  -I/usr/include/x86_64-linux-gnu  -fPIE   -o CMakeFiles/cmTC_f5148.dir/CheckSymbolExists.c.o   -c /home/dorinda/ceph/CMakeFiles/CMakeTmp/CheckSymbolExists.c
Linking C executable cmTC_f5148
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_f5148.dir/link.txt --verbose=1
/usr/bin/cc      CMakeFiles/cmTC_f5148.dir/CheckSymbolExists.c.o  -o cmTC_f5148 /usr/lib/x86_64-linux-gnu/libcurl.so 
make[1]: Leaving directory '/home/dorinda/ceph/CMakeFiles/CMakeTmp'

File /home/dorinda/ceph/CMakeFiles/CMakeTmp/CheckSymbolExists.c:
/* */
#include <curl/curl.h>

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

_______________________________________________
Dev mailing list -- dev@xxxxxxx
To unsubscribe send an email to dev-leave@xxxxxxx

[Index of Archives]     [CEPH Users]     [Ceph Devel]     [Ceph Large]     [Information on CEPH]     [Linux BTRFS]     [Linux USB Devel]     [Video for Linux]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux