Skip to content

Instantly share code, notes, and snippets.

@kristinf
Created March 7, 2013 14:26
Show Gist options
  • Save kristinf/5108386 to your computer and use it in GitHub Desktop.
Save kristinf/5108386 to your computer and use it in GitHub Desktop.
Determining if the CXX compiler accepts the flag -std=c++11 failed with the following output:
Change Dir: /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp
Run Build Command:/usr/bin/gmake "cmTryCompileExec/fast"
/usr/bin/gmake -f CMakeFiles/cmTryCompileExec.dir/build.make CMakeFiles/cmTryCompileExec.dir/build
gmake[1]: Entering directory `/home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp'
/usr/bin/cmake -E cmake_progress_report /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp/CMakeFiles 1
Building CXX object CMakeFiles/cmTryCompileExec.dir/DummyCXXFile.cxx.o
/usr/bin/c++ -pipe -Wall -std=c++11 -o CMakeFiles/cmTryCompileExec.dir/DummyCXXFile.cxx.o -c /usr/share/cmake/Modules/DummyCXXFile.cxx
cc1plus: error: unrecognized command line option ‘-std=c++11’
gmake[1]: Leaving directory `/home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp'
gmake[1]: *** [CMakeFiles/cmTryCompileExec.dir/DummyCXXFile.cxx.o] Error 1
gmake: *** [cmTryCompileExec/fast] Error 2
Determining if the function pthread_create exists in the pthreads failed with the following output:
Change Dir: /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp
Run Build Command:/usr/bin/gmake "cmTryCompileExec/fast"
/usr/bin/gmake -f CMakeFiles/cmTryCompileExec.dir/build.make CMakeFiles/cmTryCompileExec.dir/build
gmake[1]: Entering directory `/home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp'
/usr/bin/cmake -E cmake_progress_report /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp/CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec.dir/CheckFunctionExists.c.o
/usr/bin/gcc -pipe -Wall -std=c99 -DCHECK_FUNCTION_EXISTS=pthread_create -o CMakeFiles/cmTryCompileExec.dir/CheckFunctionExists.c.o -c /usr/share/cmake/Modules/CheckFunctionExists.c
Linking C executable cmTryCompileExec
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec.dir/link.txt --verbose=1
/usr/bin/gcc -pipe -Wall -std=c99 -DCHECK_FUNCTION_EXISTS=pthread_create CMakeFiles/cmTryCompileExec.dir/CheckFunctionExists.c.o -o cmTryCompileExec -rdynamic -lpthreads
/usr/lib64/gcc/x86_64-suse-linux/4.6/../../../../x86_64-suse-linux/bin/ld: cannot find -lpthreads
collect2: ld returned 1 exit status
gmake[1]: *** [cmTryCompileExec] Error 1
gmake[1]: Leaving directory `/home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp'
gmake: *** [cmTryCompileExec/fast] Error 2
Performing C SOURCE FILE Test HAVE_UMFPACK_WITHOUT_CHOLMOD failed with the following output:
Change Dir: /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp
Run Build Command:/usr/bin/gmake "cmTryCompileExec/fast"
/usr/bin/gmake -f CMakeFiles/cmTryCompileExec.dir/build.make CMakeFiles/cmTryCompileExec.dir/build
gmake[1]: Entering directory `/home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp'
/usr/bin/cmake -E cmake_progress_report /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp/CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec.dir/src.c.o
/usr/bin/gcc -pipe -Wall -std=c99 -DHAVE_UMFPACK_WITHOUT_CHOLMOD -I/usr/local/include -o CMakeFiles/cmTryCompileExec.dir/src.c.o -c /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp/src.c
Linking C executable cmTryCompileExec
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec.dir/link.txt --verbose=1
/usr/bin/gcc -pipe -Wall -std=c99 -DHAVE_UMFPACK_WITHOUT_CHOLMOD CMakeFiles/cmTryCompileExec.dir/src.c.o -o cmTryCompileExec -rdynamic /usr/local/lib/libumfpack.a /usr/local/lib/libamd.a -llapack -lblas -lblas
/usr/lib64/gcc/x86_64-suse-linux/4.6/../../../../x86_64-suse-linux/bin/ld: /usr/local/lib/libumfpack.a(umf_dl_mem_alloc_element.o): undefined reference to symbol 'ceil@@GLIBC_2.2.5'
/usr/lib64/gcc/x86_64-suse-linux/4.6/../../../../x86_64-suse-linux/bin/ld: note: 'ceil@@GLIBC_2.2.5' is defined in DSO /lib64/libm.so.6 so try adding it to the linker command line
/lib64/libm.so.6: could not read symbols: Invalid operation
collect2: ld returned 1 exit status
gmake[1]: *** [cmTryCompileExec] Error 1
gmake[1]: Leaving directory `/home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp'
gmake: *** [cmTryCompileExec/fast] Error 2
Source file was:
#include <umfpack.h>
int main (void) {
void *Symbolic, *Numeric;
double Info[UMFPACK_INFO], Control[UMFPACK_CONTROL];
umfpack_dl_defaults(Control);
umfpack_dl_symbolic(0, 0, 0, 0, 0,
&Symbolic, Control, Info);
umfpack_dl_numeric (0, 0, 0,
Symbolic, &Numeric, Control, Info);
umfpack_dl_free_symbolic(&Symbolic);
umfpack_dl_solve(UMFPACK_A, 0, 0, 0, 0, 0,
Numeric, Control, Info);
umfpack_dl_free_numeric(&Numeric);
umfpack_timer ();
return 0;
}
Performing C SOURCE FILE Test HAVE_UMFPACK_WITH_CHOLMOD failed with the following output:
Change Dir: /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp
Run Build Command:/usr/bin/gmake "cmTryCompileExec/fast"
/usr/bin/gmake -f CMakeFiles/cmTryCompileExec.dir/build.make CMakeFiles/cmTryCompileExec.dir/build
gmake[1]: Entering directory `/home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp'
/usr/bin/cmake -E cmake_progress_report /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp/CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec.dir/src.c.o
/usr/bin/gcc -pipe -Wall -std=c99 -DHAVE_UMFPACK_WITH_CHOLMOD -I/usr/local/include -o CMakeFiles/cmTryCompileExec.dir/src.c.o -c /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp/src.c
Linking C executable cmTryCompileExec
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec.dir/link.txt --verbose=1
/usr/bin/gcc -pipe -Wall -std=c99 -DHAVE_UMFPACK_WITH_CHOLMOD CMakeFiles/cmTryCompileExec.dir/src.c.o -o cmTryCompileExec -rdynamic /usr/local/lib/libumfpack.a /usr/local/lib/libcholmod.a /usr/local/lib/libamd.a /usr/local/lib/libcolamd.a /usr/local/lib/libcamd.a -llapack -lblas -lblas
/usr/lib64/gcc/x86_64-suse-linux/4.6/../../../../x86_64-suse-linux/bin/ld: /usr/local/lib/libumfpack.a(umf_dl_mem_alloc_element.o): undefined reference to symbol 'ceil@@GLIBC_2.2.5'
/usr/lib64/gcc/x86_64-suse-linux/4.6/../../../../x86_64-suse-linux/bin/ld: note: 'ceil@@GLIBC_2.2.5' is defined in DSO /lib64/libm.so.6 so try adding it to the linker command line
/lib64/libm.so.6: could not read symbols: Invalid operation
collect2: ld returned 1 exit status
gmake[1]: *** [cmTryCompileExec] Error 1
gmake[1]: Leaving directory `/home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp'
gmake: *** [cmTryCompileExec/fast] Error 2
Source file was:
#include <umfpack.h>
int main (void) {
void *Symbolic, *Numeric;
double Info[UMFPACK_INFO], Control[UMFPACK_CONTROL];
umfpack_dl_defaults(Control);
umfpack_dl_symbolic(0, 0, 0, 0, 0,
&Symbolic, Control, Info);
umfpack_dl_numeric (0, 0, 0,
Symbolic, &Numeric, Control, Info);
umfpack_dl_free_symbolic(&Symbolic);
umfpack_dl_solve(UMFPACK_A, 0, 0, 0, 0, 0,
Numeric, Control, Info);
umfpack_dl_free_numeric(&Numeric);
umfpack_timer ();
return 0;
}
Performing C SOURCE FILE Test HAVE_UMFPACK_NOT_UNDERLINKED failed with the following output:
Change Dir: /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp
Run Build Command:/usr/bin/gmake "cmTryCompileExec/fast"
/usr/bin/gmake -f CMakeFiles/cmTryCompileExec.dir/build.make CMakeFiles/cmTryCompileExec.dir/build
gmake[1]: Entering directory `/home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp'
/usr/bin/cmake -E cmake_progress_report /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp/CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec.dir/src.c.o
/usr/bin/gcc -pipe -Wall -std=c99 -DHAVE_UMFPACK_NOT_UNDERLINKED -I/usr/local/include -o CMakeFiles/cmTryCompileExec.dir/src.c.o -c /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp/src.c
Linking C executable cmTryCompileExec
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec.dir/link.txt --verbose=1
/usr/bin/gcc -pipe -Wall -std=c99 -DHAVE_UMFPACK_NOT_UNDERLINKED CMakeFiles/cmTryCompileExec.dir/src.c.o -o cmTryCompileExec -rdynamic /usr/local/lib/libumfpack.a -Wl,--as-needed -NOTFOUND -llapack -lblas -lblas
gcc: error: unrecognized option ‘-NOTFOUND’
gmake[1]: *** [cmTryCompileExec] Error 1
gmake[1]: Leaving directory `/home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp'
gmake: *** [cmTryCompileExec/fast] Error 2
Source file was:
#include <umfpack.h>
int main (void) {
void *Symbolic, *Numeric;
double Info[UMFPACK_INFO], Control[UMFPACK_CONTROL];
umfpack_dl_defaults(Control);
umfpack_dl_symbolic(0, 0, 0, 0, 0,
&Symbolic, Control, Info);
umfpack_dl_numeric (0, 0, 0,
Symbolic, &Numeric, Control, Info);
umfpack_dl_free_symbolic(&Symbolic);
umfpack_dl_solve(UMFPACK_A, 0, 0, 0, 0, 0,
Numeric, Control, Info);
umfpack_dl_free_numeric(&Numeric);
umfpack_timer ();
return 0;
}
Performing C SOURCE FILE Test SUPERLU_MIN_VERSION_4_3 failed with the following output:
Change Dir: /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp
Run Build Command:/usr/bin/gmake "cmTryCompileExec/fast"
/usr/bin/gmake -f CMakeFiles/cmTryCompileExec.dir/build.make CMakeFiles/cmTryCompileExec.dir/build
gmake[1]: Entering directory `/home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp'
/usr/bin/cmake -E cmake_progress_report /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp/CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec.dir/src.c.o
/usr/bin/gcc -pipe -Wall -std=c99 -DSUPERLU_MIN_VERSION_4_3 -I/usr/include/superlu -o CMakeFiles/cmTryCompileExec.dir/src.c.o -c /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp/src.c
/home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp/src.c: In function ‘main’:
/home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp/src.c:5:10: error: ‘SLU_DOUBLE’ undeclared (first use in this function)
/home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp/src.c:5:10: note: each undeclared identifier is reported only once for each function it appears in
gmake[1]: *** [CMakeFiles/cmTryCompileExec.dir/src.c.o] Error 1
gmake[1]: Leaving directory `/home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp'
gmake: *** [cmTryCompileExec/fast] Error 2
Source file was:
#include <slu_ddefs.h>
int main(void)
{
return SLU_DOUBLE;
}
Performing C++ SOURCE FILE Test HAVE_TINYXML failed with the following output:
Change Dir: /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp
Run Build Command:/usr/bin/gmake "cmTryCompileExec/fast"
/usr/bin/gmake -f CMakeFiles/cmTryCompileExec.dir/build.make CMakeFiles/cmTryCompileExec.dir/build
gmake[1]: Entering directory `/home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp'
/usr/bin/cmake -E cmake_progress_report /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp/CMakeFiles 1
Building CXX object CMakeFiles/cmTryCompileExec.dir/src.cxx.o
/usr/bin/c++ -pipe -Wall -std=c++0x -DHAVE_TINYXML -o CMakeFiles/cmTryCompileExec.dir/src.cxx.o -c /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp/src.cxx
/home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp/src.cxx:1:21: fatal error: tinyxml.h: No such file or directory
compilation terminated.
gmake[1]: *** [CMakeFiles/cmTryCompileExec.dir/src.cxx.o] Error 1
gmake[1]: Leaving directory `/home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp'
gmake: *** [cmTryCompileExec/fast] Error 2
Source file was:
#include <tinyxml.h>
int main (void) {
TiXmlDocument doc;
return 0;
}
Performing C++ SOURCE FILE Test HAVE_OPM_CORE failed with the following output:
Change Dir: /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp
Run Build Command:/usr/bin/gmake "cmTryCompileExec/fast"
/usr/bin/gmake -f CMakeFiles/cmTryCompileExec.dir/build.make CMakeFiles/cmTryCompileExec.dir/build
gmake[1]: Entering directory `/home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp'
/usr/bin/cmake -E cmake_progress_report /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp/CMakeFiles 1
Building CXX object CMakeFiles/cmTryCompileExec.dir/src.cxx.o
/usr/bin/c++ -DENABLE_SUPERLU=1 -DDUNE_COMMON_FIELDVECTOR_SIZE_IS_METHOD=1 -DHAVE_ARRAY=1 -DHAVE_NULLPTR=1 -DHAVE_STATIC_ASSERT=1 -DHAVE_TR1_TUPLE=1 -DHAVE_TYPE_TRAITS=1 -DHAVE_TUPLE=1 -DHAVE_MEM_USAGE_T_EXPANSIONS=1 -DHAVE_BOOST=1 -DHAVE_SUPERLU=1 -DSUPERLU_POST_2005_VERSION=1 -DHAVE_DUNE_ISTL=1 -DHAVE_SUITESPARSE_UMFPACK_H=0 -pipe -Wall -std=c++0x -DHAVE_OPM_CORE -I/usr/local/include -I/usr/include/superlu -o CMakeFiles/cmTryCompileExec.dir/src.cxx.o -c /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTryCompileExec
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec.dir/link.txt --verbose=1
/usr/bin/c++ -pipe -Wall -std=c++0x -DHAVE_OPM_CORE CMakeFiles/cmTryCompileExec.dir/src.cxx.o -o cmTryCompileExec -rdynamic /usr/local/lib64/libopmcore.so -lboost_date_time-mt -lboost_filesystem-mt -lboost_system-mt -lboost_unit_test_framework-mt /usr/local/lib64/libdunecommon.a -llapack -Wl,-Bstatic -lsuperlu -Wl,-Bdynamic -lblas -Wl,-rpath,/usr/local/lib64
/usr/lib64/gcc/x86_64-suse-linux/4.6/../../../../x86_64-suse-linux/bin/ld: warning: libdunecommon.so.0, needed by /usr/local/lib64/libopmcore.so, not found (try using -rpath or -rpath-link)
/usr/local/lib64/libopmcore.so: undefined reference to `cholmod_l_free_factor'
/usr/local/lib64/libopmcore.so: undefined reference to `cholmod_l_transpose'
/usr/local/lib64/libopmcore.so: undefined reference to `cholmod_l_start'
/usr/local/lib64/libopmcore.so: undefined reference to `cholmod_l_analyze'
/usr/local/lib64/libopmcore.so: undefined reference to `cholmod_l_free_sparse'
/usr/local/lib64/libopmcore.so: undefined reference to `cholmod_l_print_common'
/usr/local/lib64/libopmcore.so: undefined reference to `cholmod_l_finish'
collect2: ld returned 1 exit status
gmake[1]: *** [cmTryCompileExec] Error 1
gmake[1]: Leaving directory `/home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp'
gmake: *** [cmTryCompileExec/fast] Error 2
Source file was:
#include <opm/core/grid.h>
int main (void) {
struct UnstructuredGrid *g;
g = create_grid_empty ();
destroy_grid (g);
return 0;
}
The system is: Linux - 3.1.9-1.4-desktop - x86_64
Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded.
Compiler: /usr/bin/gcc
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/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CompilerIdC/a.out"
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/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CompilerIdCXX/a.out"
Determining if the C compiler works passed with the following output:
Change Dir: /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp
Run Build Command:/usr/bin/gmake "cmTryCompileExec/fast"
/usr/bin/gmake -f CMakeFiles/cmTryCompileExec.dir/build.make CMakeFiles/cmTryCompileExec.dir/build
gmake[1]: Entering directory `/home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp'
/usr/bin/cmake -E cmake_progress_report /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp/CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec.dir/testCCompiler.c.o
/usr/bin/gcc -o CMakeFiles/cmTryCompileExec.dir/testCCompiler.c.o -c /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp/testCCompiler.c
Linking C executable cmTryCompileExec
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec.dir/link.txt --verbose=1
/usr/bin/gcc CMakeFiles/cmTryCompileExec.dir/testCCompiler.c.o -o cmTryCompileExec -rdynamic
gmake[1]: Leaving directory `/home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp'
Detecting C compiler ABI info compiled with the following output:
Change Dir: /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp
Run Build Command:/usr/bin/gmake "cmTryCompileExec/fast"
/usr/bin/gmake -f CMakeFiles/cmTryCompileExec.dir/build.make CMakeFiles/cmTryCompileExec.dir/build
gmake[1]: Entering directory `/home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp'
/usr/bin/cmake -E cmake_progress_report /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp/CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec.dir/CMakeCCompilerABI.c.o
/usr/bin/gcc -o CMakeFiles/cmTryCompileExec.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake/Modules/CMakeCCompilerABI.c
Linking C executable cmTryCompileExec
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec.dir/link.txt --verbose=1
/usr/bin/gcc -v CMakeFiles/cmTryCompileExec.dir/CMakeCCompilerABI.c.o -o cmTryCompileExec -rdynamic
Using built-in specs.
COLLECT_GCC=/usr/bin/gcc
COLLECT_LTO_WRAPPER=/usr/lib64/gcc/x86_64-suse-linux/4.6/lto-wrapper
Target: x86_64-suse-linux
Configured with: ../configure --prefix=/usr --infodir=/usr/share/info --mandir=/usr/share/man --libdir=/usr/lib64 --libexecdir=/usr/lib64 --enable-languages=c,c++,objc,fortran,obj-c++,java,ada --enable-checking=release --with-gxx-include-dir=/usr/include/c++/4.6 --enable-ssp --disable-libssp --disable-plugin --with-bugurl=http://bugs.opensuse.org/ --with-pkgversion='SUSE Linux' --disable-libgcj --disable-libmudflap --with-slibdir=/lib64 --with-system-zlib --enable-__cxa_atexit --enable-libstdcxx-allocator=new --disable-libstdcxx-pch --enable-version-specific-runtime-libs --program-suffix=-4.6 --enable-linux-futex --without-system-libunwind --with-arch-32=i586 --with-tune=generic --build=x86_64-suse-linux
Thread model: posix
gcc version 4.6.2 (SUSE Linux)
COMPILER_PATH=/usr/lib64/gcc/x86_64-suse-linux/4.6/:/usr/lib64/gcc/x86_64-suse-linux/4.6/:/usr/lib64/gcc/x86_64-suse-linux/:/usr/lib64/gcc/x86_64-suse-linux/4.6/:/usr/lib64/gcc/x86_64-suse-linux/:/usr/lib64/gcc/x86_64-suse-linux/4.6/../../../../x86_64-suse-linux/bin/
LIBRARY_PATH=/usr/lib64/gcc/x86_64-suse-linux/4.6/:/usr/lib64/gcc/x86_64-suse-linux/4.6/../../../../lib64/:/lib/../lib64/:/usr/lib/../lib64/:/usr/lib64/gcc/x86_64-suse-linux/4.6/../../../../x86_64-suse-linux/lib/:/usr/lib64/gcc/x86_64-suse-linux/4.6/../../../:/lib/:/usr/lib/
COLLECT_GCC_OPTIONS='-v' '-o' 'cmTryCompileExec' '-rdynamic' '-mtune=generic' '-march=x86-64'
/usr/lib64/gcc/x86_64-suse-linux/4.6/collect2 --build-id --eh-frame-hdr -m elf_x86_64 -export-dynamic -dynamic-linker /lib64/ld-linux-x86-64.so.2 -o cmTryCompileExec /usr/lib64/gcc/x86_64-suse-linux/4.6/../../../../lib64/crt1.o /usr/lib64/gcc/x86_64-suse-linux/4.6/../../../../lib64/crti.o /usr/lib64/gcc/x86_64-suse-linux/4.6/crtbegin.o -L/usr/lib64/gcc/x86_64-suse-linux/4.6 -L/usr/lib64/gcc/x86_64-suse-linux/4.6/../../../../lib64 -L/lib/../lib64 -L/usr/lib/../lib64 -L/usr/lib64/gcc/x86_64-suse-linux/4.6/../../../../x86_64-suse-linux/lib -L/usr/lib64/gcc/x86_64-suse-linux/4.6/../../.. CMakeFiles/cmTryCompileExec.dir/CMakeCCompilerABI.c.o -lgcc --as-needed -lgcc_s --no-as-needed -lc -lgcc --as-needed -lgcc_s --no-as-needed /usr/lib64/gcc/x86_64-suse-linux/4.6/crtend.o /usr/lib64/gcc/x86_64-suse-linux/4.6/../../../../lib64/crtn.o
gmake[1]: Leaving directory `/home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp'
Parsed C implicit link information from above output:
link line regex: [^( *|.*[/\])(ld|ld|collect2)[^/\]*( |$)]
ignore line: [Change Dir: /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp]
ignore line: []
ignore line: [Run Build Command:/usr/bin/gmake "cmTryCompileExec/fast"]
ignore line: [/usr/bin/gmake -f CMakeFiles/cmTryCompileExec.dir/build.make CMakeFiles/cmTryCompileExec.dir/build]
ignore line: [gmake[1]: Entering directory `/home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp']
ignore line: [/usr/bin/cmake -E cmake_progress_report /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp/CMakeFiles 1]
ignore line: [Building C object CMakeFiles/cmTryCompileExec.dir/CMakeCCompilerABI.c.o]
ignore line: [/usr/bin/gcc -o CMakeFiles/cmTryCompileExec.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake/Modules/CMakeCCompilerABI.c]
ignore line: [Linking C executable cmTryCompileExec]
ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec.dir/link.txt --verbose=1]
ignore line: [/usr/bin/gcc -v CMakeFiles/cmTryCompileExec.dir/CMakeCCompilerABI.c.o -o cmTryCompileExec -rdynamic ]
ignore line: [Using built-in specs.]
ignore line: [COLLECT_GCC=/usr/bin/gcc]
ignore line: [COLLECT_LTO_WRAPPER=/usr/lib64/gcc/x86_64-suse-linux/4.6/lto-wrapper]
ignore line: [Target: x86_64-suse-linux]
ignore line: [Configured with: ../configure --prefix=/usr --infodir=/usr/share/info --mandir=/usr/share/man --libdir=/usr/lib64 --libexecdir=/usr/lib64 --enable-languages=c,c++,objc,fortran,obj-c++,java,ada --enable-checking=release --with-gxx-include-dir=/usr/include/c++/4.6 --enable-ssp --disable-libssp --disable-plugin --with-bugurl=http://bugs.opensuse.org/ --with-pkgversion='SUSE Linux' --disable-libgcj --disable-libmudflap --with-slibdir=/lib64 --with-system-zlib --enable-__cxa_atexit --enable-libstdcxx-allocator=new --disable-libstdcxx-pch --enable-version-specific-runtime-libs --program-suffix=-4.6 --enable-linux-futex --without-system-libunwind --with-arch-32=i586 --with-tune=generic --build=x86_64-suse-linux]
ignore line: [Thread model: posix]
ignore line: [gcc version 4.6.2 (SUSE Linux) ]
ignore line: [COMPILER_PATH=/usr/lib64/gcc/x86_64-suse-linux/4.6/:/usr/lib64/gcc/x86_64-suse-linux/4.6/:/usr/lib64/gcc/x86_64-suse-linux/:/usr/lib64/gcc/x86_64-suse-linux/4.6/:/usr/lib64/gcc/x86_64-suse-linux/:/usr/lib64/gcc/x86_64-suse-linux/4.6/../../../../x86_64-suse-linux/bin/]
ignore line: [LIBRARY_PATH=/usr/lib64/gcc/x86_64-suse-linux/4.6/:/usr/lib64/gcc/x86_64-suse-linux/4.6/../../../../lib64/:/lib/../lib64/:/usr/lib/../lib64/:/usr/lib64/gcc/x86_64-suse-linux/4.6/../../../../x86_64-suse-linux/lib/:/usr/lib64/gcc/x86_64-suse-linux/4.6/../../../:/lib/:/usr/lib/]
ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTryCompileExec' '-rdynamic' '-mtune=generic' '-march=x86-64']
link line: [ /usr/lib64/gcc/x86_64-suse-linux/4.6/collect2 --build-id --eh-frame-hdr -m elf_x86_64 -export-dynamic -dynamic-linker /lib64/ld-linux-x86-64.so.2 -o cmTryCompileExec /usr/lib64/gcc/x86_64-suse-linux/4.6/../../../../lib64/crt1.o /usr/lib64/gcc/x86_64-suse-linux/4.6/../../../../lib64/crti.o /usr/lib64/gcc/x86_64-suse-linux/4.6/crtbegin.o -L/usr/lib64/gcc/x86_64-suse-linux/4.6 -L/usr/lib64/gcc/x86_64-suse-linux/4.6/../../../../lib64 -L/lib/../lib64 -L/usr/lib/../lib64 -L/usr/lib64/gcc/x86_64-suse-linux/4.6/../../../../x86_64-suse-linux/lib -L/usr/lib64/gcc/x86_64-suse-linux/4.6/../../.. CMakeFiles/cmTryCompileExec.dir/CMakeCCompilerABI.c.o -lgcc --as-needed -lgcc_s --no-as-needed -lc -lgcc --as-needed -lgcc_s --no-as-needed /usr/lib64/gcc/x86_64-suse-linux/4.6/crtend.o /usr/lib64/gcc/x86_64-suse-linux/4.6/../../../../lib64/crtn.o]
arg [/usr/lib64/gcc/x86_64-suse-linux/4.6/collect2] ==> ignore
arg [--build-id] ==> ignore
arg [--eh-frame-hdr] ==> ignore
arg [-m] ==> ignore
arg [elf_x86_64] ==> ignore
arg [-export-dynamic] ==> ignore
arg [-dynamic-linker] ==> ignore
arg [/lib64/ld-linux-x86-64.so.2] ==> ignore
arg [-o] ==> ignore
arg [cmTryCompileExec] ==> ignore
arg [/usr/lib64/gcc/x86_64-suse-linux/4.6/../../../../lib64/crt1.o] ==> ignore
arg [/usr/lib64/gcc/x86_64-suse-linux/4.6/../../../../lib64/crti.o] ==> ignore
arg [/usr/lib64/gcc/x86_64-suse-linux/4.6/crtbegin.o] ==> ignore
arg [-L/usr/lib64/gcc/x86_64-suse-linux/4.6] ==> dir [/usr/lib64/gcc/x86_64-suse-linux/4.6]
arg [-L/usr/lib64/gcc/x86_64-suse-linux/4.6/../../../../lib64] ==> dir [/usr/lib64/gcc/x86_64-suse-linux/4.6/../../../../lib64]
arg [-L/lib/../lib64] ==> dir [/lib/../lib64]
arg [-L/usr/lib/../lib64] ==> dir [/usr/lib/../lib64]
arg [-L/usr/lib64/gcc/x86_64-suse-linux/4.6/../../../../x86_64-suse-linux/lib] ==> dir [/usr/lib64/gcc/x86_64-suse-linux/4.6/../../../../x86_64-suse-linux/lib]
arg [-L/usr/lib64/gcc/x86_64-suse-linux/4.6/../../..] ==> dir [/usr/lib64/gcc/x86_64-suse-linux/4.6/../../..]
arg [CMakeFiles/cmTryCompileExec.dir/CMakeCCompilerABI.c.o] ==> ignore
arg [-lgcc] ==> lib [gcc]
arg [--as-needed] ==> ignore
arg [-lgcc_s] ==> lib [gcc_s]
arg [--no-as-needed] ==> ignore
arg [-lc] ==> lib [c]
arg [-lgcc] ==> lib [gcc]
arg [--as-needed] ==> ignore
arg [-lgcc_s] ==> lib [gcc_s]
arg [--no-as-needed] ==> ignore
arg [/usr/lib64/gcc/x86_64-suse-linux/4.6/crtend.o] ==> ignore
arg [/usr/lib64/gcc/x86_64-suse-linux/4.6/../../../../lib64/crtn.o] ==> ignore
remove lib [gcc]
remove lib [gcc_s]
remove lib [gcc]
remove lib [gcc_s]
collapse dir [/usr/lib64/gcc/x86_64-suse-linux/4.6] ==> [/usr/lib64/gcc/x86_64-suse-linux/4.6]
collapse dir [/usr/lib64/gcc/x86_64-suse-linux/4.6/../../../../lib64] ==> [/usr/lib64]
collapse dir [/lib/../lib64] ==> [/lib64]
collapse dir [/usr/lib/../lib64] ==> [/usr/lib64]
collapse dir [/usr/lib64/gcc/x86_64-suse-linux/4.6/../../../../x86_64-suse-linux/lib] ==> [/usr/x86_64-suse-linux/lib]
collapse dir [/usr/lib64/gcc/x86_64-suse-linux/4.6/../../..] ==> [/usr/lib64]
implicit libs: [c]
implicit dirs: [/usr/lib64/gcc/x86_64-suse-linux/4.6;/usr/lib64;/lib64;/usr/x86_64-suse-linux/lib]
Determining if the CXX compiler works passed with the following output:
Change Dir: /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp
Run Build Command:/usr/bin/gmake "cmTryCompileExec/fast"
/usr/bin/gmake -f CMakeFiles/cmTryCompileExec.dir/build.make CMakeFiles/cmTryCompileExec.dir/build
gmake[1]: Entering directory `/home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp'
/usr/bin/cmake -E cmake_progress_report /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp/CMakeFiles 1
Building CXX object CMakeFiles/cmTryCompileExec.dir/testCXXCompiler.cxx.o
/usr/bin/c++ -o CMakeFiles/cmTryCompileExec.dir/testCXXCompiler.cxx.o -c /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp/testCXXCompiler.cxx
Linking CXX executable cmTryCompileExec
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec.dir/link.txt --verbose=1
/usr/bin/c++ CMakeFiles/cmTryCompileExec.dir/testCXXCompiler.cxx.o -o cmTryCompileExec -rdynamic
gmake[1]: Leaving directory `/home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp'
Detecting CXX compiler ABI info compiled with the following output:
Change Dir: /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp
Run Build Command:/usr/bin/gmake "cmTryCompileExec/fast"
/usr/bin/gmake -f CMakeFiles/cmTryCompileExec.dir/build.make CMakeFiles/cmTryCompileExec.dir/build
gmake[1]: Entering directory `/home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp'
/usr/bin/cmake -E cmake_progress_report /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp/CMakeFiles 1
Building CXX object CMakeFiles/cmTryCompileExec.dir/CMakeCXXCompilerABI.cpp.o
/usr/bin/c++ -o CMakeFiles/cmTryCompileExec.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake/Modules/CMakeCXXCompilerABI.cpp
Linking CXX executable cmTryCompileExec
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec.dir/link.txt --verbose=1
/usr/bin/c++ -v CMakeFiles/cmTryCompileExec.dir/CMakeCXXCompilerABI.cpp.o -o cmTryCompileExec -rdynamic
Using built-in specs.
COLLECT_GCC=/usr/bin/c++
COLLECT_LTO_WRAPPER=/usr/lib64/gcc/x86_64-suse-linux/4.6/lto-wrapper
Target: x86_64-suse-linux
Configured with: ../configure --prefix=/usr --infodir=/usr/share/info --mandir=/usr/share/man --libdir=/usr/lib64 --libexecdir=/usr/lib64 --enable-languages=c,c++,objc,fortran,obj-c++,java,ada --enable-checking=release --with-gxx-include-dir=/usr/include/c++/4.6 --enable-ssp --disable-libssp --disable-plugin --with-bugurl=http://bugs.opensuse.org/ --with-pkgversion='SUSE Linux' --disable-libgcj --disable-libmudflap --with-slibdir=/lib64 --with-system-zlib --enable-__cxa_atexit --enable-libstdcxx-allocator=new --disable-libstdcxx-pch --enable-version-specific-runtime-libs --program-suffix=-4.6 --enable-linux-futex --without-system-libunwind --with-arch-32=i586 --with-tune=generic --build=x86_64-suse-linux
Thread model: posix
gcc version 4.6.2 (SUSE Linux)
COMPILER_PATH=/usr/lib64/gcc/x86_64-suse-linux/4.6/:/usr/lib64/gcc/x86_64-suse-linux/4.6/:/usr/lib64/gcc/x86_64-suse-linux/:/usr/lib64/gcc/x86_64-suse-linux/4.6/:/usr/lib64/gcc/x86_64-suse-linux/:/usr/lib64/gcc/x86_64-suse-linux/4.6/../../../../x86_64-suse-linux/bin/
LIBRARY_PATH=/usr/lib64/gcc/x86_64-suse-linux/4.6/:/usr/lib64/gcc/x86_64-suse-linux/4.6/../../../../lib64/:/lib/../lib64/:/usr/lib/../lib64/:/usr/lib64/gcc/x86_64-suse-linux/4.6/../../../../x86_64-suse-linux/lib/:/usr/lib64/gcc/x86_64-suse-linux/4.6/../../../:/lib/:/usr/lib/
COLLECT_GCC_OPTIONS='-v' '-o' 'cmTryCompileExec' '-rdynamic' '-shared-libgcc' '-mtune=generic' '-march=x86-64'
/usr/lib64/gcc/x86_64-suse-linux/4.6/collect2 --build-id --eh-frame-hdr -m elf_x86_64 -export-dynamic -dynamic-linker /lib64/ld-linux-x86-64.so.2 -o cmTryCompileExec /usr/lib64/gcc/x86_64-suse-linux/4.6/../../../../lib64/crt1.o /usr/lib64/gcc/x86_64-suse-linux/4.6/../../../../lib64/crti.o /usr/lib64/gcc/x86_64-suse-linux/4.6/crtbegin.o -L/usr/lib64/gcc/x86_64-suse-linux/4.6 -L/usr/lib64/gcc/x86_64-suse-linux/4.6/../../../../lib64 -L/lib/../lib64 -L/usr/lib/../lib64 -L/usr/lib64/gcc/x86_64-suse-linux/4.6/../../../../x86_64-suse-linux/lib -L/usr/lib64/gcc/x86_64-suse-linux/4.6/../../.. CMakeFiles/cmTryCompileExec.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib64/gcc/x86_64-suse-linux/4.6/crtend.o /usr/lib64/gcc/x86_64-suse-linux/4.6/../../../../lib64/crtn.o
gmake[1]: Leaving directory `/home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp'
Parsed CXX implicit link information from above output:
link line regex: [^( *|.*[/\])(ld|ld|collect2)[^/\]*( |$)]
ignore line: [Change Dir: /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp]
ignore line: []
ignore line: [Run Build Command:/usr/bin/gmake "cmTryCompileExec/fast"]
ignore line: [/usr/bin/gmake -f CMakeFiles/cmTryCompileExec.dir/build.make CMakeFiles/cmTryCompileExec.dir/build]
ignore line: [gmake[1]: Entering directory `/home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp']
ignore line: [/usr/bin/cmake -E cmake_progress_report /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp/CMakeFiles 1]
ignore line: [Building CXX object CMakeFiles/cmTryCompileExec.dir/CMakeCXXCompilerABI.cpp.o]
ignore line: [/usr/bin/c++ -o CMakeFiles/cmTryCompileExec.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake/Modules/CMakeCXXCompilerABI.cpp]
ignore line: [Linking CXX executable cmTryCompileExec]
ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec.dir/link.txt --verbose=1]
ignore line: [/usr/bin/c++ -v CMakeFiles/cmTryCompileExec.dir/CMakeCXXCompilerABI.cpp.o -o cmTryCompileExec -rdynamic ]
ignore line: [Using built-in specs.]
ignore line: [COLLECT_GCC=/usr/bin/c++]
ignore line: [COLLECT_LTO_WRAPPER=/usr/lib64/gcc/x86_64-suse-linux/4.6/lto-wrapper]
ignore line: [Target: x86_64-suse-linux]
ignore line: [Configured with: ../configure --prefix=/usr --infodir=/usr/share/info --mandir=/usr/share/man --libdir=/usr/lib64 --libexecdir=/usr/lib64 --enable-languages=c,c++,objc,fortran,obj-c++,java,ada --enable-checking=release --with-gxx-include-dir=/usr/include/c++/4.6 --enable-ssp --disable-libssp --disable-plugin --with-bugurl=http://bugs.opensuse.org/ --with-pkgversion='SUSE Linux' --disable-libgcj --disable-libmudflap --with-slibdir=/lib64 --with-system-zlib --enable-__cxa_atexit --enable-libstdcxx-allocator=new --disable-libstdcxx-pch --enable-version-specific-runtime-libs --program-suffix=-4.6 --enable-linux-futex --without-system-libunwind --with-arch-32=i586 --with-tune=generic --build=x86_64-suse-linux]
ignore line: [Thread model: posix]
ignore line: [gcc version 4.6.2 (SUSE Linux) ]
ignore line: [COMPILER_PATH=/usr/lib64/gcc/x86_64-suse-linux/4.6/:/usr/lib64/gcc/x86_64-suse-linux/4.6/:/usr/lib64/gcc/x86_64-suse-linux/:/usr/lib64/gcc/x86_64-suse-linux/4.6/:/usr/lib64/gcc/x86_64-suse-linux/:/usr/lib64/gcc/x86_64-suse-linux/4.6/../../../../x86_64-suse-linux/bin/]
ignore line: [LIBRARY_PATH=/usr/lib64/gcc/x86_64-suse-linux/4.6/:/usr/lib64/gcc/x86_64-suse-linux/4.6/../../../../lib64/:/lib/../lib64/:/usr/lib/../lib64/:/usr/lib64/gcc/x86_64-suse-linux/4.6/../../../../x86_64-suse-linux/lib/:/usr/lib64/gcc/x86_64-suse-linux/4.6/../../../:/lib/:/usr/lib/]
ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTryCompileExec' '-rdynamic' '-shared-libgcc' '-mtune=generic' '-march=x86-64']
link line: [ /usr/lib64/gcc/x86_64-suse-linux/4.6/collect2 --build-id --eh-frame-hdr -m elf_x86_64 -export-dynamic -dynamic-linker /lib64/ld-linux-x86-64.so.2 -o cmTryCompileExec /usr/lib64/gcc/x86_64-suse-linux/4.6/../../../../lib64/crt1.o /usr/lib64/gcc/x86_64-suse-linux/4.6/../../../../lib64/crti.o /usr/lib64/gcc/x86_64-suse-linux/4.6/crtbegin.o -L/usr/lib64/gcc/x86_64-suse-linux/4.6 -L/usr/lib64/gcc/x86_64-suse-linux/4.6/../../../../lib64 -L/lib/../lib64 -L/usr/lib/../lib64 -L/usr/lib64/gcc/x86_64-suse-linux/4.6/../../../../x86_64-suse-linux/lib -L/usr/lib64/gcc/x86_64-suse-linux/4.6/../../.. CMakeFiles/cmTryCompileExec.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib64/gcc/x86_64-suse-linux/4.6/crtend.o /usr/lib64/gcc/x86_64-suse-linux/4.6/../../../../lib64/crtn.o]
arg [/usr/lib64/gcc/x86_64-suse-linux/4.6/collect2] ==> ignore
arg [--build-id] ==> ignore
arg [--eh-frame-hdr] ==> ignore
arg [-m] ==> ignore
arg [elf_x86_64] ==> ignore
arg [-export-dynamic] ==> ignore
arg [-dynamic-linker] ==> ignore
arg [/lib64/ld-linux-x86-64.so.2] ==> ignore
arg [-o] ==> ignore
arg [cmTryCompileExec] ==> ignore
arg [/usr/lib64/gcc/x86_64-suse-linux/4.6/../../../../lib64/crt1.o] ==> ignore
arg [/usr/lib64/gcc/x86_64-suse-linux/4.6/../../../../lib64/crti.o] ==> ignore
arg [/usr/lib64/gcc/x86_64-suse-linux/4.6/crtbegin.o] ==> ignore
arg [-L/usr/lib64/gcc/x86_64-suse-linux/4.6] ==> dir [/usr/lib64/gcc/x86_64-suse-linux/4.6]
arg [-L/usr/lib64/gcc/x86_64-suse-linux/4.6/../../../../lib64] ==> dir [/usr/lib64/gcc/x86_64-suse-linux/4.6/../../../../lib64]
arg [-L/lib/../lib64] ==> dir [/lib/../lib64]
arg [-L/usr/lib/../lib64] ==> dir [/usr/lib/../lib64]
arg [-L/usr/lib64/gcc/x86_64-suse-linux/4.6/../../../../x86_64-suse-linux/lib] ==> dir [/usr/lib64/gcc/x86_64-suse-linux/4.6/../../../../x86_64-suse-linux/lib]
arg [-L/usr/lib64/gcc/x86_64-suse-linux/4.6/../../..] ==> dir [/usr/lib64/gcc/x86_64-suse-linux/4.6/../../..]
arg [CMakeFiles/cmTryCompileExec.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/lib64/gcc/x86_64-suse-linux/4.6/crtend.o] ==> ignore
arg [/usr/lib64/gcc/x86_64-suse-linux/4.6/../../../../lib64/crtn.o] ==> ignore
remove lib [gcc_s]
remove lib [gcc]
remove lib [gcc_s]
remove lib [gcc]
collapse dir [/usr/lib64/gcc/x86_64-suse-linux/4.6] ==> [/usr/lib64/gcc/x86_64-suse-linux/4.6]
collapse dir [/usr/lib64/gcc/x86_64-suse-linux/4.6/../../../../lib64] ==> [/usr/lib64]
collapse dir [/lib/../lib64] ==> [/lib64]
collapse dir [/usr/lib/../lib64] ==> [/usr/lib64]
collapse dir [/usr/lib64/gcc/x86_64-suse-linux/4.6/../../../../x86_64-suse-linux/lib] ==> [/usr/x86_64-suse-linux/lib]
collapse dir [/usr/lib64/gcc/x86_64-suse-linux/4.6/../../..] ==> [/usr/lib64]
implicit libs: [stdc++;m;c]
implicit dirs: [/usr/lib64/gcc/x86_64-suse-linux/4.6;/usr/lib64;/lib64;/usr/x86_64-suse-linux/lib]
Determining if the CXX compiler accepts the flag -flto passed with the following output:
Change Dir: /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp
Run Build Command:/usr/bin/gmake "cmTryCompileExec/fast"
/usr/bin/gmake -f CMakeFiles/cmTryCompileExec.dir/build.make CMakeFiles/cmTryCompileExec.dir/build
gmake[1]: Entering directory `/home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp'
/usr/bin/cmake -E cmake_progress_report /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp/CMakeFiles 1
Building CXX object CMakeFiles/cmTryCompileExec.dir/DummyCXXFile.cxx.o
/usr/bin/c++ -pipe -flto -o CMakeFiles/cmTryCompileExec.dir/DummyCXXFile.cxx.o -c /usr/share/cmake/Modules/DummyCXXFile.cxx
Linking CXX executable cmTryCompileExec
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec.dir/link.txt --verbose=1
/usr/bin/c++ -pipe -flto CMakeFiles/cmTryCompileExec.dir/DummyCXXFile.cxx.o -o cmTryCompileExec -rdynamic
gmake[1]: Leaving directory `/home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp'
Determining if the CXX compiler accepts the flag -mtune=native passed with the following output:
Change Dir: /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp
Run Build Command:/usr/bin/gmake "cmTryCompileExec/fast"
/usr/bin/gmake -f CMakeFiles/cmTryCompileExec.dir/build.make CMakeFiles/cmTryCompileExec.dir/build
gmake[1]: Entering directory `/home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp'
/usr/bin/cmake -E cmake_progress_report /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp/CMakeFiles 1
Building CXX object CMakeFiles/cmTryCompileExec.dir/DummyCXXFile.cxx.o
/usr/bin/c++ -pipe -mtune=native -o CMakeFiles/cmTryCompileExec.dir/DummyCXXFile.cxx.o -c /usr/share/cmake/Modules/DummyCXXFile.cxx
Linking CXX executable cmTryCompileExec
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec.dir/link.txt --verbose=1
/usr/bin/c++ -pipe -mtune=native CMakeFiles/cmTryCompileExec.dir/DummyCXXFile.cxx.o -o cmTryCompileExec -rdynamic
gmake[1]: Leaving directory `/home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp'
Performing C SOURCE FILE Test HAVE_C99 succeded with the following output:
Change Dir: /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp
Run Build Command:/usr/bin/gmake "cmTryCompileExec/fast"
/usr/bin/gmake -f CMakeFiles/cmTryCompileExec.dir/build.make CMakeFiles/cmTryCompileExec.dir/build
gmake[1]: Entering directory `/home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp'
/usr/bin/cmake -E cmake_progress_report /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp/CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec.dir/src.c.o
/usr/bin/gcc -pipe -Wall -DHAVE_C99 -std=c99 -o CMakeFiles/cmTryCompileExec.dir/src.c.o -c /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp/src.c
Linking C executable cmTryCompileExec
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec.dir/link.txt --verbose=1
/usr/bin/gcc -pipe -Wall -DHAVE_C99 CMakeFiles/cmTryCompileExec.dir/src.c.o -o cmTryCompileExec -rdynamic
gmake[1]: Leaving directory `/home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp'
Source file was:
int main(void) { return 0; }
Determining if the CXX compiler accepts the flag -std=c++0x passed with the following output:
Change Dir: /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp
Run Build Command:/usr/bin/gmake "cmTryCompileExec/fast"
/usr/bin/gmake -f CMakeFiles/cmTryCompileExec.dir/build.make CMakeFiles/cmTryCompileExec.dir/build
gmake[1]: Entering directory `/home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp'
/usr/bin/cmake -E cmake_progress_report /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp/CMakeFiles 1
Building CXX object CMakeFiles/cmTryCompileExec.dir/DummyCXXFile.cxx.o
/usr/bin/c++ -pipe -Wall -std=c++0x -o CMakeFiles/cmTryCompileExec.dir/DummyCXXFile.cxx.o -c /usr/share/cmake/Modules/DummyCXXFile.cxx
Linking CXX executable cmTryCompileExec
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec.dir/link.txt --verbose=1
/usr/bin/c++ -pipe -Wall -std=c++0x CMakeFiles/cmTryCompileExec.dir/DummyCXXFile.cxx.o -o cmTryCompileExec -rdynamic
gmake[1]: Leaving directory `/home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp'
Performing C++ SOURCE FILE Test HAVE_NULLPTR succeded with the following output:
Change Dir: /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp
Run Build Command:/usr/bin/gmake "cmTryCompileExec/fast"
/usr/bin/gmake -f CMakeFiles/cmTryCompileExec.dir/build.make CMakeFiles/cmTryCompileExec.dir/build
gmake[1]: Entering directory `/home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp'
/usr/bin/cmake -E cmake_progress_report /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp/CMakeFiles 1
Building CXX object CMakeFiles/cmTryCompileExec.dir/src.cxx.o
/usr/bin/c++ -pipe -Wall -std=c++0x -DHAVE_NULLPTR -o CMakeFiles/cmTryCompileExec.dir/src.cxx.o -c /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp/src.cxx
/home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp/src.cxx: In function ‘int main()’:
/home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp/src.cxx:4:13: warning: unused variable ‘ch’ [-Wunused-variable]
Linking CXX executable cmTryCompileExec
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec.dir/link.txt --verbose=1
/usr/bin/c++ -pipe -Wall -std=c++0x -DHAVE_NULLPTR CMakeFiles/cmTryCompileExec.dir/src.cxx.o -o cmTryCompileExec -rdynamic
gmake[1]: Leaving directory `/home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp'
Source file was:
int main(void)
{
char* ch = nullptr;
return 0;
}
Performing C++ SOURCE FILE Test HAVE_CONSTEXPR succeded with the following output:
Change Dir: /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp
Run Build Command:/usr/bin/gmake "cmTryCompileExec/fast"
/usr/bin/gmake -f CMakeFiles/cmTryCompileExec.dir/build.make CMakeFiles/cmTryCompileExec.dir/build
gmake[1]: Entering directory `/home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp'
/usr/bin/cmake -E cmake_progress_report /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp/CMakeFiles 1
Building CXX object CMakeFiles/cmTryCompileExec.dir/src.cxx.o
/usr/bin/c++ -pipe -Wall -std=c++0x -DHAVE_CONSTEXPR -o CMakeFiles/cmTryCompileExec.dir/src.cxx.o -c /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp/src.cxx
/home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp/src.cxx: In function ‘int main()’:
/home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp/src.cxx:6:21: warning: unused variable ‘foobar’ [-Wunused-variable]
Linking CXX executable cmTryCompileExec
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec.dir/link.txt --verbose=1
/usr/bin/c++ -pipe -Wall -std=c++0x -DHAVE_CONSTEXPR CMakeFiles/cmTryCompileExec.dir/src.cxx.o -o cmTryCompileExec -rdynamic
gmake[1]: Leaving directory `/home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp'
Source file was:
template <class T>
inline constexpr int foo(T bar) { return bar*2; }
int main(void)
{
constexpr int foobar = foo(100);
return 0;
}
Performing C++ SOURCE FILE Test HAVE_ARRAY succeded with the following output:
Change Dir: /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp
Run Build Command:/usr/bin/gmake "cmTryCompileExec/fast"
/usr/bin/gmake -f CMakeFiles/cmTryCompileExec.dir/build.make CMakeFiles/cmTryCompileExec.dir/build
gmake[1]: Entering directory `/home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp'
/usr/bin/cmake -E cmake_progress_report /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp/CMakeFiles 1
Building CXX object CMakeFiles/cmTryCompileExec.dir/src.cxx.o
/usr/bin/c++ -pipe -Wall -std=c++0x -DHAVE_ARRAY -o CMakeFiles/cmTryCompileExec.dir/src.cxx.o -c /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTryCompileExec
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec.dir/link.txt --verbose=1
/usr/bin/c++ -pipe -Wall -std=c++0x -DHAVE_ARRAY CMakeFiles/cmTryCompileExec.dir/src.cxx.o -o cmTryCompileExec -rdynamic
gmake[1]: Leaving directory `/home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp'
Source file was:
#include <array>
int main(void)
{
std::array<int,2> a;
a.fill(9);
return 0;
}
Performing C++ SOURCE FILE Test HAVE_INTEGRAL_CONSTANT succeded with the following output:
Change Dir: /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp
Run Build Command:/usr/bin/gmake "cmTryCompileExec/fast"
/usr/bin/gmake -f CMakeFiles/cmTryCompileExec.dir/build.make CMakeFiles/cmTryCompileExec.dir/build
gmake[1]: Entering directory `/home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp'
/usr/bin/cmake -E cmake_progress_report /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp/CMakeFiles 1
Building CXX object CMakeFiles/cmTryCompileExec.dir/src.cxx.o
/usr/bin/c++ -pipe -Wall -std=c++0x -DHAVE_INTEGRAL_CONSTANT -o CMakeFiles/cmTryCompileExec.dir/src.cxx.o -c /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTryCompileExec
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec.dir/link.txt --verbose=1
/usr/bin/c++ -pipe -Wall -std=c++0x -DHAVE_INTEGRAL_CONSTANT CMakeFiles/cmTryCompileExec.dir/src.cxx.o -o cmTryCompileExec -rdynamic
gmake[1]: Leaving directory `/home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp'
Source file was:
#include <type_traits>
void f( int ){}
int main(void){
f( std::integral_constant< int, 42 >() );
}
Determining if the include file tuple exists passed with the following output:
Change Dir: /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp
Run Build Command:/usr/bin/gmake "cmTryCompileExec/fast"
/usr/bin/gmake -f CMakeFiles/cmTryCompileExec.dir/build.make CMakeFiles/cmTryCompileExec.dir/build
gmake[1]: Entering directory `/home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp'
/usr/bin/cmake -E cmake_progress_report /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp/CMakeFiles 1
Building CXX object CMakeFiles/cmTryCompileExec.dir/CheckIncludeFile.cxx.o
/usr/bin/c++ -pipe -Wall -std=c++0x -o CMakeFiles/cmTryCompileExec.dir/CheckIncludeFile.cxx.o -c /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp/CheckIncludeFile.cxx
Linking CXX executable cmTryCompileExec
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec.dir/link.txt --verbose=1
/usr/bin/c++ -pipe -Wall -std=c++0x CMakeFiles/cmTryCompileExec.dir/CheckIncludeFile.cxx.o -o cmTryCompileExec -rdynamic
gmake[1]: Leaving directory `/home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp'
Determining if the include file tr1/tuple exists passed with the following output:
Change Dir: /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp
Run Build Command:/usr/bin/gmake "cmTryCompileExec/fast"
/usr/bin/gmake -f CMakeFiles/cmTryCompileExec.dir/build.make CMakeFiles/cmTryCompileExec.dir/build
gmake[1]: Entering directory `/home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp'
/usr/bin/cmake -E cmake_progress_report /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp/CMakeFiles 1
Building CXX object CMakeFiles/cmTryCompileExec.dir/CheckIncludeFile.cxx.o
/usr/bin/c++ -pipe -Wall -std=c++0x -o CMakeFiles/cmTryCompileExec.dir/CheckIncludeFile.cxx.o -c /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp/CheckIncludeFile.cxx
Linking CXX executable cmTryCompileExec
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec.dir/link.txt --verbose=1
/usr/bin/c++ -pipe -Wall -std=c++0x CMakeFiles/cmTryCompileExec.dir/CheckIncludeFile.cxx.o -o cmTryCompileExec -rdynamic
gmake[1]: Leaving directory `/home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp'
Performing C++ SOURCE FILE Test HAVE_ATTRIBUTE_ALWAYS_INLINE succeded with the following output:
Change Dir: /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp
Run Build Command:/usr/bin/gmake "cmTryCompileExec/fast"
/usr/bin/gmake -f CMakeFiles/cmTryCompileExec.dir/build.make CMakeFiles/cmTryCompileExec.dir/build
gmake[1]: Entering directory `/home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp'
/usr/bin/cmake -E cmake_progress_report /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp/CMakeFiles 1
Building CXX object CMakeFiles/cmTryCompileExec.dir/src.cxx.o
/usr/bin/c++ -pipe -Wall -std=c++0x -DHAVE_ATTRIBUTE_ALWAYS_INLINE -o CMakeFiles/cmTryCompileExec.dir/src.cxx.o -c /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTryCompileExec
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec.dir/link.txt --verbose=1
/usr/bin/c++ -pipe -Wall -std=c++0x -DHAVE_ATTRIBUTE_ALWAYS_INLINE CMakeFiles/cmTryCompileExec.dir/src.cxx.o -o cmTryCompileExec -rdynamic
gmake[1]: Leaving directory `/home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp'
Source file was:
void __attribute__((always_inline)) foo(void) {}
int main(void)
{
foo();
return 0;
};
Performing C++ SOURCE FILE Test HAS_ATTRIBUTE_UNUSED succeded with the following output:
Change Dir: /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp
Run Build Command:/usr/bin/gmake "cmTryCompileExec/fast"
/usr/bin/gmake -f CMakeFiles/cmTryCompileExec.dir/build.make CMakeFiles/cmTryCompileExec.dir/build
gmake[1]: Entering directory `/home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp'
/usr/bin/cmake -E cmake_progress_report /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp/CMakeFiles 1
Building CXX object CMakeFiles/cmTryCompileExec.dir/src.cxx.o
/usr/bin/c++ -pipe -Wall -std=c++0x -DHAS_ATTRIBUTE_UNUSED -o CMakeFiles/cmTryCompileExec.dir/src.cxx.o -c /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTryCompileExec
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec.dir/link.txt --verbose=1
/usr/bin/c++ -pipe -Wall -std=c++0x -DHAS_ATTRIBUTE_UNUSED CMakeFiles/cmTryCompileExec.dir/src.cxx.o -o cmTryCompileExec -rdynamic
gmake[1]: Leaving directory `/home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp'
Source file was:
int main(void)
{
int __attribute__((unused)) foo;
return 0;
};
Performing C++ SOURCE FILE Test HAS_ATTRIBUTE_DEPRECATED succeded with the following output:
Change Dir: /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp
Run Build Command:/usr/bin/gmake "cmTryCompileExec/fast"
/usr/bin/gmake -f CMakeFiles/cmTryCompileExec.dir/build.make CMakeFiles/cmTryCompileExec.dir/build
gmake[1]: Entering directory `/home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp'
/usr/bin/cmake -E cmake_progress_report /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp/CMakeFiles 1
Building CXX object CMakeFiles/cmTryCompileExec.dir/src.cxx.o
/usr/bin/c++ -pipe -Wall -std=c++0x -DHAS_ATTRIBUTE_DEPRECATED -o CMakeFiles/cmTryCompileExec.dir/src.cxx.o -c /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTryCompileExec
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec.dir/link.txt --verbose=1
/usr/bin/c++ -pipe -Wall -std=c++0x -DHAS_ATTRIBUTE_DEPRECATED CMakeFiles/cmTryCompileExec.dir/src.cxx.o -o cmTryCompileExec -rdynamic
gmake[1]: Leaving directory `/home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp'
Source file was:
#define DEP __attribute__((deprecated))
class bar
{
bar() DEP;
};
class peng { } DEP;
template <class T>
class t_bar
{
t_bar() DEP;
};
template <class T>
class t_peng {
t_peng() {};
} DEP;
void foo() DEP;
void foo() {};
int main(void)
{
return 0;
};
Performing C++ SOURCE FILE Test HAS_ATTRIBUTE_DEPRECATED_MSG succeded with the following output:
Change Dir: /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp
Run Build Command:/usr/bin/gmake "cmTryCompileExec/fast"
/usr/bin/gmake -f CMakeFiles/cmTryCompileExec.dir/build.make CMakeFiles/cmTryCompileExec.dir/build
gmake[1]: Entering directory `/home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp'
/usr/bin/cmake -E cmake_progress_report /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp/CMakeFiles 1
Building CXX object CMakeFiles/cmTryCompileExec.dir/src.cxx.o
/usr/bin/c++ -pipe -Wall -std=c++0x -DHAS_ATTRIBUTE_DEPRECATED_MSG -o CMakeFiles/cmTryCompileExec.dir/src.cxx.o -c /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTryCompileExec
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec.dir/link.txt --verbose=1
/usr/bin/c++ -pipe -Wall -std=c++0x -DHAS_ATTRIBUTE_DEPRECATED_MSG CMakeFiles/cmTryCompileExec.dir/src.cxx.o -o cmTryCompileExec -rdynamic
gmake[1]: Leaving directory `/home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp'
Source file was:
#define DEP __attribute__((deprecated("message")))
class bar {
bar() DEP;
};
class peng { } DEP;
template <class T>
class t_bar
{
t_bar() DEP;
};
template <class T>
class t_peng
{
t_peng() {};
} DEP;
void foo() DEP;
void foo() {};
int main(void)
{
return 0;
};
Performing C++ SOURCE FILE Test HAVE_STATIC_ASSERT succeded with the following output:
Change Dir: /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp
Run Build Command:/usr/bin/gmake "cmTryCompileExec/fast"
/usr/bin/gmake -f CMakeFiles/cmTryCompileExec.dir/build.make CMakeFiles/cmTryCompileExec.dir/build
gmake[1]: Entering directory `/home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp'
/usr/bin/cmake -E cmake_progress_report /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp/CMakeFiles 1
Building CXX object CMakeFiles/cmTryCompileExec.dir/src.cxx.o
/usr/bin/c++ -pipe -Wall -std=c++0x -DHAVE_STATIC_ASSERT -o CMakeFiles/cmTryCompileExec.dir/src.cxx.o -c /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTryCompileExec
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec.dir/link.txt --verbose=1
/usr/bin/c++ -pipe -Wall -std=c++0x -DHAVE_STATIC_ASSERT CMakeFiles/cmTryCompileExec.dir/src.cxx.o -o cmTryCompileExec -rdynamic
gmake[1]: Leaving directory `/home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp'
Source file was:
int main(void)
{
static_assert(true,"MSG");
return 0;
}
Performing C++ SOURCE FILE Test HAVE_VARIADIC_TEMPLATES succeded with the following output:
Change Dir: /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp
Run Build Command:/usr/bin/gmake "cmTryCompileExec/fast"
/usr/bin/gmake -f CMakeFiles/cmTryCompileExec.dir/build.make CMakeFiles/cmTryCompileExec.dir/build
gmake[1]: Entering directory `/home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp'
/usr/bin/cmake -E cmake_progress_report /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp/CMakeFiles 1
Building CXX object CMakeFiles/cmTryCompileExec.dir/src.cxx.o
/usr/bin/c++ -pipe -Wall -std=c++0x -DHAVE_VARIADIC_TEMPLATES -o CMakeFiles/cmTryCompileExec.dir/src.cxx.o -c /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTryCompileExec
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec.dir/link.txt --verbose=1
/usr/bin/c++ -pipe -Wall -std=c++0x -DHAVE_VARIADIC_TEMPLATES CMakeFiles/cmTryCompileExec.dir/src.cxx.o -o cmTryCompileExec -rdynamic
gmake[1]: Leaving directory `/home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp'
Source file was:
#include <cassert>
template<typename... T>
int addints(T... x);
int add_ints()
{
return 0;
}
template<typename T1, typename... T>
int add_ints(T1 t1, T... t)
{
return t1 + add_ints(t...);
}
int main(void)
{
assert( 5 == add_ints(9,3,-5,-2) );
return 0;
}
Performing C++ SOURCE FILE Test HAVE_VARIADIC_CONSTRUCTOR_SFINAE succeded with the following output:
Change Dir: /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp
Run Build Command:/usr/bin/gmake "cmTryCompileExec/fast"
/usr/bin/gmake -f CMakeFiles/cmTryCompileExec.dir/build.make CMakeFiles/cmTryCompileExec.dir/build
gmake[1]: Entering directory `/home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp'
/usr/bin/cmake -E cmake_progress_report /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp/CMakeFiles 1
Building CXX object CMakeFiles/cmTryCompileExec.dir/src.cxx.o
/usr/bin/c++ -pipe -Wall -std=c++0x -DHAVE_VARIADIC_CONSTRUCTOR_SFINAE -o CMakeFiles/cmTryCompileExec.dir/src.cxx.o -c /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTryCompileExec
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec.dir/link.txt --verbose=1
/usr/bin/c++ -pipe -Wall -std=c++0x -DHAVE_VARIADIC_CONSTRUCTOR_SFINAE CMakeFiles/cmTryCompileExec.dir/src.cxx.o -o cmTryCompileExec -rdynamic
gmake[1]: Leaving directory `/home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp'
Source file was:
#include <functional>
template<typename... U>
struct A
{
template<typename... T,
typename = typename std::enable_if<(sizeof...(T) < 2)>::type
>
A(T... t)
: i(1)
{}
template<typename... T,
typename = typename std::enable_if<(sizeof...(T) >= 2)>::type,
typename = void
>
A(T... t)
: i(-1)
{}
A()
: i(1)
{}
int i;
};
int main(void)
{
return (A<int>().i + A<int>(2).i + A<int>("foo",3.4).i + A<int>(8,'a',A<int>()).i == 0 ? 0 : 1);
}
Performing C++ SOURCE FILE Test HAVE_RVALUE_REFERENCES succeded with the following output:
Change Dir: /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp
Run Build Command:/usr/bin/gmake "cmTryCompileExec/fast"
/usr/bin/gmake -f CMakeFiles/cmTryCompileExec.dir/build.make CMakeFiles/cmTryCompileExec.dir/build
gmake[1]: Entering directory `/home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp'
/usr/bin/cmake -E cmake_progress_report /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp/CMakeFiles 1
Building CXX object CMakeFiles/cmTryCompileExec.dir/src.cxx.o
/usr/bin/c++ -pipe -Wall -std=c++0x -DHAVE_RVALUE_REFERENCES -o CMakeFiles/cmTryCompileExec.dir/src.cxx.o -c /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTryCompileExec
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec.dir/link.txt --verbose=1
/usr/bin/c++ -pipe -Wall -std=c++0x -DHAVE_RVALUE_REFERENCES CMakeFiles/cmTryCompileExec.dir/src.cxx.o -o cmTryCompileExec -rdynamic
gmake[1]: Leaving directory `/home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp'
Source file was:
#include <cassert>
#include <utility>
int foo(int&& x) { return 1; }
int foo(const int& x) { return -1; }
template<typename T>
int forward(T&& x)
{
return foo(std::forward<T>(x));
}
int main(void)
{
int i = 0;
assert( forward(i) + forward(int(2)) == 0);
return 0;
}
Determining if the include file type_traits exists passed with the following output:
Change Dir: /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp
Run Build Command:/usr/bin/gmake "cmTryCompileExec/fast"
/usr/bin/gmake -f CMakeFiles/cmTryCompileExec.dir/build.make CMakeFiles/cmTryCompileExec.dir/build
gmake[1]: Entering directory `/home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp'
/usr/bin/cmake -E cmake_progress_report /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp/CMakeFiles 1
Building CXX object CMakeFiles/cmTryCompileExec.dir/CheckIncludeFile.cxx.o
/usr/bin/c++ -pipe -Wall -std=c++0x -o CMakeFiles/cmTryCompileExec.dir/CheckIncludeFile.cxx.o -c /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp/CheckIncludeFile.cxx
Linking CXX executable cmTryCompileExec
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec.dir/link.txt --verbose=1
/usr/bin/c++ -pipe -Wall -std=c++0x CMakeFiles/cmTryCompileExec.dir/CheckIncludeFile.cxx.o -o cmTryCompileExec -rdynamic
gmake[1]: Leaving directory `/home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp'
Determining if the include file tr1/type_traits exists passed with the following output:
Change Dir: /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp
Run Build Command:/usr/bin/gmake "cmTryCompileExec/fast"
/usr/bin/gmake -f CMakeFiles/cmTryCompileExec.dir/build.make CMakeFiles/cmTryCompileExec.dir/build
gmake[1]: Entering directory `/home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp'
/usr/bin/cmake -E cmake_progress_report /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp/CMakeFiles 1
Building CXX object CMakeFiles/cmTryCompileExec.dir/CheckIncludeFile.cxx.o
/usr/bin/c++ -pipe -Wall -std=c++0x -o CMakeFiles/cmTryCompileExec.dir/CheckIncludeFile.cxx.o -c /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp/CheckIncludeFile.cxx
Linking CXX executable cmTryCompileExec
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec.dir/link.txt --verbose=1
/usr/bin/c++ -pipe -Wall -std=c++0x CMakeFiles/cmTryCompileExec.dir/CheckIncludeFile.cxx.o -o cmTryCompileExec -rdynamic
gmake[1]: Leaving directory `/home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp'
Determining if the function sgemm_ exists passed with the following output:
Change Dir: /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp
Run Build Command:/usr/bin/gmake "cmTryCompileExec/fast"
/usr/bin/gmake -f CMakeFiles/cmTryCompileExec.dir/build.make CMakeFiles/cmTryCompileExec.dir/build
gmake[1]: Entering directory `/home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp'
/usr/bin/cmake -E cmake_progress_report /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp/CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec.dir/CheckFunctionExists.c.o
/usr/bin/gcc -pipe -Wall -std=c99 -DCHECK_FUNCTION_EXISTS=sgemm_ -o CMakeFiles/cmTryCompileExec.dir/CheckFunctionExists.c.o -c /usr/share/cmake/Modules/CheckFunctionExists.c
Linking C executable cmTryCompileExec
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec.dir/link.txt --verbose=1
/usr/bin/gcc -pipe -Wall -std=c99 -DCHECK_FUNCTION_EXISTS=sgemm_ CMakeFiles/cmTryCompileExec.dir/CheckFunctionExists.c.o -o cmTryCompileExec -rdynamic -lblas
gmake[1]: Leaving directory `/home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp'
Determining if files pthread.h exist passed with the following output:
Change Dir: /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp
Run Build Command:/usr/bin/gmake "cmTryCompileExec/fast"
/usr/bin/gmake -f CMakeFiles/cmTryCompileExec.dir/build.make CMakeFiles/cmTryCompileExec.dir/build
gmake[1]: Entering directory `/home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp'
/usr/bin/cmake -E cmake_progress_report /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp/CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec.dir/CheckIncludeFiles.c.o
/usr/bin/gcc -pipe -Wall -std=c99 -o CMakeFiles/cmTryCompileExec.dir/CheckIncludeFiles.c.o -c /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp/CheckIncludeFiles.c
Linking C executable cmTryCompileExec
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec.dir/link.txt --verbose=1
/usr/bin/gcc -pipe -Wall -std=c99 CMakeFiles/cmTryCompileExec.dir/CheckIncludeFiles.c.o -o cmTryCompileExec -rdynamic
gmake[1]: Leaving directory `/home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp'
Determining if the function pthread_create exists in the pthread passed with the following output:
Change Dir: /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp
Run Build Command:/usr/bin/gmake "cmTryCompileExec/fast"
/usr/bin/gmake -f CMakeFiles/cmTryCompileExec.dir/build.make CMakeFiles/cmTryCompileExec.dir/build
gmake[1]: Entering directory `/home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp'
/usr/bin/cmake -E cmake_progress_report /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp/CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec.dir/CheckFunctionExists.c.o
/usr/bin/gcc -pipe -Wall -std=c99 -DCHECK_FUNCTION_EXISTS=pthread_create -o CMakeFiles/cmTryCompileExec.dir/CheckFunctionExists.c.o -c /usr/share/cmake/Modules/CheckFunctionExists.c
Linking C executable cmTryCompileExec
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec.dir/link.txt --verbose=1
/usr/bin/gcc -pipe -Wall -std=c99 -DCHECK_FUNCTION_EXISTS=pthread_create CMakeFiles/cmTryCompileExec.dir/CheckFunctionExists.c.o -o cmTryCompileExec -rdynamic -lpthread
gmake[1]: Leaving directory `/home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp'
Determining if the function cheev_ exists passed with the following output:
Change Dir: /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp
Run Build Command:/usr/bin/gmake "cmTryCompileExec/fast"
/usr/bin/gmake -f CMakeFiles/cmTryCompileExec.dir/build.make CMakeFiles/cmTryCompileExec.dir/build
gmake[1]: Entering directory `/home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp'
/usr/bin/cmake -E cmake_progress_report /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp/CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec.dir/CheckFunctionExists.c.o
/usr/bin/gcc -pipe -Wall -std=c99 -DCHECK_FUNCTION_EXISTS=cheev_ -o CMakeFiles/cmTryCompileExec.dir/CheckFunctionExists.c.o -c /usr/share/cmake/Modules/CheckFunctionExists.c
Linking C executable cmTryCompileExec
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec.dir/link.txt --verbose=1
/usr/bin/gcc -pipe -Wall -std=c99 -DCHECK_FUNCTION_EXISTS=cheev_ CMakeFiles/cmTryCompileExec.dir/CheckFunctionExists.c.o -o cmTryCompileExec -rdynamic -llapack -lblas
gmake[1]: Leaving directory `/home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp'
Performing C++ SOURCE FILE Test HAVE_DUNE_COMMON succeded with the following output:
Change Dir: /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp
Run Build Command:/usr/bin/gmake "cmTryCompileExec/fast"
/usr/bin/gmake -f CMakeFiles/cmTryCompileExec.dir/build.make CMakeFiles/cmTryCompileExec.dir/build
gmake[1]: Entering directory `/home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp'
/usr/bin/cmake -E cmake_progress_report /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp/CMakeFiles 1
Building CXX object CMakeFiles/cmTryCompileExec.dir/src.cxx.o
/usr/bin/c++ -DDUNE_COMMON_FIELDVECTOR_SIZE_IS_METHOD=1 -DHAVE_ARRAY=1 -DHAVE_NULLPTR=1 -DHAVE_STATIC_ASSERT=1 -DHAVE_TR1_TUPLE=1 -DHAVE_TYPE_TRAITS=1 -DHAVE_TUPLE=1 -pipe -Wall -std=c++0x -DHAVE_DUNE_COMMON -I/usr/local/include -o CMakeFiles/cmTryCompileExec.dir/src.cxx.o -c /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp/src.cxx
/home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp/src.cxx: In function ‘int main()’:
/home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp/src.cxx:8:31: warning: variable ‘w’ set but not used [-Wunused-but-set-variable]
Linking CXX executable cmTryCompileExec
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec.dir/link.txt --verbose=1
/usr/bin/c++ -pipe -Wall -std=c++0x -DHAVE_DUNE_COMMON CMakeFiles/cmTryCompileExec.dir/src.cxx.o -o cmTryCompileExec -rdynamic /usr/local/lib64/libdunecommon.a -llapack -lblas
gmake[1]: Leaving directory `/home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp'
Source file was:
#include <dune/common/fvector.hh>
#include <dune/common/fmatrix.hh>
int main (void) {
Dune::FieldVector<double,1> v;
Dune::FieldMatrix<double,1,1> m;
m[0][0] = 1.0;
v[0] = 1.0;
Dune::FieldVector<double,1> w = m*v;
return 0;
}
Performing C++ SOURCE FILE Test HAVE_DUNE_GEOMETRY succeded with the following output:
Change Dir: /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp
Run Build Command:/usr/bin/gmake "cmTryCompileExec/fast"
/usr/bin/gmake -f CMakeFiles/cmTryCompileExec.dir/build.make CMakeFiles/cmTryCompileExec.dir/build
gmake[1]: Entering directory `/home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp'
/usr/bin/cmake -E cmake_progress_report /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp/CMakeFiles 1
Building CXX object CMakeFiles/cmTryCompileExec.dir/src.cxx.o
/usr/bin/c++ -DDUNE_COMMON_FIELDVECTOR_SIZE_IS_METHOD=1 -DHAVE_ARRAY=1 -DHAVE_NULLPTR=1 -DHAVE_STATIC_ASSERT=1 -DHAVE_TR1_TUPLE=1 -DHAVE_TYPE_TRAITS=1 -DHAVE_TUPLE=1 -pipe -Wall -std=c++0x -DHAVE_DUNE_GEOMETRY -I/usr/local/include -o CMakeFiles/cmTryCompileExec.dir/src.cxx.o -c /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTryCompileExec
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec.dir/link.txt --verbose=1
/usr/bin/c++ -pipe -Wall -std=c++0x -DHAVE_DUNE_GEOMETRY CMakeFiles/cmTryCompileExec.dir/src.cxx.o -o cmTryCompileExec -rdynamic /usr/local/lib64/libdunegeometry.a /usr/local/lib64/libdunecommon.a -llapack -lblas
gmake[1]: Leaving directory `/home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp'
Source file was:
#include <dune/geometry/quadraturerules.hh>
int main (void) {
Dune::GeometryType gt;
gt.makeQuadrilateral();
Dune::QuadratureRules<double, 2>::rule(gt, 2).size();
return 0;
}
Performing C++ SOURCE FILE Test HAVE_DUNE_GRID succeded with the following output:
Change Dir: /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp
Run Build Command:/usr/bin/gmake "cmTryCompileExec/fast"
/usr/bin/gmake -f CMakeFiles/cmTryCompileExec.dir/build.make CMakeFiles/cmTryCompileExec.dir/build
gmake[1]: Entering directory `/home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp'
/usr/bin/cmake -E cmake_progress_report /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp/CMakeFiles 1
Building CXX object CMakeFiles/cmTryCompileExec.dir/src.cxx.o
/usr/bin/c++ -DDUNE_COMMON_FIELDVECTOR_SIZE_IS_METHOD=1 -DHAVE_ARRAY=1 -DHAVE_NULLPTR=1 -DHAVE_STATIC_ASSERT=1 -DHAVE_TR1_TUPLE=1 -DHAVE_TYPE_TRAITS=1 -DHAVE_TUPLE=1 -pipe -Wall -std=c++0x -DHAVE_DUNE_GRID -I/usr/local/include -o CMakeFiles/cmTryCompileExec.dir/src.cxx.o -c /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTryCompileExec
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec.dir/link.txt --verbose=1
/usr/bin/c++ -pipe -Wall -std=c++0x -DHAVE_DUNE_GRID CMakeFiles/cmTryCompileExec.dir/src.cxx.o -o cmTryCompileExec -rdynamic /usr/local/lib64/libdunegrid.a /usr/local/lib64/libdunegeometry.a /usr/local/lib64/libdunecommon.a -llapack -lblas
gmake[1]: Leaving directory `/home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp'
Source file was:
#include <dune/grid/onedgrid.hh>
#include <vector>
int main (void) {
std::vector<Dune::OneDGrid::ctype> coords;
Dune::OneDGrid grid(coords);
return grid.lbegin<0>(0) == grid.lend<0>(0);
return 0;
}
Performing C SOURCE FILE Test HAVE_MEM_USAGE_T_EXPANSIONS succeded with the following output:
Change Dir: /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp
Run Build Command:/usr/bin/gmake "cmTryCompileExec/fast"
/usr/bin/gmake -f CMakeFiles/cmTryCompileExec.dir/build.make CMakeFiles/cmTryCompileExec.dir/build
gmake[1]: Entering directory `/home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp'
/usr/bin/cmake -E cmake_progress_report /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp/CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec.dir/src.c.o
/usr/bin/gcc -pipe -Wall -std=c99 -DHAVE_MEM_USAGE_T_EXPANSIONS -I/usr/include/superlu -o CMakeFiles/cmTryCompileExec.dir/src.c.o -c /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp/src.c
Linking C executable cmTryCompileExec
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec.dir/link.txt --verbose=1
/usr/bin/gcc -pipe -Wall -std=c99 -DHAVE_MEM_USAGE_T_EXPANSIONS CMakeFiles/cmTryCompileExec.dir/src.c.o -o cmTryCompileExec -rdynamic -Wl,-Bstatic -lsuperlu -Wl,-Bdynamic -lblas
gmake[1]: Leaving directory `/home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp'
Source file was:
#include <slu_ddefs.h>
int main(void)
{
mem_usage_t mem;
return mem.expansions;
}
Performing C SOURCE FILE Test SUPERLU_POST_2005_VERSION succeded with the following output:
Change Dir: /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp
Run Build Command:/usr/bin/gmake "cmTryCompileExec/fast"
/usr/bin/gmake -f CMakeFiles/cmTryCompileExec.dir/build.make CMakeFiles/cmTryCompileExec.dir/build
gmake[1]: Entering directory `/home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp'
/usr/bin/cmake -E cmake_progress_report /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp/CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec.dir/src.c.o
/usr/bin/gcc -pipe -Wall -std=c99 -DSUPERLU_POST_2005_VERSION -I/usr/include/superlu -o CMakeFiles/cmTryCompileExec.dir/src.c.o -c /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp/src.c
/home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp/src.c: In function ‘main’:
/home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp/src.c:5:14: warning: unused variable ‘g’ [-Wunused-variable]
Linking C executable cmTryCompileExec
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec.dir/link.txt --verbose=1
/usr/bin/gcc -pipe -Wall -std=c99 -DSUPERLU_POST_2005_VERSION CMakeFiles/cmTryCompileExec.dir/src.c.o -o cmTryCompileExec -rdynamic -Wl,-Bstatic -lsuperlu -Wl,-Bdynamic -lblas
gmake[1]: Leaving directory `/home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp'
Source file was:
#include <slu_ddefs.h>
int main(void)
{
GlobalLU_t g;
return 0;
}
Determing location of SuperLU <= 4.2, post 2005 succeded:
Include directory: /usr/include/superlu
Library directory: /usr/lib64/libsuperlu.a;/usr/lib64/libblas.so
Determing location of SuperLU <= 4.2, post 2005 succeded:
Include directory: /usr/include/superlu
Library directory: /usr/lib64/libsuperlu.a;/usr/lib64/libblas.so
Performing C++ SOURCE FILE Test HAVE_DUNE_ISTL succeded with the following output:
Change Dir: /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp
Run Build Command:/usr/bin/gmake "cmTryCompileExec/fast"
/usr/bin/gmake -f CMakeFiles/cmTryCompileExec.dir/build.make CMakeFiles/cmTryCompileExec.dir/build
gmake[1]: Entering directory `/home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp'
/usr/bin/cmake -E cmake_progress_report /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp/CMakeFiles 1
Building CXX object CMakeFiles/cmTryCompileExec.dir/src.cxx.o
/usr/bin/c++ -DDUNE_COMMON_FIELDVECTOR_SIZE_IS_METHOD=1 -DENABLE_SUPERLU=1 -DHAVE_ARRAY=1 -DHAVE_NULLPTR=1 -DHAVE_STATIC_ASSERT=1 -DHAVE_TR1_TUPLE=1 -DHAVE_TYPE_TRAITS=1 -DHAVE_TUPLE=1 -DHAVE_MEM_USAGE_T_EXPANSIONS=1 -DHAVE_BOOST=1 -DHAVE_SUPERLU=1 -DSUPERLU_POST_2005_VERSION=1 -pipe -Wall -std=c++0x -DHAVE_DUNE_ISTL -I/usr/local/include -I/usr/include/superlu -o CMakeFiles/cmTryCompileExec.dir/src.cxx.o -c /home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTryCompileExec
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec.dir/link.txt --verbose=1
/usr/bin/c++ -pipe -Wall -std=c++0x -DHAVE_DUNE_ISTL CMakeFiles/cmTryCompileExec.dir/src.cxx.o -o cmTryCompileExec -rdynamic /usr/local/lib64/libdunecommon.a -llapack -Wl,-Bstatic -lsuperlu -Wl,-Bdynamic -lblas
gmake[1]: Leaving directory `/home/kmf/OPM5/build/dune-cornerpoint-build/CMakeFiles/CMakeTmp'
Source file was:
#include <dune/common/deprecated.hh>
#include <dune/istl/bcrsmatrix.hh>
#include <dune/common/fmatrix.hh>
int main (void) {
typedef Dune::BCRSMatrix<Dune::FieldMatrix<double,1,1> > Matrix;
Matrix matrix( 3, 3, Matrix::random );
for (int i = 0; i < 3; ++i) matrix.setrowsize(i, 2);
matrix.endrowsizes();
return 0;
}
Determing location of SuperLU <= 4.2, post 2005 succeded:
Include directory: /usr/include/superlu
Library directory: /usr/lib64/libsuperlu.a;/usr/lib64/libblas.so
Determing location of SuperLU <= 4.2, post 2005 succeded:
Include directory: /usr/include/superlu
Library directory: /usr/lib64/libsuperlu.a;/usr/lib64/libblas.so
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment