Hi all, 
I am trying to install dealii with petsc and p4est on the cluster in 
Juelich with intel 19. It has been running with intel 18. As others have 
suggested, I have turned DEAL_II_WITH_CXX17=OFF, I have used the flag 
"-xhost", but I run into errors relating to vectorization (ALTIVEC).  I 
have used the bundled tbb, and using the loaded tbb module,  I get the 
errors in the log attached. 

Thanks for any advice on where to look next. 

Best,
Sean

-- 
The deal.II project is located at http://www.dealii.org/
For mailing list/forum options, see 
https://groups.google.com/d/forum/dealii?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"deal.II User Group" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to dealii+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Performing C++ SOURCE FILE Test DEAL_II_HAVE_ALTIVEC failed with the following 
output:
Change Dir: 
/p/project/cesmtst/esmtst19/18b_dev_deal.ii-candi/tmp/build/deal.II-master/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/gmake" "cmTC_81f3e/fast"
/usr/bin/gmake -f CMakeFiles/cmTC_81f3e.dir/build.make 
CMakeFiles/cmTC_81f3e.dir/build
gmake[1]: Entering directory 
`/p/project/cesmtst/esmtst19/18b_dev_deal.ii-candi/tmp/build/deal.II-master/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_81f3e.dir/src.cxx.o
/gpfs/software/juwels/stages/2018b/software/psmpi/5.2.1-1-iccifort-2019.0.117-GCC-7.3.0/bin/mpicxx
    -DDEAL_II_HAVE_ALTIVEC -xhost   -o CMakeFiles/cmTC_81f3e.dir/src.cxx.o -c 
/p/project/cesmtst/esmtst19/18b_dev_deal.ii-candi/tmp/build/deal.II-master/CMakeFiles/CMakeTmp/src.cxx
/p/project/cesmtst/esmtst19/18b_dev_deal.ii-candi/tmp/build/deal.II-master/CMakeFiles/CMakeTmp/src.cxx(3):
 error: #error directive: "__ALTIVEC__ flag not set, no support for Altivec"
      #error "__ALTIVEC__ flag not set, no support for Altivec"
       ^

/p/project/cesmtst/esmtst19/18b_dev_deal.ii-candi/tmp/build/deal.II-master/CMakeFiles/CMakeTmp/src.cxx(5):
 catastrophic error: cannot open source file "altivec.h"
      #include <altivec.h>
                          ^

compilation aborted for 
/p/project/cesmtst/esmtst19/18b_dev_deal.ii-candi/tmp/build/deal.II-master/CMakeFiles/CMakeTmp/src.cxx
 (code 4)
gmake[1]: *** [CMakeFiles/cmTC_81f3e.dir/src.cxx.o] Error 4
gmake[1]: Leaving directory 
`/p/project/cesmtst/esmtst19/18b_dev_deal.ii-candi/tmp/build/deal.II-master/CMakeFiles/CMakeTmp'
gmake: *** [cmTC_81f3e/fast] Error 2

Return value: 1
Source file was:

    #ifndef __ALTIVEC__
    #error "__ALTIVEC__ flag not set, no support for Altivec"
    #endif
    #include <altivec.h>
    #undef vector
    #undef pixel
    #undef bool
    int main()
    {
    __vector double a, b, data1, data2;
    const int n_vectors = sizeof(a)/sizeof(double);
    double * ptr = reinterpret_cast<double*>(&a);
    ptr[0] = static_cast<volatile double>(1.0);
    for (int i=1; i<n_vectors; ++i)
      ptr[i] = 0.0;
    b = vec_splats (static_cast<volatile double>(2.25));
    data1 = vec_add (a, b);
    data2 = vec_mul (b, data1);
    ptr = reinterpret_cast<double*>(&data2);
    int return_value = 0;
    if (ptr[0] != 7.3125)
      return_value += 1;
    for (int i=1; i<n_vectors; ++i)
      if (ptr[i] != 5.0625)
        return_value += 2;
    b = vec_splats (static_cast<volatile double>(-1.0));
    data1 = vec_abs(vec_mul (b, data2));
    vec_vsx_st(data1, 0, ptr);
    b = vec_vsx_ld(0, ptr);
    ptr = reinterpret_cast<double*>(&b);
    if (ptr[0] != 7.3125)
      return_value += 4;
    for (int i=1; i<n_vectors; ++i)
      if (ptr[i] != 5.0625)
        return_value += 8;
    return return_value;
    }
    
Performing C++ SOURCE FILE Test DEAL_II_HAVE_CXX17_ATTRIBUTE_FALLTHROUGH failed 
with the following output:
Change Dir: 
/p/project/cesmtst/esmtst19/18b_dev_deal.ii-candi/tmp/build/deal.II-master/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/gmake" "cmTC_d6c0f/fast"
/usr/bin/gmake -f CMakeFiles/cmTC_d6c0f.dir/build.make 
CMakeFiles/cmTC_d6c0f.dir/build
gmake[1]: Entering directory 
`/p/project/cesmtst/esmtst19/18b_dev_deal.ii-candi/tmp/build/deal.II-master/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_d6c0f.dir/src.cxx.o
/gpfs/software/juwels/stages/2018b/software/psmpi/5.2.1-1-iccifort-2019.0.117-GCC-7.3.0/bin/mpicxx
    -DDEAL_II_HAVE_CXX17_ATTRIBUTE_FALLTHROUGH -xhost -fpic -ansi -w2 
-diag-disable=remark -wd21 -wd68 -wd135 -wd175 -wd177 -wd191 -wd193 -wd279 
-wd327 -wd383 -wd981 -wd1418 -wd1478 -wd1572 -wd2259 -wd2536 -wd2651 -wd3415 
-wd15531 -wd111 -wd128 -wd185 -wd186 -wd280 -qopenmp-simd -std=c++14 -Werror 
-Wno-unused-command-line-argument   -o CMakeFiles/cmTC_d6c0f.dir/src.cxx.o -c 
/p/project/cesmtst/esmtst19/18b_dev_deal.ii-candi/tmp/build/deal.II-master/CMakeFiles/CMakeTmp/src.cxx
icpc: command line warning #10148: option '-Wno-unused-command-line-argument' 
not supported
/p/project/cesmtst/esmtst19/18b_dev_deal.ii-candi/tmp/build/deal.II-master/CMakeFiles/CMakeTmp/src.cxx(10):
 error #1292: unknown attribute "fallthrough"
          [[fallthrough]];
            ^

/p/project/cesmtst/esmtst19/18b_dev_deal.ii-candi/tmp/build/deal.II-master/CMakeFiles/CMakeTmp/src.cxx(13):
 error #1292: unknown attribute "fallthrough"
          [[fallthrough]];
            ^

compilation aborted for 
/p/project/cesmtst/esmtst19/18b_dev_deal.ii-candi/tmp/build/deal.II-master/CMakeFiles/CMakeTmp/src.cxx
 (code 2)
gmake[1]: *** [CMakeFiles/cmTC_d6c0f.dir/src.cxx.o] Error 2
gmake[1]: Leaving directory 
`/p/project/cesmtst/esmtst19/18b_dev_deal.ii-candi/tmp/build/deal.II-master/CMakeFiles/CMakeTmp'
gmake: *** [cmTC_d6c0f/fast] Error 2

Source file was:

  int main()
  {
    int i = 42;
    int j = 10;
    switch(i)
      {
      case 1:
        ++j;
        [[fallthrough]];
      case 2:
        ++j;
        [[fallthrough]];
      default:
        break;
      }
   }
   
Performing C++ SOURCE FILE Test DEAL_II_HAVE_ATTRIBUTE_FALLTHROUGH failed with 
the following output:
Change Dir: 
/p/project/cesmtst/esmtst19/18b_dev_deal.ii-candi/tmp/build/deal.II-master/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/gmake" "cmTC_98c02/fast"
/usr/bin/gmake -f CMakeFiles/cmTC_98c02.dir/build.make 
CMakeFiles/cmTC_98c02.dir/build
gmake[1]: Entering directory 
`/p/project/cesmtst/esmtst19/18b_dev_deal.ii-candi/tmp/build/deal.II-master/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_98c02.dir/src.cxx.o
/gpfs/software/juwels/stages/2018b/software/psmpi/5.2.1-1-iccifort-2019.0.117-GCC-7.3.0/bin/mpicxx
    -DDEAL_II_HAVE_ATTRIBUTE_FALLTHROUGH -xhost -fpic -ansi -w2 
-diag-disable=remark -wd21 -wd68 -wd135 -wd175 -wd177 -wd191 -wd193 -wd279 
-wd327 -wd383 -wd981 -wd1418 -wd1478 -wd1572 -wd2259 -wd2536 -wd2651 -wd3415 
-wd15531 -wd111 -wd128 -wd185 -wd186 -wd280 -qopenmp-simd -std=c++14 -Werror 
-Wno-unused-command-line-argument   -o CMakeFiles/cmTC_98c02.dir/src.cxx.o -c 
/p/project/cesmtst/esmtst19/18b_dev_deal.ii-candi/tmp/build/deal.II-master/CMakeFiles/CMakeTmp/src.cxx
icpc: command line warning #10148: option '-Wno-unused-command-line-argument' 
not supported
/p/project/cesmtst/esmtst19/18b_dev_deal.ii-candi/tmp/build/deal.II-master/CMakeFiles/CMakeTmp/src.cxx(10):
 error #1292: unknown attribute "fallthrough"
          __attribute__((fallthrough));
                         ^

/p/project/cesmtst/esmtst19/18b_dev_deal.ii-candi/tmp/build/deal.II-master/CMakeFiles/CMakeTmp/src.cxx(13):
 error #1292: unknown attribute "fallthrough"
          __attribute__((fallthrough));
                         ^

compilation aborted for 
/p/project/cesmtst/esmtst19/18b_dev_deal.ii-candi/tmp/build/deal.II-master/CMakeFiles/CMakeTmp/src.cxx
 (code 2)
gmake[1]: *** [CMakeFiles/cmTC_98c02.dir/src.cxx.o] Error 2
gmake[1]: Leaving directory 
`/p/project/cesmtst/esmtst19/18b_dev_deal.ii-candi/tmp/build/deal.II-master/CMakeFiles/CMakeTmp'
gmake: *** [cmTC_98c02/fast] Error 2

Source file was:

  int main()
  {
    int i = 42;
    int j = 10;
    switch(i)
      {
      case 1:
        ++j;
        __attribute__((fallthrough));
      case 2:
        ++j;
        __attribute__((fallthrough));
      default:
        break;
      }
  }
  
Performing C++ SOURCE FILE Test DEAL_II_HAVE_CXX17_SPECIAL_MATH_FUNCTIONS 
failed with the following output:
Change Dir: 
/p/project/cesmtst/esmtst19/18b_dev_deal.ii-candi/tmp/build/deal.II-master/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/gmake" "cmTC_8f5cb/fast"
/usr/bin/gmake -f CMakeFiles/cmTC_8f5cb.dir/build.make 
CMakeFiles/cmTC_8f5cb.dir/build
gmake[1]: Entering directory 
`/p/project/cesmtst/esmtst19/18b_dev_deal.ii-candi/tmp/build/deal.II-master/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_8f5cb.dir/src.cxx.o
/gpfs/software/juwels/stages/2018b/software/psmpi/5.2.1-1-iccifort-2019.0.117-GCC-7.3.0/bin/mpicxx
    -DDEAL_II_HAVE_CXX17_SPECIAL_MATH_FUNCTIONS -xhost -std=c++14   -o 
CMakeFiles/cmTC_8f5cb.dir/src.cxx.o -c 
/p/project/cesmtst/esmtst19/18b_dev_deal.ii-candi/tmp/build/deal.II-master/CMakeFiles/CMakeTmp/src.cxx
/p/project/cesmtst/esmtst19/18b_dev_deal.ii-candi/tmp/build/deal.II-master/CMakeFiles/CMakeTmp/src.cxx(6):
 error: namespace "std" has no member "cyl_bessel_j"
      std::cyl_bessel_j(1.0, 1.0);
           ^

/p/project/cesmtst/esmtst19/18b_dev_deal.ii-candi/tmp/build/deal.II-master/CMakeFiles/CMakeTmp/src.cxx(7):
 error: namespace "std" has no member "cyl_bessel_jf"
      std::cyl_bessel_jf(1.0f, 1.0f);
           ^

/p/project/cesmtst/esmtst19/18b_dev_deal.ii-candi/tmp/build/deal.II-master/CMakeFiles/CMakeTmp/src.cxx(8):
 error: namespace "std" has no member "cyl_bessel_jl"
      std::cyl_bessel_jl(1.0, 1.0);
           ^

compilation aborted for 
/p/project/cesmtst/esmtst19/18b_dev_deal.ii-candi/tmp/build/deal.II-master/CMakeFiles/CMakeTmp/src.cxx
 (code 2)
gmake[1]: *** [CMakeFiles/cmTC_8f5cb.dir/src.cxx.o] Error 2
gmake[1]: Leaving directory 
`/p/project/cesmtst/esmtst19/18b_dev_deal.ii-candi/tmp/build/deal.II-master/CMakeFiles/CMakeTmp'
gmake: *** [cmTC_8f5cb/fast] Error 2

Source file was:

  #include <cmath>

  int main()
  {
    std::cyl_bessel_j(1.0, 1.0);
    std::cyl_bessel_jf(1.0f, 1.0f);
    std::cyl_bessel_jl(1.0, 1.0);
  }
  
Performing C++ SOURCE FILE Test DEAL_II_COMPILER_HAS_ATTRIBUTE_DEPRECATED 
failed with the following output:
Change Dir: 
/p/project/cesmtst/esmtst19/18b_dev_deal.ii-candi/tmp/build/deal.II-master/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/gmake" "cmTC_2812f/fast"
/usr/bin/gmake -f CMakeFiles/cmTC_2812f.dir/build.make 
CMakeFiles/cmTC_2812f.dir/build
gmake[1]: Entering directory 
`/p/project/cesmtst/esmtst19/18b_dev_deal.ii-candi/tmp/build/deal.II-master/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_2812f.dir/src.cxx.o
/gpfs/software/juwels/stages/2018b/software/psmpi/5.2.1-1-iccifort-2019.0.117-GCC-7.3.0/bin/mpicxx
    -DDEAL_II_COMPILER_HAS_ATTRIBUTE_DEPRECATED -xhost -fpic -ansi -w2 
-diag-disable=remark -wd21 -wd68 -wd135 -wd175 -wd177 -wd191 -wd193 -wd279 
-wd327 -wd383 -wd981 -wd1418 -wd1478 -wd1572 -wd2259 -wd2536 -wd2651 -wd3415 
-wd15531 -wd111 -wd128 -wd185 -wd186 -wd280 -qopenmp-simd -std=c++14 -Werror 
-Wno-unused-command-line-argument   -o CMakeFiles/cmTC_2812f.dir/src.cxx.o -c 
/p/project/cesmtst/esmtst19/18b_dev_deal.ii-candi/tmp/build/deal.II-master/CMakeFiles/CMakeTmp/src.cxx
icpc: command line warning #10148: option '-Wno-unused-command-line-argument' 
not supported
/p/project/cesmtst/esmtst19/18b_dev_deal.ii-candi/tmp/build/deal.II-master/CMakeFiles/CMakeTmp/src.cxx(18):
 error: identifier "bar" is undefined
            using bar __attribute__((deprecated)) = foo<2>;
                  ^

/p/project/cesmtst/esmtst19/18b_dev_deal.ii-candi/tmp/build/deal.II-master/CMakeFiles/CMakeTmp/src.cxx(18):
 error: expected a ";"
            using bar __attribute__((deprecated)) = foo<2>;
                      ^

compilation aborted for 
/p/project/cesmtst/esmtst19/18b_dev_deal.ii-candi/tmp/build/deal.II-master/CMakeFiles/CMakeTmp/src.cxx
 (code 2)
gmake[1]: *** [CMakeFiles/cmTC_2812f.dir/src.cxx.o] Error 2
gmake[1]: Leaving directory 
`/p/project/cesmtst/esmtst19/18b_dev_deal.ii-candi/tmp/build/deal.II-master/CMakeFiles/CMakeTmp'
gmake: *** [cmTC_2812f/fast] Error 2

Source file was:

          __attribute__((deprecated)) int old_fn ();
          int old_fn () { return 0; }

          struct __attribute__((deprecated)) bob
          {
            __attribute__((deprecated)) bob(int i);
            __attribute__((deprecated)) void test();
          };

          enum color
          {
            red __attribute__((deprecated))
          };

          template <int dim>
          struct foo {};
          using bar __attribute__((deprecated)) = foo<2>;

          int main () {}
  
Determining if the Fortran sgemm exists failed with the following output:
Change Dir: 
/p/project/cesmtst/esmtst19/18b_dev_deal.ii-candi/tmp/build/deal.II-master/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/gmake" "cmTC_ae08d/fast"
/usr/bin/gmake -f CMakeFiles/cmTC_ae08d.dir/build.make 
CMakeFiles/cmTC_ae08d.dir/build
gmake[1]: Entering directory 
`/p/project/cesmtst/esmtst19/18b_dev_deal.ii-candi/tmp/build/deal.II-master/CMakeFiles/CMakeTmp'
Building Fortran object CMakeFiles/cmTC_ae08d.dir/testFortranCompiler.f.o
/gpfs/software/juwels/stages/2018b/software/psmpi/5.2.1-1-iccifort-2019.0.117-GCC-7.3.0/bin/mpif90
    -c 
/p/project/cesmtst/esmtst19/18b_dev_deal.ii-candi/tmp/build/deal.II-master/CMakeFiles/CMakeTmp/testFortranCompiler.f
 -o CMakeFiles/cmTC_ae08d.dir/testFortranCompiler.f.o
Linking Fortran executable cmTC_ae08d
/gpfs/software/juwels/stages/2018b/software/CMake/3.13.0-GCCcore-7.3.0/bin/cmake
 -E cmake_link_script CMakeFiles/cmTC_ae08d.dir/link.txt --verbose=1
/gpfs/software/juwels/stages/2018b/software/psmpi/5.2.1-1-iccifort-2019.0.117-GCC-7.3.0/bin/mpif90
      CMakeFiles/cmTC_ae08d.dir/testFortranCompiler.f.o  -o cmTC_ae08d 
ld: CMakeFiles/cmTC_ae08d.dir/testFortranCompiler.f.o: in function `MAIN__':
testFortranCompiler.f:(.text+0x37): undefined reference to `sgemm_'
gmake[1]: *** [cmTC_ae08d] Error 1
gmake[1]: Leaving directory 
`/p/project/cesmtst/esmtst19/18b_dev_deal.ii-candi/tmp/build/deal.II-master/CMakeFiles/CMakeTmp'
gmake: *** [cmTC_ae08d/fast] Error 2


Determining if the pthread_create exist failed with the following output:
Change Dir: 
/p/project/cesmtst/esmtst19/18b_dev_deal.ii-candi/tmp/build/deal.II-master/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/gmake" "cmTC_cd6df/fast"
/usr/bin/gmake -f CMakeFiles/cmTC_cd6df.dir/build.make 
CMakeFiles/cmTC_cd6df.dir/build
gmake[1]: Entering directory 
`/p/project/cesmtst/esmtst19/18b_dev_deal.ii-candi/tmp/build/deal.II-master/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_cd6df.dir/CheckSymbolExists.c.o
/gpfs/software/juwels/stages/2018b/software/psmpi/5.2.1-1-iccifort-2019.0.117-GCC-7.3.0/bin/mpicc
   -xhost   -o CMakeFiles/cmTC_cd6df.dir/CheckSymbolExists.c.o   -c 
/p/project/cesmtst/esmtst19/18b_dev_deal.ii-candi/tmp/build/deal.II-master/CMakeFiles/CMakeTmp/CheckSymbolExists.c
Linking C executable cmTC_cd6df
/gpfs/software/juwels/stages/2018b/software/CMake/3.13.0-GCCcore-7.3.0/bin/cmake
 -E cmake_link_script CMakeFiles/cmTC_cd6df.dir/link.txt --verbose=1
/gpfs/software/juwels/stages/2018b/software/psmpi/5.2.1-1-iccifort-2019.0.117-GCC-7.3.0/bin/mpicc
  -xhost    -rdynamic CMakeFiles/cmTC_cd6df.dir/CheckSymbolExists.c.o  -o 
cmTC_cd6df 
ld: CMakeFiles/cmTC_cd6df.dir/CheckSymbolExists.c.o: undefined reference to 
symbol 'pthread_create@@GLIBC_2.2.5'
ld: //lib64/libpthread.so.0: error adding symbols: DSO missing from command line
gmake[1]: *** [cmTC_cd6df] Error 1
gmake[1]: Leaving directory 
`/p/project/cesmtst/esmtst19/18b_dev_deal.ii-candi/tmp/build/deal.II-master/CMakeFiles/CMakeTmp'
gmake: *** [cmTC_cd6df/fast] Error 2

File 
/p/project/cesmtst/esmtst19/18b_dev_deal.ii-candi/tmp/build/deal.II-master/CMakeFiles/CMakeTmp/CheckSymbolExists.c:
/* */
#include <pthread.h>

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

Determining if the function pthread_create exists in the pthreads failed with 
the following output:
Change Dir: 
/p/project/cesmtst/esmtst19/18b_dev_deal.ii-candi/tmp/build/deal.II-master/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/gmake" "cmTC_52fb7/fast"
/usr/bin/gmake -f CMakeFiles/cmTC_52fb7.dir/build.make 
CMakeFiles/cmTC_52fb7.dir/build
gmake[1]: Entering directory 
`/p/project/cesmtst/esmtst19/18b_dev_deal.ii-candi/tmp/build/deal.II-master/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_52fb7.dir/CheckFunctionExists.c.o
/gpfs/software/juwels/stages/2018b/software/psmpi/5.2.1-1-iccifort-2019.0.117-GCC-7.3.0/bin/mpicc
   -DCHECK_FUNCTION_EXISTS=pthread_create -xhost   -o 
CMakeFiles/cmTC_52fb7.dir/CheckFunctionExists.c.o   -c 
/gpfs/software/juwels/stages/2018b/software/CMake/3.13.0-GCCcore-7.3.0/share/cmake-3.13/Modules/CheckFunctionExists.c
Linking C executable cmTC_52fb7
/gpfs/software/juwels/stages/2018b/software/CMake/3.13.0-GCCcore-7.3.0/bin/cmake
 -E cmake_link_script CMakeFiles/cmTC_52fb7.dir/link.txt --verbose=1
/gpfs/software/juwels/stages/2018b/software/psmpi/5.2.1-1-iccifort-2019.0.117-GCC-7.3.0/bin/mpicc
  -DCHECK_FUNCTION_EXISTS=pthread_create -xhost    -rdynamic 
CMakeFiles/cmTC_52fb7.dir/CheckFunctionExists.c.o  -o cmTC_52fb7 -lpthreads 
ld: cannot find -lpthreads
gmake[1]: *** [cmTC_52fb7] Error 1
gmake[1]: Leaving directory 
`/p/project/cesmtst/esmtst19/18b_dev_deal.ii-candi/tmp/build/deal.II-master/CMakeFiles/CMakeTmp'
gmake: *** [cmTC_52fb7/fast] Error 2


Performing C++ SOURCE FILE Test DEAL_II_HAVE_FLAG_Wno_unused_local_typedefs 
failed with the following output:
Change Dir: 
/p/project/cesmtst/esmtst19/18b_dev_deal.ii-candi/tmp/build/deal.II-master/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/gmake" "cmTC_04d24/fast"
/usr/bin/gmake -f CMakeFiles/cmTC_04d24.dir/build.make 
CMakeFiles/cmTC_04d24.dir/build
gmake[1]: Entering directory 
`/p/project/cesmtst/esmtst19/18b_dev_deal.ii-candi/tmp/build/deal.II-master/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_04d24.dir/src.cxx.o
/gpfs/software/juwels/stages/2018b/software/psmpi/5.2.1-1-iccifort-2019.0.117-GCC-7.3.0/bin/mpicxx
    -DDEAL_II_HAVE_FLAG_Wno_unused_local_typedefs -xhost   
-Wno-unused-local-typedefs -o CMakeFiles/cmTC_04d24.dir/src.cxx.o -c 
/p/project/cesmtst/esmtst19/18b_dev_deal.ii-candi/tmp/build/deal.II-master/CMakeFiles/CMakeTmp/src.cxx
icpc: command line warning #10148: option '-Wno-unused-local-typedefs' not 
supported
Linking CXX executable cmTC_04d24
/gpfs/software/juwels/stages/2018b/software/CMake/3.13.0-GCCcore-7.3.0/bin/cmake
 -E cmake_link_script CMakeFiles/cmTC_04d24.dir/link.txt --verbose=1
/gpfs/software/juwels/stages/2018b/software/psmpi/5.2.1-1-iccifort-2019.0.117-GCC-7.3.0/bin/mpicxx
   -DDEAL_II_HAVE_FLAG_Wno_unused_local_typedefs -xhost    -rdynamic 
CMakeFiles/cmTC_04d24.dir/src.cxx.o  -o cmTC_04d24 
gmake[1]: Leaving directory 
`/p/project/cesmtst/esmtst19/18b_dev_deal.ii-candi/tmp/build/deal.II-master/CMakeFiles/CMakeTmp'

Source file was:
int main() { return 0; }
Performing C++ SOURCE FILE Test DEAL_II_HAVE_USABLE_FLAGS_DEBUG failed with the 
following output:
Change Dir: 
/p/project/cesmtst/esmtst19/18b_dev_deal.ii-candi/tmp/build/deal.II-master/CMakeFiles/CMakeTmp

Run Build Command:"/usr/bin/gmake" "cmTC_7325f/fast"
/usr/bin/gmake -f CMakeFiles/cmTC_7325f.dir/build.make 
CMakeFiles/cmTC_7325f.dir/build
gmake[1]: Entering directory 
`/p/project/cesmtst/esmtst19/18b_dev_deal.ii-candi/tmp/build/deal.II-master/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_7325f.dir/src.cxx.o
/gpfs/software/juwels/stages/2018b/software/psmpi/5.2.1-1-iccifort-2019.0.117-GCC-7.3.0/bin/mpicxx
    -DDEAL_II_HAVE_USABLE_FLAGS_DEBUG -fpic -ansi -w2 -diag-disable=remark 
-wd21 -wd68 -wd135 -wd175 -wd177 -wd191 -wd193 -wd279 -wd327 -wd383 -wd981 
-wd1418 -wd1478 -wd1572 -wd2259 -wd2536 -wd2651 -wd3415 -wd15531 -wd111 -wd128 
-wd185 -wd186 -wd280 -qopenmp-simd -std=c++14 -xhost -O0 -g -gdwarf-2 
-grecord-gcc-switches   -o CMakeFiles/cmTC_7325f.dir/src.cxx.o -c 
/p/project/cesmtst/esmtst19/18b_dev_deal.ii-candi/tmp/build/deal.II-master/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_7325f
/gpfs/software/juwels/stages/2018b/software/CMake/3.13.0-GCCcore-7.3.0/bin/cmake
 -E cmake_link_script CMakeFiles/cmTC_7325f.dir/link.txt --verbose=1
/gpfs/software/juwels/stages/2018b/software/psmpi/5.2.1-1-iccifort-2019.0.117-GCC-7.3.0/bin/mpicxx
   -DDEAL_II_HAVE_USABLE_FLAGS_DEBUG -fpic -ansi -w2 -diag-disable=remark -wd21 
-wd68 -wd135 -wd175 -wd177 -wd191 -wd193 -wd279 -wd327 -wd383 -wd981 -wd1418 
-wd1478 -wd1572 -wd2259 -wd2536 -wd2651 -wd3415 -wd15531 -wd111 -wd128 -wd185 
-wd186 -wd280 -qopenmp-simd -std=c++14 -xhost -O0 -g -gdwarf-2 
-grecord-gcc-switches    -rdynamic CMakeFiles/cmTC_7325f.dir/src.cxx.o  -o 
cmTC_7325f 
-Wl,-rpath,/p/project/cesmtst/esmtst19/18b_dev_deal.ii-candi/petsc-3.7.6/lib:/p/project/cesmtst/esmtst19/18b_dev_deal.ii-candi/p4est-2.0/DEBUG/lib
 -shared-intel -qopenmp -rdynamic -fuse-ld=gold -pthread /usr/lib64/libz.so 
-lrt 
/p/project/cesmtst/esmtst19/18b_dev_deal.ii-candi/petsc-3.7.6/lib/libpetsc.so 
/p/project/cesmtst/esmtst19/18b_dev_deal.ii-candi/petsc-3.7.6/lib/libHYPRE.a 
-lmkl_sequential 
/gpfs/software/juwels/stages/2018b/software/hwloc/1.11.11-GCCcore-7.3.0/lib/libhwloc.so
 /usr/lib64/libssl.so /usr/lib64/libcrypto.so 
/gpfs/software/juwels/stages/2018b/software/psmpi/5.2.1-1-iccifort-2019.0.117-GCC-7.3.0/lib/libmpifort.so
 -lifport 
/gpfs/software/juwels/stages/2018b/software/ifort/2019.0.117-GCC-7.3.0/compilers_and_libraries_2019.0.117/linux/compiler/lib/intel64/libifcoremt_pic.a
 
/gpfs/software/juwels/stages/2018b/software/psmpi/5.2.1-1-iccifort-2019.0.117-GCC-7.3.0/lib/libmpicxx.so
 
/gpfs/software/juwels/stages/2018b/software/psmpi/5.2.1-1-iccifort-2019.0.117-GCC-7.3.0/lib/libmpi.so
 
/gpfs/software/juwels/stages/2018b/software/ifort/2019.0.117-GCC-7.3.0/compilers_and_libraries_2019.0.117/linux/compiler/lib/intel64/libimf.so
 
/gpfs/software/juwels/stages/2018b/software/ifort/2019.0.117-GCC-7.3.0/compilers_and_libraries_2019.0.117/linux/compiler/lib/intel64/libsvml.so
 -lirng 
/gpfs/software/juwels/stages/2018b/software/ifort/2019.0.117-GCC-7.3.0/compilers_and_libraries_2019.0.117/linux/compiler/lib/intel64/libipgo.a
 
/gpfs/software/juwels/stages/2018b/software/ifort/2019.0.117-GCC-7.3.0/compilers_and_libraries_2019.0.117/linux/compiler/lib/intel64/libdecimal.a
 -lcilkrts 
/gpfs/software/juwels/stages/2018b/software/ifort/2019.0.117-GCC-7.3.0/compilers_and_libraries_2019.0.117/linux/compiler/lib/intel64/libirc.so
 
/gpfs/software/juwels/stages/2018b/software/ifort/2019.0.117-GCC-7.3.0/compilers_and_libraries_2019.0.117/linux/compiler/lib/intel64/libirc_s.a
 
/gpfs/software/juwels/stages/2018b/software/imkl/2019.0.117-ipsmpi-2018b/mkl/lib/intel64/libmkl_lapack.a
 -lpthread -lm -lmkl_intel_lp64 -lmkl_intel_thread -lmkl_core 
/gpfs/software/juwels/stages/2018b/software/imkl/2019.0.117-ipsmpi-2018b/lib/intel64/libiomp5.so
 -lmpifort -lmpi -lifport -lifcoremt -limf -lm -lipgo -lirc -lpthread -lsvml 
-lgcc -lgcc_s -lirc_s -ldl -lc -ltbb_debug 
/p/project/cesmtst/esmtst19/18b_dev_deal.ii-candi/p4est-2.0/DEBUG/lib/libp4est.so
 /p/project/cesmtst/esmtst19/18b_dev_deal.ii-candi/p4est-2.0/DEBUG/lib/libsc.so 
/gpfs/software/juwels/stages/2018b/software/imkl/2019.0.117-ipsmpi-2018b/mkl/lib/intel64/libmkl_core.a(mkl_get_mpi_wrappers_static.o):mkl_get_mpi_wrappers.c:function
 mkl_serv_get_mpi_wrappers: error: undefined reference to 'MKLMPI_Get_wrappers'
gmake[1]: *** [cmTC_7325f] Error 1
gmake[1]: Leaving directory 
`/p/project/cesmtst/esmtst19/18b_dev_deal.ii-candi/tmp/build/deal.II-master/CMakeFiles/CMakeTmp'
gmake: *** [cmTC_7325f/fast] Error 2

Source file was:
int main(){ return 0; }

Reply via email to