[dune-pdelab] Heat Equation in Parallel

Afshin Loni afshin.loni at gmail.com
Fri Jun 17 11:50:22 CEST 2016


Hi Dominnic,

You are actually right I get a cmake warning like :
CMake Warning:
  Manually-specified variables were not used by the project:

    MPI_CC_COMPILER

but I checked the config file and apparently it is being set automatically.
Attached you can check the config output.

Best,
Afshin

On Fri, Jun 17, 2016 at 10:12 AM, Dominic Kempf <dominic.r.kempf at gmail.com>
wrote:

> Hey Afshin,
>
> the flags you are specifying are not meant for manual tweaking.
> They should instead be set by the buildsystem through the MPI test.
> When you get shown the summary from configure, does it list MPI
> among the found packages.
>
> Best,
> Dominic
>
> On Thu, Jun 16, 2016 at 7:17 PM, Afshin Loni <afshin.loni at gmail.com>
> wrote:
>
>> Hi Jö,
>>
>> Thanks for the reply, Actually I did delete the build directory, I am
>> making a debug build folder generally and I deleted it. I have an
>> Install.sh file which takes care of everything and also generates the opt
>> file , here it is :
>>
>> #!/bin/bash
>>
>> ROOT=$(pwd)
>> if [ ! "$F77" ]; then
>>   F77=gfortran
>> fi
>> if [ ! "$CC" ]; then
>> CC=gcc
>> fi
>> if [ ! "$CXX" ]; then
>> CXX=g++
>> fi
>> if [ ! "$CXXFLAGS" ]; then
>> CXXFLAGS="-O3 -DNDEBUG"
>> fi
>> CFLAGS="$CXXFLAGS"
>> if [ ! "$MAKE_FLAGS" ]; then
>> MAKE_FLAGS="-j2"
>> fi
>>
>> # To avoid an ugly cmake bug we expand our compiler variables to absolute
>> paths
>> export CC=$(which $CC)
>> export CXX=$(which $CXX)
>> export F77=$(which $F77)
>>
>> # Check whether we have built external dependencies
>> if [ ! -d "$(pwd)/external/ug" ]; then
>>   ./external.sh
>> fi
>>
>>
>> # generate an opts file with debug flags
>> echo "CMAKE_FLAGS=\"
>> -DUG_ROOT=$ROOT/external/ug
>> -DCMAKE_C_COMPILER='$CC'
>> -DCMAKE_CXX_COMPILER='$CXX'
>> -DMPI_CC_COMPILER=mpicc.mpich
>> -DMPI_CXX_COMPILER=mpicxx.mpich
>> -DCMAKE_CXX_FLAGS='-Wall
>> -DDUNE_AVOID_CAPABILITIES_IS_PARALLEL_DEPRECATION_WARNING'
>> -DCMAKE_CXX_FLAGS_DEBUG='-O0 -ggdb'
>> -DDUNE_SYMLINK_TO_SOURCE_TREE=1
>> -DCMAKE_BUILD_TYPE=Debug
>> -DCMAKE_INSTALL_PREFIX=/home/afshin/dunes/installation2
>> \"" > debug.opts
>>
>>
>>
>> ./dune-common/bin/dunecontrol --opts=debug.opts
>> --builddir=$(pwd)/debug-build all
>>
>> #to install
>>  mkdir /home/afshin/dunes/installation2
>>  ./dune-common/bin/dunecontrol --opts=debug.opts
>> --builddir=$(pwd)/debug-build make install
>>
>>
>> Best,
>> Afshin
>>
>> On Thu, Jun 16, 2016 at 4:59 PM, Jö Fahlke <jorrit at jorrit.de> wrote:
>>
>>> Am Thu, 16. Jun 2016, 12:28:11 +0200 schrieb Afshin Loni:
>>> > I am trying to solve a heat equation in parallel but it seems
>>> impossible
>>> > for me, So here's the story.
>>> > I have the tutorials of the course that took place in March. and
>>> tutorial 3
>>> > is solving the heat equation. basically the tutorial says you can run
>>> the
>>> > code in parallel by simply running the mpirun. as you know the code
>>> checks
>>> > for the mpi with mpihelper and then it prints out e.g. running in
>>> parallel
>>> > on 1 process(es). but when I run the heat equation on two processors it
>>> > prints
>>> >
>>> > running in parallel on 1 process(es)
>>> > running in parallel on 1 process(es)
>>> >
>>> > which basically means the code is running sequentially twice.
>>> > I thought I need to use some flags, so I used the following flags to
>>> > compile:
>>> >
>>> > -DMPI_CC_COMPILER=mpicc.mpich \
>>> > -DMPI_CXX_COMPILER=mpicxx.mpich
>>>
>>> Hi!
>>>
>>> You need to delete your build directory and rebuild completely after
>>> changing
>>> such configuration flags.
>>>
>>> In case you did that already, or in case that did not help:  how exactly
>>> are
>>> you specifying those flags?  E.g. if you specify them in your .opts-file,
>>> please provide it here.
>>>
>>> Regards,
>>> Jö.
>>>
>>> > but I got no change.
>>> > I thought tutorial 3 is incapable of running in parallel so I tried
>>> > tutorial 6 which is about parallelization. But I got the same results.
>>> > MPICH is also installed on my ubuntu 15.10 system.
>>> >
>>> > Any help would be appreciated.
>>> >
>>> > Regards,
>>> > Afshin
>>>
>>> > _______________________________________________
>>> > dune-pdelab mailing list
>>> > dune-pdelab at dune-project.org
>>> > http://lists.dune-project.org/mailman/listinfo/dune-pdelab
>>>
>>>
>>> --
>>> Jorrit (Jö) Fahlke, Institute for Computational und Applied Mathematics,
>>> University of Münster, Orleans-Ring 10, D-48149 Münster
>>> Tel: +49 251 83 35146 Fax: +49 251 83 32729
>>>
>>> If God had intended Man to Smoke, He would have set him on Fire.
>>> -- fortune
>>>
>>
>>
>> _______________________________________________
>> dune-pdelab mailing list
>> dune-pdelab at dune-project.org
>> http://lists.dune-project.org/mailman/listinfo/dune-pdelab
>>
>>
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.dune-project.org/pipermail/dune-pdelab/attachments/20160617/12542bf3/attachment.htm>
-------------- next part --------------
--- going to build dune-common dune-typetree dune-geometry dune-grid dune-localfunctions dune-istl dune-alugrid dune-pdelab dune-heat  ---
--- calling configure for dune-common ---
 cmake -DCMAKE_MODULE_PATH=""  -DCMAKE_DISABLE_FIND_PACKAGE_MPI=FALSE -DUG_ROOT=/home/afshin/Desktop/Test1/external/ug -DCMAKE_C_COMPILER='/usr/bin/gcc' -DCMAKE_CXX_COMPILER='/usr/bin/g++' -DMPI_CC_COMPILER=mpicc.mpich -DMPI_CXX_COMPILER=mpicxx.mpich -DCMAKE_CXX_FLAGS='-Wall -DDUNE_AVOID_CAPABILITIES_IS_PARALLEL_DEPRECATION_WARNING' -DCMAKE_CXX_FLAGS_DEBUG='-O0 -ggdb' -DDUNE_SYMLINK_TO_SOURCE_TREE=1 -DCMAKE_BUILD_TYPE=Debug -DCMAKE_INSTALL_PREFIX=/home/afshin/dunes/installation2 "/home/afshin/Desktop/Test1/dune-common"
-- Performing tests specific to dune-common from file /home/afshin/Desktop/Test1/dune-common/cmake/modules/DuneCommonMacros.cmake.
-- A library with BLAS API found.
-- A library with LAPACK API found.
-- Using scripts from /home/afshin/Desktop/Test1/dune-common/cmake/scripts for creating doxygen stuff.
-- using /home/afshin/Desktop/Test1/dune-common/doc/doxygen/Doxystyle to create doxystyle file
-- Not adding custom target for config.h generation
-- 
-- The following OPTIONAL packages have been found:

 * LATEX
 * UnixCommands
 * Doxygen
 * PkgConfig
 * BLAS
 * LAPACK
 * GMP
 * Inkscape
 * MPI
 * Threads

-- Configuring done
-- Generating done
-- Build files have been written to: /home/afshin/Desktop/Test1/debug-build/dune-common
--- dune-common done ---
--- calling configure for dune-typetree ---
/home/afshin/Desktop/Test1/dune-typetree/lib/dunetypetreeam2cmake.lib for converting options does not exist
 cmake -DCMAKE_MODULE_PATH=""  -DCMAKE_DISABLE_FIND_PACKAGE_MPI=FALSE "-Ddune-common_DIR=/home/afshin/Desktop/Test1/debug-build/dune-common" -DUG_ROOT=/home/afshin/Desktop/Test1/external/ug -DCMAKE_C_COMPILER='/usr/bin/gcc' -DCMAKE_CXX_COMPILER='/usr/bin/g++' -DMPI_CC_COMPILER=mpicc.mpich -DMPI_CXX_COMPILER=mpicxx.mpich -DCMAKE_CXX_FLAGS='-Wall -DDUNE_AVOID_CAPABILITIES_IS_PARALLEL_DEPRECATION_WARNING' -DCMAKE_CXX_FLAGS_DEBUG='-O0 -ggdb' -DDUNE_SYMLINK_TO_SOURCE_TREE=1 -DCMAKE_BUILD_TYPE=Debug -DCMAKE_INSTALL_PREFIX=/home/afshin/dunes/installation2 "/home/afshin/Desktop/Test1/dune-typetree"
-- Dependencies for dune-typetree: dune-common (>= 2.4.1)
-- Performing Test cxx_std_flag_14
-- Performing Test cxx_std_flag_14 - Success
-- Performing Test compiler_supports_cxx14
-- Performing Test compiler_supports_cxx14 - Success
-- Performing Test HAVE_NULLPTR
-- Performing Test HAVE_NULLPTR - Success
-- Performing Test HAVE_NULLPTR_T
-- Performing Test HAVE_NULLPTR_T - Success
-- Performing Test HAS_ATTRIBUTE_UNUSED
-- Performing Test HAS_ATTRIBUTE_UNUSED - Success
-- Performing Test HAS_ATTRIBUTE_DEPRECATED
-- Performing Test HAS_ATTRIBUTE_DEPRECATED - Success
-- Performing Test HAS_ATTRIBUTE_DEPRECATED_MSG
-- Performing Test HAS_ATTRIBUTE_DEPRECATED_MSG - Success
-- Performing Test HAVE_CONSTEXPR
-- Performing Test HAVE_CONSTEXPR - Success
-- Performing Test HAVE_KEYWORD_FINAL
-- Performing Test HAVE_KEYWORD_FINAL - Success
-- Performing Test HAVE_RANGE_BASED_FOR
-- Performing Test HAVE_RANGE_BASED_FOR - Success
-- Performing Test HAVE_NOEXCEPT_SPECIFIER
-- Performing Test HAVE_NOEXCEPT_SPECIFIER - Success
-- Performing Test HAVE_STD_DECLVAL
-- Performing Test HAVE_STD_DECLVAL - Success
-- Performing Test HAVE_IS_INDEXABLE_SUPPORT
-- Performing Test HAVE_IS_INDEXABLE_SUPPORT - Success
-- Looking for include file pthread.h
-- Looking for include file pthread.h - found
-- Looking for pthread_create
-- Looking for pthread_create - not found
-- Check if compiler accepts -pthread
-- Check if compiler accepts -pthread - yes
-- Found Threads: TRUE  
-- Performing Test STDTHREAD_WORKS
-- Performing Test STDTHREAD_WORKS - Success
-- Performing Test HAVE_CXA_DEMANGLE
-- Performing Test HAVE_CXA_DEMANGLE - Success
-- Found MPI_C: /usr/lib/x86_64-linux-gnu/libmpich.so;/usr/lib/x86_64-linux-gnu/libopa.so;/usr/lib/x86_64-linux-gnu/libmpl.so;/usr/lib/x86_64-linux-gnu/librt.so;/usr/lib/libcr.so;/usr/lib/x86_64-linux-gnu/libpthread.so  
-- Found MPI_CXX: /usr/lib/x86_64-linux-gnu/libmpichcxx.so;/usr/lib/x86_64-linux-gnu/libmpich.so;/usr/lib/x86_64-linux-gnu/libopa.so;/usr/lib/x86_64-linux-gnu/libmpl.so;/usr/lib/x86_64-linux-gnu/librt.so;/usr/lib/libcr.so;/usr/lib/x86_64-linux-gnu/libpthread.so  
-- Found MPI_Fortran: /usr/lib/x86_64-linux-gnu/libmpichf90.so;/usr/lib/x86_64-linux-gnu/libmpich.so;/usr/lib/x86_64-linux-gnu/libopa.so;/usr/lib/x86_64-linux-gnu/libmpl.so;/usr/lib/x86_64-linux-gnu/librt.so;/usr/lib/libcr.so;/usr/lib/x86_64-linux-gnu/libpthread.so  
-- Looking for MPI_Finalized
-- Looking for MPI_Finalized - found
-- Performing Test MPI_VERSION_SUPPORTED
-- Performing Test MPI_VERSION_SUPPORTED - Success
-- Detecting Fortran/C Interface
-- Detecting Fortran/C Interface - Found GLOBAL and MODULE mangling
-- Verifying Fortran/CXX Compiler Compatibility
-- Verifying Fortran/CXX Compiler Compatibility - Success
-- Found LATEX: /usr/bin/latex   
-- Found UnixCommands: /bin/bash  
-- Found Doxygen: /usr/bin/doxygen (found version "1.8.9.1") 
-- Found PkgConfig: /usr/bin/pkg-config (found version "0.28") 
-- Performing tests specific to dune-common from file /home/afshin/Desktop/Test1/dune-common/cmake/modules/DuneCommonMacros.cmake.
-- Looking for Fortran sgemm
-- Looking for Fortran sgemm - found
-- A library with BLAS API found.
-- Looking for Fortran cheev
-- Looking for Fortran cheev - found
-- A library with LAPACK API found.
-- Looking for C++ include gmpxx.h
-- Looking for C++ include gmpxx.h - found
-- Looking for __gmpz_abs in /usr/lib/x86_64-linux-gnu/libgmp.so
-- Looking for __gmpz_abs in /usr/lib/x86_64-linux-gnu/libgmp.so - found
-- Found GMP: /usr/include  
-- Looking for sys/mman.h
-- Looking for sys/mman.h - found
-- Performing Test HAVE_MPROTECT
-- Performing Test HAVE_MPROTECT - Success
-- Setting dune-common_INCLUDE_DIRS=/home/afshin/Desktop/Test1/dune-common
-- Setting dune-common_LIBRARIES=dunecommon
-- Performing tests specific to dune-typetree from file /home/afshin/Desktop/Test1/dune-typetree/cmake/modules/DuneTypetreeMacros.cmake.
-- Performing Test HAVE_TEMPLATE_ALIASES
-- Performing Test HAVE_TEMPLATE_ALIASES - Success
-- Found CXXTemplateAliases: 1  
-- Performing Test HAVE_STD_DECLTYPE
-- Performing Test HAVE_STD_DECLTYPE - Success
-- Found CXXDecltype: 1  
-- Performing Test HAVE_GCC___TYPEOF__
-- Performing Test HAVE_GCC___TYPEOF__ - Success
-- Found GCCTypeof: 1  
-- Using scripts from /home/afshin/Desktop/Test1/dune-common/cmake/scripts for creating doxygen stuff.
-- using /home/afshin/Desktop/Test1/dune-common/doc/doxygen/Doxystyle to create doxystyle file
-- Adding custom target for config.h generation
-- 
-- The following OPTIONAL packages have been found:

 * MPI
 * LATEX
 * UnixCommands
 * Doxygen
 * PkgConfig
 * BLAS
 * Threads
 * LAPACK
 * GMP
 * Inkscape
 * CXXTemplateAliases
 * CXXDecltype
 * GCCTypeof

-- The following REQUIRED packages have been found:

 * dune-common

-- Configuring done
-- Generating done
-- Build files have been written to: /home/afshin/Desktop/Test1/debug-build/dune-typetree
--- dune-typetree done ---
--- calling configure for dune-geometry ---
/home/afshin/Desktop/Test1/dune-geometry/lib/dunegeometryam2cmake.lib for converting options does not exist
 cmake -DCMAKE_MODULE_PATH=""  -DCMAKE_DISABLE_FIND_PACKAGE_MPI=FALSE "-Ddune-common_DIR=/home/afshin/Desktop/Test1/debug-build/dune-common" -DUG_ROOT=/home/afshin/Desktop/Test1/external/ug -DCMAKE_C_COMPILER='/usr/bin/gcc' -DCMAKE_CXX_COMPILER='/usr/bin/g++' -DMPI_CC_COMPILER=mpicc.mpich -DMPI_CXX_COMPILER=mpicxx.mpich -DCMAKE_CXX_FLAGS='-Wall -DDUNE_AVOID_CAPABILITIES_IS_PARALLEL_DEPRECATION_WARNING' -DCMAKE_CXX_FLAGS_DEBUG='-O0 -ggdb' -DDUNE_SYMLINK_TO_SOURCE_TREE=1 -DCMAKE_BUILD_TYPE=Debug -DCMAKE_INSTALL_PREFIX=/home/afshin/dunes/installation2 "/home/afshin/Desktop/Test1/dune-geometry"
-- The C compiler identification is GNU 5.2.1
-- The CXX compiler identification is GNU 5.2.1
-- Check for working C compiler: /usr/bin/gcc
-- Check for working C compiler: /usr/bin/gcc -- works
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Detecting C compile features
-- Detecting C compile features - done
-- Check for working CXX compiler: /usr/bin/g++
-- Check for working CXX compiler: /usr/bin/g++ -- works
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- Dependencies for dune-geometry: dune-common (>= 2.4.1)
-- The Fortran compiler identification is GNU
-- Check for working Fortran compiler: /usr/bin/gfortran
-- Check for working Fortran compiler: /usr/bin/gfortran  -- works
-- Detecting Fortran compiler ABI info
-- Detecting Fortran compiler ABI info - done
-- Checking whether /usr/bin/gfortran supports Fortran 90
-- Checking whether /usr/bin/gfortran supports Fortran 90 -- yes
-- Performing Test cxx_std_flag_14
-- Performing Test cxx_std_flag_14 - Success
-- Performing Test compiler_supports_cxx14
-- Performing Test compiler_supports_cxx14 - Success
-- Performing Test HAVE_NULLPTR
-- Performing Test HAVE_NULLPTR - Success
-- Performing Test HAVE_NULLPTR_T
-- Performing Test HAVE_NULLPTR_T - Success
-- Performing Test HAS_ATTRIBUTE_UNUSED
-- Performing Test HAS_ATTRIBUTE_UNUSED - Success
-- Performing Test HAS_ATTRIBUTE_DEPRECATED
-- Performing Test HAS_ATTRIBUTE_DEPRECATED - Success
-- Performing Test HAS_ATTRIBUTE_DEPRECATED_MSG
-- Performing Test HAS_ATTRIBUTE_DEPRECATED_MSG - Success
-- Performing Test HAVE_CONSTEXPR
-- Performing Test HAVE_CONSTEXPR - Success
-- Performing Test HAVE_KEYWORD_FINAL
-- Performing Test HAVE_KEYWORD_FINAL - Success
-- Performing Test HAVE_RANGE_BASED_FOR
-- Performing Test HAVE_RANGE_BASED_FOR - Success
-- Performing Test HAVE_NOEXCEPT_SPECIFIER
-- Performing Test HAVE_NOEXCEPT_SPECIFIER - Success
-- Performing Test HAVE_STD_DECLVAL
-- Performing Test HAVE_STD_DECLVAL - Success
-- Performing Test HAVE_IS_INDEXABLE_SUPPORT
-- Performing Test HAVE_IS_INDEXABLE_SUPPORT - Success
-- Looking for include file pthread.h
-- Looking for include file pthread.h - found
-- Looking for pthread_create
-- Looking for pthread_create - not found
-- Check if compiler accepts -pthread
-- Check if compiler accepts -pthread - yes
-- Found Threads: TRUE  
-- Performing Test STDTHREAD_WORKS
-- Performing Test STDTHREAD_WORKS - Success
-- Performing Test HAVE_CXA_DEMANGLE
-- Performing Test HAVE_CXA_DEMANGLE - Success
-- Found MPI_C: /usr/lib/x86_64-linux-gnu/libmpich.so;/usr/lib/x86_64-linux-gnu/libopa.so;/usr/lib/x86_64-linux-gnu/libmpl.so;/usr/lib/x86_64-linux-gnu/librt.so;/usr/lib/libcr.so;/usr/lib/x86_64-linux-gnu/libpthread.so  
-- Found MPI_CXX: /usr/lib/x86_64-linux-gnu/libmpichcxx.so;/usr/lib/x86_64-linux-gnu/libmpich.so;/usr/lib/x86_64-linux-gnu/libopa.so;/usr/lib/x86_64-linux-gnu/libmpl.so;/usr/lib/x86_64-linux-gnu/librt.so;/usr/lib/libcr.so;/usr/lib/x86_64-linux-gnu/libpthread.so  
-- Found MPI_Fortran: /usr/lib/x86_64-linux-gnu/libmpichf90.so;/usr/lib/x86_64-linux-gnu/libmpich.so;/usr/lib/x86_64-linux-gnu/libopa.so;/usr/lib/x86_64-linux-gnu/libmpl.so;/usr/lib/x86_64-linux-gnu/librt.so;/usr/lib/libcr.so;/usr/lib/x86_64-linux-gnu/libpthread.so  
-- Looking for MPI_Finalized
-- Looking for MPI_Finalized - found
-- Performing Test MPI_VERSION_SUPPORTED
-- Performing Test MPI_VERSION_SUPPORTED - Success
-- Detecting Fortran/C Interface
-- Detecting Fortran/C Interface - Found GLOBAL and MODULE mangling
-- Verifying Fortran/CXX Compiler Compatibility
-- Verifying Fortran/CXX Compiler Compatibility - Success
-- Found LATEX: /usr/bin/latex   
-- Found UnixCommands: /bin/bash  
-- Found Doxygen: /usr/bin/doxygen (found version "1.8.9.1") 
-- Found PkgConfig: /usr/bin/pkg-config (found version "0.28") 
-- Performing tests specific to dune-common from file /home/afshin/Desktop/Test1/dune-common/cmake/modules/DuneCommonMacros.cmake.
-- Looking for Fortran sgemm
-- Looking for Fortran sgemm - found
-- A library with BLAS API found.
-- Looking for Fortran cheev
-- Looking for Fortran cheev - found
-- A library with LAPACK API found.
-- Looking for C++ include gmpxx.h
-- Looking for C++ include gmpxx.h - found
-- Looking for __gmpz_abs in /usr/lib/x86_64-linux-gnu/libgmp.so
-- Looking for __gmpz_abs in /usr/lib/x86_64-linux-gnu/libgmp.so - found
-- Found GMP: /usr/include  
-- Looking for sys/mman.h
-- Looking for sys/mman.h - found
-- Performing Test HAVE_MPROTECT
-- Performing Test HAVE_MPROTECT - Success
-- Setting dune-common_INCLUDE_DIRS=/home/afshin/Desktop/Test1/dune-common
-- Setting dune-common_LIBRARIES=dunecommon
-- Using scripts from /home/afshin/Desktop/Test1/dune-common/cmake/scripts for creating doxygen stuff.
-- using /home/afshin/Desktop/Test1/dune-common/doc/doxygen/Doxystyle to create doxystyle file
-- Adding custom target for config.h generation
-- 
-- The following OPTIONAL packages have been found:

 * MPI
 * LATEX
 * UnixCommands
 * Doxygen
 * PkgConfig
 * BLAS
 * Threads
 * LAPACK
 * GMP
 * Inkscape

-- The following REQUIRED packages have been found:

 * dune-common

-- Configuring done
-- Generating done
-- Build files have been written to: /home/afshin/Desktop/Test1/debug-build/dune-geometry
--- dune-geometry done ---
--- calling configure for dune-grid ---
/home/afshin/Desktop/Test1/dune-geometry/lib/dunegeometryam2cmake.lib for converting options does not exist
 cmake -DCMAKE_MODULE_PATH=""  -DCMAKE_DISABLE_FIND_PACKAGE_MPI=FALSE "-Ddune-common_DIR=/home/afshin/Desktop/Test1/debug-build/dune-common" "-Ddune-geometry_DIR=/home/afshin/Desktop/Test1/debug-build/dune-geometry" -DUG_ROOT=/home/afshin/Desktop/Test1/external/ug -DCMAKE_C_COMPILER='/usr/bin/gcc' -DCMAKE_CXX_COMPILER='/usr/bin/g++' -DMPI_CC_COMPILER=mpicc.mpich -DMPI_CXX_COMPILER=mpicxx.mpich -DCMAKE_CXX_FLAGS='-Wall -DDUNE_AVOID_CAPABILITIES_IS_PARALLEL_DEPRECATION_WARNING' -DCMAKE_CXX_FLAGS_DEBUG='-O0 -ggdb' -DDUNE_SYMLINK_TO_SOURCE_TREE=1 -DCMAKE_BUILD_TYPE=Debug -DCMAKE_INSTALL_PREFIX=/home/afshin/dunes/installation2 "/home/afshin/Desktop/Test1/dune-grid"
-- The C compiler identification is GNU 5.2.1
-- The CXX compiler identification is GNU 5.2.1
-- Check for working C compiler: /usr/bin/gcc
-- Check for working C compiler: /usr/bin/gcc -- works
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Detecting C compile features
-- Detecting C compile features - done
-- Check for working CXX compiler: /usr/bin/g++
-- Check for working CXX compiler: /usr/bin/g++ -- works
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- Dependencies for dune-grid: dune-common (>= 2.4.1);dune-geometry (>= 2.4.1)
-- Dependencies for dune-geometry: dune-common (>= 2.4.1)
-- The Fortran compiler identification is GNU
-- Check for working Fortran compiler: /usr/bin/gfortran
-- Check for working Fortran compiler: /usr/bin/gfortran  -- works
-- Detecting Fortran compiler ABI info
-- Detecting Fortran compiler ABI info - done
-- Checking whether /usr/bin/gfortran supports Fortran 90
-- Checking whether /usr/bin/gfortran supports Fortran 90 -- yes
-- Performing Test cxx_std_flag_14
-- Performing Test cxx_std_flag_14 - Success
-- Performing Test compiler_supports_cxx14
-- Performing Test compiler_supports_cxx14 - Success
-- Performing Test HAVE_NULLPTR
-- Performing Test HAVE_NULLPTR - Success
-- Performing Test HAVE_NULLPTR_T
-- Performing Test HAVE_NULLPTR_T - Success
-- Performing Test HAS_ATTRIBUTE_UNUSED
-- Performing Test HAS_ATTRIBUTE_UNUSED - Success
-- Performing Test HAS_ATTRIBUTE_DEPRECATED
-- Performing Test HAS_ATTRIBUTE_DEPRECATED - Success
-- Performing Test HAS_ATTRIBUTE_DEPRECATED_MSG
-- Performing Test HAS_ATTRIBUTE_DEPRECATED_MSG - Success
-- Performing Test HAVE_CONSTEXPR
-- Performing Test HAVE_CONSTEXPR - Success
-- Performing Test HAVE_KEYWORD_FINAL
-- Performing Test HAVE_KEYWORD_FINAL - Success
-- Performing Test HAVE_RANGE_BASED_FOR
-- Performing Test HAVE_RANGE_BASED_FOR - Success
-- Performing Test HAVE_NOEXCEPT_SPECIFIER
-- Performing Test HAVE_NOEXCEPT_SPECIFIER - Success
-- Performing Test HAVE_STD_DECLVAL
-- Performing Test HAVE_STD_DECLVAL - Success
-- Performing Test HAVE_IS_INDEXABLE_SUPPORT
-- Performing Test HAVE_IS_INDEXABLE_SUPPORT - Success
-- Looking for include file pthread.h
-- Looking for include file pthread.h - found
-- Looking for pthread_create
-- Looking for pthread_create - not found
-- Check if compiler accepts -pthread
-- Check if compiler accepts -pthread - yes
-- Found Threads: TRUE  
-- Performing Test STDTHREAD_WORKS
-- Performing Test STDTHREAD_WORKS - Success
-- Performing Test HAVE_CXA_DEMANGLE
-- Performing Test HAVE_CXA_DEMANGLE - Success
-- Found MPI_C: /usr/lib/x86_64-linux-gnu/libmpich.so;/usr/lib/x86_64-linux-gnu/libopa.so;/usr/lib/x86_64-linux-gnu/libmpl.so;/usr/lib/x86_64-linux-gnu/librt.so;/usr/lib/libcr.so;/usr/lib/x86_64-linux-gnu/libpthread.so  
-- Found MPI_CXX: /usr/lib/x86_64-linux-gnu/libmpichcxx.so;/usr/lib/x86_64-linux-gnu/libmpich.so;/usr/lib/x86_64-linux-gnu/libopa.so;/usr/lib/x86_64-linux-gnu/libmpl.so;/usr/lib/x86_64-linux-gnu/librt.so;/usr/lib/libcr.so;/usr/lib/x86_64-linux-gnu/libpthread.so  
-- Found MPI_Fortran: /usr/lib/x86_64-linux-gnu/libmpichf90.so;/usr/lib/x86_64-linux-gnu/libmpich.so;/usr/lib/x86_64-linux-gnu/libopa.so;/usr/lib/x86_64-linux-gnu/libmpl.so;/usr/lib/x86_64-linux-gnu/librt.so;/usr/lib/libcr.so;/usr/lib/x86_64-linux-gnu/libpthread.so  
-- Looking for MPI_Finalized
-- Looking for MPI_Finalized - found
-- Performing Test MPI_VERSION_SUPPORTED
-- Performing Test MPI_VERSION_SUPPORTED - Success
-- Detecting Fortran/C Interface
-- Detecting Fortran/C Interface - Found GLOBAL and MODULE mangling
-- Verifying Fortran/CXX Compiler Compatibility
-- Verifying Fortran/CXX Compiler Compatibility - Success
-- Found LATEX: /usr/bin/latex   
-- Found UnixCommands: /bin/bash  
-- Found Doxygen: /usr/bin/doxygen (found version "1.8.9.1") 
-- Found PkgConfig: /usr/bin/pkg-config (found version "0.28") 
-- Performing tests specific to dune-common from file /home/afshin/Desktop/Test1/dune-common/cmake/modules/DuneCommonMacros.cmake.
-- Looking for Fortran sgemm
-- Looking for Fortran sgemm - found
-- A library with BLAS API found.
-- Looking for Fortran cheev
-- Looking for Fortran cheev - found
-- A library with LAPACK API found.
-- Looking for C++ include gmpxx.h
-- Looking for C++ include gmpxx.h - found
-- Looking for __gmpz_abs in /usr/lib/x86_64-linux-gnu/libgmp.so
-- Looking for __gmpz_abs in /usr/lib/x86_64-linux-gnu/libgmp.so - found
-- Found GMP: /usr/include  
-- Looking for sys/mman.h
-- Looking for sys/mman.h - found
-- Performing Test HAVE_MPROTECT
-- Performing Test HAVE_MPROTECT - Success
-- Setting dune-common_INCLUDE_DIRS=/home/afshin/Desktop/Test1/dune-common
-- Setting dune-common_LIBRARIES=dunecommon
-- Setting dune-geometry_INCLUDE_DIRS=/home/afshin/Desktop/Test1/dune-geometry
-- Setting dune-geometry_LIBRARIES=dunegeometry
-- Performing tests specific to dune-grid from file /home/afshin/Desktop/Test1/dune-grid/cmake/modules/DuneGridMacros.cmake.
-- Looking for mkstemp
-- Looking for mkstemp - found
-- Looking for metis.h
-- Looking for metis.h - not found
-- Could NOT find METIS (missing:  METIS_INCLUDE_DIR METIS_LIBRARY HAVE_METIS_PARTGRAPHKWAY) 
-- Looking for parmetis.h
-- Looking for parmetis.h - not found
-- Could NOT find ParMETIS (missing:  PARMETIS_INCLUDE_DIR PARMETIS_LIBRARY HAVE_PARMETIS) 
-- checking for module 'alugrid'
--   package 'alugrid' not found
-- checking for module 'alugrid'
--   package 'alugrid' not found
-- Could NOT find ALUGrid (missing:  ALUGRID_VERSION ALUGRID_INCLUDE_PATH ALUGRID_LIB ALUGRID_LIB_PATH ALULIB_FUNCTIONAL HAVE_ALUGRID_SERIAL_H) 
-- Found UG: /home/afshin/Desktop/Test1/external/ug/lib/cmake/ug  
-- Could NOT find OpenGL (missing:  OPENGL_gl_LIBRARY OPENGL_INCLUDE_DIR) 
-- Could NOT find Grape (missing:  X11_FOUND OPENGL_FOUND GRAPE_INCLUDE_DIR GRAPE_LIBRARY _GRAPE_LIB_FUNCTIONAL _GRAPE_HEADER_USABLE) 
-- checking for one of the modules 'psurface'
-- checking for module 'psurface'
--   package 'psurface' not found
-- Could NOT find psurface (missing:  PSURFACE_INCLUDE_DIR PSURFACE_LIBRARY) 
-- Could NOT find AmiraMesh (missing:  AMIRAMESH_INCLUDE_DIR AMIRAMESH_LIBRARY) 
-- Using scripts from /home/afshin/Desktop/Test1/dune-common/cmake/scripts for creating doxygen stuff.
-- using /home/afshin/Desktop/Test1/dune-common/doc/doxygen/Doxystyle to create doxystyle file
-- Adding custom target for config.h generation
-- 
-- The following OPTIONAL packages have been found:

 * MPI
 * LATEX
 * UnixCommands
 * Doxygen
 * PkgConfig
 * BLAS
 * Threads
 * LAPACK
 * GMP
 * Inkscape
 * UG (required version >= 3.11.0)

-- The following REQUIRED packages have been found:

 * dune-common
 * dune-geometry

-- The following features have been disabled:

 * Experimental grid extensions , Enables additional grid features.

-- The following OPTIONAL packages have not been found:

 * METIS
 * ParMETIS
 * ALUGrid
 * Alberta
 * X11
 * OpenGL
 * Grape
 * Psurface
 * AmiraMesh

-- Configuring done
-- Generating done
-- Build files have been written to: /home/afshin/Desktop/Test1/debug-build/dune-grid
--- dune-grid done ---
--- calling configure for dune-localfunctions ---
/home/afshin/Desktop/Test1/dune-geometry/lib/dunegeometryam2cmake.lib for converting options does not exist
/home/afshin/Desktop/Test1/dune-localfunctions/lib/dunelocalfunctionsam2cmake.lib for converting options does not exist
 cmake -DCMAKE_MODULE_PATH=""  -DCMAKE_DISABLE_FIND_PACKAGE_MPI=FALSE "-Ddune-common_DIR=/home/afshin/Desktop/Test1/debug-build/dune-common" "-Ddune-geometry_DIR=/home/afshin/Desktop/Test1/debug-build/dune-geometry" -DUG_ROOT=/home/afshin/Desktop/Test1/external/ug -DCMAKE_C_COMPILER='/usr/bin/gcc' -DCMAKE_CXX_COMPILER='/usr/bin/g++' -DMPI_CC_COMPILER=mpicc.mpich -DMPI_CXX_COMPILER=mpicxx.mpich -DCMAKE_CXX_FLAGS='-Wall -DDUNE_AVOID_CAPABILITIES_IS_PARALLEL_DEPRECATION_WARNING' -DCMAKE_CXX_FLAGS_DEBUG='-O0 -ggdb' -DDUNE_SYMLINK_TO_SOURCE_TREE=1 -DCMAKE_BUILD_TYPE=Debug -DCMAKE_INSTALL_PREFIX=/home/afshin/dunes/installation2 "/home/afshin/Desktop/Test1/dune-localfunctions"
-- The C compiler identification is GNU 5.2.1
-- The CXX compiler identification is GNU 5.2.1
-- Check for working C compiler: /usr/bin/gcc
-- Check for working C compiler: /usr/bin/gcc -- works
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Detecting C compile features
-- Detecting C compile features - done
-- Check for working CXX compiler: /usr/bin/g++
-- Check for working CXX compiler: /usr/bin/g++ -- works
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- Dependencies for dune-localfunctions: dune-geometry (>= 2.4.1)
-- Dependencies for dune-geometry: dune-common (>= 2.4.1)
-- The Fortran compiler identification is GNU
-- Check for working Fortran compiler: /usr/bin/gfortran
-- Check for working Fortran compiler: /usr/bin/gfortran  -- works
-- Detecting Fortran compiler ABI info
-- Detecting Fortran compiler ABI info - done
-- Checking whether /usr/bin/gfortran supports Fortran 90
-- Checking whether /usr/bin/gfortran supports Fortran 90 -- yes
-- Performing Test cxx_std_flag_14
-- Performing Test cxx_std_flag_14 - Success
-- Performing Test compiler_supports_cxx14
-- Performing Test compiler_supports_cxx14 - Success
-- Performing Test HAVE_NULLPTR
-- Performing Test HAVE_NULLPTR - Success
-- Performing Test HAVE_NULLPTR_T
-- Performing Test HAVE_NULLPTR_T - Success
-- Performing Test HAS_ATTRIBUTE_UNUSED
-- Performing Test HAS_ATTRIBUTE_UNUSED - Success
-- Performing Test HAS_ATTRIBUTE_DEPRECATED
-- Performing Test HAS_ATTRIBUTE_DEPRECATED - Success
-- Performing Test HAS_ATTRIBUTE_DEPRECATED_MSG
-- Performing Test HAS_ATTRIBUTE_DEPRECATED_MSG - Success
-- Performing Test HAVE_CONSTEXPR
-- Performing Test HAVE_CONSTEXPR - Success
-- Performing Test HAVE_KEYWORD_FINAL
-- Performing Test HAVE_KEYWORD_FINAL - Success
-- Performing Test HAVE_RANGE_BASED_FOR
-- Performing Test HAVE_RANGE_BASED_FOR - Success
-- Performing Test HAVE_NOEXCEPT_SPECIFIER
-- Performing Test HAVE_NOEXCEPT_SPECIFIER - Success
-- Performing Test HAVE_STD_DECLVAL
-- Performing Test HAVE_STD_DECLVAL - Success
-- Performing Test HAVE_IS_INDEXABLE_SUPPORT
-- Performing Test HAVE_IS_INDEXABLE_SUPPORT - Success
-- Looking for include file pthread.h
-- Looking for include file pthread.h - found
-- Looking for pthread_create
-- Looking for pthread_create - not found
-- Check if compiler accepts -pthread
-- Check if compiler accepts -pthread - yes
-- Found Threads: TRUE  
-- Performing Test STDTHREAD_WORKS
-- Performing Test STDTHREAD_WORKS - Success
-- Performing Test HAVE_CXA_DEMANGLE
-- Performing Test HAVE_CXA_DEMANGLE - Success
-- Found MPI_C: /usr/lib/x86_64-linux-gnu/libmpich.so;/usr/lib/x86_64-linux-gnu/libopa.so;/usr/lib/x86_64-linux-gnu/libmpl.so;/usr/lib/x86_64-linux-gnu/librt.so;/usr/lib/libcr.so;/usr/lib/x86_64-linux-gnu/libpthread.so  
-- Found MPI_CXX: /usr/lib/x86_64-linux-gnu/libmpichcxx.so;/usr/lib/x86_64-linux-gnu/libmpich.so;/usr/lib/x86_64-linux-gnu/libopa.so;/usr/lib/x86_64-linux-gnu/libmpl.so;/usr/lib/x86_64-linux-gnu/librt.so;/usr/lib/libcr.so;/usr/lib/x86_64-linux-gnu/libpthread.so  
-- Found MPI_Fortran: /usr/lib/x86_64-linux-gnu/libmpichf90.so;/usr/lib/x86_64-linux-gnu/libmpich.so;/usr/lib/x86_64-linux-gnu/libopa.so;/usr/lib/x86_64-linux-gnu/libmpl.so;/usr/lib/x86_64-linux-gnu/librt.so;/usr/lib/libcr.so;/usr/lib/x86_64-linux-gnu/libpthread.so  
-- Looking for MPI_Finalized
-- Looking for MPI_Finalized - found
-- Performing Test MPI_VERSION_SUPPORTED
-- Performing Test MPI_VERSION_SUPPORTED - Success
-- Detecting Fortran/C Interface
-- Detecting Fortran/C Interface - Found GLOBAL and MODULE mangling
-- Verifying Fortran/CXX Compiler Compatibility
-- Verifying Fortran/CXX Compiler Compatibility - Success
-- Found LATEX: /usr/bin/latex   
-- Found UnixCommands: /bin/bash  
-- Found Doxygen: /usr/bin/doxygen (found version "1.8.9.1") 
-- Found PkgConfig: /usr/bin/pkg-config (found version "0.28") 
-- Performing tests specific to dune-common from file /home/afshin/Desktop/Test1/dune-common/cmake/modules/DuneCommonMacros.cmake.
-- Looking for Fortran sgemm
-- Looking for Fortran sgemm - found
-- A library with BLAS API found.
-- Looking for Fortran cheev
-- Looking for Fortran cheev - found
-- A library with LAPACK API found.
-- Looking for C++ include gmpxx.h
-- Looking for C++ include gmpxx.h - found
-- Looking for __gmpz_abs in /usr/lib/x86_64-linux-gnu/libgmp.so
-- Looking for __gmpz_abs in /usr/lib/x86_64-linux-gnu/libgmp.so - found
-- Found GMP: /usr/include  
-- Looking for sys/mman.h
-- Looking for sys/mman.h - found
-- Performing Test HAVE_MPROTECT
-- Performing Test HAVE_MPROTECT - Success
-- Setting dune-common_INCLUDE_DIRS=/home/afshin/Desktop/Test1/dune-common
-- Setting dune-common_LIBRARIES=dunecommon
-- Setting dune-geometry_INCLUDE_DIRS=/home/afshin/Desktop/Test1/dune-geometry
-- Setting dune-geometry_LIBRARIES=dunegeometry
-- Performing tests specific to dune-localfunctions from file /home/afshin/Desktop/Test1/dune-localfunctions/cmake/modules/DuneLocalfunctionsMacros.cmake.
-- Using scripts from /home/afshin/Desktop/Test1/dune-common/cmake/scripts for creating doxygen stuff.
-- using /home/afshin/Desktop/Test1/dune-common/doc/doxygen/Doxystyle to create doxystyle file
-- Adding custom target for config.h generation
-- 
-- The following OPTIONAL packages have been found:

 * MPI
 * LATEX
 * UnixCommands
 * Doxygen
 * PkgConfig
 * BLAS
 * Threads
 * LAPACK
 * GMP
 * Inkscape

-- The following REQUIRED packages have been found:

 * dune-common
 * dune-geometry

-- Configuring done
-- Generating done
-- Build files have been written to: /home/afshin/Desktop/Test1/debug-build/dune-localfunctions
--- dune-localfunctions done ---
--- calling configure for dune-istl ---
 cmake -DCMAKE_MODULE_PATH=""  -DCMAKE_DISABLE_FIND_PACKAGE_MPI=FALSE "-Ddune-common_DIR=/home/afshin/Desktop/Test1/debug-build/dune-common" -DUG_ROOT=/home/afshin/Desktop/Test1/external/ug -DCMAKE_C_COMPILER='/usr/bin/gcc' -DCMAKE_CXX_COMPILER='/usr/bin/g++' -DMPI_CC_COMPILER=mpicc.mpich -DMPI_CXX_COMPILER=mpicxx.mpich -DCMAKE_CXX_FLAGS='-Wall -DDUNE_AVOID_CAPABILITIES_IS_PARALLEL_DEPRECATION_WARNING' -DCMAKE_CXX_FLAGS_DEBUG='-O0 -ggdb' -DDUNE_SYMLINK_TO_SOURCE_TREE=1 -DCMAKE_BUILD_TYPE=Debug -DCMAKE_INSTALL_PREFIX=/home/afshin/dunes/installation2 "/home/afshin/Desktop/Test1/dune-istl"
-- The C compiler identification is GNU 5.2.1
-- The CXX compiler identification is GNU 5.2.1
-- Check for working C compiler: /usr/bin/gcc
-- Check for working C compiler: /usr/bin/gcc -- works
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Detecting C compile features
-- Detecting C compile features - done
-- Check for working CXX compiler: /usr/bin/g++
-- Check for working CXX compiler: /usr/bin/g++ -- works
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- Dependencies for dune-istl: dune-common (>= 2.4.1)
-- The Fortran compiler identification is GNU
-- Check for working Fortran compiler: /usr/bin/gfortran
-- Check for working Fortran compiler: /usr/bin/gfortran  -- works
-- Detecting Fortran compiler ABI info
-- Detecting Fortran compiler ABI info - done
-- Checking whether /usr/bin/gfortran supports Fortran 90
-- Checking whether /usr/bin/gfortran supports Fortran 90 -- yes
-- Performing Test cxx_std_flag_14
-- Performing Test cxx_std_flag_14 - Success
-- Performing Test compiler_supports_cxx14
-- Performing Test compiler_supports_cxx14 - Success
-- Performing Test HAVE_NULLPTR
-- Performing Test HAVE_NULLPTR - Success
-- Performing Test HAVE_NULLPTR_T
-- Performing Test HAVE_NULLPTR_T - Success
-- Performing Test HAS_ATTRIBUTE_UNUSED
-- Performing Test HAS_ATTRIBUTE_UNUSED - Success
-- Performing Test HAS_ATTRIBUTE_DEPRECATED
-- Performing Test HAS_ATTRIBUTE_DEPRECATED - Success
-- Performing Test HAS_ATTRIBUTE_DEPRECATED_MSG
-- Performing Test HAS_ATTRIBUTE_DEPRECATED_MSG - Success
-- Performing Test HAVE_CONSTEXPR
-- Performing Test HAVE_CONSTEXPR - Success
-- Performing Test HAVE_KEYWORD_FINAL
-- Performing Test HAVE_KEYWORD_FINAL - Success
-- Performing Test HAVE_RANGE_BASED_FOR
-- Performing Test HAVE_RANGE_BASED_FOR - Success
-- Performing Test HAVE_NOEXCEPT_SPECIFIER
-- Performing Test HAVE_NOEXCEPT_SPECIFIER - Success
-- Performing Test HAVE_STD_DECLVAL
-- Performing Test HAVE_STD_DECLVAL - Success
-- Performing Test HAVE_IS_INDEXABLE_SUPPORT
-- Performing Test HAVE_IS_INDEXABLE_SUPPORT - Success
-- Looking for include file pthread.h
-- Looking for include file pthread.h - found
-- Looking for pthread_create
-- Looking for pthread_create - not found
-- Check if compiler accepts -pthread
-- Check if compiler accepts -pthread - yes
-- Found Threads: TRUE  
-- Performing Test STDTHREAD_WORKS
-- Performing Test STDTHREAD_WORKS - Success
-- Performing Test HAVE_CXA_DEMANGLE
-- Performing Test HAVE_CXA_DEMANGLE - Success
-- Found MPI_C: /usr/lib/x86_64-linux-gnu/libmpich.so;/usr/lib/x86_64-linux-gnu/libopa.so;/usr/lib/x86_64-linux-gnu/libmpl.so;/usr/lib/x86_64-linux-gnu/librt.so;/usr/lib/libcr.so;/usr/lib/x86_64-linux-gnu/libpthread.so  
-- Found MPI_CXX: /usr/lib/x86_64-linux-gnu/libmpichcxx.so;/usr/lib/x86_64-linux-gnu/libmpich.so;/usr/lib/x86_64-linux-gnu/libopa.so;/usr/lib/x86_64-linux-gnu/libmpl.so;/usr/lib/x86_64-linux-gnu/librt.so;/usr/lib/libcr.so;/usr/lib/x86_64-linux-gnu/libpthread.so  
-- Found MPI_Fortran: /usr/lib/x86_64-linux-gnu/libmpichf90.so;/usr/lib/x86_64-linux-gnu/libmpich.so;/usr/lib/x86_64-linux-gnu/libopa.so;/usr/lib/x86_64-linux-gnu/libmpl.so;/usr/lib/x86_64-linux-gnu/librt.so;/usr/lib/libcr.so;/usr/lib/x86_64-linux-gnu/libpthread.so  
-- Looking for MPI_Finalized
-- Looking for MPI_Finalized - found
-- Performing Test MPI_VERSION_SUPPORTED
-- Performing Test MPI_VERSION_SUPPORTED - Success
-- Detecting Fortran/C Interface
-- Detecting Fortran/C Interface - Found GLOBAL and MODULE mangling
-- Verifying Fortran/CXX Compiler Compatibility
-- Verifying Fortran/CXX Compiler Compatibility - Success
-- Found LATEX: /usr/bin/latex   
-- Found UnixCommands: /bin/bash  
-- Found Doxygen: /usr/bin/doxygen (found version "1.8.9.1") 
-- Found PkgConfig: /usr/bin/pkg-config (found version "0.28") 
-- Performing tests specific to dune-common from file /home/afshin/Desktop/Test1/dune-common/cmake/modules/DuneCommonMacros.cmake.
-- Looking for Fortran sgemm
-- Looking for Fortran sgemm - found
-- A library with BLAS API found.
-- Looking for Fortran cheev
-- Looking for Fortran cheev - found
-- A library with LAPACK API found.
-- Looking for C++ include gmpxx.h
-- Looking for C++ include gmpxx.h - found
-- Looking for __gmpz_abs in /usr/lib/x86_64-linux-gnu/libgmp.so
-- Looking for __gmpz_abs in /usr/lib/x86_64-linux-gnu/libgmp.so - found
-- Found GMP: /usr/include  
-- Looking for sys/mman.h
-- Looking for sys/mman.h - found
-- Performing Test HAVE_MPROTECT
-- Performing Test HAVE_MPROTECT - Success
-- Setting dune-common_INCLUDE_DIRS=/home/afshin/Desktop/Test1/dune-common
-- Setting dune-common_LIBRARIES=dunecommon
-- Performing tests specific to dune-istl from file /home/afshin/Desktop/Test1/dune-istl/cmake/modules/DuneIstlMacros.cmake.
-- Could NOT find Boost
-- Could NOT find Boost
-- Skipping check for Boost::FUSION as Boost is not available.
-- Looking for metis.h
-- Looking for metis.h - not found
-- Could NOT find METIS (missing:  METIS_INCLUDE_DIR METIS_LIBRARY HAVE_METIS_PARTGRAPHKWAY) 
-- Looking for parmetis.h
-- Looking for parmetis.h - not found
-- Could NOT find ParMETIS (missing:  PARMETIS_INCLUDE_DIR PARMETIS_LIBRARY HAVE_PARMETIS) 
-- Performing Test HAVE_MEM_USAGE_T_EXPANSIONS
-- Performing Test HAVE_MEM_USAGE_T_EXPANSIONS - Failed
-- Performing Test SUPERLU_MIN_VERSION_4_3
-- Performing Test SUPERLU_MIN_VERSION_4_3 - Success
-- Found SuperLU: /usr/include/superlu  
-- Could NOT find SuiteSparse (missing:  SUITESPARSE_INCLUDE_DIR SUITESPARSE_LIBRARY) 
-- Could NOT find UMFPack (missing:  UMFPACK_INCLUDE_DIRS UMFPACK_LIBRARIES) 
-- Using scripts from /home/afshin/Desktop/Test1/dune-common/cmake/scripts for creating doxygen stuff.
-- using /home/afshin/Desktop/Test1/dune-common/doc/doxygen/Doxystyle to create doxystyle file
failed to create symbolic link '/home/afshin/Desktop/Test1/debug-build/dune-istl/lib/src_dir': No such file or directory
-- Adding custom target for config.h generation
-- 
-- The following OPTIONAL packages have been found:

 * LATEX
 * UnixCommands
 * Doxygen
 * PkgConfig
 * LAPACK
 * GMP
 * Inkscape
 * SuperLU
 * MPI
 * Threads

-- The following REQUIRED packages have been found:

 * dune-common

-- The following OPTIONAL packages have not been found:

 * Boost
 * BoostFusion
 * METIS
 * ParMETIS
 * SuiteSparse
 * UMFPack

-- Configuring done
-- Generating done
-- Build files have been written to: /home/afshin/Desktop/Test1/debug-build/dune-istl
--- dune-istl done ---
--- calling configure for dune-alugrid ---
/home/afshin/Desktop/Test1/dune-geometry/lib/dunegeometryam2cmake.lib for converting options does not exist
 cmake -DCMAKE_MODULE_PATH=""  -DCMAKE_DISABLE_FIND_PACKAGE_MPI=FALSE "-Ddune-common_DIR=/home/afshin/Desktop/Test1/debug-build/dune-common" "-Ddune-geometry_DIR=/home/afshin/Desktop/Test1/debug-build/dune-geometry" "-Ddune-grid_DIR=/home/afshin/Desktop/Test1/debug-build/dune-grid" -DUG_ROOT=/home/afshin/Desktop/Test1/external/ug -DCMAKE_C_COMPILER='/usr/bin/gcc' -DCMAKE_CXX_COMPILER='/usr/bin/g++' -DMPI_CC_COMPILER=mpicc.mpich -DMPI_CXX_COMPILER=mpicxx.mpich -DCMAKE_CXX_FLAGS='-Wall -DDUNE_AVOID_CAPABILITIES_IS_PARALLEL_DEPRECATION_WARNING' -DCMAKE_CXX_FLAGS_DEBUG='-O0 -ggdb' -DDUNE_SYMLINK_TO_SOURCE_TREE=1 -DCMAKE_BUILD_TYPE=Debug -DCMAKE_INSTALL_PREFIX=/home/afshin/dunes/installation2 "/home/afshin/Desktop/Test1/dune-alugrid"
-- The C compiler identification is GNU 5.2.1
-- The CXX compiler identification is GNU 5.2.1
-- Check for working C compiler: /usr/bin/gcc
-- Check for working C compiler: /usr/bin/gcc -- works
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Detecting C compile features
-- Detecting C compile features - done
-- Check for working CXX compiler: /usr/bin/g++
-- Check for working CXX compiler: /usr/bin/g++ -- works
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- Dependencies for dune-alugrid: dune-grid (>= 2.4)
-- Dependencies for dune-grid: dune-common (>= 2.4.1);dune-geometry (>= 2.4.1)
-- Dependencies for dune-geometry: dune-common (>= 2.4.1)
-- The Fortran compiler identification is GNU
-- Check for working Fortran compiler: /usr/bin/gfortran
-- Check for working Fortran compiler: /usr/bin/gfortran  -- works
-- Detecting Fortran compiler ABI info
-- Detecting Fortran compiler ABI info - done
-- Checking whether /usr/bin/gfortran supports Fortran 90
-- Checking whether /usr/bin/gfortran supports Fortran 90 -- yes
-- Performing Test cxx_std_flag_14
-- Performing Test cxx_std_flag_14 - Success
-- Performing Test compiler_supports_cxx14
-- Performing Test compiler_supports_cxx14 - Success
-- Performing Test HAVE_NULLPTR
-- Performing Test HAVE_NULLPTR - Success
-- Performing Test HAVE_NULLPTR_T
-- Performing Test HAVE_NULLPTR_T - Success
-- Performing Test HAS_ATTRIBUTE_UNUSED
-- Performing Test HAS_ATTRIBUTE_UNUSED - Success
-- Performing Test HAS_ATTRIBUTE_DEPRECATED
-- Performing Test HAS_ATTRIBUTE_DEPRECATED - Success
-- Performing Test HAS_ATTRIBUTE_DEPRECATED_MSG
-- Performing Test HAS_ATTRIBUTE_DEPRECATED_MSG - Success
-- Performing Test HAVE_CONSTEXPR
-- Performing Test HAVE_CONSTEXPR - Success
-- Performing Test HAVE_KEYWORD_FINAL
-- Performing Test HAVE_KEYWORD_FINAL - Success
-- Performing Test HAVE_RANGE_BASED_FOR
-- Performing Test HAVE_RANGE_BASED_FOR - Success
-- Performing Test HAVE_NOEXCEPT_SPECIFIER
-- Performing Test HAVE_NOEXCEPT_SPECIFIER - Success
-- Performing Test HAVE_STD_DECLVAL
-- Performing Test HAVE_STD_DECLVAL - Success
-- Performing Test HAVE_IS_INDEXABLE_SUPPORT
-- Performing Test HAVE_IS_INDEXABLE_SUPPORT - Success
-- Looking for include file pthread.h
-- Looking for include file pthread.h - found
-- Looking for pthread_create
-- Looking for pthread_create - not found
-- Check if compiler accepts -pthread
-- Check if compiler accepts -pthread - yes
-- Found Threads: TRUE  
-- Performing Test STDTHREAD_WORKS
-- Performing Test STDTHREAD_WORKS - Success
-- Performing Test HAVE_CXA_DEMANGLE
-- Performing Test HAVE_CXA_DEMANGLE - Success
-- Found MPI_C: /usr/lib/x86_64-linux-gnu/libmpich.so;/usr/lib/x86_64-linux-gnu/libopa.so;/usr/lib/x86_64-linux-gnu/libmpl.so;/usr/lib/x86_64-linux-gnu/librt.so;/usr/lib/libcr.so;/usr/lib/x86_64-linux-gnu/libpthread.so  
-- Found MPI_CXX: /usr/lib/x86_64-linux-gnu/libmpichcxx.so;/usr/lib/x86_64-linux-gnu/libmpich.so;/usr/lib/x86_64-linux-gnu/libopa.so;/usr/lib/x86_64-linux-gnu/libmpl.so;/usr/lib/x86_64-linux-gnu/librt.so;/usr/lib/libcr.so;/usr/lib/x86_64-linux-gnu/libpthread.so  
-- Found MPI_Fortran: /usr/lib/x86_64-linux-gnu/libmpichf90.so;/usr/lib/x86_64-linux-gnu/libmpich.so;/usr/lib/x86_64-linux-gnu/libopa.so;/usr/lib/x86_64-linux-gnu/libmpl.so;/usr/lib/x86_64-linux-gnu/librt.so;/usr/lib/libcr.so;/usr/lib/x86_64-linux-gnu/libpthread.so  
-- Looking for MPI_Finalized
-- Looking for MPI_Finalized - found
-- Performing Test MPI_VERSION_SUPPORTED
-- Performing Test MPI_VERSION_SUPPORTED - Success
-- Detecting Fortran/C Interface
-- Detecting Fortran/C Interface - Found GLOBAL and MODULE mangling
-- Verifying Fortran/CXX Compiler Compatibility
-- Verifying Fortran/CXX Compiler Compatibility - Success
-- Found LATEX: /usr/bin/latex   
-- Found UnixCommands: /bin/bash  
-- Found Doxygen: /usr/bin/doxygen (found version "1.8.9.1") 
-- Found PkgConfig: /usr/bin/pkg-config (found version "0.28") 
-- Performing tests specific to dune-common from file /home/afshin/Desktop/Test1/dune-common/cmake/modules/DuneCommonMacros.cmake.
-- Looking for Fortran sgemm
-- Looking for Fortran sgemm - found
-- A library with BLAS API found.
-- Looking for Fortran cheev
-- Looking for Fortran cheev - found
-- A library with LAPACK API found.
-- Looking for C++ include gmpxx.h
-- Looking for C++ include gmpxx.h - found
-- Looking for __gmpz_abs in /usr/lib/x86_64-linux-gnu/libgmp.so
-- Looking for __gmpz_abs in /usr/lib/x86_64-linux-gnu/libgmp.so - found
-- Found GMP: /usr/include  
-- Looking for sys/mman.h
-- Looking for sys/mman.h - found
-- Performing Test HAVE_MPROTECT
-- Performing Test HAVE_MPROTECT - Success
-- Setting dune-common_INCLUDE_DIRS=/home/afshin/Desktop/Test1/dune-common
-- Setting dune-common_LIBRARIES=dunecommon
-- Setting dune-geometry_INCLUDE_DIRS=/home/afshin/Desktop/Test1/dune-geometry
-- Setting dune-geometry_LIBRARIES=dunegeometry
-- Performing tests specific to dune-grid from file /home/afshin/Desktop/Test1/dune-grid/cmake/modules/DuneGridMacros.cmake.
-- Looking for mkstemp
-- Looking for mkstemp - found
-- Looking for metis.h
-- Looking for metis.h - not found
-- Could NOT find METIS (missing:  METIS_INCLUDE_DIR METIS_LIBRARY HAVE_METIS_PARTGRAPHKWAY) 
-- Looking for parmetis.h
-- Looking for parmetis.h - not found
-- Could NOT find ParMETIS (missing:  PARMETIS_INCLUDE_DIR PARMETIS_LIBRARY HAVE_PARMETIS) 
-- checking for module 'alugrid'
--   package 'alugrid' not found
-- checking for module 'alugrid'
--   package 'alugrid' not found
-- Could NOT find ALUGrid (missing:  ALUGRID_VERSION ALUGRID_INCLUDE_PATH ALUGRID_LIB ALUGRID_LIB_PATH ALULIB_FUNCTIONAL HAVE_ALUGRID_SERIAL_H) 
-- Found UG: /home/afshin/Desktop/Test1/external/ug/lib/cmake/ug  
-- Could NOT find OpenGL (missing:  OPENGL_gl_LIBRARY OPENGL_INCLUDE_DIR) 
-- Could NOT find Grape (missing:  X11_FOUND OPENGL_FOUND GRAPE_INCLUDE_DIR GRAPE_LIBRARY _GRAPE_LIB_FUNCTIONAL _GRAPE_HEADER_USABLE) 
-- checking for one of the modules 'psurface'
-- checking for module 'psurface'
--   package 'psurface' not found
-- Could NOT find psurface (missing:  PSURFACE_INCLUDE_DIR PSURFACE_LIBRARY) 
-- Could NOT find AmiraMesh (missing:  AMIRAMESH_INCLUDE_DIR AMIRAMESH_LIBRARY) 
-- Setting dune-grid_INCLUDE_DIRS=/home/afshin/Desktop/Test1/dune-grid
-- Setting dune-grid_LIBRARIES=dunegrid
-- Performing tests specific to dune-alugrid from file /home/afshin/Desktop/Test1/dune-alugrid/cmake/modules/DuneAlugridMacros.cmake.
-- Could NOT find ZLIB (missing:  ZLIB_LIBRARY ZLIB_INCLUDE_DIR) 
-- Looking for include file sion.h
-- Looking for include file sion.h - not found
-- Could NOT find SIONlib (missing:  SIONLIB_INCLUDE_DIR SIONLIB_LIBRARY SIONLIB_HEADER_USABLE SIONLIB_LIB_WORKS SIONLIB_LIB_SIONSER_WORKS) 
-- Could NOT find DLMalloc (missing:  DLMALLOC_INCLUDE_DIR DLMALLOC_SOURCE_INCLUDE) 
-- Could NOT find PTScotch (missing:  PTSCOTCH_INCLUDE_DIR PTSCOTCH_LIBRARY SCOTCH_LIBRARY PTSCOTCHERR_LIBRARY) 
-- Performing Test DUNE_CV_PTHREAD_TLS_COMPILES
-- Performing Test DUNE_CV_PTHREAD_TLS_COMPILES - Failed
-- Using scripts from /home/afshin/Desktop/Test1/dune-common/cmake/scripts for creating doxygen stuff.
-- using /home/afshin/Desktop/Test1/dune-common/doc/doxygen/Doxystyle to create doxystyle file
-- Adding custom target for config.h generation
-- 
-- The following OPTIONAL packages have been found:

 * LATEX
 * UnixCommands
 * Doxygen
 * PkgConfig
 * BLAS
 * LAPACK
 * GMP
 * Inkscape
 * UG (required version >= 3.11.0)
 * MPI
 * Threads

-- The following REQUIRED packages have been found:

 * dune-common
 * dune-grid
 * dune-geometry

-- The following features have been disabled:

 * Experimental grid extensions , Enables additional grid features.

-- The following OPTIONAL packages have not been found:

 * METIS
 * ParMETIS
 * ALUGrid
 * Alberta
 * X11
 * OpenGL
 * Grape
 * Psurface
 * AmiraMesh
 * ZLIB
 * SIONlib
 * DLMalloc
 * PTScotch
 * ZOLTAN

-- Configuring done
-- Generating done
-- Build files have been written to: /home/afshin/Desktop/Test1/debug-build/dune-alugrid
--- dune-alugrid done ---
--- calling configure for dune-pdelab ---
/home/afshin/Desktop/Test1/dune-geometry/lib/dunegeometryam2cmake.lib for converting options does not exist
/home/afshin/Desktop/Test1/dune-localfunctions/lib/dunelocalfunctionsam2cmake.lib for converting options does not exist
/home/afshin/Desktop/Test1/dune-typetree/lib/dunetypetreeam2cmake.lib for converting options does not exist
/home/afshin/Desktop/Test1/dune-pdelab/lib/dunepdelabam2cmake.lib for converting options does not exist
 cmake -DCMAKE_MODULE_PATH=""  -DCMAKE_DISABLE_FIND_PACKAGE_MPI=FALSE "-Ddune-common_DIR=/home/afshin/Desktop/Test1/debug-build/dune-common" "-Ddune-geometry_DIR=/home/afshin/Desktop/Test1/debug-build/dune-geometry" "-Ddune-grid_DIR=/home/afshin/Desktop/Test1/debug-build/dune-grid" "-Ddune-localfunctions_DIR=/home/afshin/Desktop/Test1/debug-build/dune-localfunctions" "-Ddune-istl_DIR=/home/afshin/Desktop/Test1/debug-build/dune-istl" "-Ddune-typetree_DIR=/home/afshin/Desktop/Test1/debug-build/dune-typetree" "-Ddune-alugrid_DIR=/home/afshin/Desktop/Test1/debug-build/dune-alugrid" -DUG_ROOT=/home/afshin/Desktop/Test1/external/ug -DCMAKE_C_COMPILER='/usr/bin/gcc' -DCMAKE_CXX_COMPILER='/usr/bin/g++' -DMPI_CC_COMPILER=mpicc.mpich -DMPI_CXX_COMPILER=mpicxx.mpich -DCMAKE_CXX_FLAGS='-Wall -DDUNE_AVOID_CAPABILITIES_IS_PARALLEL_DEPRECATION_WARNING' -DCMAKE_CXX_FLAGS_DEBUG='-O0 -ggdb' -DDUNE_SYMLINK_TO_SOURCE_TREE=1 -DCMAKE_BUILD_TYPE=Debug -DCMAKE_INSTALL_PREFIX=/home/afshin/dunes/installation2 "/home/afshin/Desktop/Test1/dune-pdelab"
-- The C compiler identification is GNU 5.2.1
-- The CXX compiler identification is GNU 5.2.1
-- Check for working C compiler: /usr/bin/gcc
-- Check for working C compiler: /usr/bin/gcc -- works
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Detecting C compile features
-- Detecting C compile features - done
-- Check for working CXX compiler: /usr/bin/g++
-- Check for working CXX compiler: /usr/bin/g++ -- works
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- Dependencies for dune-pdelab: dune-common (>= 2.4.1);dune-geometry (>= 2.4.1);dune-grid (>= 2.4.1);dune-localfunctions (>= 2.4.1);dune-istl (>= 2.4.1);dune-typetree (>= 2.4.1)
-- Suggestions for dune-pdelab: dune-alugrid
-- Dependencies for dune-geometry: dune-common (>= 2.4.1)
-- Dependencies for dune-grid: dune-common (>= 2.4.1);dune-geometry (>= 2.4.1)
-- Dependencies for dune-localfunctions: dune-geometry (>= 2.4.1)
-- Dependencies for dune-istl: dune-common (>= 2.4.1)
-- Dependencies for dune-typetree: dune-common (>= 2.4.1)
-- Dependencies for dune-alugrid: dune-grid (>= 2.4)
-- Dependencies for dune-geometry: dune-common (>= 2.4.1)
-- Dependencies for dune-grid: dune-common (>= 2.4.1);dune-geometry (>= 2.4.1)
-- Dependencies for dune-geometry: dune-common (>= 2.4.1)
-- The Fortran compiler identification is GNU
-- Check for working Fortran compiler: /usr/bin/gfortran
-- Check for working Fortran compiler: /usr/bin/gfortran  -- works
-- Detecting Fortran compiler ABI info
-- Detecting Fortran compiler ABI info - done
-- Checking whether /usr/bin/gfortran supports Fortran 90
-- Checking whether /usr/bin/gfortran supports Fortran 90 -- yes
-- Performing Test cxx_std_flag_14
-- Performing Test cxx_std_flag_14 - Success
-- Performing Test compiler_supports_cxx14
-- Performing Test compiler_supports_cxx14 - Success
-- Performing Test HAVE_NULLPTR
-- Performing Test HAVE_NULLPTR - Success
-- Performing Test HAVE_NULLPTR_T
-- Performing Test HAVE_NULLPTR_T - Success
-- Performing Test HAS_ATTRIBUTE_UNUSED
-- Performing Test HAS_ATTRIBUTE_UNUSED - Success
-- Performing Test HAS_ATTRIBUTE_DEPRECATED
-- Performing Test HAS_ATTRIBUTE_DEPRECATED - Success
-- Performing Test HAS_ATTRIBUTE_DEPRECATED_MSG
-- Performing Test HAS_ATTRIBUTE_DEPRECATED_MSG - Success
-- Performing Test HAVE_CONSTEXPR
-- Performing Test HAVE_CONSTEXPR - Success
-- Performing Test HAVE_KEYWORD_FINAL
-- Performing Test HAVE_KEYWORD_FINAL - Success
-- Performing Test HAVE_RANGE_BASED_FOR
-- Performing Test HAVE_RANGE_BASED_FOR - Success
-- Performing Test HAVE_NOEXCEPT_SPECIFIER
-- Performing Test HAVE_NOEXCEPT_SPECIFIER - Success
-- Performing Test HAVE_STD_DECLVAL
-- Performing Test HAVE_STD_DECLVAL - Success
-- Performing Test HAVE_IS_INDEXABLE_SUPPORT
-- Performing Test HAVE_IS_INDEXABLE_SUPPORT - Success
-- Looking for include file pthread.h
-- Looking for include file pthread.h - found
-- Looking for pthread_create
-- Looking for pthread_create - not found
-- Check if compiler accepts -pthread
-- Check if compiler accepts -pthread - yes
-- Found Threads: TRUE  
-- Performing Test STDTHREAD_WORKS
-- Performing Test STDTHREAD_WORKS - Success
-- Performing Test HAVE_CXA_DEMANGLE
-- Performing Test HAVE_CXA_DEMANGLE - Success
-- Found MPI_C: /usr/lib/x86_64-linux-gnu/libmpich.so;/usr/lib/x86_64-linux-gnu/libopa.so;/usr/lib/x86_64-linux-gnu/libmpl.so;/usr/lib/x86_64-linux-gnu/librt.so;/usr/lib/libcr.so;/usr/lib/x86_64-linux-gnu/libpthread.so  
-- Found MPI_CXX: /usr/lib/x86_64-linux-gnu/libmpichcxx.so;/usr/lib/x86_64-linux-gnu/libmpich.so;/usr/lib/x86_64-linux-gnu/libopa.so;/usr/lib/x86_64-linux-gnu/libmpl.so;/usr/lib/x86_64-linux-gnu/librt.so;/usr/lib/libcr.so;/usr/lib/x86_64-linux-gnu/libpthread.so  
-- Found MPI_Fortran: /usr/lib/x86_64-linux-gnu/libmpichf90.so;/usr/lib/x86_64-linux-gnu/libmpich.so;/usr/lib/x86_64-linux-gnu/libopa.so;/usr/lib/x86_64-linux-gnu/libmpl.so;/usr/lib/x86_64-linux-gnu/librt.so;/usr/lib/libcr.so;/usr/lib/x86_64-linux-gnu/libpthread.so  
-- Looking for MPI_Finalized
-- Looking for MPI_Finalized - found
-- Performing Test MPI_VERSION_SUPPORTED
-- Performing Test MPI_VERSION_SUPPORTED - Success
-- Detecting Fortran/C Interface
-- Detecting Fortran/C Interface - Found GLOBAL and MODULE mangling
-- Verifying Fortran/CXX Compiler Compatibility
-- Verifying Fortran/CXX Compiler Compatibility - Success
-- Found LATEX: /usr/bin/latex   
-- Found UnixCommands: /bin/bash  
-- Found Doxygen: /usr/bin/doxygen (found version "1.8.9.1") 
-- Found PkgConfig: /usr/bin/pkg-config (found version "0.28") 
-- Performing tests specific to dune-common from file /home/afshin/Desktop/Test1/dune-common/cmake/modules/DuneCommonMacros.cmake.
-- Looking for Fortran sgemm
-- Looking for Fortran sgemm - found
-- A library with BLAS API found.
-- Looking for Fortran cheev
-- Looking for Fortran cheev - found
-- A library with LAPACK API found.
-- Looking for C++ include gmpxx.h
-- Looking for C++ include gmpxx.h - found
-- Looking for __gmpz_abs in /usr/lib/x86_64-linux-gnu/libgmp.so
-- Looking for __gmpz_abs in /usr/lib/x86_64-linux-gnu/libgmp.so - found
-- Found GMP: /usr/include  
-- Looking for sys/mman.h
-- Looking for sys/mman.h - found
-- Performing Test HAVE_MPROTECT
-- Performing Test HAVE_MPROTECT - Success
-- Setting dune-common_INCLUDE_DIRS=/home/afshin/Desktop/Test1/dune-common
-- Setting dune-common_LIBRARIES=dunecommon
-- Setting dune-geometry_INCLUDE_DIRS=/home/afshin/Desktop/Test1/dune-geometry
-- Setting dune-geometry_LIBRARIES=dunegeometry
-- Performing tests specific to dune-grid from file /home/afshin/Desktop/Test1/dune-grid/cmake/modules/DuneGridMacros.cmake.
-- Looking for mkstemp
-- Looking for mkstemp - found
-- Looking for metis.h
-- Looking for metis.h - not found
-- Could NOT find METIS (missing:  METIS_INCLUDE_DIR METIS_LIBRARY HAVE_METIS_PARTGRAPHKWAY) 
-- Looking for parmetis.h
-- Looking for parmetis.h - not found
-- Could NOT find ParMETIS (missing:  PARMETIS_INCLUDE_DIR PARMETIS_LIBRARY HAVE_PARMETIS) 
-- checking for module 'alugrid'
--   package 'alugrid' not found
-- checking for module 'alugrid'
--   package 'alugrid' not found
-- Could NOT find ALUGrid (missing:  ALUGRID_VERSION ALUGRID_INCLUDE_PATH ALUGRID_LIB ALUGRID_LIB_PATH ALULIB_FUNCTIONAL HAVE_ALUGRID_SERIAL_H) 
-- Found UG: /home/afshin/Desktop/Test1/external/ug/lib/cmake/ug  
-- Could NOT find OpenGL (missing:  OPENGL_gl_LIBRARY OPENGL_INCLUDE_DIR) 
-- Could NOT find Grape (missing:  X11_FOUND OPENGL_FOUND GRAPE_INCLUDE_DIR GRAPE_LIBRARY _GRAPE_LIB_FUNCTIONAL _GRAPE_HEADER_USABLE) 
-- checking for one of the modules 'psurface'
-- checking for module 'psurface'
--   package 'psurface' not found
-- Could NOT find psurface (missing:  PSURFACE_INCLUDE_DIR PSURFACE_LIBRARY) 
-- Could NOT find AmiraMesh (missing:  AMIRAMESH_INCLUDE_DIR AMIRAMESH_LIBRARY) 
-- Setting dune-grid_INCLUDE_DIRS=/home/afshin/Desktop/Test1/dune-grid
-- Setting dune-grid_LIBRARIES=dunegrid
-- Performing tests specific to dune-alugrid from file /home/afshin/Desktop/Test1/dune-alugrid/cmake/modules/DuneAlugridMacros.cmake.
-- Could NOT find ZLIB (missing:  ZLIB_LIBRARY ZLIB_INCLUDE_DIR) 
-- Looking for include file sion.h
-- Looking for include file sion.h - not found
-- Could NOT find SIONlib (missing:  SIONLIB_INCLUDE_DIR SIONLIB_LIBRARY SIONLIB_HEADER_USABLE SIONLIB_LIB_WORKS SIONLIB_LIB_SIONSER_WORKS) 
-- Could NOT find DLMalloc (missing:  DLMALLOC_INCLUDE_DIR DLMALLOC_SOURCE_INCLUDE) 
-- Could NOT find PTScotch (missing:  PTSCOTCH_INCLUDE_DIR PTSCOTCH_LIBRARY SCOTCH_LIBRARY PTSCOTCHERR_LIBRARY) 
-- Performing Test DUNE_CV_PTHREAD_TLS_COMPILES
-- Performing Test DUNE_CV_PTHREAD_TLS_COMPILES - Failed
-- Setting dune-alugrid_INCLUDE_DIRS=/home/afshin/Desktop/Test1/dune-alugrid
-- Setting dune-alugrid_LIBRARIES=dunealugrid
-- Performing tests specific to dune-typetree from file /home/afshin/Desktop/Test1/dune-typetree/cmake/modules/DuneTypetreeMacros.cmake.
-- Performing Test HAVE_TEMPLATE_ALIASES
-- Performing Test HAVE_TEMPLATE_ALIASES - Success
-- Found CXXTemplateAliases: 1  
-- Performing Test HAVE_STD_DECLTYPE
-- Performing Test HAVE_STD_DECLTYPE - Success
-- Found CXXDecltype: 1  
-- Performing Test HAVE_GCC___TYPEOF__
-- Performing Test HAVE_GCC___TYPEOF__ - Success
-- Found GCCTypeof: 1  
-- Setting dune-typetree_INCLUDE_DIRS=/home/afshin/Desktop/Test1/dune-typetree
-- Performing tests specific to dune-istl from file /home/afshin/Desktop/Test1/dune-istl/cmake/modules/DuneIstlMacros.cmake.
-- Could NOT find Boost
-- Could NOT find Boost
-- Skipping check for Boost::FUSION as Boost is not available.
-- Could NOT find METIS (missing:  METIS_INCLUDE_DIR METIS_LIBRARY HAVE_METIS_PARTGRAPHKWAY) 
-- Could NOT find ParMETIS (missing:  PARMETIS_INCLUDE_DIR PARMETIS_LIBRARY HAVE_PARMETIS) 
-- Performing Test HAVE_MEM_USAGE_T_EXPANSIONS
-- Performing Test HAVE_MEM_USAGE_T_EXPANSIONS - Failed
-- Performing Test SUPERLU_MIN_VERSION_4_3
-- Performing Test SUPERLU_MIN_VERSION_4_3 - Success
-- Found SuperLU: /usr/include/superlu  
-- Could NOT find SuiteSparse (missing:  SUITESPARSE_INCLUDE_DIR SUITESPARSE_LIBRARY) 
-- Could NOT find UMFPack (missing:  UMFPACK_INCLUDE_DIRS UMFPACK_LIBRARIES) 
-- Setting dune-istl_INCLUDE_DIRS=/home/afshin/Desktop/Test1/dune-istl
-- Performing tests specific to dune-localfunctions from file /home/afshin/Desktop/Test1/dune-localfunctions/cmake/modules/DuneLocalfunctionsMacros.cmake.
-- Setting dune-localfunctions_INCLUDE_DIRS=/home/afshin/Desktop/Test1/dune-localfunctions
-- Performing tests specific to dune-pdelab from file /home/afshin/Desktop/Test1/dune-pdelab/cmake/modules/DunePdelabMacros.cmake.
-- PETSc could not be found.  Be sure to set PETSC_DIR and PETSC_ARCH. (missing:  PETSC_INCLUDES PETSC_LIBRARIES PETSC_EXECUTABLE_RUNS) 
-- Using scripts from /home/afshin/Desktop/Test1/dune-common/cmake/scripts for creating doxygen stuff.
-- using /home/afshin/Desktop/Test1/dune-common/doc/doxygen/Doxystyle to create doxystyle file
-- Adding custom target for config.h generation
-- 
-- The following OPTIONAL packages have been found:

 * dune-alugrid
 * LATEX
 * UnixCommands
 * Doxygen
 * PkgConfig
 * LAPACK
 * GMP
 * Inkscape
 * UG (required version >= 3.11.0)
 * MPI
 * CXXTemplateAliases
 * CXXDecltype
 * GCCTypeof
 * SuperLU
 * Threads

-- The following REQUIRED packages have been found:

 * dune-common
 * dune-geometry
 * dune-grid
 * dune-localfunctions
 * dune-istl
 * dune-typetree

-- The following features have been disabled:

 * Experimental grid extensions , Enables additional grid features.

-- The following OPTIONAL packages have not been found:

 * ALUGrid
 * Alberta
 * X11
 * OpenGL
 * Grape
 * Psurface
 * AmiraMesh
 * ZLIB
 * SIONlib
 * DLMalloc
 * PTScotch
 * ZOLTAN
 * Boost
 * BoostFusion
 * METIS
 * ParMETIS
 * SuiteSparse
 * UMFPack
 * PETSc
 * Eigen3

-- Configuring done
-- Generating done
-- Build files have been written to: /home/afshin/Desktop/Test1/debug-build/dune-pdelab
--- dune-pdelab done ---
--- calling configure for dune-heat ---
/home/afshin/Desktop/Test1/dune-typetree/lib/dunetypetreeam2cmake.lib for converting options does not exist
/home/afshin/Desktop/Test1/dune-geometry/lib/dunegeometryam2cmake.lib for converting options does not exist
/home/afshin/Desktop/Test1/dune-localfunctions/lib/dunelocalfunctionsam2cmake.lib for converting options does not exist
/home/afshin/Desktop/Test1/dune-pdelab/lib/dunepdelabam2cmake.lib for converting options does not exist
/home/afshin/Desktop/Test1/dune-heat/lib/duneheatam2cmake.lib for converting options does not exist
 cmake -DCMAKE_MODULE_PATH=""  -DCMAKE_DISABLE_FIND_PACKAGE_MPI=FALSE "-Ddune-common_DIR=/home/afshin/Desktop/Test1/debug-build/dune-common" "-Ddune-typetree_DIR=/home/afshin/Desktop/Test1/debug-build/dune-typetree" "-Ddune-geometry_DIR=/home/afshin/Desktop/Test1/debug-build/dune-geometry" "-Ddune-grid_DIR=/home/afshin/Desktop/Test1/debug-build/dune-grid" "-Ddune-localfunctions_DIR=/home/afshin/Desktop/Test1/debug-build/dune-localfunctions" "-Ddune-istl_DIR=/home/afshin/Desktop/Test1/debug-build/dune-istl" "-Ddune-alugrid_DIR=/home/afshin/Desktop/Test1/debug-build/dune-alugrid" "-Ddune-pdelab_DIR=/home/afshin/Desktop/Test1/debug-build/dune-pdelab" -DUG_ROOT=/home/afshin/Desktop/Test1/external/ug -DCMAKE_C_COMPILER='/usr/bin/gcc' -DCMAKE_CXX_COMPILER='/usr/bin/g++' -DMPI_CC_COMPILER=mpicc.mpich -DMPI_CXX_COMPILER=mpicxx.mpich -DCMAKE_CXX_FLAGS='-Wall -DDUNE_AVOID_CAPABILITIES_IS_PARALLEL_DEPRECATION_WARNING' -DCMAKE_CXX_FLAGS_DEBUG='-O0 -ggdb' -DDUNE_SYMLINK_TO_SOURCE_TREE=1 -DCMAKE_BUILD_TYPE=Debug -DCMAKE_INSTALL_PREFIX=/home/afshin/dunes/installation2 "/home/afshin/Desktop/Test1/dune-heat"
-- The CXX compiler identification is GNU 5.2.1
-- Check for working CXX compiler: /usr/bin/g++
-- Check for working CXX compiler: /usr/bin/g++ -- works
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- The C compiler identification is GNU 5.2.1
-- Check for working C compiler: /usr/bin/gcc
-- Check for working C compiler: /usr/bin/gcc -- works
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Detecting C compile features
-- Detecting C compile features - done
-- Dependencies for dune-heat: dune-common;dune-typetree;dune-geometry;dune-grid;dune-localfunctions;dune-istl;dune-alugrid;dune-pdelab
-- Dependencies for dune-typetree: dune-common (>= 2.4.1)
-- Dependencies for dune-geometry: dune-common (>= 2.4.1)
-- Dependencies for dune-grid: dune-common (>= 2.4.1);dune-geometry (>= 2.4.1)
-- Dependencies for dune-localfunctions: dune-geometry (>= 2.4.1)
-- Dependencies for dune-istl: dune-common (>= 2.4.1)
-- Dependencies for dune-alugrid: dune-grid (>= 2.4)
-- Dependencies for dune-pdelab: dune-common (>= 2.4.1);dune-geometry (>= 2.4.1);dune-grid (>= 2.4.1);dune-localfunctions (>= 2.4.1);dune-istl (>= 2.4.1);dune-typetree (>= 2.4.1)
-- Suggestions for dune-pdelab: dune-alugrid
-- Dependencies for dune-geometry: dune-common (>= 2.4.1)
-- Dependencies for dune-grid: dune-common (>= 2.4.1);dune-geometry (>= 2.4.1)
-- Dependencies for dune-localfunctions: dune-geometry (>= 2.4.1)
-- Dependencies for dune-istl: dune-common (>= 2.4.1)
-- Dependencies for dune-typetree: dune-common (>= 2.4.1)
-- Dependencies for dune-grid: dune-common (>= 2.4.1);dune-geometry (>= 2.4.1)
-- Dependencies for dune-alugrid: dune-grid (>= 2.4)
-- Dependencies for dune-geometry: dune-common (>= 2.4.1)
-- Dependencies for dune-grid: dune-common (>= 2.4.1);dune-geometry (>= 2.4.1)
-- Dependencies for dune-geometry: dune-common (>= 2.4.1)
-- The Fortran compiler identification is GNU
-- Check for working Fortran compiler: /usr/bin/gfortran
-- Check for working Fortran compiler: /usr/bin/gfortran  -- works
-- Detecting Fortran compiler ABI info
-- Detecting Fortran compiler ABI info - done
-- Checking whether /usr/bin/gfortran supports Fortran 90
-- Checking whether /usr/bin/gfortran supports Fortran 90 -- yes
-- Performing Test cxx_std_flag_14
-- Performing Test cxx_std_flag_14 - Success
-- Performing Test compiler_supports_cxx14
-- Performing Test compiler_supports_cxx14 - Success
-- Performing Test HAVE_NULLPTR
-- Performing Test HAVE_NULLPTR - Success
-- Performing Test HAVE_NULLPTR_T
-- Performing Test HAVE_NULLPTR_T - Success
-- Performing Test HAS_ATTRIBUTE_UNUSED
-- Performing Test HAS_ATTRIBUTE_UNUSED - Success
-- Performing Test HAS_ATTRIBUTE_DEPRECATED
-- Performing Test HAS_ATTRIBUTE_DEPRECATED - Success
-- Performing Test HAS_ATTRIBUTE_DEPRECATED_MSG
-- Performing Test HAS_ATTRIBUTE_DEPRECATED_MSG - Success
-- Performing Test HAVE_CONSTEXPR
-- Performing Test HAVE_CONSTEXPR - Success
-- Performing Test HAVE_KEYWORD_FINAL
-- Performing Test HAVE_KEYWORD_FINAL - Success
-- Performing Test HAVE_RANGE_BASED_FOR
-- Performing Test HAVE_RANGE_BASED_FOR - Success
-- Performing Test HAVE_NOEXCEPT_SPECIFIER
-- Performing Test HAVE_NOEXCEPT_SPECIFIER - Success
-- Performing Test HAVE_STD_DECLVAL
-- Performing Test HAVE_STD_DECLVAL - Success
-- Performing Test HAVE_IS_INDEXABLE_SUPPORT
-- Performing Test HAVE_IS_INDEXABLE_SUPPORT - Success
-- Looking for include file pthread.h
-- Looking for include file pthread.h - found
-- Looking for pthread_create
-- Looking for pthread_create - not found
-- Check if compiler accepts -pthread
-- Check if compiler accepts -pthread - yes
-- Found Threads: TRUE  
-- Performing Test STDTHREAD_WORKS
-- Performing Test STDTHREAD_WORKS - Success
-- Performing Test HAVE_CXA_DEMANGLE
-- Performing Test HAVE_CXA_DEMANGLE - Success
-- Found MPI_C: /usr/lib/x86_64-linux-gnu/libmpich.so;/usr/lib/x86_64-linux-gnu/libopa.so;/usr/lib/x86_64-linux-gnu/libmpl.so;/usr/lib/x86_64-linux-gnu/librt.so;/usr/lib/libcr.so;/usr/lib/x86_64-linux-gnu/libpthread.so  
-- Found MPI_CXX: /usr/lib/x86_64-linux-gnu/libmpichcxx.so;/usr/lib/x86_64-linux-gnu/libmpich.so;/usr/lib/x86_64-linux-gnu/libopa.so;/usr/lib/x86_64-linux-gnu/libmpl.so;/usr/lib/x86_64-linux-gnu/librt.so;/usr/lib/libcr.so;/usr/lib/x86_64-linux-gnu/libpthread.so  
-- Found MPI_Fortran: /usr/lib/x86_64-linux-gnu/libmpichf90.so;/usr/lib/x86_64-linux-gnu/libmpich.so;/usr/lib/x86_64-linux-gnu/libopa.so;/usr/lib/x86_64-linux-gnu/libmpl.so;/usr/lib/x86_64-linux-gnu/librt.so;/usr/lib/libcr.so;/usr/lib/x86_64-linux-gnu/libpthread.so  
-- Looking for MPI_Finalized
-- Looking for MPI_Finalized - found
-- Performing Test MPI_VERSION_SUPPORTED
-- Performing Test MPI_VERSION_SUPPORTED - Success
-- Detecting Fortran/C Interface
-- Detecting Fortran/C Interface - Found GLOBAL and MODULE mangling
-- Verifying Fortran/CXX Compiler Compatibility
-- Verifying Fortran/CXX Compiler Compatibility - Success
-- Found LATEX: /usr/bin/latex   
-- Found UnixCommands: /bin/bash  
-- Found Doxygen: /usr/bin/doxygen (found version "1.8.9.1") 
-- Found PkgConfig: /usr/bin/pkg-config (found version "0.28") 
-- Performing tests specific to dune-common from file /home/afshin/Desktop/Test1/dune-common/cmake/modules/DuneCommonMacros.cmake.
-- Looking for Fortran sgemm
-- Looking for Fortran sgemm - found
-- A library with BLAS API found.
-- Looking for Fortran cheev
-- Looking for Fortran cheev - found
-- A library with LAPACK API found.
-- Looking for C++ include gmpxx.h
-- Looking for C++ include gmpxx.h - found
-- Looking for __gmpz_abs in /usr/lib/x86_64-linux-gnu/libgmp.so
-- Looking for __gmpz_abs in /usr/lib/x86_64-linux-gnu/libgmp.so - found
-- Found GMP: /usr/include  
-- Looking for sys/mman.h
-- Looking for sys/mman.h - found
-- Performing Test HAVE_MPROTECT
-- Performing Test HAVE_MPROTECT - Success
-- Setting dune-common_INCLUDE_DIRS=/home/afshin/Desktop/Test1/dune-common
-- Setting dune-common_LIBRARIES=dunecommon
-- Setting dune-geometry_INCLUDE_DIRS=/home/afshin/Desktop/Test1/dune-geometry
-- Setting dune-geometry_LIBRARIES=dunegeometry
-- Performing tests specific to dune-grid from file /home/afshin/Desktop/Test1/dune-grid/cmake/modules/DuneGridMacros.cmake.
-- Looking for mkstemp
-- Looking for mkstemp - found
-- Looking for metis.h
-- Looking for metis.h - not found
-- Could NOT find METIS (missing:  METIS_INCLUDE_DIR METIS_LIBRARY HAVE_METIS_PARTGRAPHKWAY) 
-- Looking for parmetis.h
-- Looking for parmetis.h - not found
-- Could NOT find ParMETIS (missing:  PARMETIS_INCLUDE_DIR PARMETIS_LIBRARY HAVE_PARMETIS) 
-- checking for module 'alugrid'
--   package 'alugrid' not found
-- checking for module 'alugrid'
--   package 'alugrid' not found
-- Could NOT find ALUGrid (missing:  ALUGRID_VERSION ALUGRID_INCLUDE_PATH ALUGRID_LIB ALUGRID_LIB_PATH ALULIB_FUNCTIONAL HAVE_ALUGRID_SERIAL_H) 
-- Found UG: /home/afshin/Desktop/Test1/external/ug/lib/cmake/ug  
-- Could NOT find OpenGL (missing:  OPENGL_gl_LIBRARY OPENGL_INCLUDE_DIR) 
-- Could NOT find Grape (missing:  X11_FOUND OPENGL_FOUND GRAPE_INCLUDE_DIR GRAPE_LIBRARY _GRAPE_LIB_FUNCTIONAL _GRAPE_HEADER_USABLE) 
-- checking for one of the modules 'psurface'
-- checking for module 'psurface'
--   package 'psurface' not found
-- Could NOT find psurface (missing:  PSURFACE_INCLUDE_DIR PSURFACE_LIBRARY) 
-- Could NOT find AmiraMesh (missing:  AMIRAMESH_INCLUDE_DIR AMIRAMESH_LIBRARY) 
-- Setting dune-grid_INCLUDE_DIRS=/home/afshin/Desktop/Test1/dune-grid
-- Setting dune-grid_LIBRARIES=dunegrid
-- Performing tests specific to dune-alugrid from file /home/afshin/Desktop/Test1/dune-alugrid/cmake/modules/DuneAlugridMacros.cmake.
-- Could NOT find ZLIB (missing:  ZLIB_LIBRARY ZLIB_INCLUDE_DIR) 
-- Looking for include file sion.h
-- Looking for include file sion.h - not found
-- Could NOT find SIONlib (missing:  SIONLIB_INCLUDE_DIR SIONLIB_LIBRARY SIONLIB_HEADER_USABLE SIONLIB_LIB_WORKS SIONLIB_LIB_SIONSER_WORKS) 
-- Could NOT find DLMalloc (missing:  DLMALLOC_INCLUDE_DIR DLMALLOC_SOURCE_INCLUDE) 
-- Could NOT find PTScotch (missing:  PTSCOTCH_INCLUDE_DIR PTSCOTCH_LIBRARY SCOTCH_LIBRARY PTSCOTCHERR_LIBRARY) 
-- Performing Test DUNE_CV_PTHREAD_TLS_COMPILES
-- Performing Test DUNE_CV_PTHREAD_TLS_COMPILES - Failed
-- Setting dune-alugrid_INCLUDE_DIRS=/home/afshin/Desktop/Test1/dune-alugrid
-- Setting dune-alugrid_LIBRARIES=dunealugrid
-- Performing tests specific to dune-typetree from file /home/afshin/Desktop/Test1/dune-typetree/cmake/modules/DuneTypetreeMacros.cmake.
-- Performing Test HAVE_TEMPLATE_ALIASES
-- Performing Test HAVE_TEMPLATE_ALIASES - Success
-- Found CXXTemplateAliases: 1  
-- Performing Test HAVE_STD_DECLTYPE
-- Performing Test HAVE_STD_DECLTYPE - Success
-- Found CXXDecltype: 1  
-- Performing Test HAVE_GCC___TYPEOF__
-- Performing Test HAVE_GCC___TYPEOF__ - Success
-- Found GCCTypeof: 1  
-- Setting dune-typetree_INCLUDE_DIRS=/home/afshin/Desktop/Test1/dune-typetree
-- Performing tests specific to dune-istl from file /home/afshin/Desktop/Test1/dune-istl/cmake/modules/DuneIstlMacros.cmake.
-- Could NOT find Boost
-- Could NOT find Boost
-- Skipping check for Boost::FUSION as Boost is not available.
-- Could NOT find METIS (missing:  METIS_INCLUDE_DIR METIS_LIBRARY HAVE_METIS_PARTGRAPHKWAY) 
-- Could NOT find ParMETIS (missing:  PARMETIS_INCLUDE_DIR PARMETIS_LIBRARY HAVE_PARMETIS) 
-- Performing Test HAVE_MEM_USAGE_T_EXPANSIONS
-- Performing Test HAVE_MEM_USAGE_T_EXPANSIONS - Failed
-- Performing Test SUPERLU_MIN_VERSION_4_3
-- Performing Test SUPERLU_MIN_VERSION_4_3 - Success
-- Found SuperLU: /usr/include/superlu  
-- Could NOT find SuiteSparse (missing:  SUITESPARSE_INCLUDE_DIR SUITESPARSE_LIBRARY) 
-- Could NOT find UMFPack (missing:  UMFPACK_INCLUDE_DIRS UMFPACK_LIBRARIES) 
-- Setting dune-istl_INCLUDE_DIRS=/home/afshin/Desktop/Test1/dune-istl
-- Performing tests specific to dune-localfunctions from file /home/afshin/Desktop/Test1/dune-localfunctions/cmake/modules/DuneLocalfunctionsMacros.cmake.
-- Setting dune-localfunctions_INCLUDE_DIRS=/home/afshin/Desktop/Test1/dune-localfunctions
-- Performing tests specific to dune-pdelab from file /home/afshin/Desktop/Test1/dune-pdelab/cmake/modules/DunePdelabMacros.cmake.
-- PETSc could not be found.  Be sure to set PETSC_DIR and PETSC_ARCH. (missing:  PETSC_INCLUDES PETSC_LIBRARIES PETSC_EXECUTABLE_RUNS) 
-- Setting dune-pdelab_INCLUDE_DIRS=/home/afshin/Desktop/Test1/dune-pdelab
-- Setting dune-pdelab_LIBRARIES=dunepdelab
-- Performing tests specific to dune-heat from file /home/afshin/Desktop/Test1/dune-heat/cmake/modules/DuneHeatMacros.cmake.
-- Using scripts from /home/afshin/Desktop/Test1/dune-common/cmake/scripts for creating doxygen stuff.
-- using /home/afshin/Desktop/Test1/dune-common/doc/doxygen/Doxystyle to create doxystyle file
-- Adding custom target for config.h generation
-- 
-- The following OPTIONAL packages have been found:

 * LATEX
 * UnixCommands
 * Doxygen
 * PkgConfig
 * LAPACK
 * GMP
 * Inkscape
 * UG (required version >= 3.11.0)
 * MPI
 * CXXTemplateAliases
 * CXXDecltype
 * GCCTypeof
 * SuperLU
 * Threads

-- The following REQUIRED packages have been found:

 * dune-common
 * dune-typetree
 * dune-geometry
 * dune-grid
 * dune-localfunctions
 * dune-istl
 * dune-alugrid
 * dune-pdelab

-- The following features have been disabled:

 * Experimental grid extensions , Enables additional grid features.

-- The following OPTIONAL packages have not been found:

 * ALUGrid
 * Alberta
 * X11
 * OpenGL
 * Grape
 * Psurface
 * AmiraMesh
 * ZLIB
 * SIONlib
 * DLMalloc
 * PTScotch
 * ZOLTAN
 * Boost
 * BoostFusion
 * METIS
 * ParMETIS
 * SuiteSparse
 * UMFPack
 * PETSc
 * Eigen3

-- Configuring done
-- Generating done
-- Build files have been written to: /home/afshin/Desktop/Test1/debug-build/dune-heat
--- dune-heat done ---
--- done ---


More information about the dune-pdelab mailing list