Skip to content

Instantly share code, notes, and snippets.

@carlosal1015
Last active August 4, 2021 23:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save carlosal1015/bb3209a6e78255ef5a795ae9999f8c72 to your computer and use it in GitHub Desktop.
Save carlosal1015/bb3209a6e78255ef5a795ae9999f8c72 to your computer and use it in GitHub Desktop.
deal-ii 9.3.1-1 log installation
Performing C++ SOURCE FILE Test DEAL_II_HAVE_AVX failed with the following compile output:
Change Dir: /tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make -f Makefile cmTC_04095/fast && /usr/bin/make -f CMakeFiles/cmTC_04095.dir/build.make CMakeFiles/cmTC_04095.dir/build
make[1]: Entering directory '/tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_04095.dir/src.cxx.o
/usr/bin/c++ -DDEAL_II_HAVE_AVX -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -Wno-unknown-pragmas -Wno-cpp -o CMakeFiles/cmTC_04095.dir/src.cxx.o -c /tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp/src.cxx
/tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp/src.cxx:3:6: error: #error "__AVX__ flag not set, no support for AVX"
3 | #error "__AVX__ flag not set, no support for AVX"
| ^~~~~
/tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp/src.cxx: In function ‘int main()’:
/tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp/src.cxx:35:9: warning: AVX vector return without AVX enabled changes the ABI [-Wpsabi]
35 | b = _mm256_set1_pd (static_cast<volatile double>(2.25));
| ~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
make[1]: *** [CMakeFiles/cmTC_04095.dir/build.make:78: CMakeFiles/cmTC_04095.dir/src.cxx.o] Error 1
make[1]: Leaving directory '/tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp'
make: *** [Makefile:127: cmTC_04095/fast] Error 2
...and run output:
Return value: 1
Source file was:
#ifndef __AVX__
#error "__AVX__ flag not set, no support for AVX"
#endif
#include <x86intrin.h>
class VectorizedArray
{
public:
VectorizedArray &
operator += (const VectorizedArray &vec)
{
data = _mm256_add_pd (data, vec.data);
return *this;
}
__m256d data;
};
inline
VectorizedArray
operator + (const VectorizedArray &u, const VectorizedArray &v)
{
VectorizedArray tmp = u;
return tmp+=v;
}
int main()
{
__m256d a, b;
const unsigned int vector_bytes = sizeof(__m256d);
const int n_vectors = vector_bytes/sizeof(double);
__m256d * data =
reinterpret_cast<__m256d*>(_mm_malloc (2*vector_bytes, vector_bytes));
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 = _mm256_set1_pd (static_cast<volatile double>(2.25));
data[0] = _mm256_add_pd (a, b);
data[1] = _mm256_mul_pd (b, data[0]);
ptr = reinterpret_cast<double*>(&data[1]);
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 = 1;
VectorizedArray c, d, e;
c.data = b;
d.data = b;
e = c + d;
ptr = reinterpret_cast<double*>(&e.data);
for (int i=0; i<n_vectors; ++i)
if (ptr[i] != 4.5)
return_value = 1;
_mm_free (data);
return return_value;
}
Performing C++ SOURCE FILE Test DEAL_II_HAVE_AVX512 failed with the following compile output:
Change Dir: /tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make -f Makefile cmTC_373c7/fast && /usr/bin/make -f CMakeFiles/cmTC_373c7.dir/build.make CMakeFiles/cmTC_373c7.dir/build
make[1]: Entering directory '/tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_373c7.dir/src.cxx.o
/usr/bin/c++ -DDEAL_II_HAVE_AVX512 -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -Wno-unknown-pragmas -Wno-cpp -o CMakeFiles/cmTC_373c7.dir/src.cxx.o -c /tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp/src.cxx
/tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp/src.cxx:3:6: error: #error "__AVX512F__ flag not set, no support for AVX512"
3 | #error "__AVX512F__ flag not set, no support for AVX512"
| ^~~~~
/tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp/src.cxx: In function ‘int main()’:
/tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp/src.cxx:18:9: warning: AVX512F vector return without AVX512F enabled changes the ABI [-Wpsabi]
18 | b = _mm512_set1_pd(x);
| ~~^~~~~~~~~~~~~~~~~~~
make[1]: *** [CMakeFiles/cmTC_373c7.dir/build.make:78: CMakeFiles/cmTC_373c7.dir/src.cxx.o] Error 1
make[1]: Leaving directory '/tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp'
make: *** [Makefile:127: cmTC_373c7/fast] Error 2
...and run output:
Return value: 1
Source file was:
#ifndef __AVX512F__
#error "__AVX512F__ flag not set, no support for AVX512"
#endif
#include <x86intrin.h>
int main()
{
__m512d a, b;
const unsigned int vector_bytes = sizeof(__m512d);
const int n_vectors = vector_bytes/sizeof(double);
__m512d * data =
reinterpret_cast<__m512d*>(_mm_malloc (2*vector_bytes, vector_bytes));
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;
const volatile double x = 2.25;
b = _mm512_set1_pd(x);
data[0] = _mm512_add_pd (a, b);
data[1] = _mm512_mul_pd (b, data[0]);
ptr = reinterpret_cast<double*>(&data[1]);
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 = 1;
_mm_free (data);
return return_value;
}
Performing C++ SOURCE FILE Test DEAL_II_HAVE_ALTIVEC failed with the following compile output:
Change Dir: /tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make -f Makefile cmTC_5e026/fast && /usr/bin/make -f CMakeFiles/cmTC_5e026.dir/build.make CMakeFiles/cmTC_5e026.dir/build
make[1]: Entering directory '/tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_5e026.dir/src.cxx.o
/usr/bin/c++ -DDEAL_II_HAVE_ALTIVEC -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -Wno-unknown-pragmas -Wno-cpp -o CMakeFiles/cmTC_5e026.dir/src.cxx.o -c /tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp/src.cxx
/tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp/src.cxx:3:6: error: #error "__ALTIVEC__ flag not set, no support for Altivec"
3 | #error "__ALTIVEC__ flag not set, no support for Altivec"
| ^~~~~
/tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp/src.cxx:5:14: fatal error: altivec.h: No such file or directory
5 | #include <altivec.h>
| ^~~~~~~~~~~
compilation terminated.
make[1]: *** [CMakeFiles/cmTC_5e026.dir/build.make:78: CMakeFiles/cmTC_5e026.dir/src.cxx.o] Error 1
make[1]: Leaving directory '/tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp'
make: *** [Makefile:127: cmTC_5e026/fast] Error 2
...and run output:
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_CXX20_FEATURES failed with the following output:
Change Dir: /tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make -f Makefile cmTC_f8529/fast && /usr/bin/make -f CMakeFiles/cmTC_f8529.dir/build.make CMakeFiles/cmTC_f8529.dir/build
make[1]: Entering directory '/tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_f8529.dir/src.cxx.o
/usr/bin/c++ -DDEAL_II_HAVE_CXX20_FEATURES -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -Wno-unknown-pragmas -Wno-cpp -pedantic -fPIC -Wall -Wextra -Wmissing-braces -Woverloaded-virtual -Wpointer-arith -Wsign-compare -Wsuggest-override -Wswitch -Wsynth -Wwrite-strings -Wno-placement-new -Wno-deprecated-declarations -Wno-literal-suffix -Wno-psabi -Wno-class-memaccess -fopenmp-simd -O0 -ggdb -o CMakeFiles/cmTC_f8529.dir/src.cxx.o -c /tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp/src.cxx
/tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp/src.cxx:6:8: error: #error "insufficient support for C++20"
6 | # error "insufficient support for C++20"
| ^~~~~
/tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp/src.cxx:10:8: error: #error "insufficient support for C++20"
10 | # error "insufficient support for C++20"
| ^~~~~
make[1]: *** [CMakeFiles/cmTC_f8529.dir/build.make:78: CMakeFiles/cmTC_f8529.dir/src.cxx.o] Error 1
make[1]: Leaving directory '/tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp'
make: *** [Makefile:127: cmTC_f8529/fast] Error 2
Source file was:
#include <cmath>
#include <ranges>
#if __cplusplus < 201709L && !defined(_MSC_VER) && !defined(__INTEL_COMPILER)
# error "insufficient support for C++20"
#endif
#if !(defined __cpp_lib_ranges) || (__cpp_lib_ranges < 201911)
# error "insufficient support for C++20"
#endif
int main()
{
}
Performing C++ SOURCE FILE Test DEAL_II_HAVE_FLAG_Wno_unused_command_line_argument failed with the following output:
Change Dir: /tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make -f Makefile cmTC_9b604/fast && /usr/bin/make -f CMakeFiles/cmTC_9b604.dir/build.make CMakeFiles/cmTC_9b604.dir/build
make[1]: Entering directory '/tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_9b604.dir/src.cxx.o
/usr/bin/c++ -DDEAL_II_HAVE_FLAG_Wno_unused_command_line_argument -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -Wno-unknown-pragmas -Wno-cpp -pedantic -fPIC -Wall -Wextra -Wmissing-braces -Woverloaded-virtual -Wpointer-arith -Wsign-compare -Wsuggest-override -Wswitch -Wsynth -Wwrite-strings -Wno-placement-new -Wno-deprecated-declarations -Wno-literal-suffix -Wno-psabi -Wno-class-memaccess -fopenmp-simd -O0 -ggdb -Wunused-command-line-argument -o CMakeFiles/cmTC_9b604.dir/src.cxx.o -c /tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp/src.cxx
c++: error: unrecognized command-line option '-Wunused-command-line-argument'; did you mean '-Wunused-dummy-argument'?
make[1]: *** [CMakeFiles/cmTC_9b604.dir/build.make:78: CMakeFiles/cmTC_9b604.dir/src.cxx.o] Error 1
make[1]: Leaving directory '/tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp'
make: *** [Makefile:127: cmTC_9b604/fast] Error 2
Source file was:
int main() { return 0; }
Performing C++ SOURCE FILE Test DEAL_II_HAVE_COMPLEX_OPERATOR_OVERLOADS failed with the following output:
Change Dir: /tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make -f Makefile cmTC_b666a/fast && /usr/bin/make -f CMakeFiles/cmTC_b666a.dir/build.make CMakeFiles/cmTC_b666a.dir/build
make[1]: Entering directory '/tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_b666a.dir/src.cxx.o
/usr/bin/c++ -DDEAL_II_HAVE_COMPLEX_OPERATOR_OVERLOADS -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -Wno-unknown-pragmas -Wno-cpp -pedantic -fPIC -Wall -Wextra -Wmissing-braces -Woverloaded-virtual -Wpointer-arith -Wsign-compare -Wsuggest-override -Wswitch -Wsynth -Wwrite-strings -Wno-placement-new -Wno-deprecated-declarations -Wno-literal-suffix -Wno-psabi -Wno-class-memaccess -fopenmp-simd -O0 -ggdb -Werror -o CMakeFiles/cmTC_b666a.dir/src.cxx.o -c /tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp/src.cxx
/tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp/src.cxx: In function ‘int main()’:
/tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp/src.cxx:6:14: error: no match for ‘operator*’ (operand types are ‘double’ and ‘std::complex<float>’)
6 | double() * std::complex<float>();
In file included from /tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp/src.cxx:2:
/usr/include/c++/11.1.0/complex:392:5: note: candidate: ‘template<class _Tp> std::complex<_Tp> std::operator*(const std::complex<_Tp>&, const std::complex<_Tp>&)’
392 | operator*(const complex<_Tp>& __x, const complex<_Tp>& __y)
| ^~~~~~~~
/usr/include/c++/11.1.0/complex:392:5: note: template argument deduction/substitution failed:
/tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp/src.cxx:6:36: note: mismatched types ‘const std::complex<_Tp>’ and ‘double’
6 | double() * std::complex<float>();
| ^
In file included from /tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp/src.cxx:2:
/usr/include/c++/11.1.0/complex:401:5: note: candidate: ‘template<class _Tp> std::complex<_Tp> std::operator*(const std::complex<_Tp>&, const _Tp&)’
401 | operator*(const complex<_Tp>& __x, const _Tp& __y)
| ^~~~~~~~
/usr/include/c++/11.1.0/complex:401:5: note: template argument deduction/substitution failed:
/tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp/src.cxx:6:36: note: mismatched types ‘const std::complex<_Tp>’ and ‘double’
6 | double() * std::complex<float>();
| ^
In file included from /tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp/src.cxx:2:
/usr/include/c++/11.1.0/complex:410:5: note: candidate: ‘template<class _Tp> std::complex<_Tp> std::operator*(const _Tp&, const std::complex<_Tp>&)’
410 | operator*(const _Tp& __x, const complex<_Tp>& __y)
| ^~~~~~~~
/usr/include/c++/11.1.0/complex:410:5: note: template argument deduction/substitution failed:
/tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp/src.cxx:6:36: note: deduced conflicting types for parameter ‘_Tp’ (‘double’ and ‘float’)
6 | double() * std::complex<float>();
| ^
/tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp/src.cxx:7:27: error: no match for ‘operator*’ (operand types are ‘std::complex<float>’ and ‘double’)
7 | std::complex<float>() * double();
In file included from /tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp/src.cxx:2:
/usr/include/c++/11.1.0/complex:392:5: note: candidate: ‘template<class _Tp> std::complex<_Tp> std::operator*(const std::complex<_Tp>&, const std::complex<_Tp>&)’
392 | operator*(const complex<_Tp>& __x, const complex<_Tp>& __y)
| ^~~~~~~~
/usr/include/c++/11.1.0/complex:392:5: note: template argument deduction/substitution failed:
/tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp/src.cxx:7:36: note: mismatched types ‘const std::complex<_Tp>’ and ‘double’
7 | std::complex<float>() * double();
| ^
In file included from /tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp/src.cxx:2:
/usr/include/c++/11.1.0/complex:401:5: note: candidate: ‘template<class _Tp> std::complex<_Tp> std::operator*(const std::complex<_Tp>&, const _Tp&)’
401 | operator*(const complex<_Tp>& __x, const _Tp& __y)
| ^~~~~~~~
/usr/include/c++/11.1.0/complex:401:5: note: template argument deduction/substitution failed:
/tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp/src.cxx:7:36: note: deduced conflicting types for parameter ‘const _Tp’ (‘float’ and ‘double’)
7 | std::complex<float>() * double();
| ^
In file included from /tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp/src.cxx:2:
/usr/include/c++/11.1.0/complex:410:5: note: candidate: ‘template<class _Tp> std::complex<_Tp> std::operator*(const _Tp&, const std::complex<_Tp>&)’
410 | operator*(const _Tp& __x, const complex<_Tp>& __y)
| ^~~~~~~~
/usr/include/c++/11.1.0/complex:410:5: note: template argument deduction/substitution failed:
/tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp/src.cxx:7:36: note: mismatched types ‘const std::complex<_Tp>’ and ‘double’
7 | std::complex<float>() * double();
| ^
/tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp/src.cxx:8:13: error: no match for ‘operator*’ (operand types are ‘float’ and ‘std::complex<double>’)
8 | float() * std::complex<double>();
In file included from /tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp/src.cxx:2:
/usr/include/c++/11.1.0/complex:392:5: note: candidate: ‘template<class _Tp> std::complex<_Tp> std::operator*(const std::complex<_Tp>&, const std::complex<_Tp>&)’
392 | operator*(const complex<_Tp>& __x, const complex<_Tp>& __y)
| ^~~~~~~~
/usr/include/c++/11.1.0/complex:392:5: note: template argument deduction/substitution failed:
/tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp/src.cxx:8:36: note: mismatched types ‘const std::complex<_Tp>’ and ‘float’
8 | float() * std::complex<double>();
| ^
In file included from /tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp/src.cxx:2:
/usr/include/c++/11.1.0/complex:401:5: note: candidate: ‘template<class _Tp> std::complex<_Tp> std::operator*(const std::complex<_Tp>&, const _Tp&)’
401 | operator*(const complex<_Tp>& __x, const _Tp& __y)
| ^~~~~~~~
/usr/include/c++/11.1.0/complex:401:5: note: template argument deduction/substitution failed:
/tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp/src.cxx:8:36: note: mismatched types ‘const std::complex<_Tp>’ and ‘float’
8 | float() * std::complex<double>();
| ^
In file included from /tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp/src.cxx:2:
/usr/include/c++/11.1.0/complex:410:5: note: candidate: ‘template<class _Tp> std::complex<_Tp> std::operator*(const _Tp&, const std::complex<_Tp>&)’
410 | operator*(const _Tp& __x, const complex<_Tp>& __y)
| ^~~~~~~~
/usr/include/c++/11.1.0/complex:410:5: note: template argument deduction/substitution failed:
/tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp/src.cxx:8:36: note: deduced conflicting types for parameter ‘_Tp’ (‘float’ and ‘double’)
8 | float() * std::complex<double>();
| ^
/tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp/src.cxx:9:28: error: no match for ‘operator*’ (operand types are ‘std::complex<double>’ and ‘float’)
9 | std::complex<double>() * float();
In file included from /tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp/src.cxx:2:
/usr/include/c++/11.1.0/complex:392:5: note: candidate: ‘template<class _Tp> std::complex<_Tp> std::operator*(const std::complex<_Tp>&, const std::complex<_Tp>&)’
392 | operator*(const complex<_Tp>& __x, const complex<_Tp>& __y)
| ^~~~~~~~
/usr/include/c++/11.1.0/complex:392:5: note: template argument deduction/substitution failed:
/tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp/src.cxx:9:36: note: mismatched types ‘const std::complex<_Tp>’ and ‘float’
9 | std::complex<double>() * float();
| ^
In file included from /tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp/src.cxx:2:
/usr/include/c++/11.1.0/complex:401:5: note: candidate: ‘template<class _Tp> std::complex<_Tp> std::operator*(const std::complex<_Tp>&, const _Tp&)’
401 | operator*(const complex<_Tp>& __x, const _Tp& __y)
| ^~~~~~~~
/usr/include/c++/11.1.0/complex:401:5: note: template argument deduction/substitution failed:
/tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp/src.cxx:9:36: note: deduced conflicting types for parameter ‘const _Tp’ (‘double’ and ‘float’)
9 | std::complex<double>() * float();
| ^
In file included from /tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp/src.cxx:2:
/usr/include/c++/11.1.0/complex:410:5: note: candidate: ‘template<class _Tp> std::complex<_Tp> std::operator*(const _Tp&, const std::complex<_Tp>&)’
410 | operator*(const _Tp& __x, const complex<_Tp>& __y)
| ^~~~~~~~
/usr/include/c++/11.1.0/complex:410:5: note: template argument deduction/substitution failed:
/tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp/src.cxx:9:36: note: mismatched types ‘const std::complex<_Tp>’ and ‘float’
9 | std::complex<double>() * float();
| ^
/tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp/src.cxx:10:28: error: no match for ‘operator*’ (operand types are ‘std::complex<double>’ and ‘std::complex<float>’)
10 | std::complex<double>() * std::complex<float>();
| ~~~~~~~~~~~~~~~~~ ^ ~~~~~~~~~~~~~~~~
| | |
| complex<double> complex<float>
In file included from /tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp/src.cxx:2:
/usr/include/c++/11.1.0/complex:392:5: note: candidate: ‘template<class _Tp> std::complex<_Tp> std::operator*(const std::complex<_Tp>&, const std::complex<_Tp>&)’
392 | operator*(const complex<_Tp>& __x, const complex<_Tp>& __y)
| ^~~~~~~~
/usr/include/c++/11.1.0/complex:392:5: note: template argument deduction/substitution failed:
/tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp/src.cxx:10:50: note: deduced conflicting types for parameter ‘_Tp’ (‘double’ and ‘float’)
10 | std::complex<double>() * std::complex<float>();
| ^
In file included from /tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp/src.cxx:2:
/usr/include/c++/11.1.0/complex:401:5: note: candidate: ‘template<class _Tp> std::complex<_Tp> std::operator*(const std::complex<_Tp>&, const _Tp&)’
401 | operator*(const complex<_Tp>& __x, const _Tp& __y)
| ^~~~~~~~
/usr/include/c++/11.1.0/complex:401:5: note: template argument deduction/substitution failed:
/tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp/src.cxx:10:50: note: deduced conflicting types for parameter ‘const _Tp’ (‘double’ and ‘std::complex<float>’)
10 | std::complex<double>() * std::complex<float>();
| ^
In file included from /tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp/src.cxx:2:
/usr/include/c++/11.1.0/complex:410:5: note: candidate: ‘template<class _Tp> std::complex<_Tp> std::operator*(const _Tp&, const std::complex<_Tp>&)’
410 | operator*(const _Tp& __x, const complex<_Tp>& __y)
| ^~~~~~~~
/usr/include/c++/11.1.0/complex:410:5: note: template argument deduction/substitution failed:
/tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp/src.cxx:10:50: note: deduced conflicting types for parameter ‘_Tp’ (‘std::complex<double>’ and ‘float’)
10 | std::complex<double>() * std::complex<float>();
| ^
/tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp/src.cxx:11:27: error: no match for ‘operator*’ (operand types are ‘std::complex<float>’ and ‘std::complex<double>’)
11 | std::complex<float>() * std::complex<double>();
| ~~~~~~~~~~~~~~~~ ^ ~~~~~~~~~~~~~~~~~
| | |
| complex<float> complex<double>
In file included from /tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp/src.cxx:2:
/usr/include/c++/11.1.0/complex:392:5: note: candidate: ‘template<class _Tp> std::complex<_Tp> std::operator*(const std::complex<_Tp>&, const std::complex<_Tp>&)’
392 | operator*(const complex<_Tp>& __x, const complex<_Tp>& __y)
| ^~~~~~~~
/usr/include/c++/11.1.0/complex:392:5: note: template argument deduction/substitution failed:
/tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp/src.cxx:11:50: note: deduced conflicting types for parameter ‘_Tp’ (‘float’ and ‘double’)
11 | std::complex<float>() * std::complex<double>();
| ^
In file included from /tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp/src.cxx:2:
/usr/include/c++/11.1.0/complex:401:5: note: candidate: ‘template<class _Tp> std::complex<_Tp> std::operator*(const std::complex<_Tp>&, const _Tp&)’
401 | operator*(const complex<_Tp>& __x, const _Tp& __y)
| ^~~~~~~~
/usr/include/c++/11.1.0/complex:401:5: note: template argument deduction/substitution failed:
/tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp/src.cxx:11:50: note: deduced conflicting types for parameter ‘const _Tp’ (‘float’ and ‘std::complex<double>’)
11 | std::complex<float>() * std::complex<double>();
| ^
In file included from /tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp/src.cxx:2:
/usr/include/c++/11.1.0/complex:410:5: note: candidate: ‘template<class _Tp> std::complex<_Tp> std::operator*(const _Tp&, const std::complex<_Tp>&)’
410 | operator*(const _Tp& __x, const complex<_Tp>& __y)
| ^~~~~~~~
/usr/include/c++/11.1.0/complex:410:5: note: template argument deduction/substitution failed:
/tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp/src.cxx:11:50: note: deduced conflicting types for parameter ‘_Tp’ (‘std::complex<float>’ and ‘double’)
11 | std::complex<float>() * std::complex<double>();
| ^
make[1]: *** [CMakeFiles/cmTC_b666a.dir/build.make:78: CMakeFiles/cmTC_b666a.dir/src.cxx.o] Error 1
make[1]: Leaving directory '/tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp'
make: *** [Makefile:127: cmTC_b666a/fast] Error 2
Source file was:
#include <complex>
int main()
{
double() * std::complex<float>();
std::complex<float>() * double();
float() * std::complex<double>();
std::complex<double>() * float();
std::complex<double>() * std::complex<float>();
std::complex<float>() * std::complex<double>();
return 0;
}
Performing C++ SOURCE FILE Test DEAL_II_COMPILER_HAS_FUSE_LD_LLD failed with the following output:
Change Dir: /tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make -f Makefile cmTC_e5033/fast && /usr/bin/make -f CMakeFiles/cmTC_e5033.dir/build.make CMakeFiles/cmTC_e5033.dir/build
make[1]: Entering directory '/tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_e5033.dir/src.cxx.o
/usr/bin/c++ -DDEAL_II_COMPILER_HAS_FUSE_LD_LLD -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -Wno-unknown-pragmas -Wno-cpp -Werror -shared -fPIC -fuse-ld=lld -o CMakeFiles/cmTC_e5033.dir/src.cxx.o -c /tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_e5033
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_e5033.dir/link.txt --verbose=1
/usr/bin/c++ -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -Wno-unknown-pragmas -Wno-cpp -Werror -shared -fPIC -fuse-ld=lld -rdynamic CMakeFiles/cmTC_e5033.dir/src.cxx.o -o cmTC_e5033 -Wl,-O1,--sort-common,-z,relro,-z,now
collect2: fatal error: cannot find ‘ld’
compilation terminated.
make[1]: *** [CMakeFiles/cmTC_e5033.dir/build.make:99: cmTC_e5033] Error 1
make[1]: Leaving directory '/tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp'
make: *** [Makefile:127: cmTC_e5033/fast] Error 2
Source file was:
#include <iostream>
void foo() { std::cout << "Hello, world!" << std::endl; }
Performing C++ SOURCE FILE Test DEAL_II_DELETED_MOVE_CONSTRUCTOR_BUG_OK failed with the following output:
Change Dir: /tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make -f Makefile cmTC_9bb10/fast && /usr/bin/make -f CMakeFiles/cmTC_9bb10.dir/build.make CMakeFiles/cmTC_9bb10.dir/build
make[1]: Entering directory '/tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_9bb10.dir/src.cxx.o
/usr/bin/c++ -DDEAL_II_DELETED_MOVE_CONSTRUCTOR_BUG_OK -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -Wno-unknown-pragmas -Wno-cpp -O3 -DNDEBUG -o CMakeFiles/cmTC_9bb10.dir/src.cxx.o -c /tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp/src.cxx
/tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp/src.cxx: In function ‘void unlucky(Maybe<int>&&)’:
/tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp/src.cxx:10:66: error: use of deleted function ‘Maybe<int>::Maybe(Maybe<int>&&)’
10 | void unlucky(Maybe<int> &&x) { Maybe<int> var{(Maybe<int> &&) x}; }
| ^
/tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp/src.cxx:6:29: note: ‘Maybe<int>::Maybe(Maybe<int>&&)’ is implicitly deleted because the default definition would be ill-formed:
6 | template <class T> struct Maybe {
| ^~~~~
/tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp/src.cxx:6:29: error: use of deleted function ‘NonMovable::NonMovable(NonMovable&&)’
/tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp/src.cxx:4:5: note: declared here
4 | NonMovable(NonMovable &&) = delete;
| ^~~~~~~~~~
make[1]: *** [CMakeFiles/cmTC_9bb10.dir/build.make:78: CMakeFiles/cmTC_9bb10.dir/src.cxx.o] Error 1
make[1]: Leaving directory '/tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp'
make: *** [Makefile:127: cmTC_9bb10/fast] Error 2
Source file was:
struct NonMovable {
NonMovable() = default;
NonMovable(NonMovable &&) = delete;
};
template <class T> struct Maybe {
NonMovable mMember;
template <typename U> Maybe(Maybe<U> &&) : mMember() {}
};
void unlucky(Maybe<int> &&x) { Maybe<int> var{(Maybe<int> &&) x}; }
int main() { return 0; }
Performing C SOURCE FILE Test CMAKE_HAVE_LIBC_PTHREAD failed with the following output:
Change Dir: /tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make -f Makefile cmTC_36b8c/fast && /usr/bin/make -f CMakeFiles/cmTC_36b8c.dir/build.make CMakeFiles/cmTC_36b8c.dir/build
make[1]: Entering directory '/tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_36b8c.dir/src.c.o
/usr/bin/cc -DCMAKE_HAVE_LIBC_PTHREAD -O3 -DNDEBUG -o CMakeFiles/cmTC_36b8c.dir/src.c.o -c /tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp/src.c
Linking C executable cmTC_36b8c
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_36b8c.dir/link.txt --verbose=1
/usr/bin/cc -O3 -DNDEBUG -rdynamic CMakeFiles/cmTC_36b8c.dir/src.c.o -o cmTC_36b8c
/usr/bin/ld: CMakeFiles/cmTC_36b8c.dir/src.c.o: in function `main':
src.c:(.text.startup+0x23): undefined reference to `pthread_create'
/usr/bin/ld: src.c:(.text.startup+0x2c): undefined reference to `pthread_detach'
/usr/bin/ld: src.c:(.text.startup+0x35): undefined reference to `pthread_cancel'
/usr/bin/ld: src.c:(.text.startup+0x40): undefined reference to `pthread_join'
collect2: error: ld returned 1 exit status
make[1]: *** [CMakeFiles/cmTC_36b8c.dir/build.make:99: cmTC_36b8c] Error 1
make[1]: Leaving directory '/tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp'
make: *** [Makefile:127: cmTC_36b8c/fast] Error 2
Source file was:
#include <pthread.h>
static void* test_func(void* data)
{
return data;
}
int main(void)
{
pthread_t thread;
pthread_create(&thread, NULL, test_func, NULL);
pthread_detach(thread);
pthread_cancel(thread);
pthread_join(thread, NULL);
pthread_atfork(NULL, NULL, NULL);
pthread_exit(NULL);
return 0;
}
Determining if the function pthread_create exists in the pthreads failed with the following output:
Change Dir: /tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make -f Makefile cmTC_05da4/fast && /usr/bin/make -f CMakeFiles/cmTC_05da4.dir/build.make CMakeFiles/cmTC_05da4.dir/build
make[1]: Entering directory '/tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_05da4.dir/CheckFunctionExists.c.o
/usr/bin/cc -DCHECK_FUNCTION_EXISTS=pthread_create -O3 -DNDEBUG -o CMakeFiles/cmTC_05da4.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.21/Modules/CheckFunctionExists.c
Linking C executable cmTC_05da4
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_05da4.dir/link.txt --verbose=1
/usr/bin/cc -DCHECK_FUNCTION_EXISTS=pthread_create -O3 -DNDEBUG -rdynamic CMakeFiles/cmTC_05da4.dir/CheckFunctionExists.c.o -o cmTC_05da4 -lpthreads
/usr/bin/ld: cannot find -lpthreads
collect2: error: ld returned 1 exit status
make[1]: *** [CMakeFiles/cmTC_05da4.dir/build.make:99: cmTC_05da4] Error 1
make[1]: Leaving directory '/tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp'
make: *** [Makefile:127: cmTC_05da4/fast] Error 2
Determining if the Fortran sgemm exists failed with the following output:
Change Dir: /tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make -f Makefile cmTC_8defc/fast && /usr/bin/make -f CMakeFiles/cmTC_8defc.dir/build.make CMakeFiles/cmTC_8defc.dir/build
make[1]: Entering directory '/tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp'
Building Fortran object CMakeFiles/cmTC_8defc.dir/testFortranCompiler.f.o
/usr/bin/gfortran -O3 -DNDEBUG -O3 -c /tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp/testFortranCompiler.f -o CMakeFiles/cmTC_8defc.dir/testFortranCompiler.f.o
Linking Fortran executable cmTC_8defc
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_8defc.dir/link.txt --verbose=1
/usr/bin/gfortran -O3 -DNDEBUG -O3 CMakeFiles/cmTC_8defc.dir/testFortranCompiler.f.o -o cmTC_8defc
/usr/bin/ld: CMakeFiles/cmTC_8defc.dir/testFortranCompiler.f.o: in function `main':
testFortranCompiler.f:(.text.startup+0x1d): undefined reference to `sgemm_'
collect2: error: ld returned 1 exit status
make[1]: *** [CMakeFiles/cmTC_8defc.dir/build.make:99: cmTC_8defc] Error 1
make[1]: Leaving directory '/tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp'
make: *** [Makefile:127: cmTC_8defc/fast] Error 2
Performing C++ SOURCE FILE Test MKL_SYMBOL_CHECK failed with the following output:
Change Dir: /tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make -f Makefile cmTC_f118e/fast && /usr/bin/make -f CMakeFiles/cmTC_f118e.dir/build.make CMakeFiles/cmTC_f118e.dir/build
make[1]: Entering directory '/tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_f118e.dir/src.cxx.o
/usr/bin/c++ -DMKL_SYMBOL_CHECK -O3 -DNDEBUG -o CMakeFiles/cmTC_f118e.dir/src.cxx.o -c /tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp/src.cxx
/tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp/src.cxx:2:14: fatal error: mkl.h: No such file or directory
2 | #include <mkl.h>
| ^~~~~~~
compilation terminated.
make[1]: *** [CMakeFiles/cmTC_f118e.dir/build.make:78: CMakeFiles/cmTC_f118e.dir/src.cxx.o] Error 1
make[1]: Leaving directory '/tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp'
make: *** [Makefile:127: cmTC_f118e/fast] Error 2
Source file was:
#include <mkl.h>
#include <vector>
int main(){
const int m = 5;
const int n = 2;
std::vector<double> A(m*n,0.);
std::vector<double> B(m*n,0.);
mkl_domatcopy('C', 'T', m, n, 1., A.data(), n, B.data(), m);
return 0;
}
Performing C++ SOURCE FILE Test DEAL_II_HAS_AUTO_PTR failed with the following output:
Change Dir: /tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make -f Makefile cmTC_5d9a4/fast && /usr/bin/make -f CMakeFiles/cmTC_5d9a4.dir/build.make CMakeFiles/cmTC_5d9a4.dir/build
make[1]: Entering directory '/tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_5d9a4.dir/src.cxx.o
/usr/bin/c++ -DDEAL_II_HAS_AUTO_PTR -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -Wno-unknown-pragmas -Wno-cpp -Werror -O3 -DNDEBUG -o CMakeFiles/cmTC_5d9a4.dir/src.cxx.o -c /tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp/src.cxx
/tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp/src.cxx: In function ‘int main()’:
/tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp/src.cxx:9:12: error: ‘template<class> class std::auto_ptr’ is deprecated: use 'std::unique_ptr' instead [-Werror=deprecated-declarations]
9 | std::auto_ptr<int> x(i);
| ^~~~~~~~
In file included from /usr/include/c++/11.1.0/memory:76,
from /tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp/src.cxx:2:
/usr/include/c++/11.1.0/bits/unique_ptr.h:57:28: note: declared here
57 | template<typename> class auto_ptr;
| ^~~~~~~~
cc1plus: all warnings being treated as errors
make[1]: *** [CMakeFiles/cmTC_5d9a4.dir/build.make:78: CMakeFiles/cmTC_5d9a4.dir/src.cxx.o] Error 1
make[1]: Leaving directory '/tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp'
make: *** [Makefile:127: cmTC_5d9a4/fast] Error 2
Source file was:
#include <memory>
#include <boost/config.hpp>
int main()
{
#ifndef BOOST_NO_AUTO_PTR
int *i = new int;
std::auto_ptr<int> x(i);
#endif
return 0;
}
Determining if the KOKKOS_ENABLE_CUDA_LAMBDA exist failed with the following output:
Change Dir: /tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make -f Makefile cmTC_ac605/fast && /usr/bin/make -f CMakeFiles/cmTC_ac605.dir/build.make CMakeFiles/cmTC_ac605.dir/build
make[1]: Entering directory '/tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_ac605.dir/CheckSymbolExists.c.o
/usr/bin/cc -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -Wno-unknown-pragmas -Wno-cpp -O3 -DNDEBUG -o CMakeFiles/cmTC_ac605.dir/CheckSymbolExists.c.o -c /tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp/CheckSymbolExists.c
/tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp/CheckSymbolExists.c: In function ‘main’:
/tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp/CheckSymbolExists.c:8:19: error: ‘KOKKOS_ENABLE_CUDA_LAMBDA’ undeclared (first use in this function); did you mean ‘KOKKOS_ENABLE_TASKDAG’?
8 | return ((int*)(&KOKKOS_ENABLE_CUDA_LAMBDA))[argc];
| ^~~~~~~~~~~~~~~~~~~~~~~~~
| KOKKOS_ENABLE_TASKDAG
/tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp/CheckSymbolExists.c:8:19: note: each undeclared identifier is reported only once for each function it appears in
make[1]: *** [CMakeFiles/cmTC_ac605.dir/build.make:78: CMakeFiles/cmTC_ac605.dir/CheckSymbolExists.c.o] Error 1
make[1]: Leaving directory '/tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp'
make: *** [Makefile:127: cmTC_ac605/fast] Error 2
File /tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp/CheckSymbolExists.c:
/* */
#include <Kokkos_Macros.hpp>
int main(int argc, char** argv)
{
(void)argv;
#ifndef KOKKOS_ENABLE_CUDA_LAMBDA
return ((int*)(&KOKKOS_ENABLE_CUDA_LAMBDA))[argc];
#else
(void)argc;
return 0;
#endif
}
Performing C++ SOURCE FILE Test TRILINOS_TPETRA_IS_FUNCTIONAL failed with the following output:
Change Dir: /tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make -f Makefile cmTC_670d1/fast && /usr/bin/make -f CMakeFiles/cmTC_670d1.dir/build.make CMakeFiles/cmTC_670d1.dir/build
make[1]: Entering directory '/tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_670d1.dir/src.cxx.o
/usr/bin/c++ -DTRILINOS_TPETRA_IS_FUNCTIONAL -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -Wno-unknown-pragmas -Wno-cpp -O3 -DNDEBUG -o CMakeFiles/cmTC_670d1.dir/src.cxx.o -c /tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_670d1
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_670d1.dir/link.txt --verbose=1
/usr/bin/c++ -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -Wno-unknown-pragmas -Wno-cpp -O3 -DNDEBUG -rdynamic CMakeFiles/cmTC_670d1.dir/src.cxx.o -o cmTC_670d1 -Wl,-rpath,/usr/lib/openmpi -Wl,-O1,--sort-common,-z,relro,-z,now /usr/lib/libpike-blackbox.so.12.18.1 /usr/lib/libtrilinoscouplings.so.12.18.1 /usr/lib/libpanzer-mini-fe.so.12.18.1 /usr/lib/libpanzer-stk.so.12.18.1 /usr/lib/libpanzer-disc-fe.so.12.18.1 /usr/lib/libpanzer-dof-mgr.so.12.18.1 /usr/lib/libpanzer-core.so.12.18.1 /usr/lib/libpiro.so.12.18.1 /usr/lib/librol.so.12.18.1 /usr/lib/libstokhos_muelu.so.12.18.1 /usr/lib/libstokhos_ifpack2.so.12.18.1 /usr/lib/libstokhos_amesos2.so.12.18.1 /usr/lib/libstokhos_xpetra.so.12.18.1 /usr/lib/libstokhos_tpetra.so.12.18.1 /usr/lib/libstokhos_sacado.so.12.18.1 /usr/lib/libstokhos.so.12.18.1 /usr/lib/libtempus.so.12.18.1 /usr/lib/librythmos.so.12.18.1 /usr/lib/libshylu_ddcommon.so.12.18.1 /usr/lib/libshylu_ddfrosch.so.12.18.1 /usr/lib/libshylu_ddbddc.so.12.18.1 /usr/lib/libmuelu-adapters.so.12.18.1 /usr/lib/libmuelu-interface.so.12.18.1 /usr/lib/libmuelu.so.12.18.1 /usr/lib/libmoertel.so.12.18.1 /usr/lib/liblocathyra.so.12.18.1 /usr/lib/liblocaepetra.so.12.18.1 /usr/lib/liblocalapack.so.12.18.1 /usr/lib/libloca.so.12.18.1 /usr/lib/libnoxepetra.so.12.18.1 /usr/lib/libnoxlapack.so.12.18.1 /usr/lib/libnox.so.12.18.1 /usr/lib/libphalanx.so.12.18.1 /usr/lib/libpercept.so.12.18.1 /usr/lib/libstk_expreval.so.12.18.1 /usr/lib/libstk_balance_test_utils.so.12.18.1 /usr/lib/libstk_balance_lib.so.12.18.1 /usr/lib/libstk_tools_lib.so.12.18.1 /usr/lib/libstk_transfer_utils_lib.so.12.18.1 /usr/lib/libstk_transfer_impl.so.12.18.1 /usr/lib/libstk_search_util_base.so.12.18.1 /usr/lib/libstk_search.so.12.18.1 /usr/lib/libstk_unit_test_utils.so.12.18.1 /usr/lib/libstk_mesh_fixtures.so.12.18.1 /usr/lib/libstk_ngp_test.so.12.18.1 /usr/lib/libstk_io_util.so.12.18.1 /usr/lib/libstk_io.so.12.18.1 /usr/lib/libstk_ngp.so.12.18.1 /usr/lib/libstk_mesh_base.so.12.18.1 /usr/lib/libstk_topology.so.12.18.1 /usr/lib/libstk_util_diag.so.12.18.1 /usr/lib/libstk_util_env.so.12.18.1 /usr/lib/libstk_util_command_line.so.12.18.1 /usr/lib/libstk_util_registry.so.12.18.1 /usr/lib/libstk_util_parallel.so.12.18.1 /usr/lib/libstk_util_util.so.12.18.1 /usr/lib/libstk_math.so.12.18.1 /usr/lib/libintrepid2.so.12.18.1 /usr/lib/libintrepid.so.12.18.1 /usr/lib/libteko.so.12.18.1 /usr/lib/libfei_trilinos.so.12.18.1 /usr/lib/libfei_base.so.12.18.1 /usr/lib/libstratimikos.so.12.18.1 /usr/lib/libstratimikosbelos.so.12.18.1 /usr/lib/libstratimikosamesos2.so.12.18.1 /usr/lib/libstratimikosaztecoo.so.12.18.1 /usr/lib/libstratimikosamesos.so.12.18.1 /usr/lib/libstratimikosml.so.12.18.1 /usr/lib/libstratimikosifpack.so.12.18.1 /usr/lib/libifpack2-adapters.so.12.18.1 /usr/lib/libifpack2.so.12.18.1 /usr/lib/libanasazitpetra.so.12.18.1 /usr/lib/libModeLaplace.so.12.18.1 /usr/lib/libanasaziepetra.so.12.18.1 /usr/lib/libanasazi.so.12.18.1 /usr/lib/libkomplex.so.12.18.1 /usr/lib/libmapvarlib.so.12.18.1 /usr/lib/libfastqlib.a /usr/lib/libblotlib.a /usr/lib/libplt.a /usr/lib/libsvdi_cgi.a /usr/lib/libsvdi_cdr.a /usr/lib/libsuplib.so.12.18.1 /usr/lib/libsuplib_c.so.12.18.1 /usr/lib/libsuplib_cpp.so.12.18.1 /usr/lib/libsupes.so.12.18.1 /usr/lib/libaprepro_lib.so.12.18.1 /usr/lib/libchaco.so.12.18.1 /usr/lib/libio_info_lib.so.12.18.1 /usr/lib/libIonit.so.12.18.1 /usr/lib/libIotr.so.12.18.1 /usr/lib/libIohb.so.12.18.1 /usr/lib/libIogs.so.12.18.1 /usr/lib/libIogn.so.12.18.1 /usr/lib/libIovs.so.12.18.1 /usr/lib/libIopg.so.12.18.1 /usr/lib/libIoexo_fac.so.12.18.1 /usr/lib/libIofx.so.12.18.1 /usr/lib/libIoex.so.12.18.1 /usr/lib/libIoss.so.12.18.1 /usr/lib/libnemesis.so.12.18.1 /usr/lib/libexoIIv2for32.so.12.18.1 /usr/lib/libexodus_for.so.12.18.1 /usr/lib/libexodus.so.12.18.1 /usr/lib/libamesos2.so.12.18.1 /usr/lib/libshylu_nodetacho.so.12.18.1 /usr/lib/libshylu_nodehts.so.12.18.1 /usr/lib/libbelosxpetra.so.12.18.1 /usr/lib/libbelostpetra.so.12.18.1 /usr/lib/libbelosepetra.so.12.18.1 /usr/lib/libbelos.so.12.18.1 /usr/lib/libml.so.12.18.1 /usr/lib/libifpack.so.12.18.1 /usr/lib/libzoltan2.so.12.18.1 /usr/lib/libpamgen_extras.so.12.18.1 /usr/lib/libpamgen.so.12.18.1 /usr/lib/libamesos.so.12.18.1 /usr/lib/libgaleri-xpetra.so.12.18.1 /usr/lib/libgaleri-epetra.so.12.18.1 /usr/lib/libaztecoo.so.12.18.1 /usr/lib/libdpliris.so.12.18.1 /usr/lib/libisorropia.so.12.18.1 /usr/lib/liboptipack.so.12.18.1 /usr/lib/libxpetra-sup.so.12.18.1 /usr/lib/libxpetra.so.12.18.1 /usr/lib/libthyratpetra.so.12.18.1 /usr/lib/libthyraepetraext.so.12.18.1 /usr/lib/libthyraepetra.so.12.18.1 /usr/lib/libthyracore.so.12.18.1 /usr/lib/libdomi.so.12.18.1 /usr/lib/libtrilinosss.so.12.18.1 /usr/lib/libtpetraext.so.12.18.1 /usr/lib/libtpetrainout.so.12.18.1 /usr/lib/libtpetra.so.12.18.1 /usr/lib/libkokkostsqr.so.12.18.1 /usr/lib/libtpetraclassiclinalg.so.12.18.1 /usr/lib/libtpetraclassicnodeapi.so.12.18.1 /usr/lib/libtpetraclassic.so.12.18.1 /usr/lib/libepetraext.so.12.18.1 /usr/lib/libtriutils.so.12.18.1 /usr/lib/libglobipack.so.12.18.1 /usr/lib/libshards.so.12.18.1 /usr/lib/libzoltan.so.12.18.1 /usr/lib/libepetra.so.12.18.1 /usr/lib/libminitensor.so.12.18.1 /usr/lib/libsacado.so.12.18.1 /usr/lib/librtop.so.12.18.1 /usr/lib/libkokkoskernels.so.12.18.1 /usr/lib/libteuchoskokkoscomm.so.12.18.1 /usr/lib/libteuchoskokkoscompat.so.12.18.1 /usr/lib/libteuchosremainder.so.12.18.1 /usr/lib/libteuchosnumerics.so.12.18.1 /usr/lib/libteuchoscomm.so.12.18.1 /usr/lib/libteuchosparameterlist.so.12.18.1 /usr/lib/libteuchosparser.so.12.18.1 /usr/lib/libteuchoscore.so.12.18.1 /usr/lib/libkokkosalgorithms.so.12.18.1 /usr/lib/libkokkoscontainers.so.12.18.1 /usr/lib/libkokkoscore.so.12.18.1 /usr/lib/libgtest.so.12.18.1 /usr/lib/openmpi/libmpi_cxx.so /usr/lib/openmpi/libmpi_usempif08.so /usr/lib/openmpi/libmpi_usempi_ignore_tkr.so /usr/lib/openmpi/libmpi_mpifh.so /usr/lib/openmpi/libmpi.so /usr/lib/libgtest.so /usr/lib/libboost_program_options.so /usr/lib/libboost_system.so /usr/lib/libX11.so -lm /usr/lib/libhdf5.so /usr/lib/libsz.so /usr/lib/libz.so -lm /usr/lib/libnetcdf.so /usr/lib/liblapack.so /usr/lib/libblas.so /usr/lib/libdl.so
/usr/bin/ld: warning: libboost_program_options.so.1.72.0, needed by /usr/lib/libstk_balance_lib.so.12.18.1, not found (try using -rpath or -rpath-link)
/usr/bin/ld: /usr/lib/libpanzer-disc-fe.so.12.18.1: undefined reference to `panzer::getIntegrationRuleIndex(int, panzer::Workset const&, panzer::WorksetDetailsAccessor&)'
collect2: error: ld returned 1 exit status
make[1]: *** [CMakeFiles/cmTC_670d1.dir/build.make:276: cmTC_670d1] Error 1
make[1]: Leaving directory '/tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp'
make: *** [Makefile:127: cmTC_670d1/fast] Error 2
Source file was:
#include <Tpetra_Vector.hpp>
int
main()
{
using LO = int;
using GO = unsigned int;
using Node = Kokkos::Compat::KokkosDeviceWrapperNode<Kokkos::Serial>;
using map_type = Tpetra::Map<LO, GO, Node>;
Teuchos::RCP<const map_type> dummy_map = Teuchos::rcp(new map_type());
Tpetra::Vector<double, LO, GO, Node> dummy_vector(dummy_map);
(void)dummy_vector;
return 0;
}
Performing C++ SOURCE FILE Test TRILINOS_MUELU_IS_FUNCTIONAL failed with the following output:
Change Dir: /tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make -f Makefile cmTC_1d097/fast && /usr/bin/make -f CMakeFiles/cmTC_1d097.dir/build.make CMakeFiles/cmTC_1d097.dir/build
make[1]: Entering directory '/tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_1d097.dir/src.cxx.o
/usr/bin/c++ -DTRILINOS_MUELU_IS_FUNCTIONAL -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -Wno-unknown-pragmas -Wno-cpp -O3 -DNDEBUG -o CMakeFiles/cmTC_1d097.dir/src.cxx.o -c /tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_1d097
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_1d097.dir/link.txt --verbose=1
/usr/bin/c++ -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -Wno-unknown-pragmas -Wno-cpp -O3 -DNDEBUG -rdynamic CMakeFiles/cmTC_1d097.dir/src.cxx.o -o cmTC_1d097 -Wl,-rpath,/usr/lib/openmpi -Wl,-O1,--sort-common,-z,relro,-z,now /usr/lib/libpike-blackbox.so.12.18.1 /usr/lib/libtrilinoscouplings.so.12.18.1 /usr/lib/libpanzer-mini-fe.so.12.18.1 /usr/lib/libpanzer-stk.so.12.18.1 /usr/lib/libpanzer-disc-fe.so.12.18.1 /usr/lib/libpanzer-dof-mgr.so.12.18.1 /usr/lib/libpanzer-core.so.12.18.1 /usr/lib/libpiro.so.12.18.1 /usr/lib/librol.so.12.18.1 /usr/lib/libstokhos_muelu.so.12.18.1 /usr/lib/libstokhos_ifpack2.so.12.18.1 /usr/lib/libstokhos_amesos2.so.12.18.1 /usr/lib/libstokhos_xpetra.so.12.18.1 /usr/lib/libstokhos_tpetra.so.12.18.1 /usr/lib/libstokhos_sacado.so.12.18.1 /usr/lib/libstokhos.so.12.18.1 /usr/lib/libtempus.so.12.18.1 /usr/lib/librythmos.so.12.18.1 /usr/lib/libshylu_ddcommon.so.12.18.1 /usr/lib/libshylu_ddfrosch.so.12.18.1 /usr/lib/libshylu_ddbddc.so.12.18.1 /usr/lib/libmuelu-adapters.so.12.18.1 /usr/lib/libmuelu-interface.so.12.18.1 /usr/lib/libmuelu.so.12.18.1 /usr/lib/libmoertel.so.12.18.1 /usr/lib/liblocathyra.so.12.18.1 /usr/lib/liblocaepetra.so.12.18.1 /usr/lib/liblocalapack.so.12.18.1 /usr/lib/libloca.so.12.18.1 /usr/lib/libnoxepetra.so.12.18.1 /usr/lib/libnoxlapack.so.12.18.1 /usr/lib/libnox.so.12.18.1 /usr/lib/libphalanx.so.12.18.1 /usr/lib/libpercept.so.12.18.1 /usr/lib/libstk_expreval.so.12.18.1 /usr/lib/libstk_balance_test_utils.so.12.18.1 /usr/lib/libstk_balance_lib.so.12.18.1 /usr/lib/libstk_tools_lib.so.12.18.1 /usr/lib/libstk_transfer_utils_lib.so.12.18.1 /usr/lib/libstk_transfer_impl.so.12.18.1 /usr/lib/libstk_search_util_base.so.12.18.1 /usr/lib/libstk_search.so.12.18.1 /usr/lib/libstk_unit_test_utils.so.12.18.1 /usr/lib/libstk_mesh_fixtures.so.12.18.1 /usr/lib/libstk_ngp_test.so.12.18.1 /usr/lib/libstk_io_util.so.12.18.1 /usr/lib/libstk_io.so.12.18.1 /usr/lib/libstk_ngp.so.12.18.1 /usr/lib/libstk_mesh_base.so.12.18.1 /usr/lib/libstk_topology.so.12.18.1 /usr/lib/libstk_util_diag.so.12.18.1 /usr/lib/libstk_util_env.so.12.18.1 /usr/lib/libstk_util_command_line.so.12.18.1 /usr/lib/libstk_util_registry.so.12.18.1 /usr/lib/libstk_util_parallel.so.12.18.1 /usr/lib/libstk_util_util.so.12.18.1 /usr/lib/libstk_math.so.12.18.1 /usr/lib/libintrepid2.so.12.18.1 /usr/lib/libintrepid.so.12.18.1 /usr/lib/libteko.so.12.18.1 /usr/lib/libfei_trilinos.so.12.18.1 /usr/lib/libfei_base.so.12.18.1 /usr/lib/libstratimikos.so.12.18.1 /usr/lib/libstratimikosbelos.so.12.18.1 /usr/lib/libstratimikosamesos2.so.12.18.1 /usr/lib/libstratimikosaztecoo.so.12.18.1 /usr/lib/libstratimikosamesos.so.12.18.1 /usr/lib/libstratimikosml.so.12.18.1 /usr/lib/libstratimikosifpack.so.12.18.1 /usr/lib/libifpack2-adapters.so.12.18.1 /usr/lib/libifpack2.so.12.18.1 /usr/lib/libanasazitpetra.so.12.18.1 /usr/lib/libModeLaplace.so.12.18.1 /usr/lib/libanasaziepetra.so.12.18.1 /usr/lib/libanasazi.so.12.18.1 /usr/lib/libkomplex.so.12.18.1 /usr/lib/libmapvarlib.so.12.18.1 /usr/lib/libfastqlib.a /usr/lib/libblotlib.a /usr/lib/libplt.a /usr/lib/libsvdi_cgi.a /usr/lib/libsvdi_cdr.a /usr/lib/libsuplib.so.12.18.1 /usr/lib/libsuplib_c.so.12.18.1 /usr/lib/libsuplib_cpp.so.12.18.1 /usr/lib/libsupes.so.12.18.1 /usr/lib/libaprepro_lib.so.12.18.1 /usr/lib/libchaco.so.12.18.1 /usr/lib/libio_info_lib.so.12.18.1 /usr/lib/libIonit.so.12.18.1 /usr/lib/libIotr.so.12.18.1 /usr/lib/libIohb.so.12.18.1 /usr/lib/libIogs.so.12.18.1 /usr/lib/libIogn.so.12.18.1 /usr/lib/libIovs.so.12.18.1 /usr/lib/libIopg.so.12.18.1 /usr/lib/libIoexo_fac.so.12.18.1 /usr/lib/libIofx.so.12.18.1 /usr/lib/libIoex.so.12.18.1 /usr/lib/libIoss.so.12.18.1 /usr/lib/libnemesis.so.12.18.1 /usr/lib/libexoIIv2for32.so.12.18.1 /usr/lib/libexodus_for.so.12.18.1 /usr/lib/libexodus.so.12.18.1 /usr/lib/libamesos2.so.12.18.1 /usr/lib/libshylu_nodetacho.so.12.18.1 /usr/lib/libshylu_nodehts.so.12.18.1 /usr/lib/libbelosxpetra.so.12.18.1 /usr/lib/libbelostpetra.so.12.18.1 /usr/lib/libbelosepetra.so.12.18.1 /usr/lib/libbelos.so.12.18.1 /usr/lib/libml.so.12.18.1 /usr/lib/libifpack.so.12.18.1 /usr/lib/libzoltan2.so.12.18.1 /usr/lib/libpamgen_extras.so.12.18.1 /usr/lib/libpamgen.so.12.18.1 /usr/lib/libamesos.so.12.18.1 /usr/lib/libgaleri-xpetra.so.12.18.1 /usr/lib/libgaleri-epetra.so.12.18.1 /usr/lib/libaztecoo.so.12.18.1 /usr/lib/libdpliris.so.12.18.1 /usr/lib/libisorropia.so.12.18.1 /usr/lib/liboptipack.so.12.18.1 /usr/lib/libxpetra-sup.so.12.18.1 /usr/lib/libxpetra.so.12.18.1 /usr/lib/libthyratpetra.so.12.18.1 /usr/lib/libthyraepetraext.so.12.18.1 /usr/lib/libthyraepetra.so.12.18.1 /usr/lib/libthyracore.so.12.18.1 /usr/lib/libdomi.so.12.18.1 /usr/lib/libtrilinosss.so.12.18.1 /usr/lib/libtpetraext.so.12.18.1 /usr/lib/libtpetrainout.so.12.18.1 /usr/lib/libtpetra.so.12.18.1 /usr/lib/libkokkostsqr.so.12.18.1 /usr/lib/libtpetraclassiclinalg.so.12.18.1 /usr/lib/libtpetraclassicnodeapi.so.12.18.1 /usr/lib/libtpetraclassic.so.12.18.1 /usr/lib/libepetraext.so.12.18.1 /usr/lib/libtriutils.so.12.18.1 /usr/lib/libglobipack.so.12.18.1 /usr/lib/libshards.so.12.18.1 /usr/lib/libzoltan.so.12.18.1 /usr/lib/libepetra.so.12.18.1 /usr/lib/libminitensor.so.12.18.1 /usr/lib/libsacado.so.12.18.1 /usr/lib/librtop.so.12.18.1 /usr/lib/libkokkoskernels.so.12.18.1 /usr/lib/libteuchoskokkoscomm.so.12.18.1 /usr/lib/libteuchoskokkoscompat.so.12.18.1 /usr/lib/libteuchosremainder.so.12.18.1 /usr/lib/libteuchosnumerics.so.12.18.1 /usr/lib/libteuchoscomm.so.12.18.1 /usr/lib/libteuchosparameterlist.so.12.18.1 /usr/lib/libteuchosparser.so.12.18.1 /usr/lib/libteuchoscore.so.12.18.1 /usr/lib/libkokkosalgorithms.so.12.18.1 /usr/lib/libkokkoscontainers.so.12.18.1 /usr/lib/libkokkoscore.so.12.18.1 /usr/lib/libgtest.so.12.18.1 /usr/lib/openmpi/libmpi_cxx.so /usr/lib/openmpi/libmpi_usempif08.so /usr/lib/openmpi/libmpi_usempi_ignore_tkr.so /usr/lib/openmpi/libmpi_mpifh.so /usr/lib/openmpi/libmpi.so /usr/lib/libgtest.so /usr/lib/libboost_program_options.so /usr/lib/libboost_system.so /usr/lib/libX11.so -lm /usr/lib/libhdf5.so /usr/lib/libsz.so /usr/lib/libz.so -lm /usr/lib/libnetcdf.so /usr/lib/liblapack.so /usr/lib/libblas.so /usr/lib/libdl.so
/usr/bin/ld: warning: libboost_program_options.so.1.72.0, needed by /usr/lib/libstk_balance_lib.so.12.18.1, not found (try using -rpath or -rpath-link)
/usr/bin/ld: /usr/lib/libpanzer-disc-fe.so.12.18.1: undefined reference to `panzer::getIntegrationRuleIndex(int, panzer::Workset const&, panzer::WorksetDetailsAccessor&)'
collect2: error: ld returned 1 exit status
make[1]: *** [CMakeFiles/cmTC_1d097.dir/build.make:276: cmTC_1d097] Error 1
make[1]: Leaving directory '/tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp'
make: *** [Makefile:127: cmTC_1d097/fast] Error 2
Source file was:
#include <MueLu_CreateEpetraPreconditioner.hpp>
int
main()
{
Epetra_CrsMatrix *matrix;
const auto teuchos_wrapped_matrix = Teuchos::rcp(matrix, false);
Teuchos::ParameterList parameters;
MueLu::CreateEpetraPreconditioner(teuchos_wrapped_matrix, parameters);
return 0;
}
Performing C++ SOURCE FILE Test TRILINOS_SEACAS_IS_FUNCTIONAL failed with the following output:
Change Dir: /tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make -f Makefile cmTC_0ef07/fast && /usr/bin/make -f CMakeFiles/cmTC_0ef07.dir/build.make CMakeFiles/cmTC_0ef07.dir/build
make[1]: Entering directory '/tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_0ef07.dir/src.cxx.o
/usr/bin/c++ -DTRILINOS_SEACAS_IS_FUNCTIONAL -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -Wno-unknown-pragmas -Wno-cpp -O3 -DNDEBUG -o CMakeFiles/cmTC_0ef07.dir/src.cxx.o -c /tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_0ef07
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_0ef07.dir/link.txt --verbose=1
/usr/bin/c++ -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -Wno-unknown-pragmas -Wno-cpp -O3 -DNDEBUG -rdynamic CMakeFiles/cmTC_0ef07.dir/src.cxx.o -o cmTC_0ef07 -Wl,-O1,--sort-common,-z,relro,-z,now /usr/lib/libpike-blackbox.so.12.18.1 /usr/lib/libtrilinoscouplings.so.12.18.1 /usr/lib/libpanzer-mini-fe.so.12.18.1 /usr/lib/libpanzer-stk.so.12.18.1 /usr/lib/libpanzer-disc-fe.so.12.18.1 /usr/lib/libpanzer-dof-mgr.so.12.18.1 /usr/lib/libpanzer-core.so.12.18.1 /usr/lib/libpiro.so.12.18.1 /usr/lib/librol.so.12.18.1 /usr/lib/libstokhos_muelu.so.12.18.1 /usr/lib/libstokhos_ifpack2.so.12.18.1 /usr/lib/libstokhos_amesos2.so.12.18.1 /usr/lib/libstokhos_xpetra.so.12.18.1 /usr/lib/libstokhos_tpetra.so.12.18.1 /usr/lib/libstokhos_sacado.so.12.18.1 /usr/lib/libstokhos.so.12.18.1 /usr/lib/libtempus.so.12.18.1 /usr/lib/librythmos.so.12.18.1 /usr/lib/libshylu_ddcommon.so.12.18.1 /usr/lib/libshylu_ddfrosch.so.12.18.1 /usr/lib/libshylu_ddbddc.so.12.18.1 /usr/lib/libmuelu-adapters.so.12.18.1 /usr/lib/libmuelu-interface.so.12.18.1 /usr/lib/libmuelu.so.12.18.1 /usr/lib/libmoertel.so.12.18.1 /usr/lib/liblocathyra.so.12.18.1 /usr/lib/liblocaepetra.so.12.18.1 /usr/lib/liblocalapack.so.12.18.1 /usr/lib/libloca.so.12.18.1 /usr/lib/libnoxepetra.so.12.18.1 /usr/lib/libnoxlapack.so.12.18.1 /usr/lib/libnox.so.12.18.1 /usr/lib/libphalanx.so.12.18.1 /usr/lib/libpercept.so.12.18.1 /usr/lib/libstk_expreval.so.12.18.1 /usr/lib/libstk_balance_test_utils.so.12.18.1 /usr/lib/libstk_balance_lib.so.12.18.1 /usr/lib/libstk_tools_lib.so.12.18.1 /usr/lib/libstk_transfer_utils_lib.so.12.18.1 /usr/lib/libstk_transfer_impl.so.12.18.1 /usr/lib/libstk_search_util_base.so.12.18.1 /usr/lib/libstk_search.so.12.18.1 /usr/lib/libstk_unit_test_utils.so.12.18.1 /usr/lib/libstk_mesh_fixtures.so.12.18.1 /usr/lib/libstk_ngp_test.so.12.18.1 /usr/lib/libstk_io_util.so.12.18.1 /usr/lib/libstk_io.so.12.18.1 /usr/lib/libstk_ngp.so.12.18.1 /usr/lib/libstk_mesh_base.so.12.18.1 /usr/lib/libstk_topology.so.12.18.1 /usr/lib/libstk_util_diag.so.12.18.1 /usr/lib/libstk_util_env.so.12.18.1 /usr/lib/libstk_util_command_line.so.12.18.1 /usr/lib/libstk_util_registry.so.12.18.1 /usr/lib/libstk_util_parallel.so.12.18.1 /usr/lib/libstk_util_util.so.12.18.1 /usr/lib/libstk_math.so.12.18.1 /usr/lib/libintrepid2.so.12.18.1 /usr/lib/libintrepid.so.12.18.1 /usr/lib/libteko.so.12.18.1 /usr/lib/libfei_trilinos.so.12.18.1 /usr/lib/libfei_base.so.12.18.1 /usr/lib/libstratimikos.so.12.18.1 /usr/lib/libstratimikosbelos.so.12.18.1 /usr/lib/libstratimikosamesos2.so.12.18.1 /usr/lib/libstratimikosaztecoo.so.12.18.1 /usr/lib/libstratimikosamesos.so.12.18.1 /usr/lib/libstratimikosml.so.12.18.1 /usr/lib/libstratimikosifpack.so.12.18.1 /usr/lib/libifpack2-adapters.so.12.18.1 /usr/lib/libifpack2.so.12.18.1 /usr/lib/libanasazitpetra.so.12.18.1 /usr/lib/libModeLaplace.so.12.18.1 /usr/lib/libanasaziepetra.so.12.18.1 /usr/lib/libanasazi.so.12.18.1 /usr/lib/libkomplex.so.12.18.1 /usr/lib/libmapvarlib.so.12.18.1 /usr/lib/libfastqlib.a /usr/lib/libblotlib.a /usr/lib/libplt.a /usr/lib/libsvdi_cgi.a /usr/lib/libsvdi_cdr.a /usr/lib/libsuplib.so.12.18.1 /usr/lib/libsuplib_c.so.12.18.1 /usr/lib/libsuplib_cpp.so.12.18.1 /usr/lib/libsupes.so.12.18.1 /usr/lib/libaprepro_lib.so.12.18.1 /usr/lib/libchaco.so.12.18.1 /usr/lib/libio_info_lib.so.12.18.1 /usr/lib/libIonit.so.12.18.1 /usr/lib/libIotr.so.12.18.1 /usr/lib/libIohb.so.12.18.1 /usr/lib/libIogs.so.12.18.1 /usr/lib/libIogn.so.12.18.1 /usr/lib/libIovs.so.12.18.1 /usr/lib/libIopg.so.12.18.1 /usr/lib/libIoexo_fac.so.12.18.1 /usr/lib/libIofx.so.12.18.1 /usr/lib/libIoex.so.12.18.1 /usr/lib/libIoss.so.12.18.1 /usr/lib/libnemesis.so.12.18.1 /usr/lib/libexoIIv2for32.so.12.18.1 /usr/lib/libexodus_for.so.12.18.1 /usr/lib/libexodus.so.12.18.1 /usr/lib/libamesos2.so.12.18.1 /usr/lib/libshylu_nodetacho.so.12.18.1 /usr/lib/libshylu_nodehts.so.12.18.1 /usr/lib/libbelosxpetra.so.12.18.1 /usr/lib/libbelostpetra.so.12.18.1 /usr/lib/libbelosepetra.so.12.18.1 /usr/lib/libbelos.so.12.18.1 /usr/lib/libml.so.12.18.1 /usr/lib/libifpack.so.12.18.1 /usr/lib/libzoltan2.so.12.18.1 /usr/lib/libpamgen_extras.so.12.18.1 /usr/lib/libpamgen.so.12.18.1 /usr/lib/libamesos.so.12.18.1 /usr/lib/libgaleri-xpetra.so.12.18.1 /usr/lib/libgaleri-epetra.so.12.18.1 /usr/lib/libaztecoo.so.12.18.1 /usr/lib/libdpliris.so.12.18.1 /usr/lib/libisorropia.so.12.18.1 /usr/lib/liboptipack.so.12.18.1 /usr/lib/libxpetra-sup.so.12.18.1 /usr/lib/libxpetra.so.12.18.1 /usr/lib/libthyratpetra.so.12.18.1 /usr/lib/libthyraepetraext.so.12.18.1 /usr/lib/libthyraepetra.so.12.18.1 /usr/lib/libthyracore.so.12.18.1 /usr/lib/libdomi.so.12.18.1 /usr/lib/libtrilinosss.so.12.18.1 /usr/lib/libtpetraext.so.12.18.1 /usr/lib/libtpetrainout.so.12.18.1 /usr/lib/libtpetra.so.12.18.1 /usr/lib/libkokkostsqr.so.12.18.1 /usr/lib/libtpetraclassiclinalg.so.12.18.1 /usr/lib/libtpetraclassicnodeapi.so.12.18.1 /usr/lib/libtpetraclassic.so.12.18.1 /usr/lib/libepetraext.so.12.18.1 /usr/lib/libtriutils.so.12.18.1 /usr/lib/libglobipack.so.12.18.1 /usr/lib/libshards.so.12.18.1 /usr/lib/libzoltan.so.12.18.1 /usr/lib/libepetra.so.12.18.1 /usr/lib/libminitensor.so.12.18.1 /usr/lib/libsacado.so.12.18.1 /usr/lib/librtop.so.12.18.1 /usr/lib/libkokkoskernels.so.12.18.1 /usr/lib/libteuchoskokkoscomm.so.12.18.1 /usr/lib/libteuchoskokkoscompat.so.12.18.1 /usr/lib/libteuchosremainder.so.12.18.1 /usr/lib/libteuchosnumerics.so.12.18.1 /usr/lib/libteuchoscomm.so.12.18.1 /usr/lib/libteuchosparameterlist.so.12.18.1 /usr/lib/libteuchosparser.so.12.18.1 /usr/lib/libteuchoscore.so.12.18.1 /usr/lib/libkokkosalgorithms.so.12.18.1 /usr/lib/libkokkoscontainers.so.12.18.1 /usr/lib/libkokkoscore.so.12.18.1 /usr/lib/libgtest.so.12.18.1 /usr/lib/libgtest.so /usr/lib/libboost_program_options.so /usr/lib/libboost_system.so /usr/lib/libX11.so -lm /usr/lib/libhdf5.so /usr/lib/libsz.so /usr/lib/libz.so -lm /usr/lib/libnetcdf.so /usr/lib/liblapack.so /usr/lib/libblas.so /usr/lib/libdl.so
/usr/bin/ld: warning: libboost_program_options.so.1.72.0, needed by /usr/lib/libstk_balance_lib.so.12.18.1, not found (try using -rpath or -rpath-link)
/usr/bin/ld: /usr/lib/libpanzer-disc-fe.so.12.18.1: undefined reference to `panzer::getIntegrationRuleIndex(int, panzer::Workset const&, panzer::WorksetDetailsAccessor&)'
collect2: error: ld returned 1 exit status
make[1]: *** [CMakeFiles/cmTC_0ef07.dir/build.make:271: cmTC_0ef07] Error 1
make[1]: Leaving directory '/tmp/makepkg/deal-ii/src/build/CMakeFiles/CMakeTmp'
make: *** [Makefile:127: cmTC_0ef07/fast] Error 2
Source file was:
#include <exodusII.h>
int
main()
{
int component_word_size = sizeof(double);
int floating_point_word_size = 0;
float ex_version = 0;
const int ex_id = ex_open("test.ex",
EX_READ,
&component_word_size,
&floating_point_word_size,
&ex_version);
ex_close(ex_id);
return 0;
}
###
#
# deal.II configuration:
# CMAKE_BUILD_TYPE: DebugRelease
# BUILD_SHARED_LIBS: ON
# CMAKE_INSTALL_PREFIX: /usr
# CMAKE_SOURCE_DIR: /tmp/makepkg/deal-ii/src/dealii-9.3.1
# (version 9.3.1)
# CMAKE_BINARY_DIR: /tmp/makepkg/deal-ii/src/build
# CMAKE_CXX_COMPILER: GNU 11.1.0 on platform Linux x86_64
# /usr/bin/c++
# C++ language standard: C++17
# CMAKE_C_COMPILER: /usr/bin/cc
# CMAKE_Fortran_COMPILER: /usr/bin/gfortran
# CMAKE_GENERATOR: Unix Makefiles
#
# Base configuration (prior to feature configuration):
# DEAL_II_CXX_FLAGS: -pedantic -fPIC -Wall -Wextra -Wmissing-braces -Woverloaded-virtual -Wpointer-arith -Wsign-compare -Wsuggest-override -Wswitch -Wsynth -Wwrite-strings -Wno-placement-new -Wno-deprecated-declarations -Wno-literal-suffix -Wno-psabi -Wno-class-memaccess -fopenmp-simd -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -Wno-unknown-pragmas -Wno-cpp
# DEAL_II_CXX_FLAGS_RELEASE: -O2 -funroll-loops -funroll-all-loops -fstrict-aliasing -Wno-unused-local-typedefs
# DEAL_II_CXX_FLAGS_DEBUG: -O0 -ggdb -Wa,--compress-debug-sections
# DEAL_II_LINKER_FLAGS: -rdynamic -fuse-ld=gold -lpthread -Wl,-O1,--sort-common,-z,relro,-z,now
# DEAL_II_LINKER_FLAGS_RELEASE:
# DEAL_II_LINKER_FLAGS_DEBUG: -ggdb
# DEAL_II_DEFINITIONS:
# DEAL_II_DEFINITIONS_RELEASE:
# DEAL_II_DEFINITIONS_DEBUG: DEBUG
# DEAL_II_USER_DEFINITIONS:
# DEAL_II_USER_DEFINITIONS_REL:
# DEAL_II_USER_DEFINITIONS_DEB: DEBUG
# DEAL_II_INCLUDE_DIRS
# DEAL_II_USER_INCLUDE_DIRS:
# DEAL_II_BUNDLED_INCLUDE_DIRS:
# DEAL_II_LIBRARIES:
# DEAL_II_LIBRARIES_RELEASE:
# DEAL_II_LIBRARIES_DEBUG:
# DEAL_II_VECTORIZATION_WIDTH_IN_BITS: 128
# DEAL_II_HAVE_CXX17
#
# Configured Features (DEAL_II_ALLOW_BUNDLED = OFF, DEAL_II_ALLOW_AUTODETECTION = ON):
# ( DEAL_II_WITH_64BIT_INDICES = OFF )
# ( DEAL_II_WITH_ADOLC = OFF )
# ( DEAL_II_WITH_ARBORX = OFF )
# DEAL_II_WITH_ARPACK set up with external dependencies
# ARPACK_LINKER_FLAGS =
# ARPACK_LIBRARIES = /usr/lib/libparpack.so;/usr/lib/libarpack.so;/opt/intel/mkl/lib/intel64_lin/libmkl_gf_lp64.so;/opt/intel/mkl/lib/intel64_lin/libmkl_gnu_thread.so;/opt/intel/mkl/lib/intel64_lin/libmkl_core.so;/usr/lib/libgomp.so;-lm;-ldl;/usr/lib/openmpi/libmpi.so
# ( DEAL_II_WITH_ASSIMP = OFF )
# DEAL_II_WITH_BOOST set up with external dependencies
# BOOST_VERSION = 1.76.0
# BOOST_CXX_FLAGS = -Wno-unused-local-typedefs
# BOOST_DEFINITIONS = BOOST_NO_AUTO_PTR
# BOOST_USER_DEFINITIONS = BOOST_NO_AUTO_PTR
# BOOST_INCLUDE_DIRS = /usr/include
# BOOST_USER_INCLUDE_DIRS = /usr/include
# BOOST_LIBRARIES = /usr/lib/libboost_iostreams.so;/usr/lib/libboost_serialization.so;/usr/lib/libboost_system.so;/usr/lib/libboost_thread.so;/usr/lib/libboost_regex.so;/usr/lib/libboost_chrono.so;/usr/lib/libboost_date_time.so;/usr/lib/libboost_atomic.so
# DEAL_II_WITH_COMPLEX_VALUES = ON
# ( DEAL_II_WITH_CUDA = OFF )
# ( DEAL_II_WITH_GINKGO = OFF )
# DEAL_II_WITH_GMSH set up with external dependencies
# GMSH_EXE = /usr/bin/gmsh
# GMSH_INCLUDE_DIRS = /usr/include
# GMSH_USER_INCLUDE_DIRS = /usr/include
# GMSH_LIBRARIES = /usr/lib/libgmsh.so
# DEAL_II_WITH_GSL set up with external dependencies
# GSL_VERSION = 2.7
# GSL_INCLUDE_DIRS = /usr/include
# GSL_USER_INCLUDE_DIRS = /usr/include
# GSL_LIBRARIES = /usr/lib/libgsl.so;/usr/lib/libgslcblas.so
# DEAL_II_WITH_HDF5 set up with external dependencies
# HDF5_INCLUDE_DIRS = /usr/include
# HDF5_USER_INCLUDE_DIRS = /usr/include
# HDF5_LIBRARIES = /usr/lib/libhdf5_hl.so;/usr/lib/libhdf5.so;/usr/lib/openmpi/libmpi.so
# DEAL_II_WITH_KOKKOS set up with external dependencies
# DEAL_II_WITH_LAPACK set up with external dependencies
# LAPACK_WITH_64BIT_BLAS_INDICES = OFF
# LAPACK_LINKER_FLAGS =
# LAPACK_INCLUDE_DIRS =
# LAPACK_USER_INCLUDE_DIRS =
# LAPACK_LIBRARIES = /opt/intel/mkl/lib/intel64_lin/libmkl_gf_lp64.so;/opt/intel/mkl/lib/intel64_lin/libmkl_gnu_thread.so;/opt/intel/mkl/lib/intel64_lin/libmkl_core.so;/usr/lib/libgomp.so;-lm;-ldl
# DEAL_II_WITH_METIS set up with external dependencies
# METIS_VERSION = 5.1.0
# METIS_INCLUDE_DIRS = /usr/include
# METIS_USER_INCLUDE_DIRS = /usr/include
# METIS_LIBRARIES = /usr/lib/libmetis.so;/usr/lib/openmpi/libmpi.so
# DEAL_II_WITH_MPI set up with external dependencies
# MPI_VERSION = 3.1
# MPI_C_COMPILER = /usr/bin/mpicc
# MPI_CXX_COMPILER = /usr/bin/mpicxx
# MPI_Fortran_COMPILER = /usr/bin/mpif90
# MPI_CXX_FLAGS = -pthread
# MPI_LINKER_FLAGS = -Wl,-rpath -Wl,/usr/lib64 -Wl,-rpath -Wl,/usr/lib/openmpi -Wl,--enable-new-dtags -L/usr/lib -pthread
# MPI_INCLUDE_DIRS = /usr/include
# MPI_USER_INCLUDE_DIRS = /usr/include
# MPI_LIBRARIES = /usr/lib/openmpi/libmpi_cxx.so;/usr/lib/openmpi/libmpi_usempif08.so;/usr/lib/openmpi/libmpi_usempi_ignore_tkr.so;/usr/lib/openmpi/libmpi_mpifh.so;/usr/lib/openmpi/libmpi.so
# ( DEAL_II_WITH_MUPARSER = OFF )
# DEAL_II_WITH_OPENCASCADE set up with external dependencies
# OPENCASCADE_VERSION = 7.5.0
# OPENCASCADE_DIR = /usr
# OPENCASCADE_INCLUDE_DIRS = /usr/include/opencascade
# OPENCASCADE_USER_INCLUDE_DIRS = /usr/include/opencascade
# OPENCASCADE_LIBRARIES = /usr/lib/libTKBO.so;/usr/lib/libTKBool.so;/usr/lib/libTKBRep.so;/usr/lib/libTKernel.so;/usr/lib/libTKFeat.so;/usr/lib/libTKFillet.so;/usr/lib/libTKG2d.so;/usr/lib/libTKG3d.so;/usr/lib/libTKGeomAlgo.so;/usr/lib/libTKGeomBase.so;/usr/lib/libTKHLR.so;/usr/lib/libTKIGES.so;/usr/lib/libTKMath.so;/usr/lib/libTKMesh.so;/usr/lib/libTKOffset.so;/usr/lib/libTKPrim.so;/usr/lib/libTKShHealing.so;/usr/lib/libTKSTEP.so;/usr/lib/libTKSTEPAttr.so;/usr/lib/libTKSTEPBase.so;/usr/lib/libTKSTEP209.so;/usr/lib/libTKSTL.so;/usr/lib/libTKTopAlgo.so;/usr/lib/libTKXSBase.so
# DEAL_II_WITH_P4EST set up with external dependencies
# P4EST_VERSION = 2.2
# P4EST_DIR = /opt/p4est-deal-ii/
# P4EST_INCLUDE_DIRS = /opt/p4est-deal-ii/FAST/include
# P4EST_USER_INCLUDE_DIRS = /opt/p4est-deal-ii/FAST/include
# P4EST_LIBRARIES = optimized;/opt/p4est-deal-ii/FAST/lib/libp4est.so;/opt/p4est-deal-ii/FAST/lib/libsc.so;debug;/opt/p4est-deal-ii/DEBUG/lib/libp4est.so;/opt/p4est-deal-ii/DEBUG/lib/libsc.so;general;/opt/intel/mkl/lib/intel64_lin/libmkl_gf_lp64.so;/opt/intel/mkl/lib/intel64_lin/libmkl_gnu_thread.so;/opt/intel/mkl/lib/intel64_lin/libmkl_core.so;/usr/lib/libgomp.so;-lm;-ldl;/usr/lib/openmpi/libmpi.so
# ( DEAL_II_WITH_PETSC = OFF )
# ( DEAL_II_WITH_SCALAPACK = OFF )
# ( DEAL_II_WITH_SLEPC = OFF )
# DEAL_II_WITH_SUNDIALS set up with external dependencies
# SUNDIALS_VERSION = 5.7.0
# SUNDIALS_INCLUDE_DIRS = /usr/include
# SUNDIALS_USER_INCLUDE_DIRS = /usr/include
# SUNDIALS_LIBRARIES = /usr/lib/libsundials_idas.so;/usr/lib/libsundials_arkode.so;/usr/lib/libsundials_kinsol.so;/usr/lib/libsundials_nvecserial.so;/usr/lib/libsundials_nvecparallel.so
# ( DEAL_II_WITH_SYMENGINE = OFF )
# DEAL_II_WITH_TBB set up with external dependencies
# TBB_VERSION = 2020.3
# TBB_INCLUDE_DIRS = /usr/include
# TBB_USER_INCLUDE_DIRS = /usr/include
# TBB_LIBRARIES = /usr/lib/libtbb.so
# DEAL_II_WITH_TRILINOS set up with external dependencies
# TRILINOS_VERSION = 12.18.1
# TRILINOS_DIR = /usr
# TRILINOS_LINKER_FLAGS =
# TRILINOS_INCLUDE_DIRS = /usr/include
# TRILINOS_USER_INCLUDE_DIRS = /usr/include
# TRILINOS_LIBRARIES = /usr/lib/libpike-blackbox.so;/usr/lib/libtrilinoscouplings.so;/usr/lib/libpanzer-mini-fe.so;/usr/lib/libpanzer-stk.so;/usr/lib/libpanzer-disc-fe.so;/usr/lib/libpanzer-dof-mgr.so;/usr/lib/libpanzer-core.so;/usr/lib/libpiro.so;/usr/lib/librol.so;/usr/lib/libstokhos_muelu.so;/usr/lib/libstokhos_ifpack2.so;/usr/lib/libstokhos_amesos2.so;/usr/lib/libstokhos_xpetra.so;/usr/lib/libstokhos_tpetra.so;/usr/lib/libstokhos_sacado.so;/usr/lib/libstokhos.so;/usr/lib/libtempus.so;/usr/lib/librythmos.so;/usr/lib/libshylu_ddcommon.so;/usr/lib/libshylu_ddfrosch.so;/usr/lib/libshylu_ddbddc.so;/usr/lib/libmuelu-adapters.so;/usr/lib/libmuelu-interface.so;/usr/lib/libmuelu.so;/usr/lib/libmoertel.so;/usr/lib/liblocathyra.so;/usr/lib/liblocaepetra.so;/usr/lib/liblocalapack.so;/usr/lib/libloca.so;/usr/lib/libnoxepetra.so;/usr/lib/libnoxlapack.so;/usr/lib/libnox.so;/usr/lib/libphalanx.so;/usr/lib/libpercept.so;/usr/lib/libstk_expreval.so;/usr/lib/libstk_balance_test_utils.so;/usr/lib/libstk_balance_lib.so;/usr/lib/libstk_tools_lib.so;/usr/lib/libstk_transfer_utils_lib.so;/usr/lib/libstk_transfer_impl.so;/usr/lib/libstk_search_util_base.so;/usr/lib/libstk_search.so;/usr/lib/libstk_unit_test_utils.so;/usr/lib/libstk_mesh_fixtures.so;/usr/lib/libstk_ngp_test.so;/usr/lib/libstk_io_util.so;/usr/lib/libstk_io.so;/usr/lib/libstk_ngp.so;/usr/lib/libstk_mesh_base.so;/usr/lib/libstk_topology.so;/usr/lib/libstk_util_diag.so;/usr/lib/libstk_util_env.so;/usr/lib/libstk_util_command_line.so;/usr/lib/libstk_util_registry.so;/usr/lib/libstk_util_parallel.so;/usr/lib/libstk_util_util.so;/usr/lib/libstk_math.so;/usr/lib/libintrepid2.so;/usr/lib/libintrepid.so;/usr/lib/libteko.so;/usr/lib/libfei_trilinos.so;/usr/lib/libfei_base.so;/usr/lib/libstratimikos.so;/usr/lib/libstratimikosbelos.so;/usr/lib/libstratimikosamesos2.so;/usr/lib/libstratimikosaztecoo.so;/usr/lib/libstratimikosamesos.so;/usr/lib/libstratimikosml.so;/usr/lib/libstratimikosifpack.so;/usr/lib/libifpack2-adapters.so;/usr/lib/libifpack2.so;/usr/lib/libanasazitpetra.so;/usr/lib/libModeLaplace.so;/usr/lib/libanasaziepetra.so;/usr/lib/libanasazi.so;/usr/lib/libkomplex.so;/usr/lib/libmapvarlib.so;/usr/lib/libfastqlib.a;/usr/lib/libblotlib.a;/usr/lib/libplt.a;/usr/lib/libsvdi_cgi.a;/usr/lib/libsvdi_cdr.a;/usr/lib/libsuplib.so;/usr/lib/libsuplib_c.so;/usr/lib/libsuplib_cpp.so;/usr/lib/libsupes.so;/usr/lib/libaprepro_lib.so;/usr/lib/libchaco.so;/usr/lib/libio_info_lib.so;/usr/lib/libIonit.so;/usr/lib/libIotr.so;/usr/lib/libIohb.so;/usr/lib/libIogs.so;/usr/lib/libIogn.so;/usr/lib/libIovs.so;/usr/lib/libIopg.so;/usr/lib/libIoexo_fac.so;/usr/lib/libIofx.so;/usr/lib/libIoex.so;/usr/lib/libIoss.so;/usr/lib/libnemesis.so;/usr/lib/libexoIIv2for32.so;/usr/lib/libexodus_for.so;/usr/lib/libexodus.so;/usr/lib/libamesos2.so;/usr/lib/libshylu_nodetacho.so;/usr/lib/libshylu_nodehts.so;/usr/lib/libbelosxpetra.so;/usr/lib/libbelostpetra.so;/usr/lib/libbelosepetra.so;/usr/lib/libbelos.so;/usr/lib/libml.so;/usr/lib/libifpack.so;/usr/lib/libzoltan2.so;/usr/lib/libpamgen_extras.so;/usr/lib/libpamgen.so;/usr/lib/libamesos.so;/usr/lib/libgaleri-xpetra.so;/usr/lib/libgaleri-epetra.so;/usr/lib/libaztecoo.so;/usr/lib/libdpliris.so;/usr/lib/libisorropia.so;/usr/lib/liboptipack.so;/usr/lib/libxpetra-sup.so;/usr/lib/libxpetra.so;/usr/lib/libthyratpetra.so;/usr/lib/libthyraepetraext.so;/usr/lib/libthyraepetra.so;/usr/lib/libthyracore.so;/usr/lib/libdomi.so;/usr/lib/libtrilinosss.so;/usr/lib/libtpetraext.so;/usr/lib/libtpetrainout.so;/usr/lib/libtpetra.so;/usr/lib/libkokkostsqr.so;/usr/lib/libtpetraclassiclinalg.so;/usr/lib/libtpetraclassicnodeapi.so;/usr/lib/libtpetraclassic.so;/usr/lib/libepetraext.so;/usr/lib/libtriutils.so;/usr/lib/libglobipack.so;/usr/lib/libshards.so;/usr/lib/libzoltan.so;/usr/lib/libepetra.so;/usr/lib/libminitensor.so;/usr/lib/libsacado.so;/usr/lib/librtop.so;/usr/lib/libkokkoskernels.so;/usr/lib/libteuchoskokkoscomm.so;/usr/lib/libteuchoskokkoscompat.so;/usr/lib/libteuchosremainder.so;/usr/lib/libteuchosnumerics.so;/usr/lib/libteuchoscomm.so;/usr/lib/libteuchosparameterlist.so;/usr/lib/libteuchosparser.so;/usr/lib/libteuchoscore.so;/usr/lib/libkokkosalgorithms.so;/usr/lib/libkokkoscontainers.so;/usr/lib/libkokkoscore.so;/usr/lib/libboost_program_options.so;/usr/lib/libboost_system.so;/usr/lib/libmatio.so;/usr/lib/libX11.so;/usr/lib/libgtest.so;/usr/lib/libnetcdf.so;/usr/lib/libhdf5.so;/usr/lib/libsz.so;/usr/lib/libz.so;m;/usr/lib/liblapack.so;/usr/lib/libblas.so;dl;/usr/lib/openmpi/libmpi_cxx.so;/usr/lib/openmpi/libmpi.so
# DEAL_II_WITH_UMFPACK set up with external dependencies
# UMFPACK_VERSION = 5.7.9
# UMFPACK_LINKER_FLAGS =
# UMFPACK_INCLUDE_DIRS = /usr/include
# UMFPACK_USER_INCLUDE_DIRS = /usr/include
# UMFPACK_LIBRARIES = /usr/lib/libumfpack.so;/usr/lib/libcholmod.so;/usr/lib/libccolamd.so;/usr/lib/libcolamd.so;/usr/lib/libcamd.so;/usr/lib/libsuitesparseconfig.so;/usr/lib/libamd.so;/usr/lib/libmetis.so;/usr/lib/openmpi/libmpi.so;/opt/intel/mkl/lib/intel64_lin/libmkl_gf_lp64.so;/opt/intel/mkl/lib/intel64_lin/libmkl_gnu_thread.so;/opt/intel/mkl/lib/intel64_lin/libmkl_core.so;/usr/lib/libgomp.so;-lm;-ldl;rt
# DEAL_II_WITH_ZLIB set up with external dependencies
# ZLIB_VERSION = 1.2.11
# ZLIB_INCLUDE_DIRS = /usr/include
# ZLIB_LIBRARIES = /usr/lib/libz.so
#
# Component configuration:
# ( DEAL_II_COMPONENT_DOCUMENTATION = OFF )
# DEAL_II_COMPONENT_EXAMPLES
# ( DEAL_II_COMPONENT_PACKAGE = OFF )
# ( DEAL_II_COMPONENT_PYTHON_BINDINGS = OFF )
#
###
:: Synchronizing package databases...
core downloading...
extra downloading...
community downloading...
multilib downloading...
arch4edu downloading...
:: Starting full system upgrade...
warning: intel-ucode: ignoring package upgrade (20200616-1 => 20210608-1)
there is nothing to do
:: Searching databases for updates...
:: Searching AUR for updates...
==> Making package: deal-ii 9.3.1-1 (Wed 04 Aug 2021 12:20:32 PM -05)
==> Retrieving sources...
-> Downloading dealii-9.3.1.tar.gz...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
0 0 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0
0 0 0 0 0 0 0 0 --:--:-- 0:00:02 --:--:-- 0
0 0 0 0 0 0 0 0 --:--:-- 0:00:03 --:--:-- 0
0 0 0 0 0 0 0 0 --:--:-- 0:00:04 --:--:-- 0
0 0 0 0 0 0 0 0 --:--:-- 0:00:05 --:--:-- 0
0 0 0 0 0 0 0 0 --:--:-- 0:00:06 --:--:-- 0
100 625 100 625 0 0 95 0 0:00:06 0:00:06 --:--:-- 142
0 0 0 0 0 0 0 0 --:--:-- 0:00:06 --:--:-- 0
0 0 0 0 0 0 0 0 --:--:-- 0:00:08 --:--:-- 0
0 0 0 0 0 0 0 0 --:--:-- 0:00:09 --:--:-- 0
0 0 0 0 0 0 0 0 --:--:-- 0:00:10 --:--:-- 0
0 0 0 0 0 0 0 0 --:--:-- 0:00:11 --:--:-- 0
0 23.3M 0 0 0 0 0 0 --:--:-- 0:00:12 --:--:-- 0
9 23.3M 9 2261k 0 0 174k 0 0:02:16 0:00:12 0:02:04 471k
26 23.3M 26 6389k 0 0 458k 0 0:00:52 0:00:13 0:00:39 1333k
44 23.3M 44 10.4M 0 0 715k 0 0:00:33 0:00:14 0:00:19 2233k
62 23.3M 62 14.5M 0 0 937k 0 0:00:25 0:00:15 0:00:10 3122k
86 23.3M 86 20.2M 0 0 1224k 0 0:00:19 0:00:16 0:00:03 4358k
100 23.3M 100 23.3M 0 0 1365k 0 0:00:17 0:00:17 --:--:-- 4753k
==> Validating source files with sha1sums...
dealii-9.3.1.tar.gz ... Passed
==> Making package: deal-ii 9.3.1-1 (Wed 04 Aug 2021 12:21:34 PM -05)
==> Checking runtime dependencies...
==> Checking buildtime dependencies...
==> Retrieving sources...
-> Found dealii-9.3.1.tar.gz
==> Validating source files with sha1sums...
dealii-9.3.1.tar.gz ... Passed
==> Removing existing $srcdir/ directory...
==> Extracting sources...
-> Extracting dealii-9.3.1.tar.gz with bsdtar
==> Sources are ready.
==> Making package: deal-ii 9.3.1-1 (Wed 04 Aug 2021 12:21:37 PM -05)
==> Checking runtime dependencies...
==> Checking buildtime dependencies...
==> WARNING: Using existing $srcdir/ tree
==> Starting build()...
-- This is CMake 3.21.1
--
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/setup_external_macros.cmake
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/macros/macro_add_flags.cmake
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/macros/macro_check_compiler_setup.cmake
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/macros/macro_check_cxx_compiler_bug.cmake
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/macros/macro_check_mpi_interface.cmake
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/macros/macro_clear_cmake_required.cmake
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/macros/macro_clear_feature.cmake
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/macros/macro_configure_feature.cmake
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/macros/macro_deal_ii_add_definitions.cmake
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/macros/macro_deal_ii_add_library.cmake
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/macros/macro_deal_ii_add_test.cmake
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/macros/macro_deal_ii_find_file.cmake
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/macros/macro_deal_ii_find_library.cmake
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/macros/macro_deal_ii_find_path.cmake
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/macros/macro_deal_ii_find_program.cmake
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/macros/macro_deal_ii_initialize_cached_variables.cmake
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/macros/macro_deal_ii_insource_setup_target.cmake
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/macros/macro_deal_ii_invoke_autopilot.cmake
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/macros/macro_deal_ii_package_handle.cmake
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/macros/macro_deal_ii_pickup_tests.cmake
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/macros/macro_deal_ii_query_git_information.cmake
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/macros/macro_deal_ii_setup_target.cmake
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/macros/macro_decorate_with_stars.cmake
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/macros/macro_enable_if_links.cmake
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/macros/macro_enable_if_supported.cmake
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/macros/macro_enable_language_optional.cmake
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/macros/macro_evaluate_expression.cmake
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/macros/macro_expand_instantiations.cmake
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/macros/macro_filter_system_libraries.cmake
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/macros/macro_find_package.cmake
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/macros/macro_find_system_library.cmake
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/macros/macro_item_matches.cmake
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/macros/macro_purge_feature.cmake
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/macros/macro_register_feature.cmake
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/macros/macro_remove_duplicates.cmake
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/macros/macro_replace_flag.cmake
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/macros/macro_reset_cmake_required.cmake
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/macros/macro_set_if_empty.cmake
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/macros/macro_setup_source_list.cmake
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/macros/macro_setup_unity_target.cmake
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/macros/macro_strip_flag.cmake
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/macros/macro_switch_library_preference.cmake
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/macros/macro_to_string.cmake
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/macros/macro_to_string_and_add_prefix.cmake
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/macros/macro_unset_if_changed.cmake
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/macros/macro_verbose_include.cmake
--
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/setup_cached_variables.cmake
-- Prepending ${CMAKE_CXX_FLAGS} to ${DEAL_II_CXX_FLAGS}
-- Prepending ${CUDA_NVCC_FLAGS} to ${DEAL_II_CUDA_FLAGS}
-- The CXX compiler identification is GNU 11.1.0
-- The C compiler identification is GNU 11.1.0
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Check for working CXX compiler: /usr/bin/c++ - skipped
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working C compiler: /usr/bin/cc - skipped
-- Detecting C compile features
-- Detecting C compile features - done
-- The Fortran compiler identification is GNU 11.1.0
-- Detecting Fortran compiler ABI info
-- Detecting Fortran compiler ABI info - done
-- Check for working Fortran compiler: /usr/bin/gfortran - skipped
-- Checking whether /usr/bin/gfortran supports Fortran 90
-- Checking whether /usr/bin/gfortran supports Fortran 90 - yes
--
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/setup_deal_ii.cmake
--
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/setup_compiler_flags.cmake
-- Performing Test DEAL_II_HAVE_USABLE_USER_FLAGS_DEBUG
-- Performing Test DEAL_II_HAVE_USABLE_USER_FLAGS_DEBUG - Success
-- Performing Test DEAL_II_HAVE_USABLE_USER_FLAGS_RELEASE
-- Performing Test DEAL_II_HAVE_USABLE_USER_FLAGS_RELEASE - Success
--
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/setup_compiler_flags_gnu.cmake
-- Performing Test DEAL_II_HAVE_FLAG_pedantic
-- Performing Test DEAL_II_HAVE_FLAG_pedantic - Success
-- Performing Test DEAL_II_HAVE_FLAG_fPIC
-- Performing Test DEAL_II_HAVE_FLAG_fPIC - Success
-- Performing Test DEAL_II_HAVE_FLAG_Wall
-- Performing Test DEAL_II_HAVE_FLAG_Wall - Success
-- Performing Test DEAL_II_HAVE_FLAG_Wextra
-- Performing Test DEAL_II_HAVE_FLAG_Wextra - Success
-- Performing Test DEAL_II_HAVE_FLAG_Wmissing_braces
-- Performing Test DEAL_II_HAVE_FLAG_Wmissing_braces - Success
-- Performing Test DEAL_II_HAVE_FLAG_Woverloaded_virtual
-- Performing Test DEAL_II_HAVE_FLAG_Woverloaded_virtual - Success
-- Performing Test DEAL_II_HAVE_FLAG_Wpointer_arith
-- Performing Test DEAL_II_HAVE_FLAG_Wpointer_arith - Success
-- Performing Test DEAL_II_HAVE_FLAG_Wsign_compare
-- Performing Test DEAL_II_HAVE_FLAG_Wsign_compare - Success
-- Performing Test DEAL_II_HAVE_FLAG_Wsuggest_override
-- Performing Test DEAL_II_HAVE_FLAG_Wsuggest_override - Success
-- Performing Test DEAL_II_HAVE_FLAG_Wswitch
-- Performing Test DEAL_II_HAVE_FLAG_Wswitch - Success
-- Performing Test DEAL_II_HAVE_FLAG_Wsynth
-- Performing Test DEAL_II_HAVE_FLAG_Wsynth - Success
-- Performing Test DEAL_II_HAVE_FLAG_Wwrite_strings
-- Performing Test DEAL_II_HAVE_FLAG_Wwrite_strings - Success
-- Performing Test DEAL_II_HAVE_FLAG_Wno_placement_new
-- Performing Test DEAL_II_HAVE_FLAG_Wno_placement_new - Success
-- Performing Test DEAL_II_HAVE_FLAG_Wno_deprecated_declarations
-- Performing Test DEAL_II_HAVE_FLAG_Wno_deprecated_declarations - Success
-- Performing Test DEAL_II_HAVE_FLAG_Wno_literal_suffix
-- Performing Test DEAL_II_HAVE_FLAG_Wno_literal_suffix - Success
-- Performing Test DEAL_II_HAVE_FLAG_Wno_psabi
-- Performing Test DEAL_II_HAVE_FLAG_Wno_psabi - Success
-- Performing Test DEAL_II_HAVE_FLAG_Wno_class_memaccess
-- Performing Test DEAL_II_HAVE_FLAG_Wno_class_memaccess - Success
-- Performing Test DEAL_II_HAVE_FLAG_funroll_loops
-- Performing Test DEAL_II_HAVE_FLAG_funroll_loops - Success
-- Performing Test DEAL_II_HAVE_FLAG_funroll_all_loops
-- Performing Test DEAL_II_HAVE_FLAG_funroll_all_loops - Success
-- Performing Test DEAL_II_HAVE_FLAG_fstrict_aliasing
-- Performing Test DEAL_II_HAVE_FLAG_fstrict_aliasing - Success
-- Performing Test DEAL_II_HAVE_FLAG_Wno_unused_local_typedefs
-- Performing Test DEAL_II_HAVE_FLAG_Wno_unused_local_typedefs - Success
-- Performing Test DEAL_II_HAVE_FLAG_ggdb
-- Performing Test DEAL_II_HAVE_FLAG_ggdb - Success
--
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/bundled/setup_bundled.cmake
--
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/checks/check_01_cpu_features.cmake
-- Performing Test DEAL_II_HAVE_SSE2
-- Performing Test DEAL_II_HAVE_SSE2 - Success
-- Performing Test DEAL_II_HAVE_AVX
-- Performing Test DEAL_II_HAVE_AVX - Failed
-- Performing Test DEAL_II_HAVE_AVX512
-- Performing Test DEAL_II_HAVE_AVX512 - Failed
-- Performing Test DEAL_II_HAVE_ALTIVEC
-- Performing Test DEAL_II_HAVE_ALTIVEC - Failed
-- Performing Test DEAL_II_HAVE_OPENMP_SIMD
-- Performing Test DEAL_II_HAVE_OPENMP_SIMD - Success
--
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/checks/check_01_cxx_features.cmake
-- Performing Test DEAL_II_HAVE_CXX14_FEATURES
-- Performing Test DEAL_II_HAVE_CXX14_FEATURES - Success
-- Performing Test DEAL_II_HAVE_CXX14_CLANGAUTODEBUG_BUG_OK
-- Performing Test DEAL_II_HAVE_CXX14_CLANGAUTODEBUG_BUG_OK - Success
-- Performing Test DEAL_II_HAVE_CXX11_FEATURES
-- Performing Test DEAL_II_HAVE_CXX11_FEATURES - Success
-- Performing Test DEAL_II_HAVE_CXX11_FUNCTIONAL_LLVMBUG20084_OK
-- Performing Test DEAL_II_HAVE_CXX11_FUNCTIONAL_LLVMBUG20084_OK - Success
-- C++14 support is enabled.
-- Performing Test DEAL_II_HAVE_CXX17_FEATURES
-- Performing Test DEAL_II_HAVE_CXX17_FEATURES - Success
-- Performing Test DEAL_II_HAVE_CXX17_CONSTEXPR_LAMBDA_BUG_OK
-- Performing Test DEAL_II_HAVE_CXX17_CONSTEXPR_LAMBDA_BUG_OK - Success
-- C++17 support is enabled.
-- Performing Test DEAL_II_HAVE_CXX20_FEATURES
-- Performing Test DEAL_II_HAVE_CXX20_FEATURES - Failed
-- C++20 support is disabled.
-- Performing Test DEAL_II_HAVE_FLAG_Werror
-- Performing Test DEAL_II_HAVE_FLAG_Werror - Success
-- Performing Test DEAL_II_HAVE_FLAG_Wno_unused_command_line_argument
-- Performing Test DEAL_II_HAVE_FLAG_Wno_unused_command_line_argument - Failed
-- Performing Test DEAL_II_HAVE_FP_EXCEPTIONS
-- Performing Test DEAL_II_HAVE_FP_EXCEPTIONS - Success
-- Performing Test DEAL_II_HAVE_COMPLEX_OPERATOR_OVERLOADS
-- Performing Test DEAL_II_HAVE_COMPLEX_OPERATOR_OVERLOADS - Failed
-- Performing Test DEAL_II_HAVE_CXX17_ATTRIBUTE_DEPRECATED
-- Performing Test DEAL_II_HAVE_CXX17_ATTRIBUTE_DEPRECATED - Success
-- Performing Test DEAL_II_HAVE_ATTRIBUTE_DEPRECATED
-- Performing Test DEAL_II_HAVE_ATTRIBUTE_DEPRECATED - Success
-- Performing Test DEAL_II_HAVE_CXX17_ATTRIBUTE_FALLTHROUGH
-- Performing Test DEAL_II_HAVE_CXX17_ATTRIBUTE_FALLTHROUGH - Success
-- Performing Test DEAL_II_HAVE_ATTRIBUTE_FALLTHROUGH
-- Performing Test DEAL_II_HAVE_ATTRIBUTE_FALLTHROUGH - Success
-- Performing Test DEAL_II_HAVE_CXX17_BESSEL_FUNCTIONS
-- Performing Test DEAL_II_HAVE_CXX17_BESSEL_FUNCTIONS - Success
-- Performing Test DEAL_II_HAVE_CXX17_LEGENDRE_FUNCTIONS
-- Performing Test DEAL_II_HAVE_CXX17_LEGENDRE_FUNCTIONS - Success
-- Performing Test DEAL_II_CXX14_CONSTEXPR_BUG_OK
-- Performing Test DEAL_II_CXX14_CONSTEXPR_BUG_OK - Success
-- Test successful, do not define DEAL_II_CXX14_CONSTEXPR_BUG
--
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/checks/check_02_compiler_features.cmake
-- Performing Test DEAL_II_COMPILER_USE_VECTOR_ARITHMETICS
-- Performing Test DEAL_II_COMPILER_USE_VECTOR_ARITHMETICS - Success
-- Performing Test DEAL_II_VECTOR_ITERATOR_IS_POINTER_OK
-- Performing Test DEAL_II_VECTOR_ITERATOR_IS_POINTER_OK - Success
-- Test successful, do not define DEAL_II_VECTOR_ITERATOR_IS_POINTER
-- Performing Test DEAL_II_HAVE_BUILTIN_EXPECT
-- Performing Test DEAL_II_HAVE_BUILTIN_EXPECT - Success
-- Performing Test DEAL_II_HAVE_GLIBC_STACKTRACE
-- Performing Test DEAL_II_HAVE_GLIBC_STACKTRACE - Success
-- Performing Test DEAL_II_HAVE_LINKER_FLAG_rdynamic
-- Performing Test DEAL_II_HAVE_LINKER_FLAG_rdynamic - Success
-- Performing Test DEAL_II_HAVE_LIBSTDCXX_DEMANGLER
-- Performing Test DEAL_II_HAVE_LIBSTDCXX_DEMANGLER - Success
-- Performing Test DEAL_II_COMPILER_HAS_ATTRIBUTE_PRETTY_FUNCTION
-- Performing Test DEAL_II_COMPILER_HAS_ATTRIBUTE_PRETTY_FUNCTION - Success
-- Performing Test DEAL_II_HAVE_FLAG_Wa___compress_debug_sections
-- Performing Test DEAL_II_HAVE_FLAG_Wa___compress_debug_sections - Success
-- Performing Test DEAL_II_COMPILER_HAS_ATTRIBUTE_ALWAYS_INLINE
-- Performing Test DEAL_II_COMPILER_HAS_ATTRIBUTE_ALWAYS_INLINE - Success
-- Performing Test DEAL_II_COMPILER_HAS_RESTRICT_KEYWORD
-- Performing Test DEAL_II_COMPILER_HAS_RESTRICT_KEYWORD - Success
-- Performing Test DEAL_II_COMPILER_HAS_DIAGNOSTIC_PRAGMA
-- Performing Test DEAL_II_COMPILER_HAS_DIAGNOSTIC_PRAGMA - Success
-- Performing Test DEAL_II_COMPILER_HAS_FUSE_LD_LLD
-- Performing Test DEAL_II_COMPILER_HAS_FUSE_LD_LLD - Failed
-- Performing Test DEAL_II_COMPILER_HAS_FUSE_LD_GOLD
-- Performing Test DEAL_II_COMPILER_HAS_FUSE_LD_GOLD - Success
--
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/checks/check_02_fortran_mangling.cmake
-- Found a valid Fortran compiler - using it to set up mangling
-- Detecting Fortran/C Interface
-- Detecting Fortran/C Interface - Found GLOBAL and MODULE mangling
--
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/checks/check_02_system_features.cmake
-- Looking for C++ include sys/resource.h
CMake Warning (dev) at /usr/share/cmake-3.21/Modules/CheckIncludeFileCXX.cmake:81 (message):
Policy CMP0075 is not set: Include file check macros honor
CMAKE_REQUIRED_LIBRARIES. Run "cmake --help-policy CMP0075" for policy
details. Use the cmake_policy command to set the policy and suppress this
warning.
CMAKE_REQUIRED_LIBRARIES is set to:
-Wl,-O1,--sort-common,-z,relro,-z,now
For compatibility with CMake 3.11 and below this check is ignoring it.
Call Stack (most recent call first):
cmake/checks/check_02_system_features.cmake:36 (CHECK_INCLUDE_FILE_CXX)
cmake/macros/macro_verbose_include.cmake:19 (INCLUDE)
CMakeLists.txt:112 (VERBOSE_INCLUDE)
This warning is for project developers. Use -Wno-dev to suppress it.
-- Looking for C++ include sys/resource.h - found
-- Looking for C++ include unistd.h
-- Looking for C++ include unistd.h - found
-- Looking for gethostname
-- Looking for gethostname - found
-- Looking for getpid
-- Looking for getpid - found
--
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/checks/check_03_compiler_bugs.cmake
-- Performing Test DEAL_II_DELETED_MOVE_CONSTRUCTOR_BUG_OK
-- Performing Test DEAL_II_DELETED_MOVE_CONSTRUCTOR_BUG_OK - Failed
-- Test unsuccessful, define DEAL_II_DELETED_MOVE_CONSTRUCTOR_BUG
--
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/configure/configure_0_threads.cmake
-- Looking for pthread.h
-- Looking for pthread.h - found
-- Performing Test CMAKE_HAVE_LIBC_PTHREAD
-- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Failed
-- Looking for pthread_create in pthreads
-- Looking for pthread_create in pthreads - not found
-- Looking for pthread_create in pthread
-- Looking for pthread_create in pthread - found
-- Found Threads: TRUE
--
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/configure/configure_1_cuda.cmake
-- DEAL_II_WITH_CUDA is set to off.
--
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/configure/configure_1_lapack.cmake
-- Looking for Fortran sgemm
-- Looking for Fortran sgemm - not found
-- Looking for Fortran sgemm
-- Looking for Fortran sgemm - found
-- Found BLAS: /opt/intel/mkl/lib/intel64_lin/libmkl_gf_lp64.so;/opt/intel/mkl/lib/intel64_lin/libmkl_gnu_thread.so;/opt/intel/mkl/lib/intel64_lin/libmkl_core.so;/usr/lib/libgomp.so;-lpthread;-lm;-ldl
-- Looking for Fortran cheev
-- Looking for Fortran cheev - found
-- Found LAPACK: /opt/intel/mkl/lib/intel64_lin/libmkl_gf_lp64.so;/opt/intel/mkl/lib/intel64_lin/libmkl_gnu_thread.so;/opt/intel/mkl/lib/intel64_lin/libmkl_core.so;/usr/lib/libgomp.so;-lpthread;-lm;-ldl;-lpthread;-lm;-ldl
-- LAPACK_LIBRARIES: /opt/intel/mkl/lib/intel64_lin/libmkl_gf_lp64.so;/opt/intel/mkl/lib/intel64_lin/libmkl_gnu_thread.so;/opt/intel/mkl/lib/intel64_lin/libmkl_core.so;/usr/lib/libgomp.so;-lpthread;-lm;-ldl;-lpthread;-lm;-ldl;/opt/intel/mkl/lib/intel64_lin/libmkl_gf_lp64.so;/opt/intel/mkl/lib/intel64_lin/libmkl_gnu_thread.so;/opt/intel/mkl/lib/intel64_lin/libmkl_core.so;/usr/lib/libgomp.so;-lpthread;-lm;-ldl
-- LAPACK_LINKER_FLAGS:
-- LAPACK_INCLUDE_DIRS:
-- LAPACK_USER_INCLUDE_DIRS:
-- Found LAPACK
-- Performing Test LAPACK_SYMBOL_CHECK
-- Performing Test LAPACK_SYMBOL_CHECK - Success
-- Performing Test MKL_SYMBOL_CHECK
-- Performing Test MKL_SYMBOL_CHECK - Failed
-- Use other than Intel MKL implementation of BLAS/LAPACK (consult CMakeFiles/CMakeError.log for further information).
-- DEAL_II_WITH_LAPACK successfully set up with external dependencies.
--
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/configure/configure_1_mpi.cmake
-- Found MPI_C: /usr/lib/openmpi/libmpi.so (found version "3.1")
-- Found MPI_CXX: /usr/lib/openmpi/libmpi_cxx.so (found version "3.1")
-- Found MPI_Fortran: /usr/lib/openmpi/libmpi_usempif08.so (found version "3.1")
-- Found MPI: TRUE (found version "3.1")
-- Performing Test MPI_HAVE_MPI_SEEK_SET
-- Performing Test MPI_HAVE_MPI_SEEK_SET - Success
-- Found MPI_MPI_H
-- Performing Test MPI_UNDERLINKAGE_OK
-- Performing Test MPI_UNDERLINKAGE_OK - Success
-- MPI_VERSION: 3.1
-- MPI_LIBRARIES: /usr/lib/openmpi/libmpi_cxx.so;/usr/lib/openmpi/libmpi.so;/usr/lib/openmpi/libmpi_usempif08.so;/usr/lib/openmpi/libmpi_usempi_ignore_tkr.so;/usr/lib/openmpi/libmpi_mpifh.so;/usr/lib/openmpi/libmpi.so;/usr/lib/openmpi/libmpi.so
-- MPI_INCLUDE_DIRS: /usr/include;/usr/include
-- MPI_USER_INCLUDE_DIRS: /usr/include;/usr/include
-- MPI_CXX_FLAGS: -pthread
-- MPI_LINKER_FLAGS: -Wl,-rpath -Wl,/usr/lib64 -Wl,-rpath -Wl,/usr/lib/openmpi -Wl,--enable-new-dtags -L/usr/lib -pthread
-- Found MPI
-- DEAL_II_WITH_MPI successfully set up with external dependencies.
--
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/configure/configure_1_tbb.cmake
-- Found TBB_LIBRARY
-- TBB_DEBUG_LIBRARY not found! The call was:
-- FIND_LIBRARY(TBB_DEBUG_LIBRARY NAMES tbb_debug HINTS PATH_SUFFIXES lib lib64 lib)
-- Found TBB_INCLUDE_DIR
-- TBB_VERSION: 2020.3
-- TBB_LIBRARIES: /usr/lib/libtbb.so
-- TBB_INCLUDE_DIRS: /usr/include
-- TBB_USER_INCLUDE_DIRS: /usr/include
-- Found TBB
-- DEAL_II_WITH_TBB successfully set up with external dependencies.
--
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/configure/configure_1_zlib.cmake
-- Found ZLIB: /usr/lib/libz.so (found version "1.2.11")
-- ZLIB_VERSION: 1.2.11
-- ZLIB_LIBRARIES: /usr/lib/libz.so
-- ZLIB_INCLUDE_DIRS: /usr/include
-- Found ZLIB
-- DEAL_II_WITH_ZLIB successfully set up with external dependencies.
--
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/configure/configure_2_boost.cmake
-- Found Boost: /usr/include (found suitable version "1.76.0", minimum required is "1.59") found components: iostreams serialization system thread regex chrono date_time atomic
-- BOOST_VERSION: 1.76.0
-- BOOST_LIBRARIES: /usr/lib/libboost_iostreams.so;/usr/lib/libboost_serialization.so;/usr/lib/libboost_system.so;/usr/lib/libboost_thread.so;-lpthread;/usr/lib/libboost_regex.so;/usr/lib/libboost_chrono.so;/usr/lib/libboost_date_time.so;/usr/lib/libboost_atomic.so
-- BOOST_INCLUDE_DIRS: /usr/include
-- BOOST_USER_INCLUDE_DIRS: /usr/include
-- Found BOOST
-- Performing Test BOOST_IOSTREAMS_USABLE
-- Performing Test BOOST_IOSTREAMS_USABLE - Success
-- Performing Test BOOST_SERIALIZATION_USABLE
-- Performing Test BOOST_SERIALIZATION_USABLE - Success
-- Performing Test DEAL_II_HAS_AUTO_PTR
-- Performing Test DEAL_II_HAS_AUTO_PTR - Failed
-- DEAL_II_WITH_BOOST successfully set up with external dependencies.
--
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/configure/configure_2_ginkgo.cmake
-- Could NOT find Ginkgo (missing: Ginkgo_DIR)
-- GINKGO_LIBRARY_ginkgo not found! The call was:
-- FIND_LIBRARY(GINKGO_LIBRARY_ginkgo NAMES ginkgo HINTS NO_DEFAULT_PATH NO_CMAKE_ENVIRONMENT_PATH NO_CMAKE_PATH NO_SYSTEM_ENVIRONMENT_PATH NO_CMAKE_SYSTEM_PATH NO_CMAKE_FIND_ROOT_PATH)
-- GINKGO_LIBRARIES: *** Required variable "GINKGO_LIBRARY_ginkgo" set to NOTFOUND ***
-- GINKGO_INCLUDE_DIRS: *** Required variable "GINKGO_INSTALL_INCLUDE_DIR" empty ***
-- GINKGO_USER_INCLUDE_DIRS: *** Required variable "GINKGO_INSTALL_INCLUDE_DIR" empty ***
-- Could NOT find GINKGO
-- DEAL_II_WITH_GINKGO has unmet external dependencies.
--
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/configure/configure_2_metis.cmake
-- Found METIS_LIBRARY
-- Found METIS_INCLUDE_DIR
-- METIS_VERSION: 5.1.0
-- METIS_LIBRARIES: /usr/lib/libmetis.so;/usr/lib/openmpi/libmpi.so
-- METIS_INCLUDE_DIRS: /usr/include
-- METIS_USER_INCLUDE_DIRS: /usr/include
-- Found METIS
-- DEAL_II_WITH_METIS successfully set up with external dependencies.
--
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/configure/configure_2_trilinos.cmake
-- Found EPETRA_CONFIG_H
-- Found TRILINOS_LIBRARY_pike-blackbox
-- Found TRILINOS_LIBRARY_trilinoscouplings
-- Found TRILINOS_LIBRARY_panzer-mini-fe
-- Found TRILINOS_LIBRARY_panzer-stk
-- Found TRILINOS_LIBRARY_panzer-disc-fe
-- Found TRILINOS_LIBRARY_panzer-dof-mgr
-- Found TRILINOS_LIBRARY_panzer-core
-- Found TRILINOS_LIBRARY_piro
-- Found TRILINOS_LIBRARY_rol
-- Found TRILINOS_LIBRARY_stokhos_muelu
-- Found TRILINOS_LIBRARY_stokhos_ifpack2
-- Found TRILINOS_LIBRARY_stokhos_amesos2
-- Found TRILINOS_LIBRARY_stokhos_xpetra
-- Found TRILINOS_LIBRARY_stokhos_tpetra
-- Found TRILINOS_LIBRARY_stokhos_sacado
-- Found TRILINOS_LIBRARY_stokhos
-- Found TRILINOS_LIBRARY_tempus
-- Found TRILINOS_LIBRARY_rythmos
-- Found TRILINOS_LIBRARY_shylu_ddcommon
-- Found TRILINOS_LIBRARY_shylu_ddfrosch
-- Found TRILINOS_LIBRARY_shylu_ddbddc
-- Found TRILINOS_LIBRARY_muelu-adapters
-- Found TRILINOS_LIBRARY_muelu-interface
-- Found TRILINOS_LIBRARY_muelu
-- Found TRILINOS_LIBRARY_moertel
-- Found TRILINOS_LIBRARY_locathyra
-- Found TRILINOS_LIBRARY_locaepetra
-- Found TRILINOS_LIBRARY_localapack
-- Found TRILINOS_LIBRARY_loca
-- Found TRILINOS_LIBRARY_noxepetra
-- Found TRILINOS_LIBRARY_noxlapack
-- Found TRILINOS_LIBRARY_nox
-- Found TRILINOS_LIBRARY_phalanx
-- Found TRILINOS_LIBRARY_percept
-- Found TRILINOS_LIBRARY_stk_expreval
-- Found TRILINOS_LIBRARY_stk_balance_test_utils
-- Found TRILINOS_LIBRARY_stk_balance_lib
-- Found TRILINOS_LIBRARY_stk_tools_lib
-- Found TRILINOS_LIBRARY_stk_transfer_utils_lib
-- Found TRILINOS_LIBRARY_stk_transfer_impl
-- Found TRILINOS_LIBRARY_stk_search_util_base
-- Found TRILINOS_LIBRARY_stk_search
-- Found TRILINOS_LIBRARY_stk_unit_test_utils
-- Found TRILINOS_LIBRARY_stk_mesh_fixtures
-- Found TRILINOS_LIBRARY_stk_ngp_test
-- Found TRILINOS_LIBRARY_stk_io_util
-- Found TRILINOS_LIBRARY_stk_io
-- Found TRILINOS_LIBRARY_stk_ngp
-- Found TRILINOS_LIBRARY_stk_mesh_base
-- Found TRILINOS_LIBRARY_stk_topology
-- Found TRILINOS_LIBRARY_stk_util_diag
-- Found TRILINOS_LIBRARY_stk_util_env
-- Found TRILINOS_LIBRARY_stk_util_command_line
-- Found TRILINOS_LIBRARY_stk_util_registry
-- Found TRILINOS_LIBRARY_stk_util_parallel
-- Found TRILINOS_LIBRARY_stk_util_util
-- Found TRILINOS_LIBRARY_stk_math
-- Found TRILINOS_LIBRARY_intrepid2
-- Found TRILINOS_LIBRARY_intrepid
-- Found TRILINOS_LIBRARY_teko
-- Found TRILINOS_LIBRARY_fei_trilinos
-- Found TRILINOS_LIBRARY_fei_base
-- Found TRILINOS_LIBRARY_stratimikos
-- Found TRILINOS_LIBRARY_stratimikosbelos
-- Found TRILINOS_LIBRARY_stratimikosamesos2
-- Found TRILINOS_LIBRARY_stratimikosaztecoo
-- Found TRILINOS_LIBRARY_stratimikosamesos
-- Found TRILINOS_LIBRARY_stratimikosml
-- Found TRILINOS_LIBRARY_stratimikosifpack
-- Found TRILINOS_LIBRARY_ifpack2-adapters
-- Found TRILINOS_LIBRARY_ifpack2
-- Found TRILINOS_LIBRARY_anasazitpetra
-- Found TRILINOS_LIBRARY_ModeLaplace
-- Found TRILINOS_LIBRARY_anasaziepetra
-- Found TRILINOS_LIBRARY_anasazi
-- Found TRILINOS_LIBRARY_komplex
-- Found TRILINOS_LIBRARY_mapvarlib
-- Found TRILINOS_LIBRARY_fastqlib
-- Found TRILINOS_LIBRARY_blotlib
-- Found TRILINOS_LIBRARY_plt
-- Found TRILINOS_LIBRARY_svdi_cgi
-- Found TRILINOS_LIBRARY_svdi_cdr
-- Found TRILINOS_LIBRARY_suplib
-- Found TRILINOS_LIBRARY_suplib_c
-- Found TRILINOS_LIBRARY_suplib_cpp
-- Found TRILINOS_LIBRARY_supes
-- Found TRILINOS_LIBRARY_aprepro_lib
-- Found TRILINOS_LIBRARY_chaco
-- Found TRILINOS_LIBRARY_io_info_lib
-- Found TRILINOS_LIBRARY_Ionit
-- Found TRILINOS_LIBRARY_Iotr
-- Found TRILINOS_LIBRARY_Iohb
-- Found TRILINOS_LIBRARY_Iogs
-- Found TRILINOS_LIBRARY_Iogn
-- Found TRILINOS_LIBRARY_Iovs
-- Found TRILINOS_LIBRARY_Iopg
-- Found TRILINOS_LIBRARY_Ioexo_fac
-- Found TRILINOS_LIBRARY_Iofx
-- Found TRILINOS_LIBRARY_Ioex
-- Found TRILINOS_LIBRARY_Ioss
-- Found TRILINOS_LIBRARY_nemesis
-- Found TRILINOS_LIBRARY_exoIIv2for32
-- Found TRILINOS_LIBRARY_exodus_for
-- Found TRILINOS_LIBRARY_exodus
-- Found TRILINOS_LIBRARY_amesos2
-- Found TRILINOS_LIBRARY_shylu_nodetacho
-- Found TRILINOS_LIBRARY_shylu_nodehts
-- Found TRILINOS_LIBRARY_belosxpetra
-- Found TRILINOS_LIBRARY_belostpetra
-- Found TRILINOS_LIBRARY_belosepetra
-- Found TRILINOS_LIBRARY_belos
-- Found TRILINOS_LIBRARY_ml
-- Found TRILINOS_LIBRARY_ifpack
-- Found TRILINOS_LIBRARY_zoltan2
-- Found TRILINOS_LIBRARY_pamgen_extras
-- Found TRILINOS_LIBRARY_pamgen
-- Found TRILINOS_LIBRARY_amesos
-- Found TRILINOS_LIBRARY_galeri-xpetra
-- Found TRILINOS_LIBRARY_galeri-epetra
-- Found TRILINOS_LIBRARY_aztecoo
-- Found TRILINOS_LIBRARY_dpliris
-- Found TRILINOS_LIBRARY_isorropia
-- Found TRILINOS_LIBRARY_optipack
-- Found TRILINOS_LIBRARY_xpetra-sup
-- Found TRILINOS_LIBRARY_xpetra
-- Found TRILINOS_LIBRARY_thyratpetra
-- Found TRILINOS_LIBRARY_thyraepetraext
-- Found TRILINOS_LIBRARY_thyraepetra
-- Found TRILINOS_LIBRARY_thyracore
-- Found TRILINOS_LIBRARY_domi
-- Found TRILINOS_LIBRARY_trilinosss
-- Found TRILINOS_LIBRARY_tpetraext
-- Found TRILINOS_LIBRARY_tpetrainout
-- Found TRILINOS_LIBRARY_tpetra
-- Found TRILINOS_LIBRARY_kokkostsqr
-- Found TRILINOS_LIBRARY_tpetraclassiclinalg
-- Found TRILINOS_LIBRARY_tpetraclassicnodeapi
-- Found TRILINOS_LIBRARY_tpetraclassic
-- Found TRILINOS_LIBRARY_epetraext
-- Found TRILINOS_LIBRARY_triutils
-- Found TRILINOS_LIBRARY_globipack
-- Found TRILINOS_LIBRARY_shards
-- Found TRILINOS_LIBRARY_zoltan
-- Found TRILINOS_LIBRARY_epetra
-- Found TRILINOS_LIBRARY_minitensor
-- Found TRILINOS_LIBRARY_sacado
-- Found TRILINOS_LIBRARY_rtop
-- Found TRILINOS_LIBRARY_kokkoskernels
-- Found TRILINOS_LIBRARY_teuchoskokkoscomm
-- Found TRILINOS_LIBRARY_teuchoskokkoscompat
-- Found TRILINOS_LIBRARY_teuchosremainder
-- Found TRILINOS_LIBRARY_teuchosnumerics
-- Found TRILINOS_LIBRARY_teuchoscomm
-- Found TRILINOS_LIBRARY_teuchosparameterlist
-- Found TRILINOS_LIBRARY_teuchosparser
-- Found TRILINOS_LIBRARY_teuchoscore
-- Found TRILINOS_LIBRARY_kokkosalgorithms
-- Found TRILINOS_LIBRARY_kokkoscontainers
-- Found TRILINOS_LIBRARY_kokkoscore
-- Found TRILINOS_LIBRARY_gtest
-- TRILINOS_VERSION: 12.18.1
-- TRILINOS_LIBRARIES: /usr/lib/libpike-blackbox.so;/usr/lib/libtrilinoscouplings.so;/usr/lib/libpanzer-mini-fe.so;/usr/lib/libpanzer-stk.so;/usr/lib/libpanzer-disc-fe.so;/usr/lib/libpanzer-dof-mgr.so;/usr/lib/libpanzer-core.so;/usr/lib/libpiro.so;/usr/lib/librol.so;/usr/lib/libstokhos_muelu.so;/usr/lib/libstokhos_ifpack2.so;/usr/lib/libstokhos_amesos2.so;/usr/lib/libstokhos_xpetra.so;/usr/lib/libstokhos_tpetra.so;/usr/lib/libstokhos_sacado.so;/usr/lib/libstokhos.so;/usr/lib/libtempus.so;/usr/lib/librythmos.so;/usr/lib/libshylu_ddcommon.so;/usr/lib/libshylu_ddfrosch.so;/usr/lib/libshylu_ddbddc.so;/usr/lib/libmuelu-adapters.so;/usr/lib/libmuelu-interface.so;/usr/lib/libmuelu.so;/usr/lib/libmoertel.so;/usr/lib/liblocathyra.so;/usr/lib/liblocaepetra.so;/usr/lib/liblocalapack.so;/usr/lib/libloca.so;/usr/lib/libnoxepetra.so;/usr/lib/libnoxlapack.so;/usr/lib/libnox.so;/usr/lib/libphalanx.so;/usr/lib/libpercept.so;/usr/lib/libstk_expreval.so;/usr/lib/libstk_balance_test_utils.so;/usr/lib/libstk_balance_lib.so;/usr/lib/libstk_tools_lib.so;/usr/lib/libstk_transfer_utils_lib.so;/usr/lib/libstk_transfer_impl.so;/usr/lib/libstk_search_util_base.so;/usr/lib/libstk_search.so;/usr/lib/libstk_unit_test_utils.so;/usr/lib/libstk_mesh_fixtures.so;/usr/lib/libstk_ngp_test.so;/usr/lib/libstk_io_util.so;/usr/lib/libstk_io.so;/usr/lib/libstk_ngp.so;/usr/lib/libstk_mesh_base.so;/usr/lib/libstk_topology.so;/usr/lib/libstk_util_diag.so;/usr/lib/libstk_util_env.so;/usr/lib/libstk_util_command_line.so;/usr/lib/libstk_util_registry.so;/usr/lib/libstk_util_parallel.so;/usr/lib/libstk_util_util.so;/usr/lib/libstk_math.so;/usr/lib/libintrepid2.so;/usr/lib/libintrepid.so;/usr/lib/libteko.so;/usr/lib/libfei_trilinos.so;/usr/lib/libfei_base.so;/usr/lib/libstratimikos.so;/usr/lib/libstratimikosbelos.so;/usr/lib/libstratimikosamesos2.so;/usr/lib/libstratimikosaztecoo.so;/usr/lib/libstratimikosamesos.so;/usr/lib/libstratimikosml.so;/usr/lib/libstratimikosifpack.so;/usr/lib/libifpack2-adapters.so;/usr/lib/libifpack2.so;/usr/lib/libanasazitpetra.so;/usr/lib/libModeLaplace.so;/usr/lib/libanasaziepetra.so;/usr/lib/libanasazi.so;/usr/lib/libkomplex.so;/usr/lib/libmapvarlib.so;/usr/lib/libfastqlib.a;/usr/lib/libblotlib.a;/usr/lib/libplt.a;/usr/lib/libsvdi_cgi.a;/usr/lib/libsvdi_cdr.a;/usr/lib/libsuplib.so;/usr/lib/libsuplib_c.so;/usr/lib/libsuplib_cpp.so;/usr/lib/libsupes.so;/usr/lib/libaprepro_lib.so;/usr/lib/libchaco.so;/usr/lib/libio_info_lib.so;/usr/lib/libIonit.so;/usr/lib/libIotr.so;/usr/lib/libIohb.so;/usr/lib/libIogs.so;/usr/lib/libIogn.so;/usr/lib/libIovs.so;/usr/lib/libIopg.so;/usr/lib/libIoexo_fac.so;/usr/lib/libIofx.so;/usr/lib/libIoex.so;/usr/lib/libIoss.so;/usr/lib/libnemesis.so;/usr/lib/libexoIIv2for32.so;/usr/lib/libexodus_for.so;/usr/lib/libexodus.so;/usr/lib/libamesos2.so;/usr/lib/libshylu_nodetacho.so;/usr/lib/libshylu_nodehts.so;/usr/lib/libbelosxpetra.so;/usr/lib/libbelostpetra.so;/usr/lib/libbelosepetra.so;/usr/lib/libbelos.so;/usr/lib/libml.so;/usr/lib/libifpack.so;/usr/lib/libzoltan2.so;/usr/lib/libpamgen_extras.so;/usr/lib/libpamgen.so;/usr/lib/libamesos.so;/usr/lib/libgaleri-xpetra.so;/usr/lib/libgaleri-epetra.so;/usr/lib/libaztecoo.so;/usr/lib/libdpliris.so;/usr/lib/libisorropia.so;/usr/lib/liboptipack.so;/usr/lib/libxpetra-sup.so;/usr/lib/libxpetra.so;/usr/lib/libthyratpetra.so;/usr/lib/libthyraepetraext.so;/usr/lib/libthyraepetra.so;/usr/lib/libthyracore.so;/usr/lib/libdomi.so;/usr/lib/libtrilinosss.so;/usr/lib/libtpetraext.so;/usr/lib/libtpetrainout.so;/usr/lib/libtpetra.so;/usr/lib/libkokkostsqr.so;/usr/lib/libtpetraclassiclinalg.so;/usr/lib/libtpetraclassicnodeapi.so;/usr/lib/libtpetraclassic.so;/usr/lib/libepetraext.so;/usr/lib/libtriutils.so;/usr/lib/libglobipack.so;/usr/lib/libshards.so;/usr/lib/libzoltan.so;/usr/lib/libepetra.so;/usr/lib/libminitensor.so;/usr/lib/libsacado.so;/usr/lib/librtop.so;/usr/lib/libkokkoskernels.so;/usr/lib/libteuchoskokkoscomm.so;/usr/lib/libteuchoskokkoscompat.so;/usr/lib/libteuchosremainder.so;/usr/lib/libteuchosnumerics.so;/usr/lib/libteuchoscomm.so;/usr/lib/libteuchosparameterlist.so;/usr/lib/libteuchosparser.so;/usr/lib/libteuchoscore.so;/usr/lib/libkokkosalgorithms.so;/usr/lib/libkokkoscontainers.so;/usr/lib/libkokkoscore.so;/usr/lib/libgtest.so;/usr/lib/libboost_program_options.so;/usr/lib/libboost_system.so;/usr/lib/libmatio.so;/usr/lib/libX11.so;/usr/lib/libgtest.so;/usr/lib/libnetcdf.so;/usr/lib/libhdf5.so;/usr/lib/libsz.so;/usr/lib/libz.so;/usr/lib/libm.so;/usr/lib/liblapack.so;/usr/lib/libblas.so;/usr/lib/libdl.so;/usr/lib/openmpi/libmpi_cxx.so;/usr/lib/openmpi/libmpi.so
-- TRILINOS_INCLUDE_DIRS: /usr/include;/usr/include
-- TRILINOS_USER_INCLUDE_DIRS: /usr/include;/usr/include
-- TRILINOS_LINKER_FLAGS:
-- Found TRILINOS
-- Checking whether the found trilinos package contains all required modules:
-- Found Amesos
-- Found Epetra
-- Found Ifpack
-- Found AztecOO
-- Found Teuchos
-- Found ML
-- Found EpetraExt
-- Found Kokkos
-- Found MueLu
-- Found ROL
-- Found Sacado
-- Found SEACAS
-- Found Tpetra
-- Found Zoltan
-- Module MUMPS not found!
-- Looking for KOKKOS_ENABLE_CUDA_LAMBDA
-- Looking for KOKKOS_ENABLE_CUDA_LAMBDA - not found
-- Performing Test TRILINOS_TPETRA_IS_FUNCTIONAL
-- Performing Test TRILINOS_TPETRA_IS_FUNCTIONAL - Failed
-- Tpetra was found but is not usable! Disabling Tpetra support.
-- Performing Test TRILINOS_MUELU_IS_FUNCTIONAL
-- Performing Test TRILINOS_MUELU_IS_FUNCTIONAL - Failed
-- MueLu was found but is not usable through Epetra! Disabling MueLu support.
-- Performing Test TRILINOS_SEACAS_IS_FUNCTIONAL
-- Performing Test TRILINOS_SEACAS_IS_FUNCTIONAL - Failed
-- SEACAS was found but doesn't seem to include ExodusII. Disabling SEACAS support.
-- Found SACADO_CONFIG_H
-- Found SACADO_TRAD_HPP
-- Performing Test TRILINOS_CXX_SUPPORTS_SACADO_COMPLEX_RAD
-- Performing Test TRILINOS_CXX_SUPPORTS_SACADO_COMPLEX_RAD - Success
-- DEAL_II_WITH_TRILINOS successfully set up with external dependencies.
--
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/configure/configure_2_umfpack.cmake
-- Found UMFPACK_INCLUDE_DIR
-- Found AMD_INCLUDE_DIR
-- Found SuiteSparse_config_INCLUDE_DIR
-- Found UMFPACK_LIBRARY
-- Found AMD_LIBRARY
-- Found CHOLMOD_LIBRARY
-- Found COLAMD_LIBRARY
-- Found CCOLAMD_LIBRARY
-- Found CAMD_LIBRARY
-- Found SuiteSparse_config_LIBRARY
-- Performing Test rt_LIBRARY
-- Performing Test rt_LIBRARY - Success
-- UMFPACK_VERSION: 5.7.9
-- UMFPACK_LIBRARIES: /usr/lib/libumfpack.so;/usr/lib/libcholmod.so;/usr/lib/libccolamd.so;/usr/lib/libcolamd.so;/usr/lib/libcamd.so;/usr/lib/libsuitesparseconfig.so;/usr/lib/libamd.so;/usr/lib/libmetis.so;/usr/lib/openmpi/libmpi.so;/opt/intel/mkl/lib/intel64_lin/libmkl_gf_lp64.so;/opt/intel/mkl/lib/intel64_lin/libmkl_gnu_thread.so;/opt/intel/mkl/lib/intel64_lin/libmkl_core.so;/usr/lib/libgomp.so;-lm;-ldl;rt
-- UMFPACK_INCLUDE_DIRS: /usr/include;/usr/include;/usr/include
-- UMFPACK_USER_INCLUDE_DIRS: /usr/include;/usr/include;/usr/include
-- UMFPACK_LINKER_FLAGS:
-- Found UMFPACK
-- DEAL_II_WITH_UMFPACK successfully set up with external dependencies.
--
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/configure/configure_3_kokkos.cmake
-- DEAL_II_WITH_KOKKOS successfully set up with external dependencies.
--
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/configure/configure_3_petsc.cmake
-- Found PETSC_LIBRARY
-- Found PETSC_INCLUDE_DIR_ARCH
-- Found PETSC_INCLUDE_DIR_COMMON
-- Found PETSC_PETSCVARIABLES
-- PETSC_LIBRARY_cmumps not found! The call was:
-- FIND_LIBRARY(PETSC_LIBRARY_cmumps NAMES cmumps HINTS /opt/petsc/linux-c-opt/lib /usr/lib/openmpi /usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0)
-- PETSC_LIBRARY_dmumps not found! The call was:
-- FIND_LIBRARY(PETSC_LIBRARY_dmumps NAMES dmumps HINTS /opt/petsc/linux-c-opt/lib /usr/lib/openmpi /usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0)
-- PETSC_LIBRARY_smumps not found! The call was:
-- FIND_LIBRARY(PETSC_LIBRARY_smumps NAMES smumps HINTS /opt/petsc/linux-c-opt/lib /usr/lib/openmpi /usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0)
-- PETSC_LIBRARY_zmumps not found! The call was:
-- FIND_LIBRARY(PETSC_LIBRARY_zmumps NAMES zmumps HINTS /opt/petsc/linux-c-opt/lib /usr/lib/openmpi /usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0)
-- PETSC_LIBRARY_mumps_common not found! The call was:
-- FIND_LIBRARY(PETSC_LIBRARY_mumps_common NAMES mumps_common HINTS /opt/petsc/linux-c-opt/lib /usr/lib/openmpi /usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0)
-- PETSC_LIBRARY_pord not found! The call was:
-- FIND_LIBRARY(PETSC_LIBRARY_pord NAMES pord HINTS /opt/petsc/linux-c-opt/lib /usr/lib/openmpi /usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0)
-- PETSC_LIBRARY_scalapack not found! The call was:
-- FIND_LIBRARY(PETSC_LIBRARY_scalapack NAMES scalapack HINTS /opt/petsc/linux-c-opt/lib /usr/lib/openmpi /usr/lib/gcc/x86_64-pc-linux-gnu/10.2.0)
-- Found PETSC_LIBRARY_umfpack
-- Found PETSC_LIBRARY_klu
-- Found PETSC_LIBRARY_cholmod
-- Found PETSC_LIBRARY_btf
-- Found PETSC_LIBRARY_ccolamd
-- Found PETSC_LIBRARY_colamd
-- Found PETSC_LIBRARY_camd
-- Found PETSC_LIBRARY_amd
-- Found PETSC_LIBRARY_suitesparseconfig
-- Found PETSC_LIBRARY_superlu
-- Found PETSC_LIBRARY_superlu_dist
-- Found PETSC_LIBRARY_fftw3_mpi
-- Found PETSC_LIBRARY_fftw3
-- Found PETSC_LIBRARY_lapack
-- Found PETSC_LIBRARY_blas
-- Found PETSC_LIBRARY_esmumps
-- Found PETSC_LIBRARY_ptscotch
-- Found PETSC_LIBRARY_ptscotcherr
-- Found PETSC_LIBRARY_scotch
-- Found PETSC_LIBRARY_scotcherr
-- Found PETSC_LIBRARY_bz2
-- Found PETSC_LIBRARY_hdf5hl_fortran
-- Found PETSC_LIBRARY_hdf5_fortran
-- Found PETSC_LIBRARY_hdf5_hl
-- Found PETSC_LIBRARY_hdf5
-- Found PETSC_LIBRARY_parmetis
-- Found PETSC_LIBRARY_metis
-- Found PETSC_LIBRARY_triangle
-- Performing Test PETSC_LIBRARY_m
-- Performing Test PETSC_LIBRARY_m - Success
-- Performing Test PETSC_LIBRARY_dl
-- Performing Test PETSC_LIBRARY_dl - Success
-- Found PETSC_LIBRARY_mpi_usempif08
-- Found PETSC_LIBRARY_mpi_usempi_ignore_tkr
-- Found PETSC_LIBRARY_mpi_mpifh
-- Found PETSC_LIBRARY_mpi
-- Performing Test PETSC_LIBRARY_gfortran
-- Performing Test PETSC_LIBRARY_gfortran - Success
-- Performing Test PETSC_LIBRARY_quadmath
-- Performing Test PETSC_LIBRARY_quadmath - Success
-- Performing Test PETSC_LIBRARY_pthread
-- Performing Test PETSC_LIBRARY_pthread - Success
-- PETSC_VERSION: 3.15.0.0
-- PETSC_LIBRARIES: /opt/petsc/linux-c-opt/lib/libpetsc.so;/usr/lib/libumfpack.so;/usr/lib/libklu.so;/usr/lib/libcholmod.so;/usr/lib/libbtf.so;/usr/lib/libccolamd.so;/usr/lib/libcolamd.so;/usr/lib/libcamd.so;/usr/lib/libamd.so;/usr/lib/libsuitesparseconfig.so;/usr/lib/libsuperlu.so;/usr/lib/libsuperlu_dist.so;/usr/lib/libfftw3_mpi.so;/usr/lib/libfftw3.so;/usr/lib/liblapack.so;/usr/lib/libblas.so;/usr/lib/libesmumps.so;/usr/lib/libptscotch.so;/usr/lib/libptscotcherr.so;/usr/lib/libscotch.so;/usr/lib/libscotcherr.so;/usr/lib/libbz2.so;/usr/lib/libhdf5hl_fortran.so;/usr/lib/libhdf5_fortran.so;/usr/lib/libhdf5_hl.so;/usr/lib/libhdf5.so;/usr/lib/libparmetis.so;/usr/lib/libmetis.so;/usr/lib/libtriangle.so;m;dl;/usr/lib/openmpi/libmpi_usempif08.so;/usr/lib/openmpi/libmpi_usempi_ignore_tkr.so;/usr/lib/openmpi/libmpi_mpifh.so;/usr/lib/openmpi/libmpi.so;gfortran;m;gfortran;m;quadmath;pthread;quadmath;dl
-- PETSC_INCLUDE_DIRS: /opt/petsc/linux-c-opt/include;/opt/petsc/linux-c-opt/include;/opt/petsc/linux-c-opt/include;/usr/include/hypre;/usr/include/superlu;/usr/include/superlu_dist
-- PETSC_USER_INCLUDE_DIRS: /opt/petsc/linux-c-opt/include;/opt/petsc/linux-c-opt/include;/opt/petsc/linux-c-opt/include;/usr/include/hypre;/usr/include/superlu;/usr/include/superlu_dist
-- Found PETSC
-- Compiling with complex-valued algebra
-- DEAL_II_WITH_PETSC successfully set up with external dependencies.
--
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/configure/configure_4_arborx.cmake
-- Could NOT find ArborX (missing: ArborX_DIR)
-- ARBORX_INCLUDE_DIRS: *** Required variable "ARBORX_INSTALL_INCLUDE_DIR" empty ***
-- ARBORX_USER_INCLUDE_DIRS: *** Required variable "ARBORX_INSTALL_INCLUDE_DIR" empty ***
-- Could NOT find ARBORX
-- DEAL_II_WITH_ARBORX has unmet external dependencies.
--
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/configure/configure_adolc.cmake
-- ADOLC_INCLUDE_DIR not found! The call was:
-- FIND_PATH(ADOLC_INCLUDE_DIR NAMES adolc/adolc.h HINTS PATH_SUFFIXES include)
-- ADOLC_LIBRARY not found! The call was:
-- FIND_LIBRARY(ADOLC_LIBRARY NAMES adolc HINTS PATH_SUFFIXES lib lib64 lib)
-- ADOLC_SETTINGS_H not found! The call was:
-- FIND_FILE(ADOLC_SETTINGS_H adolc_settings.h HINTS ADOLC_INCLUDE_DIR-NOTFOUND ADOLC_INCLUDE_DIR-NOTFOUND/adolc/internal NO_DEFAULT_PATH NO_CMAKE_ENVIRONMENT_PATH NO_CMAKE_PATH NO_SYSTEM_ENVIRONMENT_PATH NO_CMAKE_SYSTEM_PATH NO_CMAKE_FIND_ROOT_PATH)
-- ADOLC_LIBRARIES: *** Required variable "ADOLC_LIBRARY" set to NOTFOUND ***
-- ADOLC_INCLUDE_DIRS: *** Required variable "ADOLC_INCLUDE_DIR" set to NOTFOUND ***
-- ADOLC_USER_INCLUDE_DIRS: *** Required variable "ADOLC_INCLUDE_DIR" set to NOTFOUND ***
-- Could NOT find ADOLC
-- DEAL_II_WITH_ADOLC has unmet external dependencies.
--
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/configure/configure_arpack.cmake
-- Found ARPACK_LIBRARY
-- Found PARPACK_LIBRARY
-- ARPACK_LIBRARIES: /usr/lib/libparpack.so;/usr/lib/libarpack.so;/opt/intel/mkl/lib/intel64_lin/libmkl_gf_lp64.so;/opt/intel/mkl/lib/intel64_lin/libmkl_gnu_thread.so;/opt/intel/mkl/lib/intel64_lin/libmkl_core.so;/usr/lib/libgomp.so;-lm;-ldl;/usr/lib/openmpi/libmpi.so
-- ARPACK_LINKER_FLAGS:
-- Found ARPACK
-- DEAL_II_WITH_ARPACK successfully set up with external dependencies.
--
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/configure/configure_assimp.cmake
-- ASSIMP_LIB not found! The call was:
-- FIND_LIBRARY(ASSIMP_LIB NAMES assimp HINTS PATH_SUFFIXES lib lib64 lib)
-- ASSIMP_INC not found! The call was:
-- FIND_PATH(ASSIMP_INC assimp/defs.h HINTS PATH_SUFFIXES include)
-- ASSIMP_LIBRARIES: *** Required variable "ASSIMP_LIB" set to NOTFOUND ***
-- ASSIMP_INCLUDE_DIRS: *** Required variable "ASSIMP_INC" set to NOTFOUND ***
-- ASSIMP_USER_INCLUDE_DIRS: *** Required variable "ASSIMP_INC" set to NOTFOUND ***
-- Could NOT find ASSIMP
-- DEAL_II_WITH_ASSIMP has unmet external dependencies.
--
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/configure/configure_complex_values.cmake
--
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/configure/configure_gmsh.cmake
-- Found GMSH_EXE
-- Found GMSH_LIBRARY
-- Found GMSH_INCLUDE_DIR
-- GMSH_EXECUTABLE: /usr/bin/gmsh
-- GMSH_LIBRARIES: /usr/lib/libgmsh.so
-- GMSH_INCLUDE_DIRS: /usr/include
-- GMSH_USER_INCLUDE_DIRS: /usr/include
-- Found GMSH
-- DEAL_II_WITH_GMSH successfully set up with external dependencies.
--
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/configure/configure_gsl.cmake
-- Found GSL_LIBRARY
-- Found GSL_CBLAS_LIBRARY
-- Found GSL_INCLUDE_DIR
-- GSL_VERSION: 2.7
-- GSL_LIBRARIES: /usr/lib/libgsl.so;/usr/lib/libgslcblas.so
-- GSL_INCLUDE_DIRS: /usr/include
-- GSL_USER_INCLUDE_DIRS: /usr/include
-- Found GSL
-- DEAL_II_WITH_GSL successfully set up with external dependencies.
--
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/configure/configure_hdf5.cmake
-- Found HDF5_INCLUDE_DIR
-- Found HDF5_LIBRARY
-- Found HDF5_HL_LIBRARY
-- Found HDF5_PUBCONF
-- HDF5_LIBRARIES: /usr/lib/libhdf5_hl.so;/usr/lib/libhdf5.so;/usr/lib/openmpi/libmpi.so
-- HDF5_INCLUDE_DIRS: /usr/include
-- HDF5_USER_INCLUDE_DIRS: /usr/include
-- Found HDF5
-- DEAL_II_WITH_HDF5 successfully set up with external dependencies.
--
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/configure/configure_muparser.cmake
-- MUPARSER_LIBRARY not found! The call was:
-- FIND_LIBRARY(MUPARSER_LIBRARY NAMES muparser muparserd HINTS PATH_SUFFIXES lib lib64 lib)
-- MUPARSER_INCLUDE_DIR not found! The call was:
-- FIND_PATH(MUPARSER_INCLUDE_DIR muParserDef.h HINTS PATH_SUFFIXES include)
-- MUPARSER_LIBRARIES: *** Required variable "MUPARSER_LIBRARY" set to NOTFOUND ***
-- MUPARSER_INCLUDE_DIRS: *** Required variable "MUPARSER_INCLUDE_DIR" set to NOTFOUND ***
-- Could NOT find MUPARSER
-- DEAL_II_WITH_MUPARSER has unmet external dependencies.
--
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/configure/configure_opencascade.cmake
-- Found OPENCASCADE_INCLUDE_DIR
-- Found OPENCASCADE_TKBO
-- Found OPENCASCADE_TKBool
-- Found OPENCASCADE_TKBRep
-- Found OPENCASCADE_TKernel
-- Found OPENCASCADE_TKFeat
-- Found OPENCASCADE_TKFillet
-- Found OPENCASCADE_TKG2d
-- Found OPENCASCADE_TKG3d
-- Found OPENCASCADE_TKGeomAlgo
-- Found OPENCASCADE_TKGeomBase
-- Found OPENCASCADE_TKHLR
-- Found OPENCASCADE_TKIGES
-- Found OPENCASCADE_TKMath
-- Found OPENCASCADE_TKMesh
-- Found OPENCASCADE_TKOffset
-- Found OPENCASCADE_TKPrim
-- Found OPENCASCADE_TKShHealing
-- Found OPENCASCADE_TKSTEP
-- Found OPENCASCADE_TKSTEPAttr
-- Found OPENCASCADE_TKSTEPBase
-- Found OPENCASCADE_TKSTEP209
-- Found OPENCASCADE_TKSTL
-- Found OPENCASCADE_TKTopAlgo
-- Found OPENCASCADE_TKXSBase
-- OPENCASCADE_VERSION: 7.5.0
-- OPENCASCADE_LIBRARIES: /usr/lib/libTKBO.so;/usr/lib/libTKBool.so;/usr/lib/libTKBRep.so;/usr/lib/libTKernel.so;/usr/lib/libTKFeat.so;/usr/lib/libTKFillet.so;/usr/lib/libTKG2d.so;/usr/lib/libTKG3d.so;/usr/lib/libTKGeomAlgo.so;/usr/lib/libTKGeomBase.so;/usr/lib/libTKHLR.so;/usr/lib/libTKIGES.so;/usr/lib/libTKMath.so;/usr/lib/libTKMesh.so;/usr/lib/libTKOffset.so;/usr/lib/libTKPrim.so;/usr/lib/libTKShHealing.so;/usr/lib/libTKSTEP.so;/usr/lib/libTKSTEPAttr.so;/usr/lib/libTKSTEPBase.so;/usr/lib/libTKSTEP209.so;/usr/lib/libTKSTL.so;/usr/lib/libTKTopAlgo.so;/usr/lib/libTKXSBase.so
-- OPENCASCADE_INCLUDE_DIRS: /usr/include/opencascade
-- OPENCASCADE_USER_INCLUDE_DIRS: /usr/include/opencascade
-- Found OPENCASCADE
-- DEAL_II_WITH_OPENCASCADE successfully set up with external dependencies.
--
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/configure/configure_p4est.cmake
-- Found SC_INCLUDE_DIR
-- Found P4EST_LIBRARY_OPTIMIZED
-- Found SC_LIBRARY_OPTIMIZED
-- Found P4EST_LIBRARY_DEBUG
-- Found SC_LIBRARY_DEBUG
-- Found P4EST_INCLUDE_DIR
-- P4EST_VERSION: 2.2
-- P4EST_LIBRARIES: optimized;/opt/p4est-deal-ii/FAST/lib/libp4est.so;/opt/p4est-deal-ii/FAST/lib/libsc.so;debug;/opt/p4est-deal-ii/DEBUG/lib/libp4est.so;/opt/p4est-deal-ii/DEBUG/lib/libsc.so;general;/opt/intel/mkl/lib/intel64_lin/libmkl_gf_lp64.so;/opt/intel/mkl/lib/intel64_lin/libmkl_gnu_thread.so;/opt/intel/mkl/lib/intel64_lin/libmkl_core.so;/usr/lib/libgomp.so;-lm;-ldl;/usr/lib/openmpi/libmpi.so
-- P4EST_INCLUDE_DIRS: /opt/p4est-deal-ii/FAST/include;/opt/p4est-deal-ii/FAST/include
-- P4EST_USER_INCLUDE_DIRS: /opt/p4est-deal-ii/FAST/include;/opt/p4est-deal-ii/FAST/include
-- Found P4EST
-- DEAL_II_WITH_P4EST successfully set up with external dependencies.
--
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/configure/configure_scalapack.cmake
-- SCALAPACK_LIBRARY not found! The call was:
-- FIND_LIBRARY(SCALAPACK_LIBRARY NAMES scalapack scalapack-openmpi scalapack-pvm scalapack-mpi scalapack-mpich scalapack-mpich2 scalapack-lam HINTS PATH_SUFFIXES lib lib64 lib)
-- SCALAPACK_LIBRARIES: *** Required variable "SCALAPACK_LIBRARY" set to NOTFOUND ***
-- SCALAPACK_LINKER_FLAGS:
-- Could NOT find SCALAPACK
-- DEAL_II_WITH_SCALAPACK has unmet external dependencies.
--
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/configure/configure_slepc.cmake
-- SLEPC_LIBRARY not found! The call was:
-- FIND_LIBRARY(SLEPC_LIBRARY NAMES slepc libslepc HINTS / /opt/petsc/linux-c-opt PATH_SUFFIXES lib lib64 lib)
-- SLEPC_INCLUDE_DIR_ARCH not found! The call was:
-- FIND_PATH(SLEPC_INCLUDE_DIR_ARCH slepcconf.h HINTS / /opt/petsc/linux-c-opt PATH_SUFFIXES slepc include include/slepc)
-- SLEPC_INCLUDE_DIR_COMMON not found! The call was:
-- FIND_PATH(SLEPC_INCLUDE_DIR_COMMON slepcversion.h HINTS / /opt/petsc/linux-c-opt PATH_SUFFIXES slepc include include/slepc)
-- SLEPC_LIBRARIES: *** Required variable "SLEPC_LIBRARY" set to NOTFOUND ***
-- SLEPC_INCLUDE_DIRS: *** Required variable "SLEPC_INCLUDE_DIR_ARCH" set to NOTFOUND ***
-- SLEPC_USER_INCLUDE_DIRS: *** Required variable "SLEPC_INCLUDE_DIR_ARCH" set to NOTFOUND ***
-- Could NOT find SLEPC
-- DEAL_II_WITH_SLEPC has unmet external dependencies.
--
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/configure/configure_sundials.cmake
-- Found SUNDIALS_LIB_IDAS
-- Found SUNDIALS_LIB_IDA
-- Found SUNDIALS_LIB_ARKODE
-- Found SUNDIALS_LIB_KINSOL
-- Found SUNDIALS_LIB_SER
-- Found SUNDIALS_INCLUDE_DIR
-- Found SUNDIALS_LIB_PAR
-- Found SUNDIALS_CONFIG_H
-- SUNDIALS_VERSION: 5.7.0
-- SUNDIALS_LIBRARIES: /usr/lib/libsundials_idas.so;/usr/lib/libsundials_arkode.so;/usr/lib/libsundials_kinsol.so;/usr/lib/libsundials_nvecserial.so;/usr/lib/libsundials_nvecparallel.so
-- SUNDIALS_INCLUDE_DIRS: /usr/include
-- SUNDIALS_USER_INCLUDE_DIRS: /usr/include
-- Found SUNDIALS
-- DEAL_II_WITH_SUNDIALS successfully set up with external dependencies.
--
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/configure/configure_symengine.cmake
-- SYMENGINE_LIBRARIES: *** Required variable "_symengine_libraries" empty ***
-- SYMENGINE_INCLUDE_DIRS: *** Required variable "_symengine_include_dirs" empty ***
-- SYMENGINE_USER_INCLUDE_DIRS: *** Required variable "_symengine_include_dirs" empty ***
-- Could NOT find SYMENGINE
-- DEAL_II_WITH_SYMENGINE has unmet external dependencies.
--
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/configure/configure_vectorization.cmake
--
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/setup_cpack.cmake
--
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/setup_custom_targets.cmake
--
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/setup_finalize.cmake
-- Performing Test DEAL_II_HAVE_USABLE_FLAGS_DEBUG
-- Performing Test DEAL_II_HAVE_USABLE_FLAGS_DEBUG - Success
-- Performing Test DEAL_II_HAVE_USABLE_FLAGS_RELEASE
-- Performing Test DEAL_II_HAVE_USABLE_FLAGS_RELEASE - Success
--
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/setup_write_config.cmake
-- Query git repository information.
-- Found Git: /usr/bin/git (found version "2.32.0")
--
-- Configuring done. Proceed to target definitions now.
-- Setting up bundled features
-- Setting up bundled features - Done
-- Setting up library
-- Setting up library - Done
-- Setting up project configuration
-- Setting up project configuration - Done
-- Setting up examples
-- step-17 - dependencies not satisfied
-- step-18 - dependencies not satisfied
-- step-33 - dependencies not satisfied
-- step-34 - dependencies not satisfied
-- step-36 - dependencies not satisfied
-- step-60 - dependencies not satisfied
-- step-64 - dependencies not satisfied
-- step-71 - dependencies not satisfied
-- Setting up examples - Done
-- Setting up quick_tests in DEBUG mode
-- Setting up quick_tests in DEBUG mode - Done
-- Setting up testsuite
-- Setting up testsuite - Done
###
#
# deal.II configuration:
# CMAKE_BUILD_TYPE: DebugRelease
# BUILD_SHARED_LIBS: ON
# CMAKE_INSTALL_PREFIX: /usr
# CMAKE_SOURCE_DIR: /tmp/makepkg/deal-ii/src/dealii-9.3.1
# (version 9.3.1)
# CMAKE_BINARY_DIR: /tmp/makepkg/deal-ii/src/build
# CMAKE_CXX_COMPILER: GNU 11.1.0 on platform Linux x86_64
# /usr/bin/c++
# C++ language standard: C++17
#
# Configured Features (DEAL_II_ALLOW_BUNDLED = OFF, DEAL_II_ALLOW_AUTODETECTION = ON):
# ( DEAL_II_WITH_64BIT_INDICES = OFF )
# ( DEAL_II_WITH_ADOLC = OFF )
# ( DEAL_II_WITH_ARBORX = OFF )
# DEAL_II_WITH_ARPACK set up with external dependencies
# ( DEAL_II_WITH_ASSIMP = OFF )
# DEAL_II_WITH_BOOST set up with external dependencies
# DEAL_II_WITH_COMPLEX_VALUES = ON
# ( DEAL_II_WITH_CUDA = OFF )
# ( DEAL_II_WITH_GINKGO = OFF )
# DEAL_II_WITH_GMSH set up with external dependencies
# DEAL_II_WITH_GSL set up with external dependencies
# DEAL_II_WITH_HDF5 set up with external dependencies
# DEAL_II_WITH_KOKKOS set up with external dependencies
# DEAL_II_WITH_LAPACK set up with external dependencies
# DEAL_II_WITH_METIS set up with external dependencies
# DEAL_II_WITH_MPI set up with external dependencies
# ( DEAL_II_WITH_MUPARSER = OFF )
# DEAL_II_WITH_OPENCASCADE set up with external dependencies
# DEAL_II_WITH_P4EST set up with external dependencies
# DEAL_II_WITH_PETSC set up with external dependencies
# ( DEAL_II_WITH_SCALAPACK = OFF )
# ( DEAL_II_WITH_SLEPC = OFF )
# DEAL_II_WITH_SUNDIALS set up with external dependencies
# ( DEAL_II_WITH_SYMENGINE = OFF )
# DEAL_II_WITH_TBB set up with external dependencies
# DEAL_II_WITH_TRILINOS set up with external dependencies
# DEAL_II_WITH_UMFPACK set up with external dependencies
# DEAL_II_WITH_ZLIB set up with external dependencies
#
# Component configuration:
# ( DEAL_II_COMPONENT_DOCUMENTATION = OFF )
# DEAL_II_COMPONENT_EXAMPLES
# ( DEAL_II_COMPONENT_PACKAGE = OFF )
# ( DEAL_II_COMPONENT_PYTHON_BINDINGS = OFF )
#
# Detailed information (compiler flags, feature configuration) can be found in detailed.log
#
# Run $ make info to print a help message with a list of top level targets
#
###
-- Configuring done
-- Generating done
-- Build files have been written to: /tmp/makepkg/deal-ii/src/build
[ 0%] Building CXX object cmake/scripts/CMakeFiles/expand_instantiations_exe.dir/expand_instantiations.cc.o
[ 0%] Built target obj_integrators_release
[ 0%] Built target doxygen_headers
[ 0%] Built target obj_integrators_debug
[ 0%] Built target obj_rol_inst
[ 0%] Built target obj_rol_debug
[ 0%] Built target obj_rol_release
[ 1%] Linking CXX executable ../../bin/expand_instantiations
[ 1%] Built target expand_instantiations_exe
[ 1%] Generating access_traits.inst
[ 1%] Generating fe_abf.inst
[ 1%] Generating cell_data_transfer.inst
[ 1%] Built target obj_arborx_inst
[ 1%] Generating fe_bdm.inst
[ 1%] Generating data_out_dof_data.inst
[ 1%] Generating data_out_dof_data_codim.inst
[ 1%] Generating fe_bernstein.inst
[ 1%] Generating data_out_faces.inst
[ 1%] Generating data_out.inst
[ 1%] Generating fe_dgp.inst
[ 1%] Generating data_out_rotation.inst
[ 1%] Generating block_info.inst
[ 1%] Generating fe_dgp_monomial.inst
[ 1%] Generating data_out_stack.inst
[ 1%] Generating dof_accessor_get.inst
[ 1%] Generating fe_dgp_nonparametric.inst
[ 1%] Generating data_postprocessor.inst
[ 1%] Generating dof_accessor.inst
[ 1%] Generating fe_dgq.inst
[ 2%] Generating derivative_approximation.inst
[ 2%] Generating dof_accessor_set.inst
[ 2%] Generating dof_output_operator.inst
[ 2%] Generating fe_dg_vector.inst
[ 2%] Generating dof_handler.inst
[ 2%] Generating fe_face.inst
[ 2%] Generating error_estimator_1d.inst
[ 2%] Generating dof_handler_policy.inst
[ 2%] Generating fe.inst
[ 2%] Generating error_estimator.inst
[ 2%] Generating dof_objects.inst
[ 3%] Generating fe_nedelec.inst
[ 3%] Generating fe_field_function.inst
[ 3%] Generating dof_renumbering.inst
[ 3%] Generating fe_nedelec_sz.inst
[ 3%] Generating matrix_creator.inst
[ 3%] Generating dof_tools_constraints.inst
[ 3%] Generating fe_nothing.inst
[ 3%] Generating matrix_tools.inst
[ 4%] Generating dof_tools.inst
[ 4%] Generating fe_poly.inst
[ 4%] Generating point_value_history.inst
[ 4%] Generating dof_tools_sparsity.inst
[ 4%] Generating fe_poly_tensor.inst
[ 4%] Generating smoothness_estimator.inst
[ 4%] Built target obj_dofs_inst
[ 4%] Generating fe_pyramid_p.inst
[ 4%] Generating solution_transfer.inst
[ 4%] Generating fe_q_base.inst
[ 4%] Generating fe_q_bubbles.inst
[ 4%] Generating time_dependent.inst
[ 4%] Generating fe_q_dg0.inst
[ 4%] Generating vector_tools_boundary.inst
[ 4%] Generating vector_tools_constraints.inst
[ 4%] Generating fe_q_hierarchical.inst
[ 4%] Generating fe_q.inst
[ 5%] Generating vector_tools_integrate_difference.inst
[ 5%] Generating fe_q_iso_q1.inst
[ 6%] Generating fe_raviart_thomas.inst
[ 6%] Generating fe_rannacher_turek.inst
[ 6%] Generating vector_tools_interpolate.inst
[ 6%] Generating fe_raviart_thomas_nodal.inst
[ 6%] Generating vector_tools_mean_value.inst
[ 6%] Generating fe_rt_bubbles.inst
[ 6%] Generating vector_tools_point_value.inst
[ 6%] Generating affine_constraints.inst
[ 6%] Generating fe_series_fourier.inst
[ 6%] Generating vector_tools_point_gradient.inst
[ 6%] Generating block_sparse_matrix.inst
[ 6%] Generating fe_series_legendre.inst
[ 6%] Generating vector_tools_project.inst
[ 6%] Generating block_vector.inst
[ 6%] Generating fe_simplex_p.inst
[ 6%] Generating vector_tools_project_codim.inst
[ 6%] Generating chunk_sparse_matrix.inst
[ 6%] Generating fe_simplex_p_bubbles.inst
[ 6%] Generating vector_tools_project_hp.inst
[ 6%] Generating fe_system.inst
[ 6%] Generating full_matrix.inst
[ 6%] Generating vector_tools_project_qp.inst
[ 6%] Generating lapack_full_matrix.inst
[ 6%] Generating fe_enriched.inst
[ 6%] Generating vector_tools_project_qpmf.inst
[ 6%] Generating fe_tools.inst
[ 6%] Generating la_vector.inst
[ 6%] Generating vector_tools_rhs.inst
[ 6%] Generating la_parallel_vector.inst
[ 6%] Generating fe_tools_interpolate.inst
[ 6%] Built target obj_numerics_inst
[ 6%] Generating la_parallel_block_vector.inst
[ 6%] Generating fe_tools_extrapolate.inst
[ 7%] Generating precondition_block.inst
[ 7%] Generating bounding_box.inst
[ 7%] Generating fe_trace.inst
[ 7%] Generating relaxation_block.inst
[ 7%] Generating data_out_base.inst
[ 7%] Generating fe_values.decl.1.inst
[ 7%] Generating read_write_vector.inst
[ 7%] Generating function.inst
[ 8%] Generating fe_values.decl.2.inst
[ 8%] Generating scalapack.inst
[ 8%] Generating function_level_set.inst
[ 8%] Generating fe_values.impl.1.inst
[ 8%] Generating solver.inst
[ 8%] Generating function_restriction.inst
[ 8%] Generating fe_values.impl.2.inst
[ 8%] Generating sparse_matrix_ez.inst
[ 8%] Generating function_time.inst
[ 8%] Generating fe_values.inst
[ 8%] Generating function_tools.inst
[ 8%] Generating sparse_matrix.inst
[ 9%] Generating incremental_function.inst
[ 9%] Generating vector.inst
[ 9%] Generating fe_wedge_p.inst
[ 9%] Generating geometric_utilities.inst
[ 9%] Generating vector_memory.inst
[ 9%] Generating mapping_c1.inst
[ 9%] Generating mpi.inst
[ 9%] Generating vector_memory_release.inst
[ 9%] Generating mapping_cartesian.inst
[ 9%] Generating mpi_noncontiguous_partitioner.inst
[ 9%] Generating trilinos_sparse_matrix.inst
[ 9%] Generating mapping.inst
[ 9%] Generating mpi_remote_point_evaluation.inst
[ 9%] Generating trilinos_vector.inst
[ 9%] Generating mapping_fe.inst
[ 9%] Generating partitioner.inst
[ 9%] Built target obj_lac_inst
[ 9%] Generating mapping_fe_field.inst
[ 9%] Generating partitioner.cuda.inst
[ 9%] Generating mapping_q_generic.inst
[ 9%] Generating utilities.inst
[ 9%] Generating polynomials_rannacher_turek.inst
[ 9%] Generating mapping_q1_eulerian.inst
[ 9%] Built target obj_gmsh_inst
[ 9%] Generating symmetric_tensor.inst
[ 9%] Generating symbolic_function.inst
[ 10%] Generating mapping_q1.inst
[ 10%] Generating tensor_function.inst
[ 10%] Generating mapping_q_cache.inst
[ 10%] Generating tensor_function_parser.inst
[ 10%] Generating time_stepping.inst
[ 10%] Generating mapping_q_eulerian.inst
[ 10%] Generating mapping_q.inst
[ 10%] Built target obj_base_inst
[ 10%] Generating mapping_manifold.inst
[ 10%] Built target obj_fe_inst
[ 10%] Generating cell_id.inst
[ 10%] Generating dof_handler.inst
[ 10%] Generating mg_base.inst
[ 10%] Generating grid_generator.inst
[ 10%] Generating fe_collection.inst
[ 10%] Generating mg_level_global_transfer.inst
[ 10%] Generating grid_generator_from_name.inst
[ 10%] Generating fe_values.inst
[ 10%] Generating mg_tools.inst
[ 10%] Generating grid_in.inst
[ 10%] Generating mapping_collection.inst
[ 10%] Generating mg_transfer_block.inst
[ 10%] Generating grid_out.inst
[ 11%] Generating refinement.inst
[ 11%] Generating mg_transfer_component.inst
[ 11%] Built target obj_hp_inst
[ 11%] Generating grid_refinement.inst
[ 11%] Generating mg_transfer_global_coarsening.inst
[ 11%] Generating mg_transfer_internal.inst
[ 11%] Generating grid_tools.inst
[ 11%] Generating mg_transfer_matrix_free.inst
[ 11%] Generating grid_refinement.inst
[ 11%] Generating grid_tools_dof_handlers.inst
[ 11%] Generating mg_transfer_prebuilt.inst
[ 12%] Generating cell_weights.inst
[ 12%] Generating grid_tools_cache.inst
[ 12%] Generating multigrid.inst
[ 12%] Generating cell_data_transfer.inst
[ 12%] Generating intergrid_map.inst
[ 12%] Built target obj_multigrid_inst
[ 12%] Generating fully_distributed_tria.inst
[ 13%] Generating manifold.inst
[ 13%] Generating operator.inst
[ 13%] Generating solution_transfer.inst
[ 13%] Generating manifold_lib.inst
[ 13%] Built target obj_algorithms_inst
[ 13%] Generating tria.inst
[ 13%] Generating reference_cell.inst
[ 14%] Generating evaluation_template_factory.inst
[ 14%] Generating shared_tria.inst
[ 14%] Generating tria_accessor.inst
[ 14%] Generating fe_point_evaluation.inst
[ 14%] Generating tria_base.inst
[ 14%] Generating tria_description.inst
[ 14%] Generating p4est_wrappers.inst
[ 14%] Generating mapping_info.inst
[ 14%] Generating tria.inst
[ 14%] Generating matrix_free.inst
[ 14%] Built target obj_distributed_inst
[ 14%] Generating tria_objects.inst
[ 14%] Generating shape_info.inst
[ 14%] Built target obj_grid_inst
[ 14%] Built target obj_matrix_free_inst
[ 14%] Generating mesh_worker_info.inst
[ 15%] Generating scratch_data.inst
[ 15%] Generating mesh_worker_vector_selector.inst
[ 15%] Built target obj_meshworker_inst
[ 15%] Generating manifold_lib.inst
[ 16%] Generating data_out.inst
[ 16%] Generating ad_drivers.inst
[ 16%] Generating utilities.inst
[ 16%] Generating particle.inst
[ 16%] Generating ad_drivers.inst1
[ 16%] Built target obj_opencascade_inst
[ 16%] Generating particle_handler.inst
[ 16%] Generating ad_drivers.inst2
[ 16%] Generating generators.inst
[ 16%] Generating symengine_number_visitor_internal.inst
[ 16%] Generating ad_helpers.inst
[ 16%] Generating utilities.inst
[ 16%] Generating symengine_optimizer.inst
[ 17%] Generating ad_helpers.inst1
[ 17%] Generating symengine_tensor_operations.inst
[ 17%] Built target obj_particle_inst
[ 17%] Generating ad_helpers.inst2
[ 17%] Generating adolc_number_types.inst
[ 17%] Built target obj_differentiation_sd_inst
[ 17%] Generating sacado_number_types.inst1
[ 17%] Generating transformations.inst
[ 17%] Generating kinematics.inst
[ 17%] Generating sacado_number_types.inst2
[ 17%] Built target obj_physics_inst
[ 17%] Generating standard_tensors.inst
[ 17%] Built target obj_differentiation_ad_inst
[ 17%] Generating coupling.inst
[ 17%] Built target obj_physics_elasticity_inst
[ 17%] Generating n_vector.inst
[ 17%] Built target obj_non_matching_inst
[ 17%] Building CXX object source/arborx/CMakeFiles/obj_arborx_debug.dir/access_traits.cc.o
[ 17%] Built target obj_sundials_inst
[ 17%] Building CXX object source/numerics/CMakeFiles/obj_numerics_debug.dir/data_out.cc.o
[ 17%] Building CXX object source/fe/CMakeFiles/obj_fe_debug.dir/block_mask.cc.o
In file included from /opt/petsc/linux-c-opt/include/petscbag.h:4,
from /opt/petsc/linux-c-opt/include/petsc.h:5,
from /tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/fe/fe_values.h:52,
from /tmp/makepkg/deal-ii/src/dealii-9.3.1/source/numerics/data_out.cc:23:
/opt/petsc/linux-c-opt/include/petscsys.h:219:6: error: #error "PETSc was configured with one OpenMPI mpi.h version but now appears to be compiling using a different OpenMPI mpi.h version"
219 | # error "PETSc was configured with one OpenMPI mpi.h version but now appears to be compiling using a different OpenMPI mpi.h version"
| ^~~~~
[ 17%] Built target obj_arborx_debug
[ 17%] Building CXX object source/fe/CMakeFiles/obj_fe_debug.dir/component_mask.cc.o
[ 17%] Building CXX object source/dofs/CMakeFiles/obj_dofs_debug.dir/block_info.cc.o
[ 17%] Building CXX object source/fe/CMakeFiles/obj_fe_debug.dir/fe_abf.cc.o
In file included from /opt/petsc/linux-c-opt/include/petscbag.h:4,
from /opt/petsc/linux-c-opt/include/petsc.h:5,
from /tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/fe/fe_values.h:52,
from /tmp/makepkg/deal-ii/src/dealii-9.3.1/source/fe/fe_abf.cc:28:
/opt/petsc/linux-c-opt/include/petscsys.h:219:6: error: #error "PETSc was configured with one OpenMPI mpi.h version but now appears to be compiling using a different OpenMPI mpi.h version"
219 | # error "PETSc was configured with one OpenMPI mpi.h version but now appears to be compiling using a different OpenMPI mpi.h version"
| ^~~~~
[ 17%] Building CXX object source/dofs/CMakeFiles/obj_dofs_debug.dir/dof_faces.cc.o
[ 17%] Building CXX object source/dofs/CMakeFiles/obj_dofs_debug.dir/dof_handler.cc.o
In file included from /opt/petsc/linux-c-opt/include/petscvec.h:9,
from /tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/lac/petsc_vector_base.h:31,
from /tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/lac/petsc_vector.h:28,
from /tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/lac/petsc_block_vector.h:27,
from /tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/distributed/cell_data_transfer.templates.h:30,
from /tmp/makepkg/deal-ii/src/dealii-9.3.1/source/dofs/dof_handler.cc:22:
/opt/petsc/linux-c-opt/include/petscsys.h:219:6: error: #error "PETSc was configured with one OpenMPI mpi.h version but now appears to be compiling using a different OpenMPI mpi.h version"
219 | # error "PETSc was configured with one OpenMPI mpi.h version but now appears to be compiling using a different OpenMPI mpi.h version"
| ^~~~~
make[2]: *** [source/numerics/CMakeFiles/obj_numerics_debug.dir/build.make:76: source/numerics/CMakeFiles/obj_numerics_debug.dir/data_out.cc.o] Error 1
make[1]: *** [CMakeFiles/Makefile2:1771: source/numerics/CMakeFiles/obj_numerics_debug.dir/all] Error 2
make[1]: *** Waiting for unfinished jobs....
[ 17%] Building CXX object source/dofs/CMakeFiles/obj_dofs_debug.dir/dof_objects.cc.o
make[2]: *** [source/fe/CMakeFiles/obj_fe_debug.dir/build.make:104: source/fe/CMakeFiles/obj_fe_debug.dir/fe_abf.cc.o] Error 1
make[1]: *** [CMakeFiles/Makefile2:1849: source/fe/CMakeFiles/obj_fe_debug.dir/all] Error 2
[ 17%] Building CXX object source/dofs/CMakeFiles/obj_dofs_debug.dir/number_cache.cc.o
[ 17%] Building CXX object source/dofs/CMakeFiles/obj_dofs_debug.dir/dof_accessor.cc.o
[ 17%] Building CXX object source/dofs/CMakeFiles/obj_dofs_debug.dir/dof_accessor_get.cc.o
In file included from /opt/petsc/linux-c-opt/include/petscvec.h:9,
from /tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/lac/petsc_vector_base.h:31,
from /tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/lac/petsc_vector.h:28,
from /tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/lac/petsc_block_vector.h:27,
from /tmp/makepkg/deal-ii/src/dealii-9.3.1/source/dofs/dof_accessor_get.cc:31:
/opt/petsc/linux-c-opt/include/petscsys.h:219:6: error: #error "PETSc was configured with one OpenMPI mpi.h version but now appears to be compiling using a different OpenMPI mpi.h version"
219 | # error "PETSc was configured with one OpenMPI mpi.h version but now appears to be compiling using a different OpenMPI mpi.h version"
| ^~~~~
make[2]: *** [source/dofs/CMakeFiles/obj_dofs_debug.dir/build.make:104: source/dofs/CMakeFiles/obj_dofs_debug.dir/dof_handler.cc.o] Error 1
make[2]: *** Waiting for unfinished jobs....
make[2]: *** [source/dofs/CMakeFiles/obj_dofs_debug.dir/build.make:160: source/dofs/CMakeFiles/obj_dofs_debug.dir/dof_accessor_get.cc.o] Error 1
make[1]: *** [CMakeFiles/Makefile2:1927: source/dofs/CMakeFiles/obj_dofs_debug.dir/all] Error 2
make: *** [Makefile:136: all] Error 2
==> ERROR: A failure occurred in build().
Aborting...
error making: deal-ii
:: Synchronizing package databases...
core downloading...
extra downloading...
community downloading...
multilib downloading...
arch4edu downloading...
:: Starting full system upgrade...
warning: intel-ucode: ignoring package upgrade (20200616-1 => 20210608-1)
there is nothing to do
:: Searching databases for updates...
:: Searching AUR for updates...
[Aur:2] deal-ii-9.3.1-1
1 deal-ii (Build Files Exist)
==> Packages to cleanBuild?
==> [N]one [A]ll [Ab]ort [I]nstalled [No]tInstalled or (1 2 3, 1-3, ^4)
==>
:: PKGBUILD up to date, Skipping (1/1): deal-ii
1 deal-ii (Build Files Exist)
==> Diffs to show?
==> [N]one [A]ll [Ab]ort [I]nstalled [No]tInstalled or (1 2 3, 1-3, ^4)
==>
:: (1/1) Parsing SRCINFO: deal-ii
==> Making package: deal-ii 9.3.1-1 (Wed 04 Aug 2021 12:26:39 PM -05)
==> Retrieving sources...
-> Found dealii-9.3.1.tar.gz
==> Validating source files with sha1sums...
dealii-9.3.1.tar.gz ... Passed
==> Making package: deal-ii 9.3.1-1 (Wed 04 Aug 2021 12:26:41 PM -05)
==> Checking runtime dependencies...
==> Checking buildtime dependencies...
==> Retrieving sources...
-> Found dealii-9.3.1.tar.gz
==> Validating source files with sha1sums...
dealii-9.3.1.tar.gz ... Passed
==> Removing existing $srcdir/ directory...
==> Extracting sources...
-> Extracting dealii-9.3.1.tar.gz with bsdtar
==> Sources are ready.
==> Making package: deal-ii 9.3.1-1 (Wed 04 Aug 2021 12:26:44 PM -05)
==> Checking runtime dependencies...
==> Checking buildtime dependencies...
==> WARNING: Using existing $srcdir/ tree
==> Removing existing $pkgdir/ directory...
==> Starting build()...
grep: /opt/petsc/linux-c-opt/include/petscconf.h: No such file or directory
-- This is CMake 3.21.1
--
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/setup_external_macros.cmake
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/macros/macro_add_flags.cmake
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/macros/macro_check_compiler_setup.cmake
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/macros/macro_check_cxx_compiler_bug.cmake
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/macros/macro_check_mpi_interface.cmake
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/macros/macro_clear_cmake_required.cmake
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/macros/macro_clear_feature.cmake
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/macros/macro_configure_feature.cmake
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/macros/macro_deal_ii_add_definitions.cmake
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/macros/macro_deal_ii_add_library.cmake
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/macros/macro_deal_ii_add_test.cmake
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/macros/macro_deal_ii_find_file.cmake
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/macros/macro_deal_ii_find_library.cmake
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/macros/macro_deal_ii_find_path.cmake
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/macros/macro_deal_ii_find_program.cmake
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/macros/macro_deal_ii_initialize_cached_variables.cmake
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/macros/macro_deal_ii_insource_setup_target.cmake
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/macros/macro_deal_ii_invoke_autopilot.cmake
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/macros/macro_deal_ii_package_handle.cmake
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/macros/macro_deal_ii_pickup_tests.cmake
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/macros/macro_deal_ii_query_git_information.cmake
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/macros/macro_deal_ii_setup_target.cmake
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/macros/macro_decorate_with_stars.cmake
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/macros/macro_enable_if_links.cmake
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/macros/macro_enable_if_supported.cmake
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/macros/macro_enable_language_optional.cmake
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/macros/macro_evaluate_expression.cmake
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/macros/macro_expand_instantiations.cmake
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/macros/macro_filter_system_libraries.cmake
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/macros/macro_find_package.cmake
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/macros/macro_find_system_library.cmake
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/macros/macro_item_matches.cmake
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/macros/macro_purge_feature.cmake
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/macros/macro_register_feature.cmake
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/macros/macro_remove_duplicates.cmake
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/macros/macro_replace_flag.cmake
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/macros/macro_reset_cmake_required.cmake
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/macros/macro_set_if_empty.cmake
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/macros/macro_setup_source_list.cmake
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/macros/macro_setup_unity_target.cmake
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/macros/macro_strip_flag.cmake
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/macros/macro_switch_library_preference.cmake
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/macros/macro_to_string.cmake
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/macros/macro_to_string_and_add_prefix.cmake
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/macros/macro_unset_if_changed.cmake
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/macros/macro_verbose_include.cmake
--
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/setup_cached_variables.cmake
-- Prepending ${CMAKE_CXX_FLAGS} to ${DEAL_II_CXX_FLAGS}
-- Prepending ${CUDA_NVCC_FLAGS} to ${DEAL_II_CUDA_FLAGS}
-- The CXX compiler identification is GNU 11.1.0
-- The C compiler identification is GNU 11.1.0
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Check for working CXX compiler: /usr/bin/c++ - skipped
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working C compiler: /usr/bin/cc - skipped
-- Detecting C compile features
-- Detecting C compile features - done
-- The Fortran compiler identification is GNU 11.1.0
-- Detecting Fortran compiler ABI info
-- Detecting Fortran compiler ABI info - done
-- Check for working Fortran compiler: /usr/bin/gfortran - skipped
-- Checking whether /usr/bin/gfortran supports Fortran 90
-- Checking whether /usr/bin/gfortran supports Fortran 90 - yes
--
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/setup_deal_ii.cmake
--
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/setup_compiler_flags.cmake
-- Performing Test DEAL_II_HAVE_USABLE_USER_FLAGS_DEBUG
-- Performing Test DEAL_II_HAVE_USABLE_USER_FLAGS_DEBUG - Success
-- Performing Test DEAL_II_HAVE_USABLE_USER_FLAGS_RELEASE
-- Performing Test DEAL_II_HAVE_USABLE_USER_FLAGS_RELEASE - Success
--
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/setup_compiler_flags_gnu.cmake
-- Performing Test DEAL_II_HAVE_FLAG_pedantic
-- Performing Test DEAL_II_HAVE_FLAG_pedantic - Success
-- Performing Test DEAL_II_HAVE_FLAG_fPIC
-- Performing Test DEAL_II_HAVE_FLAG_fPIC - Success
-- Performing Test DEAL_II_HAVE_FLAG_Wall
-- Performing Test DEAL_II_HAVE_FLAG_Wall - Success
-- Performing Test DEAL_II_HAVE_FLAG_Wextra
-- Performing Test DEAL_II_HAVE_FLAG_Wextra - Success
-- Performing Test DEAL_II_HAVE_FLAG_Wmissing_braces
-- Performing Test DEAL_II_HAVE_FLAG_Wmissing_braces - Success
-- Performing Test DEAL_II_HAVE_FLAG_Woverloaded_virtual
-- Performing Test DEAL_II_HAVE_FLAG_Woverloaded_virtual - Success
-- Performing Test DEAL_II_HAVE_FLAG_Wpointer_arith
-- Performing Test DEAL_II_HAVE_FLAG_Wpointer_arith - Success
-- Performing Test DEAL_II_HAVE_FLAG_Wsign_compare
-- Performing Test DEAL_II_HAVE_FLAG_Wsign_compare - Success
-- Performing Test DEAL_II_HAVE_FLAG_Wsuggest_override
-- Performing Test DEAL_II_HAVE_FLAG_Wsuggest_override - Success
-- Performing Test DEAL_II_HAVE_FLAG_Wswitch
-- Performing Test DEAL_II_HAVE_FLAG_Wswitch - Success
-- Performing Test DEAL_II_HAVE_FLAG_Wsynth
-- Performing Test DEAL_II_HAVE_FLAG_Wsynth - Success
-- Performing Test DEAL_II_HAVE_FLAG_Wwrite_strings
-- Performing Test DEAL_II_HAVE_FLAG_Wwrite_strings - Success
-- Performing Test DEAL_II_HAVE_FLAG_Wno_placement_new
-- Performing Test DEAL_II_HAVE_FLAG_Wno_placement_new - Success
-- Performing Test DEAL_II_HAVE_FLAG_Wno_deprecated_declarations
-- Performing Test DEAL_II_HAVE_FLAG_Wno_deprecated_declarations - Success
-- Performing Test DEAL_II_HAVE_FLAG_Wno_literal_suffix
-- Performing Test DEAL_II_HAVE_FLAG_Wno_literal_suffix - Success
-- Performing Test DEAL_II_HAVE_FLAG_Wno_psabi
-- Performing Test DEAL_II_HAVE_FLAG_Wno_psabi - Success
-- Performing Test DEAL_II_HAVE_FLAG_Wno_class_memaccess
-- Performing Test DEAL_II_HAVE_FLAG_Wno_class_memaccess - Success
-- Performing Test DEAL_II_HAVE_FLAG_funroll_loops
-- Performing Test DEAL_II_HAVE_FLAG_funroll_loops - Success
-- Performing Test DEAL_II_HAVE_FLAG_funroll_all_loops
-- Performing Test DEAL_II_HAVE_FLAG_funroll_all_loops - Success
-- Performing Test DEAL_II_HAVE_FLAG_fstrict_aliasing
-- Performing Test DEAL_II_HAVE_FLAG_fstrict_aliasing - Success
-- Performing Test DEAL_II_HAVE_FLAG_Wno_unused_local_typedefs
-- Performing Test DEAL_II_HAVE_FLAG_Wno_unused_local_typedefs - Success
-- Performing Test DEAL_II_HAVE_FLAG_ggdb
-- Performing Test DEAL_II_HAVE_FLAG_ggdb - Success
--
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/bundled/setup_bundled.cmake
--
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/checks/check_01_cpu_features.cmake
-- Performing Test DEAL_II_HAVE_SSE2
-- Performing Test DEAL_II_HAVE_SSE2 - Success
-- Performing Test DEAL_II_HAVE_AVX
-- Performing Test DEAL_II_HAVE_AVX - Failed
-- Performing Test DEAL_II_HAVE_AVX512
-- Performing Test DEAL_II_HAVE_AVX512 - Failed
-- Performing Test DEAL_II_HAVE_ALTIVEC
-- Performing Test DEAL_II_HAVE_ALTIVEC - Failed
-- Performing Test DEAL_II_HAVE_OPENMP_SIMD
-- Performing Test DEAL_II_HAVE_OPENMP_SIMD - Success
--
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/checks/check_01_cxx_features.cmake
-- Performing Test DEAL_II_HAVE_CXX14_FEATURES
-- Performing Test DEAL_II_HAVE_CXX14_FEATURES - Success
-- Performing Test DEAL_II_HAVE_CXX14_CLANGAUTODEBUG_BUG_OK
-- Performing Test DEAL_II_HAVE_CXX14_CLANGAUTODEBUG_BUG_OK - Success
-- Performing Test DEAL_II_HAVE_CXX11_FEATURES
-- Performing Test DEAL_II_HAVE_CXX11_FEATURES - Success
-- Performing Test DEAL_II_HAVE_CXX11_FUNCTIONAL_LLVMBUG20084_OK
-- Performing Test DEAL_II_HAVE_CXX11_FUNCTIONAL_LLVMBUG20084_OK - Success
-- C++14 support is enabled.
-- Performing Test DEAL_II_HAVE_CXX17_FEATURES
-- Performing Test DEAL_II_HAVE_CXX17_FEATURES - Success
-- Performing Test DEAL_II_HAVE_CXX17_CONSTEXPR_LAMBDA_BUG_OK
-- Performing Test DEAL_II_HAVE_CXX17_CONSTEXPR_LAMBDA_BUG_OK - Success
-- C++17 support is enabled.
-- Performing Test DEAL_II_HAVE_CXX20_FEATURES
-- Performing Test DEAL_II_HAVE_CXX20_FEATURES - Failed
-- C++20 support is disabled.
-- Performing Test DEAL_II_HAVE_FLAG_Werror
-- Performing Test DEAL_II_HAVE_FLAG_Werror - Success
-- Performing Test DEAL_II_HAVE_FLAG_Wno_unused_command_line_argument
-- Performing Test DEAL_II_HAVE_FLAG_Wno_unused_command_line_argument - Failed
-- Performing Test DEAL_II_HAVE_FP_EXCEPTIONS
-- Performing Test DEAL_II_HAVE_FP_EXCEPTIONS - Success
-- Performing Test DEAL_II_HAVE_COMPLEX_OPERATOR_OVERLOADS
-- Performing Test DEAL_II_HAVE_COMPLEX_OPERATOR_OVERLOADS - Failed
-- Performing Test DEAL_II_HAVE_CXX17_ATTRIBUTE_DEPRECATED
-- Performing Test DEAL_II_HAVE_CXX17_ATTRIBUTE_DEPRECATED - Success
-- Performing Test DEAL_II_HAVE_ATTRIBUTE_DEPRECATED
-- Performing Test DEAL_II_HAVE_ATTRIBUTE_DEPRECATED - Success
-- Performing Test DEAL_II_HAVE_CXX17_ATTRIBUTE_FALLTHROUGH
-- Performing Test DEAL_II_HAVE_CXX17_ATTRIBUTE_FALLTHROUGH - Success
-- Performing Test DEAL_II_HAVE_ATTRIBUTE_FALLTHROUGH
-- Performing Test DEAL_II_HAVE_ATTRIBUTE_FALLTHROUGH - Success
-- Performing Test DEAL_II_HAVE_CXX17_BESSEL_FUNCTIONS
-- Performing Test DEAL_II_HAVE_CXX17_BESSEL_FUNCTIONS - Success
-- Performing Test DEAL_II_HAVE_CXX17_LEGENDRE_FUNCTIONS
-- Performing Test DEAL_II_HAVE_CXX17_LEGENDRE_FUNCTIONS - Success
-- Performing Test DEAL_II_CXX14_CONSTEXPR_BUG_OK
-- Performing Test DEAL_II_CXX14_CONSTEXPR_BUG_OK - Success
-- Test successful, do not define DEAL_II_CXX14_CONSTEXPR_BUG
--
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/checks/check_02_compiler_features.cmake
-- Performing Test DEAL_II_COMPILER_USE_VECTOR_ARITHMETICS
-- Performing Test DEAL_II_COMPILER_USE_VECTOR_ARITHMETICS - Success
-- Performing Test DEAL_II_VECTOR_ITERATOR_IS_POINTER_OK
-- Performing Test DEAL_II_VECTOR_ITERATOR_IS_POINTER_OK - Success
-- Test successful, do not define DEAL_II_VECTOR_ITERATOR_IS_POINTER
-- Performing Test DEAL_II_HAVE_BUILTIN_EXPECT
-- Performing Test DEAL_II_HAVE_BUILTIN_EXPECT - Success
-- Performing Test DEAL_II_HAVE_GLIBC_STACKTRACE
-- Performing Test DEAL_II_HAVE_GLIBC_STACKTRACE - Success
-- Performing Test DEAL_II_HAVE_LINKER_FLAG_rdynamic
-- Performing Test DEAL_II_HAVE_LINKER_FLAG_rdynamic - Success
-- Performing Test DEAL_II_HAVE_LIBSTDCXX_DEMANGLER
-- Performing Test DEAL_II_HAVE_LIBSTDCXX_DEMANGLER - Success
-- Performing Test DEAL_II_COMPILER_HAS_ATTRIBUTE_PRETTY_FUNCTION
-- Performing Test DEAL_II_COMPILER_HAS_ATTRIBUTE_PRETTY_FUNCTION - Success
-- Performing Test DEAL_II_HAVE_FLAG_Wa___compress_debug_sections
-- Performing Test DEAL_II_HAVE_FLAG_Wa___compress_debug_sections - Success
-- Performing Test DEAL_II_COMPILER_HAS_ATTRIBUTE_ALWAYS_INLINE
-- Performing Test DEAL_II_COMPILER_HAS_ATTRIBUTE_ALWAYS_INLINE - Success
-- Performing Test DEAL_II_COMPILER_HAS_RESTRICT_KEYWORD
-- Performing Test DEAL_II_COMPILER_HAS_RESTRICT_KEYWORD - Success
-- Performing Test DEAL_II_COMPILER_HAS_DIAGNOSTIC_PRAGMA
-- Performing Test DEAL_II_COMPILER_HAS_DIAGNOSTIC_PRAGMA - Success
-- Performing Test DEAL_II_COMPILER_HAS_FUSE_LD_LLD
-- Performing Test DEAL_II_COMPILER_HAS_FUSE_LD_LLD - Failed
-- Performing Test DEAL_II_COMPILER_HAS_FUSE_LD_GOLD
-- Performing Test DEAL_II_COMPILER_HAS_FUSE_LD_GOLD - Success
--
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/checks/check_02_fortran_mangling.cmake
-- Found a valid Fortran compiler - using it to set up mangling
-- Detecting Fortran/C Interface
-- Detecting Fortran/C Interface - Found GLOBAL and MODULE mangling
--
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/checks/check_02_system_features.cmake
-- Looking for C++ include sys/resource.h
CMake Warning (dev) at /usr/share/cmake-3.21/Modules/CheckIncludeFileCXX.cmake:81 (message):
Policy CMP0075 is not set: Include file check macros honor
CMAKE_REQUIRED_LIBRARIES. Run "cmake --help-policy CMP0075" for policy
details. Use the cmake_policy command to set the policy and suppress this
warning.
CMAKE_REQUIRED_LIBRARIES is set to:
-Wl,-O1,--sort-common,-z,relro,-z,now
For compatibility with CMake 3.11 and below this check is ignoring it.
Call Stack (most recent call first):
cmake/checks/check_02_system_features.cmake:36 (CHECK_INCLUDE_FILE_CXX)
cmake/macros/macro_verbose_include.cmake:19 (INCLUDE)
CMakeLists.txt:112 (VERBOSE_INCLUDE)
This warning is for project developers. Use -Wno-dev to suppress it.
-- Looking for C++ include sys/resource.h - found
-- Looking for C++ include unistd.h
-- Looking for C++ include unistd.h - found
-- Looking for gethostname
-- Looking for gethostname - found
-- Looking for getpid
-- Looking for getpid - found
--
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/checks/check_03_compiler_bugs.cmake
-- Performing Test DEAL_II_DELETED_MOVE_CONSTRUCTOR_BUG_OK
-- Performing Test DEAL_II_DELETED_MOVE_CONSTRUCTOR_BUG_OK - Failed
-- Test unsuccessful, define DEAL_II_DELETED_MOVE_CONSTRUCTOR_BUG
--
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/configure/configure_0_threads.cmake
-- Looking for pthread.h
-- Looking for pthread.h - found
-- Performing Test CMAKE_HAVE_LIBC_PTHREAD
-- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Failed
-- Looking for pthread_create in pthreads
-- Looking for pthread_create in pthreads - not found
-- Looking for pthread_create in pthread
-- Looking for pthread_create in pthread - found
-- Found Threads: TRUE
--
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/configure/configure_1_cuda.cmake
-- DEAL_II_WITH_CUDA is set to off.
--
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/configure/configure_1_lapack.cmake
-- Looking for Fortran sgemm
-- Looking for Fortran sgemm - not found
-- Looking for Fortran sgemm
-- Looking for Fortran sgemm - found
-- Found BLAS: /opt/intel/mkl/lib/intel64_lin/libmkl_gf_lp64.so;/opt/intel/mkl/lib/intel64_lin/libmkl_gnu_thread.so;/opt/intel/mkl/lib/intel64_lin/libmkl_core.so;/usr/lib/libgomp.so;-lpthread;-lm;-ldl
-- Looking for Fortran cheev
-- Looking for Fortran cheev - found
-- Found LAPACK: /opt/intel/mkl/lib/intel64_lin/libmkl_gf_lp64.so;/opt/intel/mkl/lib/intel64_lin/libmkl_gnu_thread.so;/opt/intel/mkl/lib/intel64_lin/libmkl_core.so;/usr/lib/libgomp.so;-lpthread;-lm;-ldl;-lpthread;-lm;-ldl
-- LAPACK_LIBRARIES: /opt/intel/mkl/lib/intel64_lin/libmkl_gf_lp64.so;/opt/intel/mkl/lib/intel64_lin/libmkl_gnu_thread.so;/opt/intel/mkl/lib/intel64_lin/libmkl_core.so;/usr/lib/libgomp.so;-lpthread;-lm;-ldl;-lpthread;-lm;-ldl;/opt/intel/mkl/lib/intel64_lin/libmkl_gf_lp64.so;/opt/intel/mkl/lib/intel64_lin/libmkl_gnu_thread.so;/opt/intel/mkl/lib/intel64_lin/libmkl_core.so;/usr/lib/libgomp.so;-lpthread;-lm;-ldl
-- LAPACK_LINKER_FLAGS:
-- LAPACK_INCLUDE_DIRS:
-- LAPACK_USER_INCLUDE_DIRS:
-- Found LAPACK
-- Performing Test LAPACK_SYMBOL_CHECK
-- Performing Test LAPACK_SYMBOL_CHECK - Success
-- Performing Test MKL_SYMBOL_CHECK
-- Performing Test MKL_SYMBOL_CHECK - Failed
-- Use other than Intel MKL implementation of BLAS/LAPACK (consult CMakeFiles/CMakeError.log for further information).
-- DEAL_II_WITH_LAPACK successfully set up with external dependencies.
--
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/configure/configure_1_mpi.cmake
-- Found MPI_C: /usr/lib/openmpi/libmpi.so (found version "3.1")
-- Found MPI_CXX: /usr/lib/openmpi/libmpi_cxx.so (found version "3.1")
-- Found MPI_Fortran: /usr/lib/openmpi/libmpi_usempif08.so (found version "3.1")
-- Found MPI: TRUE (found version "3.1")
-- Performing Test MPI_HAVE_MPI_SEEK_SET
-- Performing Test MPI_HAVE_MPI_SEEK_SET - Success
-- Found MPI_MPI_H
-- Performing Test MPI_UNDERLINKAGE_OK
-- Performing Test MPI_UNDERLINKAGE_OK - Success
-- MPI_VERSION: 3.1
-- MPI_LIBRARIES: /usr/lib/openmpi/libmpi_cxx.so;/usr/lib/openmpi/libmpi.so;/usr/lib/openmpi/libmpi_usempif08.so;/usr/lib/openmpi/libmpi_usempi_ignore_tkr.so;/usr/lib/openmpi/libmpi_mpifh.so;/usr/lib/openmpi/libmpi.so;/usr/lib/openmpi/libmpi.so
-- MPI_INCLUDE_DIRS: /usr/include;/usr/include
-- MPI_USER_INCLUDE_DIRS: /usr/include;/usr/include
-- MPI_CXX_FLAGS: -pthread
-- MPI_LINKER_FLAGS: -Wl,-rpath -Wl,/usr/lib64 -Wl,-rpath -Wl,/usr/lib/openmpi -Wl,--enable-new-dtags -L/usr/lib -pthread
-- Found MPI
-- DEAL_II_WITH_MPI successfully set up with external dependencies.
--
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/configure/configure_1_tbb.cmake
-- Found TBB_LIBRARY
-- TBB_DEBUG_LIBRARY not found! The call was:
-- FIND_LIBRARY(TBB_DEBUG_LIBRARY NAMES tbb_debug HINTS PATH_SUFFIXES lib lib64 lib)
-- Found TBB_INCLUDE_DIR
-- TBB_VERSION: 2020.3
-- TBB_LIBRARIES: /usr/lib/libtbb.so
-- TBB_INCLUDE_DIRS: /usr/include
-- TBB_USER_INCLUDE_DIRS: /usr/include
-- Found TBB
-- DEAL_II_WITH_TBB successfully set up with external dependencies.
--
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/configure/configure_1_zlib.cmake
-- Found ZLIB: /usr/lib/libz.so (found version "1.2.11")
-- ZLIB_VERSION: 1.2.11
-- ZLIB_LIBRARIES: /usr/lib/libz.so
-- ZLIB_INCLUDE_DIRS: /usr/include
-- Found ZLIB
-- DEAL_II_WITH_ZLIB successfully set up with external dependencies.
--
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/configure/configure_2_boost.cmake
-- Found Boost: /usr/include (found suitable version "1.76.0", minimum required is "1.59") found components: iostreams serialization system thread regex chrono date_time atomic
-- BOOST_VERSION: 1.76.0
-- BOOST_LIBRARIES: /usr/lib/libboost_iostreams.so;/usr/lib/libboost_serialization.so;/usr/lib/libboost_system.so;/usr/lib/libboost_thread.so;-lpthread;/usr/lib/libboost_regex.so;/usr/lib/libboost_chrono.so;/usr/lib/libboost_date_time.so;/usr/lib/libboost_atomic.so
-- BOOST_INCLUDE_DIRS: /usr/include
-- BOOST_USER_INCLUDE_DIRS: /usr/include
-- Found BOOST
-- Performing Test BOOST_IOSTREAMS_USABLE
-- Performing Test BOOST_IOSTREAMS_USABLE - Success
-- Performing Test BOOST_SERIALIZATION_USABLE
-- Performing Test BOOST_SERIALIZATION_USABLE - Success
-- Performing Test DEAL_II_HAS_AUTO_PTR
-- Performing Test DEAL_II_HAS_AUTO_PTR - Failed
-- DEAL_II_WITH_BOOST successfully set up with external dependencies.
--
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/configure/configure_2_ginkgo.cmake
-- Could NOT find Ginkgo (missing: Ginkgo_DIR)
-- GINKGO_LIBRARY_ginkgo not found! The call was:
-- FIND_LIBRARY(GINKGO_LIBRARY_ginkgo NAMES ginkgo HINTS NO_DEFAULT_PATH NO_CMAKE_ENVIRONMENT_PATH NO_CMAKE_PATH NO_SYSTEM_ENVIRONMENT_PATH NO_CMAKE_SYSTEM_PATH NO_CMAKE_FIND_ROOT_PATH)
-- GINKGO_LIBRARIES: *** Required variable "GINKGO_LIBRARY_ginkgo" set to NOTFOUND ***
-- GINKGO_INCLUDE_DIRS: *** Required variable "GINKGO_INSTALL_INCLUDE_DIR" empty ***
-- GINKGO_USER_INCLUDE_DIRS: *** Required variable "GINKGO_INSTALL_INCLUDE_DIR" empty ***
-- Could NOT find GINKGO
-- DEAL_II_WITH_GINKGO has unmet external dependencies.
--
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/configure/configure_2_metis.cmake
-- Found METIS_LIBRARY
-- Found METIS_INCLUDE_DIR
-- METIS_VERSION: 5.1.0
-- METIS_LIBRARIES: /usr/lib/libmetis.so;/usr/lib/openmpi/libmpi.so
-- METIS_INCLUDE_DIRS: /usr/include
-- METIS_USER_INCLUDE_DIRS: /usr/include
-- Found METIS
-- DEAL_II_WITH_METIS successfully set up with external dependencies.
--
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/configure/configure_2_trilinos.cmake
-- Found EPETRA_CONFIG_H
-- Found TRILINOS_LIBRARY_pike-blackbox
-- Found TRILINOS_LIBRARY_trilinoscouplings
-- Found TRILINOS_LIBRARY_panzer-mini-fe
-- Found TRILINOS_LIBRARY_panzer-stk
-- Found TRILINOS_LIBRARY_panzer-disc-fe
-- Found TRILINOS_LIBRARY_panzer-dof-mgr
-- Found TRILINOS_LIBRARY_panzer-core
-- Found TRILINOS_LIBRARY_piro
-- Found TRILINOS_LIBRARY_rol
-- Found TRILINOS_LIBRARY_stokhos_muelu
-- Found TRILINOS_LIBRARY_stokhos_ifpack2
-- Found TRILINOS_LIBRARY_stokhos_amesos2
-- Found TRILINOS_LIBRARY_stokhos_xpetra
-- Found TRILINOS_LIBRARY_stokhos_tpetra
-- Found TRILINOS_LIBRARY_stokhos_sacado
-- Found TRILINOS_LIBRARY_stokhos
-- Found TRILINOS_LIBRARY_tempus
-- Found TRILINOS_LIBRARY_rythmos
-- Found TRILINOS_LIBRARY_shylu_ddcommon
-- Found TRILINOS_LIBRARY_shylu_ddfrosch
-- Found TRILINOS_LIBRARY_shylu_ddbddc
-- Found TRILINOS_LIBRARY_muelu-adapters
-- Found TRILINOS_LIBRARY_muelu-interface
-- Found TRILINOS_LIBRARY_muelu
-- Found TRILINOS_LIBRARY_moertel
-- Found TRILINOS_LIBRARY_locathyra
-- Found TRILINOS_LIBRARY_locaepetra
-- Found TRILINOS_LIBRARY_localapack
-- Found TRILINOS_LIBRARY_loca
-- Found TRILINOS_LIBRARY_noxepetra
-- Found TRILINOS_LIBRARY_noxlapack
-- Found TRILINOS_LIBRARY_nox
-- Found TRILINOS_LIBRARY_phalanx
-- Found TRILINOS_LIBRARY_percept
-- Found TRILINOS_LIBRARY_stk_expreval
-- Found TRILINOS_LIBRARY_stk_balance_test_utils
-- Found TRILINOS_LIBRARY_stk_balance_lib
-- Found TRILINOS_LIBRARY_stk_tools_lib
-- Found TRILINOS_LIBRARY_stk_transfer_utils_lib
-- Found TRILINOS_LIBRARY_stk_transfer_impl
-- Found TRILINOS_LIBRARY_stk_search_util_base
-- Found TRILINOS_LIBRARY_stk_search
-- Found TRILINOS_LIBRARY_stk_unit_test_utils
-- Found TRILINOS_LIBRARY_stk_mesh_fixtures
-- Found TRILINOS_LIBRARY_stk_ngp_test
-- Found TRILINOS_LIBRARY_stk_io_util
-- Found TRILINOS_LIBRARY_stk_io
-- Found TRILINOS_LIBRARY_stk_ngp
-- Found TRILINOS_LIBRARY_stk_mesh_base
-- Found TRILINOS_LIBRARY_stk_topology
-- Found TRILINOS_LIBRARY_stk_util_diag
-- Found TRILINOS_LIBRARY_stk_util_env
-- Found TRILINOS_LIBRARY_stk_util_command_line
-- Found TRILINOS_LIBRARY_stk_util_registry
-- Found TRILINOS_LIBRARY_stk_util_parallel
-- Found TRILINOS_LIBRARY_stk_util_util
-- Found TRILINOS_LIBRARY_stk_math
-- Found TRILINOS_LIBRARY_intrepid2
-- Found TRILINOS_LIBRARY_intrepid
-- Found TRILINOS_LIBRARY_teko
-- Found TRILINOS_LIBRARY_fei_trilinos
-- Found TRILINOS_LIBRARY_fei_base
-- Found TRILINOS_LIBRARY_stratimikos
-- Found TRILINOS_LIBRARY_stratimikosbelos
-- Found TRILINOS_LIBRARY_stratimikosamesos2
-- Found TRILINOS_LIBRARY_stratimikosaztecoo
-- Found TRILINOS_LIBRARY_stratimikosamesos
-- Found TRILINOS_LIBRARY_stratimikosml
-- Found TRILINOS_LIBRARY_stratimikosifpack
-- Found TRILINOS_LIBRARY_ifpack2-adapters
-- Found TRILINOS_LIBRARY_ifpack2
-- Found TRILINOS_LIBRARY_anasazitpetra
-- Found TRILINOS_LIBRARY_ModeLaplace
-- Found TRILINOS_LIBRARY_anasaziepetra
-- Found TRILINOS_LIBRARY_anasazi
-- Found TRILINOS_LIBRARY_komplex
-- Found TRILINOS_LIBRARY_mapvarlib
-- Found TRILINOS_LIBRARY_fastqlib
-- Found TRILINOS_LIBRARY_blotlib
-- Found TRILINOS_LIBRARY_plt
-- Found TRILINOS_LIBRARY_svdi_cgi
-- Found TRILINOS_LIBRARY_svdi_cdr
-- Found TRILINOS_LIBRARY_suplib
-- Found TRILINOS_LIBRARY_suplib_c
-- Found TRILINOS_LIBRARY_suplib_cpp
-- Found TRILINOS_LIBRARY_supes
-- Found TRILINOS_LIBRARY_aprepro_lib
-- Found TRILINOS_LIBRARY_chaco
-- Found TRILINOS_LIBRARY_io_info_lib
-- Found TRILINOS_LIBRARY_Ionit
-- Found TRILINOS_LIBRARY_Iotr
-- Found TRILINOS_LIBRARY_Iohb
-- Found TRILINOS_LIBRARY_Iogs
-- Found TRILINOS_LIBRARY_Iogn
-- Found TRILINOS_LIBRARY_Iovs
-- Found TRILINOS_LIBRARY_Iopg
-- Found TRILINOS_LIBRARY_Ioexo_fac
-- Found TRILINOS_LIBRARY_Iofx
-- Found TRILINOS_LIBRARY_Ioex
-- Found TRILINOS_LIBRARY_Ioss
-- Found TRILINOS_LIBRARY_nemesis
-- Found TRILINOS_LIBRARY_exoIIv2for32
-- Found TRILINOS_LIBRARY_exodus_for
-- Found TRILINOS_LIBRARY_exodus
-- Found TRILINOS_LIBRARY_amesos2
-- Found TRILINOS_LIBRARY_shylu_nodetacho
-- Found TRILINOS_LIBRARY_shylu_nodehts
-- Found TRILINOS_LIBRARY_belosxpetra
-- Found TRILINOS_LIBRARY_belostpetra
-- Found TRILINOS_LIBRARY_belosepetra
-- Found TRILINOS_LIBRARY_belos
-- Found TRILINOS_LIBRARY_ml
-- Found TRILINOS_LIBRARY_ifpack
-- Found TRILINOS_LIBRARY_zoltan2
-- Found TRILINOS_LIBRARY_pamgen_extras
-- Found TRILINOS_LIBRARY_pamgen
-- Found TRILINOS_LIBRARY_amesos
-- Found TRILINOS_LIBRARY_galeri-xpetra
-- Found TRILINOS_LIBRARY_galeri-epetra
-- Found TRILINOS_LIBRARY_aztecoo
-- Found TRILINOS_LIBRARY_dpliris
-- Found TRILINOS_LIBRARY_isorropia
-- Found TRILINOS_LIBRARY_optipack
-- Found TRILINOS_LIBRARY_xpetra-sup
-- Found TRILINOS_LIBRARY_xpetra
-- Found TRILINOS_LIBRARY_thyratpetra
-- Found TRILINOS_LIBRARY_thyraepetraext
-- Found TRILINOS_LIBRARY_thyraepetra
-- Found TRILINOS_LIBRARY_thyracore
-- Found TRILINOS_LIBRARY_domi
-- Found TRILINOS_LIBRARY_trilinosss
-- Found TRILINOS_LIBRARY_tpetraext
-- Found TRILINOS_LIBRARY_tpetrainout
-- Found TRILINOS_LIBRARY_tpetra
-- Found TRILINOS_LIBRARY_kokkostsqr
-- Found TRILINOS_LIBRARY_tpetraclassiclinalg
-- Found TRILINOS_LIBRARY_tpetraclassicnodeapi
-- Found TRILINOS_LIBRARY_tpetraclassic
-- Found TRILINOS_LIBRARY_epetraext
-- Found TRILINOS_LIBRARY_triutils
-- Found TRILINOS_LIBRARY_globipack
-- Found TRILINOS_LIBRARY_shards
-- Found TRILINOS_LIBRARY_zoltan
-- Found TRILINOS_LIBRARY_epetra
-- Found TRILINOS_LIBRARY_minitensor
-- Found TRILINOS_LIBRARY_sacado
-- Found TRILINOS_LIBRARY_rtop
-- Found TRILINOS_LIBRARY_kokkoskernels
-- Found TRILINOS_LIBRARY_teuchoskokkoscomm
-- Found TRILINOS_LIBRARY_teuchoskokkoscompat
-- Found TRILINOS_LIBRARY_teuchosremainder
-- Found TRILINOS_LIBRARY_teuchosnumerics
-- Found TRILINOS_LIBRARY_teuchoscomm
-- Found TRILINOS_LIBRARY_teuchosparameterlist
-- Found TRILINOS_LIBRARY_teuchosparser
-- Found TRILINOS_LIBRARY_teuchoscore
-- Found TRILINOS_LIBRARY_kokkosalgorithms
-- Found TRILINOS_LIBRARY_kokkoscontainers
-- Found TRILINOS_LIBRARY_kokkoscore
-- Found TRILINOS_LIBRARY_gtest
-- TRILINOS_VERSION: 12.18.1
-- TRILINOS_LIBRARIES: /usr/lib/libpike-blackbox.so;/usr/lib/libtrilinoscouplings.so;/usr/lib/libpanzer-mini-fe.so;/usr/lib/libpanzer-stk.so;/usr/lib/libpanzer-disc-fe.so;/usr/lib/libpanzer-dof-mgr.so;/usr/lib/libpanzer-core.so;/usr/lib/libpiro.so;/usr/lib/librol.so;/usr/lib/libstokhos_muelu.so;/usr/lib/libstokhos_ifpack2.so;/usr/lib/libstokhos_amesos2.so;/usr/lib/libstokhos_xpetra.so;/usr/lib/libstokhos_tpetra.so;/usr/lib/libstokhos_sacado.so;/usr/lib/libstokhos.so;/usr/lib/libtempus.so;/usr/lib/librythmos.so;/usr/lib/libshylu_ddcommon.so;/usr/lib/libshylu_ddfrosch.so;/usr/lib/libshylu_ddbddc.so;/usr/lib/libmuelu-adapters.so;/usr/lib/libmuelu-interface.so;/usr/lib/libmuelu.so;/usr/lib/libmoertel.so;/usr/lib/liblocathyra.so;/usr/lib/liblocaepetra.so;/usr/lib/liblocalapack.so;/usr/lib/libloca.so;/usr/lib/libnoxepetra.so;/usr/lib/libnoxlapack.so;/usr/lib/libnox.so;/usr/lib/libphalanx.so;/usr/lib/libpercept.so;/usr/lib/libstk_expreval.so;/usr/lib/libstk_balance_test_utils.so;/usr/lib/libstk_balance_lib.so;/usr/lib/libstk_tools_lib.so;/usr/lib/libstk_transfer_utils_lib.so;/usr/lib/libstk_transfer_impl.so;/usr/lib/libstk_search_util_base.so;/usr/lib/libstk_search.so;/usr/lib/libstk_unit_test_utils.so;/usr/lib/libstk_mesh_fixtures.so;/usr/lib/libstk_ngp_test.so;/usr/lib/libstk_io_util.so;/usr/lib/libstk_io.so;/usr/lib/libstk_ngp.so;/usr/lib/libstk_mesh_base.so;/usr/lib/libstk_topology.so;/usr/lib/libstk_util_diag.so;/usr/lib/libstk_util_env.so;/usr/lib/libstk_util_command_line.so;/usr/lib/libstk_util_registry.so;/usr/lib/libstk_util_parallel.so;/usr/lib/libstk_util_util.so;/usr/lib/libstk_math.so;/usr/lib/libintrepid2.so;/usr/lib/libintrepid.so;/usr/lib/libteko.so;/usr/lib/libfei_trilinos.so;/usr/lib/libfei_base.so;/usr/lib/libstratimikos.so;/usr/lib/libstratimikosbelos.so;/usr/lib/libstratimikosamesos2.so;/usr/lib/libstratimikosaztecoo.so;/usr/lib/libstratimikosamesos.so;/usr/lib/libstratimikosml.so;/usr/lib/libstratimikosifpack.so;/usr/lib/libifpack2-adapters.so;/usr/lib/libifpack2.so;/usr/lib/libanasazitpetra.so;/usr/lib/libModeLaplace.so;/usr/lib/libanasaziepetra.so;/usr/lib/libanasazi.so;/usr/lib/libkomplex.so;/usr/lib/libmapvarlib.so;/usr/lib/libfastqlib.a;/usr/lib/libblotlib.a;/usr/lib/libplt.a;/usr/lib/libsvdi_cgi.a;/usr/lib/libsvdi_cdr.a;/usr/lib/libsuplib.so;/usr/lib/libsuplib_c.so;/usr/lib/libsuplib_cpp.so;/usr/lib/libsupes.so;/usr/lib/libaprepro_lib.so;/usr/lib/libchaco.so;/usr/lib/libio_info_lib.so;/usr/lib/libIonit.so;/usr/lib/libIotr.so;/usr/lib/libIohb.so;/usr/lib/libIogs.so;/usr/lib/libIogn.so;/usr/lib/libIovs.so;/usr/lib/libIopg.so;/usr/lib/libIoexo_fac.so;/usr/lib/libIofx.so;/usr/lib/libIoex.so;/usr/lib/libIoss.so;/usr/lib/libnemesis.so;/usr/lib/libexoIIv2for32.so;/usr/lib/libexodus_for.so;/usr/lib/libexodus.so;/usr/lib/libamesos2.so;/usr/lib/libshylu_nodetacho.so;/usr/lib/libshylu_nodehts.so;/usr/lib/libbelosxpetra.so;/usr/lib/libbelostpetra.so;/usr/lib/libbelosepetra.so;/usr/lib/libbelos.so;/usr/lib/libml.so;/usr/lib/libifpack.so;/usr/lib/libzoltan2.so;/usr/lib/libpamgen_extras.so;/usr/lib/libpamgen.so;/usr/lib/libamesos.so;/usr/lib/libgaleri-xpetra.so;/usr/lib/libgaleri-epetra.so;/usr/lib/libaztecoo.so;/usr/lib/libdpliris.so;/usr/lib/libisorropia.so;/usr/lib/liboptipack.so;/usr/lib/libxpetra-sup.so;/usr/lib/libxpetra.so;/usr/lib/libthyratpetra.so;/usr/lib/libthyraepetraext.so;/usr/lib/libthyraepetra.so;/usr/lib/libthyracore.so;/usr/lib/libdomi.so;/usr/lib/libtrilinosss.so;/usr/lib/libtpetraext.so;/usr/lib/libtpetrainout.so;/usr/lib/libtpetra.so;/usr/lib/libkokkostsqr.so;/usr/lib/libtpetraclassiclinalg.so;/usr/lib/libtpetraclassicnodeapi.so;/usr/lib/libtpetraclassic.so;/usr/lib/libepetraext.so;/usr/lib/libtriutils.so;/usr/lib/libglobipack.so;/usr/lib/libshards.so;/usr/lib/libzoltan.so;/usr/lib/libepetra.so;/usr/lib/libminitensor.so;/usr/lib/libsacado.so;/usr/lib/librtop.so;/usr/lib/libkokkoskernels.so;/usr/lib/libteuchoskokkoscomm.so;/usr/lib/libteuchoskokkoscompat.so;/usr/lib/libteuchosremainder.so;/usr/lib/libteuchosnumerics.so;/usr/lib/libteuchoscomm.so;/usr/lib/libteuchosparameterlist.so;/usr/lib/libteuchosparser.so;/usr/lib/libteuchoscore.so;/usr/lib/libkokkosalgorithms.so;/usr/lib/libkokkoscontainers.so;/usr/lib/libkokkoscore.so;/usr/lib/libgtest.so;/usr/lib/libboost_program_options.so;/usr/lib/libboost_system.so;/usr/lib/libmatio.so;/usr/lib/libX11.so;/usr/lib/libgtest.so;/usr/lib/libnetcdf.so;/usr/lib/libhdf5.so;/usr/lib/libsz.so;/usr/lib/libz.so;/usr/lib/libm.so;/usr/lib/liblapack.so;/usr/lib/libblas.so;/usr/lib/libdl.so;/usr/lib/openmpi/libmpi_cxx.so;/usr/lib/openmpi/libmpi.so
-- TRILINOS_INCLUDE_DIRS: /usr/include;/usr/include
-- TRILINOS_USER_INCLUDE_DIRS: /usr/include;/usr/include
-- TRILINOS_LINKER_FLAGS:
-- Found TRILINOS
-- Checking whether the found trilinos package contains all required modules:
-- Found Amesos
-- Found Epetra
-- Found Ifpack
-- Found AztecOO
-- Found Teuchos
-- Found ML
-- Found EpetraExt
-- Found Kokkos
-- Found MueLu
-- Found ROL
-- Found Sacado
-- Found SEACAS
-- Found Tpetra
-- Found Zoltan
-- Module MUMPS not found!
-- Looking for KOKKOS_ENABLE_CUDA_LAMBDA
-- Looking for KOKKOS_ENABLE_CUDA_LAMBDA - not found
-- Performing Test TRILINOS_TPETRA_IS_FUNCTIONAL
-- Performing Test TRILINOS_TPETRA_IS_FUNCTIONAL - Failed
-- Tpetra was found but is not usable! Disabling Tpetra support.
-- Performing Test TRILINOS_MUELU_IS_FUNCTIONAL
-- Performing Test TRILINOS_MUELU_IS_FUNCTIONAL - Failed
-- MueLu was found but is not usable through Epetra! Disabling MueLu support.
-- Performing Test TRILINOS_SEACAS_IS_FUNCTIONAL
-- Performing Test TRILINOS_SEACAS_IS_FUNCTIONAL - Failed
-- SEACAS was found but doesn't seem to include ExodusII. Disabling SEACAS support.
-- Found SACADO_CONFIG_H
-- Found SACADO_TRAD_HPP
-- Performing Test TRILINOS_CXX_SUPPORTS_SACADO_COMPLEX_RAD
-- Performing Test TRILINOS_CXX_SUPPORTS_SACADO_COMPLEX_RAD - Success
-- DEAL_II_WITH_TRILINOS successfully set up with external dependencies.
--
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/configure/configure_2_umfpack.cmake
-- Found UMFPACK_INCLUDE_DIR
-- Found AMD_INCLUDE_DIR
-- Found SuiteSparse_config_INCLUDE_DIR
-- Found UMFPACK_LIBRARY
-- Found AMD_LIBRARY
-- Found CHOLMOD_LIBRARY
-- Found COLAMD_LIBRARY
-- Found CCOLAMD_LIBRARY
-- Found CAMD_LIBRARY
-- Found SuiteSparse_config_LIBRARY
-- Performing Test rt_LIBRARY
-- Performing Test rt_LIBRARY - Success
-- UMFPACK_VERSION: 5.7.9
-- UMFPACK_LIBRARIES: /usr/lib/libumfpack.so;/usr/lib/libcholmod.so;/usr/lib/libccolamd.so;/usr/lib/libcolamd.so;/usr/lib/libcamd.so;/usr/lib/libsuitesparseconfig.so;/usr/lib/libamd.so;/usr/lib/libmetis.so;/usr/lib/openmpi/libmpi.so;/opt/intel/mkl/lib/intel64_lin/libmkl_gf_lp64.so;/opt/intel/mkl/lib/intel64_lin/libmkl_gnu_thread.so;/opt/intel/mkl/lib/intel64_lin/libmkl_core.so;/usr/lib/libgomp.so;-lm;-ldl;rt
-- UMFPACK_INCLUDE_DIRS: /usr/include;/usr/include;/usr/include
-- UMFPACK_USER_INCLUDE_DIRS: /usr/include;/usr/include;/usr/include
-- UMFPACK_LINKER_FLAGS:
-- Found UMFPACK
-- DEAL_II_WITH_UMFPACK successfully set up with external dependencies.
--
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/configure/configure_3_kokkos.cmake
-- DEAL_II_WITH_KOKKOS successfully set up with external dependencies.
--
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/configure/configure_3_petsc.cmake
-- PETSC_LIBRARY not found! The call was:
-- FIND_LIBRARY(PETSC_LIBRARY NAMES petsc libpetsc HINTS /opt/petsc/linux-c-opt /opt/petsc/linux-c-opt/ PATH_SUFFIXES lib lib64 lib)
-- PETSC_INCLUDE_DIR_ARCH not found! The call was:
-- FIND_PATH(PETSC_INCLUDE_DIR_ARCH petscconf.h HINTS /opt/petsc/linux-c-opt /opt/petsc/linux-c-opt/ PATH_SUFFIXES petsc include include/petsc)
-- PETSC_INCLUDE_DIR_COMMON not found! The call was:
-- FIND_PATH(PETSC_INCLUDE_DIR_COMMON petscversion.h HINTS /opt/petsc/linux-c-opt /opt/petsc/linux-c-opt/ PATH_SUFFIXES petsc include include/petsc)
-- PETSC_PETSCVARIABLES not found! The call was:
-- FIND_FILE(PETSC_PETSCVARIABLES NAMES petscvariables HINTS /opt/petsc/linux-c-opt/ /opt/petsc/linux-c-opt PATH_SUFFIXES conf lib/petsc/conf)
-- PETSC_LIBRARIES: *** Required variable "PETSC_LIBRARY" set to NOTFOUND ***
-- PETSC_INCLUDE_DIRS: *** Required variable "PETSC_INCLUDE_DIR_COMMON" set to NOTFOUND ***
-- PETSC_USER_INCLUDE_DIRS: *** Required variable "PETSC_INCLUDE_DIR_COMMON" set to NOTFOUND ***
-- Could NOT find PETSC
-- DEAL_II_WITH_PETSC has unmet external dependencies.
--
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/configure/configure_4_arborx.cmake
-- Could NOT find ArborX (missing: ArborX_DIR)
-- ARBORX_INCLUDE_DIRS: *** Required variable "ARBORX_INSTALL_INCLUDE_DIR" empty ***
-- ARBORX_USER_INCLUDE_DIRS: *** Required variable "ARBORX_INSTALL_INCLUDE_DIR" empty ***
-- Could NOT find ARBORX
-- DEAL_II_WITH_ARBORX has unmet external dependencies.
--
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/configure/configure_adolc.cmake
-- ADOLC_INCLUDE_DIR not found! The call was:
-- FIND_PATH(ADOLC_INCLUDE_DIR NAMES adolc/adolc.h HINTS PATH_SUFFIXES include)
-- ADOLC_LIBRARY not found! The call was:
-- FIND_LIBRARY(ADOLC_LIBRARY NAMES adolc HINTS PATH_SUFFIXES lib lib64 lib)
-- ADOLC_SETTINGS_H not found! The call was:
-- FIND_FILE(ADOLC_SETTINGS_H adolc_settings.h HINTS ADOLC_INCLUDE_DIR-NOTFOUND ADOLC_INCLUDE_DIR-NOTFOUND/adolc/internal NO_DEFAULT_PATH NO_CMAKE_ENVIRONMENT_PATH NO_CMAKE_PATH NO_SYSTEM_ENVIRONMENT_PATH NO_CMAKE_SYSTEM_PATH NO_CMAKE_FIND_ROOT_PATH)
-- ADOLC_LIBRARIES: *** Required variable "ADOLC_LIBRARY" set to NOTFOUND ***
-- ADOLC_INCLUDE_DIRS: *** Required variable "ADOLC_INCLUDE_DIR" set to NOTFOUND ***
-- ADOLC_USER_INCLUDE_DIRS: *** Required variable "ADOLC_INCLUDE_DIR" set to NOTFOUND ***
-- Could NOT find ADOLC
-- DEAL_II_WITH_ADOLC has unmet external dependencies.
--
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/configure/configure_arpack.cmake
-- Found ARPACK_LIBRARY
-- Found PARPACK_LIBRARY
-- ARPACK_LIBRARIES: /usr/lib/libparpack.so;/usr/lib/libarpack.so;/opt/intel/mkl/lib/intel64_lin/libmkl_gf_lp64.so;/opt/intel/mkl/lib/intel64_lin/libmkl_gnu_thread.so;/opt/intel/mkl/lib/intel64_lin/libmkl_core.so;/usr/lib/libgomp.so;-lm;-ldl;/usr/lib/openmpi/libmpi.so
-- ARPACK_LINKER_FLAGS:
-- Found ARPACK
-- DEAL_II_WITH_ARPACK successfully set up with external dependencies.
--
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/configure/configure_assimp.cmake
-- ASSIMP_LIB not found! The call was:
-- FIND_LIBRARY(ASSIMP_LIB NAMES assimp HINTS PATH_SUFFIXES lib lib64 lib)
-- ASSIMP_INC not found! The call was:
-- FIND_PATH(ASSIMP_INC assimp/defs.h HINTS PATH_SUFFIXES include)
-- ASSIMP_LIBRARIES: *** Required variable "ASSIMP_LIB" set to NOTFOUND ***
-- ASSIMP_INCLUDE_DIRS: *** Required variable "ASSIMP_INC" set to NOTFOUND ***
-- ASSIMP_USER_INCLUDE_DIRS: *** Required variable "ASSIMP_INC" set to NOTFOUND ***
-- Could NOT find ASSIMP
-- DEAL_II_WITH_ASSIMP has unmet external dependencies.
--
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/configure/configure_complex_values.cmake
--
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/configure/configure_gmsh.cmake
-- Found GMSH_EXE
-- Found GMSH_LIBRARY
-- Found GMSH_INCLUDE_DIR
-- GMSH_EXECUTABLE: /usr/bin/gmsh
-- GMSH_LIBRARIES: /usr/lib/libgmsh.so
-- GMSH_INCLUDE_DIRS: /usr/include
-- GMSH_USER_INCLUDE_DIRS: /usr/include
-- Found GMSH
-- DEAL_II_WITH_GMSH successfully set up with external dependencies.
--
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/configure/configure_gsl.cmake
-- Found GSL_LIBRARY
-- Found GSL_CBLAS_LIBRARY
-- Found GSL_INCLUDE_DIR
-- GSL_VERSION: 2.7
-- GSL_LIBRARIES: /usr/lib/libgsl.so;/usr/lib/libgslcblas.so
-- GSL_INCLUDE_DIRS: /usr/include
-- GSL_USER_INCLUDE_DIRS: /usr/include
-- Found GSL
-- DEAL_II_WITH_GSL successfully set up with external dependencies.
--
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/configure/configure_hdf5.cmake
-- Found HDF5_INCLUDE_DIR
-- Found HDF5_LIBRARY
-- Found HDF5_HL_LIBRARY
-- Found HDF5_PUBCONF
-- HDF5_LIBRARIES: /usr/lib/libhdf5_hl.so;/usr/lib/libhdf5.so;/usr/lib/openmpi/libmpi.so
-- HDF5_INCLUDE_DIRS: /usr/include
-- HDF5_USER_INCLUDE_DIRS: /usr/include
-- Found HDF5
-- DEAL_II_WITH_HDF5 successfully set up with external dependencies.
--
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/configure/configure_muparser.cmake
-- MUPARSER_LIBRARY not found! The call was:
-- FIND_LIBRARY(MUPARSER_LIBRARY NAMES muparser muparserd HINTS PATH_SUFFIXES lib lib64 lib)
-- MUPARSER_INCLUDE_DIR not found! The call was:
-- FIND_PATH(MUPARSER_INCLUDE_DIR muParserDef.h HINTS PATH_SUFFIXES include)
-- MUPARSER_LIBRARIES: *** Required variable "MUPARSER_LIBRARY" set to NOTFOUND ***
-- MUPARSER_INCLUDE_DIRS: *** Required variable "MUPARSER_INCLUDE_DIR" set to NOTFOUND ***
-- Could NOT find MUPARSER
-- DEAL_II_WITH_MUPARSER has unmet external dependencies.
--
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/configure/configure_opencascade.cmake
-- Found OPENCASCADE_INCLUDE_DIR
-- Found OPENCASCADE_TKBO
-- Found OPENCASCADE_TKBool
-- Found OPENCASCADE_TKBRep
-- Found OPENCASCADE_TKernel
-- Found OPENCASCADE_TKFeat
-- Found OPENCASCADE_TKFillet
-- Found OPENCASCADE_TKG2d
-- Found OPENCASCADE_TKG3d
-- Found OPENCASCADE_TKGeomAlgo
-- Found OPENCASCADE_TKGeomBase
-- Found OPENCASCADE_TKHLR
-- Found OPENCASCADE_TKIGES
-- Found OPENCASCADE_TKMath
-- Found OPENCASCADE_TKMesh
-- Found OPENCASCADE_TKOffset
-- Found OPENCASCADE_TKPrim
-- Found OPENCASCADE_TKShHealing
-- Found OPENCASCADE_TKSTEP
-- Found OPENCASCADE_TKSTEPAttr
-- Found OPENCASCADE_TKSTEPBase
-- Found OPENCASCADE_TKSTEP209
-- Found OPENCASCADE_TKSTL
-- Found OPENCASCADE_TKTopAlgo
-- Found OPENCASCADE_TKXSBase
-- OPENCASCADE_VERSION: 7.5.0
-- OPENCASCADE_LIBRARIES: /usr/lib/libTKBO.so;/usr/lib/libTKBool.so;/usr/lib/libTKBRep.so;/usr/lib/libTKernel.so;/usr/lib/libTKFeat.so;/usr/lib/libTKFillet.so;/usr/lib/libTKG2d.so;/usr/lib/libTKG3d.so;/usr/lib/libTKGeomAlgo.so;/usr/lib/libTKGeomBase.so;/usr/lib/libTKHLR.so;/usr/lib/libTKIGES.so;/usr/lib/libTKMath.so;/usr/lib/libTKMesh.so;/usr/lib/libTKOffset.so;/usr/lib/libTKPrim.so;/usr/lib/libTKShHealing.so;/usr/lib/libTKSTEP.so;/usr/lib/libTKSTEPAttr.so;/usr/lib/libTKSTEPBase.so;/usr/lib/libTKSTEP209.so;/usr/lib/libTKSTL.so;/usr/lib/libTKTopAlgo.so;/usr/lib/libTKXSBase.so
-- OPENCASCADE_INCLUDE_DIRS: /usr/include/opencascade
-- OPENCASCADE_USER_INCLUDE_DIRS: /usr/include/opencascade
-- Found OPENCASCADE
-- DEAL_II_WITH_OPENCASCADE successfully set up with external dependencies.
--
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/configure/configure_p4est.cmake
-- Found SC_INCLUDE_DIR
-- Found P4EST_LIBRARY_OPTIMIZED
-- Found SC_LIBRARY_OPTIMIZED
-- Found P4EST_LIBRARY_DEBUG
-- Found SC_LIBRARY_DEBUG
-- Found P4EST_INCLUDE_DIR
-- P4EST_VERSION: 2.2
-- P4EST_LIBRARIES: optimized;/opt/p4est-deal-ii/FAST/lib/libp4est.so;/opt/p4est-deal-ii/FAST/lib/libsc.so;debug;/opt/p4est-deal-ii/DEBUG/lib/libp4est.so;/opt/p4est-deal-ii/DEBUG/lib/libsc.so;general;/opt/intel/mkl/lib/intel64_lin/libmkl_gf_lp64.so;/opt/intel/mkl/lib/intel64_lin/libmkl_gnu_thread.so;/opt/intel/mkl/lib/intel64_lin/libmkl_core.so;/usr/lib/libgomp.so;-lm;-ldl;/usr/lib/openmpi/libmpi.so
-- P4EST_INCLUDE_DIRS: /opt/p4est-deal-ii/FAST/include;/opt/p4est-deal-ii/FAST/include
-- P4EST_USER_INCLUDE_DIRS: /opt/p4est-deal-ii/FAST/include;/opt/p4est-deal-ii/FAST/include
-- Found P4EST
-- DEAL_II_WITH_P4EST successfully set up with external dependencies.
--
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/configure/configure_scalapack.cmake
-- SCALAPACK_LIBRARY not found! The call was:
-- FIND_LIBRARY(SCALAPACK_LIBRARY NAMES scalapack scalapack-openmpi scalapack-pvm scalapack-mpi scalapack-mpich scalapack-mpich2 scalapack-lam HINTS PATH_SUFFIXES lib lib64 lib)
-- SCALAPACK_LIBRARIES: *** Required variable "SCALAPACK_LIBRARY" set to NOTFOUND ***
-- SCALAPACK_LINKER_FLAGS:
-- Could NOT find SCALAPACK
-- DEAL_II_WITH_SCALAPACK has unmet external dependencies.
--
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/configure/configure_slepc.cmake
-- DEAL_II_WITH_SLEPC has unmet configuration requirements: DEAL_II_WITH_PETSC has to be set to "ON".
--
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/configure/configure_sundials.cmake
-- Found SUNDIALS_LIB_IDAS
-- Found SUNDIALS_LIB_IDA
-- Found SUNDIALS_LIB_ARKODE
-- Found SUNDIALS_LIB_KINSOL
-- Found SUNDIALS_LIB_SER
-- Found SUNDIALS_INCLUDE_DIR
-- Found SUNDIALS_LIB_PAR
-- Found SUNDIALS_CONFIG_H
-- SUNDIALS_VERSION: 5.7.0
-- SUNDIALS_LIBRARIES: /usr/lib/libsundials_idas.so;/usr/lib/libsundials_arkode.so;/usr/lib/libsundials_kinsol.so;/usr/lib/libsundials_nvecserial.so;/usr/lib/libsundials_nvecparallel.so
-- SUNDIALS_INCLUDE_DIRS: /usr/include
-- SUNDIALS_USER_INCLUDE_DIRS: /usr/include
-- Found SUNDIALS
-- DEAL_II_WITH_SUNDIALS successfully set up with external dependencies.
--
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/configure/configure_symengine.cmake
-- SYMENGINE_LIBRARIES: *** Required variable "_symengine_libraries" empty ***
-- SYMENGINE_INCLUDE_DIRS: *** Required variable "_symengine_include_dirs" empty ***
-- SYMENGINE_USER_INCLUDE_DIRS: *** Required variable "_symengine_include_dirs" empty ***
-- Could NOT find SYMENGINE
-- DEAL_II_WITH_SYMENGINE has unmet external dependencies.
--
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/configure/configure_vectorization.cmake
--
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/setup_cpack.cmake
--
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/setup_custom_targets.cmake
--
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/setup_finalize.cmake
-- Performing Test DEAL_II_HAVE_USABLE_FLAGS_DEBUG
-- Performing Test DEAL_II_HAVE_USABLE_FLAGS_DEBUG - Success
-- Performing Test DEAL_II_HAVE_USABLE_FLAGS_RELEASE
-- Performing Test DEAL_II_HAVE_USABLE_FLAGS_RELEASE - Success
--
-- Include /tmp/makepkg/deal-ii/src/dealii-9.3.1/cmake/setup_write_config.cmake
-- Query git repository information.
-- Found Git: /usr/bin/git (found version "2.32.0")
--
-- Configuring done. Proceed to target definitions now.
-- Setting up bundled features
-- Setting up bundled features - Done
-- Setting up library
-- Setting up library - Done
-- Setting up project configuration
-- Setting up project configuration - Done
-- Setting up examples
-- step-17 - dependencies not satisfied
-- step-18 - dependencies not satisfied
-- step-33 - dependencies not satisfied
-- step-34 - dependencies not satisfied
-- step-36 - dependencies not satisfied
-- step-60 - dependencies not satisfied
-- step-62 - dependencies not satisfied
-- step-64 - dependencies not satisfied
-- step-71 - dependencies not satisfied
-- Setting up examples - Done
-- Setting up quick_tests in DEBUG mode
-- Setting up quick_tests in DEBUG mode - Done
-- Setting up testsuite
-- Setting up testsuite - Done
###
#
# deal.II configuration:
# CMAKE_BUILD_TYPE: DebugRelease
# BUILD_SHARED_LIBS: ON
# CMAKE_INSTALL_PREFIX: /usr
# CMAKE_SOURCE_DIR: /tmp/makepkg/deal-ii/src/dealii-9.3.1
# (version 9.3.1)
# CMAKE_BINARY_DIR: /tmp/makepkg/deal-ii/src/build
# CMAKE_CXX_COMPILER: GNU 11.1.0 on platform Linux x86_64
# /usr/bin/c++
# C++ language standard: C++17
#
# Configured Features (DEAL_II_ALLOW_BUNDLED = OFF, DEAL_II_ALLOW_AUTODETECTION = ON):
# ( DEAL_II_WITH_64BIT_INDICES = OFF )
# ( DEAL_II_WITH_ADOLC = OFF )
# ( DEAL_II_WITH_ARBORX = OFF )
# DEAL_II_WITH_ARPACK set up with external dependencies
# ( DEAL_II_WITH_ASSIMP = OFF )
# DEAL_II_WITH_BOOST set up with external dependencies
# DEAL_II_WITH_COMPLEX_VALUES = ON
# ( DEAL_II_WITH_CUDA = OFF )
# ( DEAL_II_WITH_GINKGO = OFF )
# DEAL_II_WITH_GMSH set up with external dependencies
# DEAL_II_WITH_GSL set up with external dependencies
# DEAL_II_WITH_HDF5 set up with external dependencies
# DEAL_II_WITH_KOKKOS set up with external dependencies
# DEAL_II_WITH_LAPACK set up with external dependencies
# DEAL_II_WITH_METIS set up with external dependencies
# DEAL_II_WITH_MPI set up with external dependencies
# ( DEAL_II_WITH_MUPARSER = OFF )
# DEAL_II_WITH_OPENCASCADE set up with external dependencies
# DEAL_II_WITH_P4EST set up with external dependencies
# ( DEAL_II_WITH_PETSC = OFF )
# ( DEAL_II_WITH_SCALAPACK = OFF )
# ( DEAL_II_WITH_SLEPC = OFF )
# DEAL_II_WITH_SUNDIALS set up with external dependencies
# ( DEAL_II_WITH_SYMENGINE = OFF )
# DEAL_II_WITH_TBB set up with external dependencies
# DEAL_II_WITH_TRILINOS set up with external dependencies
# DEAL_II_WITH_UMFPACK set up with external dependencies
# DEAL_II_WITH_ZLIB set up with external dependencies
#
# Component configuration:
# ( DEAL_II_COMPONENT_DOCUMENTATION = OFF )
# DEAL_II_COMPONENT_EXAMPLES
# ( DEAL_II_COMPONENT_PACKAGE = OFF )
# ( DEAL_II_COMPONENT_PYTHON_BINDINGS = OFF )
#
# Detailed information (compiler flags, feature configuration) can be found in detailed.log
#
# Run $ make info to print a help message with a list of top level targets
#
###
-- Configuring done
-- Generating done
-- Build files have been written to: /tmp/makepkg/deal-ii/src/build
[ 0%] Building CXX object cmake/scripts/CMakeFiles/expand_instantiations_exe.dir/expand_instantiations.cc.o
[ 0%] Built target obj_integrators_release
[ 0%] Built target doxygen_headers
[ 0%] Built target obj_integrators_debug
[ 0%] Built target obj_rol_inst
[ 0%] Built target obj_rol_release
[ 0%] Built target obj_rol_debug
[ 1%] Linking CXX executable ../../bin/expand_instantiations
[ 1%] Built target expand_instantiations_exe
[ 1%] Generating fe_abf.inst
[ 1%] Generating cell_data_transfer.inst
[ 1%] Generating access_traits.inst
[ 2%] Generating fe_bdm.inst
[ 2%] Generating data_out_dof_data.inst
[ 2%] Built target obj_arborx_inst
[ 2%] Generating fe_bernstein.inst
[ 2%] Generating data_out_dof_data_codim.inst
[ 2%] Generating block_info.inst
[ 2%] Generating fe_dgp.inst
[ 3%] Generating dof_accessor_get.inst
[ 3%] Generating data_out_faces.inst
[ 3%] Generating data_out.inst
[ 3%] Generating fe_dgp_monomial.inst
[ 3%] Generating dof_accessor.inst
[ 3%] Generating data_out_rotation.inst
[ 3%] Generating fe_dgp_nonparametric.inst
[ 3%] Generating dof_accessor_set.inst
[ 3%] Generating fe_dgq.inst
[ 3%] Generating data_out_stack.inst
[ 3%] Generating dof_handler.inst
[ 3%] Generating fe_dg_vector.inst
[ 3%] Generating data_postprocessor.inst
[ 3%] Generating dof_handler_policy.inst
[ 3%] Generating fe_face.inst
[ 3%] Generating derivative_approximation.inst
[ 3%] Generating dof_objects.inst
[ 3%] Generating fe.inst
[ 3%] Generating dof_output_operator.inst
[ 3%] Generating dof_renumbering.inst
[ 3%] Generating fe_nedelec.inst
[ 3%] Generating error_estimator_1d.inst
[ 3%] Generating dof_tools_constraints.inst
[ 3%] Generating fe_nedelec_sz.inst
[ 3%] Generating error_estimator.inst
[ 3%] Generating dof_tools.inst
[ 3%] Generating fe_nothing.inst
[ 4%] Generating fe_field_function.inst
[ 4%] Generating dof_tools_sparsity.inst
[ 4%] Generating fe_poly.inst
[ 4%] Generating matrix_creator.inst
[ 4%] Built target obj_dofs_inst
[ 5%] Generating fe_poly_tensor.inst
[ 5%] Generating fe_pyramid_p.inst
[ 5%] Generating matrix_tools.inst
[ 5%] Generating point_value_history.inst
[ 5%] Generating fe_q_base.inst
[ 5%] Generating smoothness_estimator.inst
[ 5%] Generating fe_q_bubbles.inst
[ 5%] Generating affine_constraints.inst
[ 5%] Generating solution_transfer.inst
[ 5%] Generating block_sparse_matrix.inst
[ 5%] Generating fe_q_dg0.inst
[ 5%] Generating time_dependent.inst
[ 5%] Generating fe_q_hierarchical.inst
[ 5%] Generating block_vector.inst
[ 5%] Generating vector_tools_boundary.inst
[ 5%] Generating fe_q.inst
[ 5%] Generating chunk_sparse_matrix.inst
[ 5%] Generating vector_tools_constraints.inst
[ 5%] Generating fe_q_iso_q1.inst
[ 5%] Generating full_matrix.inst
[ 5%] Generating vector_tools_integrate_difference.inst
[ 5%] Generating fe_rannacher_turek.inst
[ 5%] Generating lapack_full_matrix.inst
[ 5%] Generating fe_raviart_thomas.inst
[ 5%] Generating vector_tools_interpolate.inst
[ 5%] Generating la_vector.inst
[ 5%] Generating fe_raviart_thomas_nodal.inst
[ 6%] Generating la_parallel_vector.inst
[ 6%] Generating vector_tools_mean_value.inst
[ 6%] Generating fe_rt_bubbles.inst
[ 6%] Generating la_parallel_block_vector.inst
[ 6%] Generating vector_tools_point_value.inst
[ 7%] Generating fe_series_fourier.inst
[ 7%] Generating precondition_block.inst
[ 8%] Generating vector_tools_point_gradient.inst
[ 8%] Generating fe_series_legendre.inst
[ 8%] Generating relaxation_block.inst
[ 8%] Generating vector_tools_project.inst
[ 8%] Generating read_write_vector.inst
[ 8%] Generating fe_simplex_p.inst
[ 8%] Generating vector_tools_project_codim.inst
[ 8%] Generating fe_simplex_p_bubbles.inst
[ 8%] Generating scalapack.inst
[ 8%] Generating vector_tools_project_hp.inst
[ 8%] Generating fe_system.inst
[ 8%] Generating solver.inst
[ 8%] Generating vector_tools_project_qp.inst
[ 8%] Generating sparse_matrix_ez.inst
[ 8%] Generating fe_enriched.inst
[ 8%] Generating vector_tools_project_qpmf.inst
[ 8%] Generating fe_tools.inst
[ 8%] Generating sparse_matrix.inst
[ 8%] Generating vector_tools_rhs.inst
[ 9%] Generating vector.inst
[ 9%] Generating fe_tools_interpolate.inst
[ 9%] Built target obj_numerics_inst
[ 9%] Generating vector_memory.inst
[ 9%] Generating fe_tools_extrapolate.inst
[ 9%] Generating bounding_box.inst
[ 9%] Generating vector_memory_release.inst
[ 9%] Generating fe_trace.inst
[ 9%] Generating data_out_base.inst
[ 9%] Generating trilinos_sparse_matrix.inst
[ 9%] Generating fe_values.decl.1.inst
[ 9%] Generating function.inst
[ 9%] Generating trilinos_vector.inst
[ 9%] Generating fe_values.decl.2.inst
[ 9%] Generating function_level_set.inst
[ 9%] Built target obj_lac_inst
[ 9%] Generating function_restriction.inst
[ 9%] Generating fe_values.impl.1.inst
[ 9%] Generating utilities.inst
[ 9%] Generating function_time.inst
[ 9%] Generating fe_values.impl.2.inst
[ 9%] Built target obj_gmsh_inst
[ 10%] Generating function_tools.inst
[ 10%] Generating incremental_function.inst
[ 11%] Generating fe_values.inst
[ 11%] Generating geometric_utilities.inst
[ 11%] Generating cell_id.inst
[ 11%] Generating fe_wedge_p.inst
[ 11%] Generating mpi.inst
[ 11%] Generating grid_generator.inst
[ 11%] Generating mapping_c1.inst
[ 11%] Generating mpi_noncontiguous_partitioner.inst
[ 11%] Generating grid_generator_from_name.inst
[ 11%] Generating mapping_cartesian.inst
[ 11%] Generating mpi_remote_point_evaluation.inst
[ 11%] Generating grid_in.inst
[ 11%] Generating mapping.inst
[ 11%] Generating partitioner.inst
[ 11%] Generating grid_out.inst
[ 11%] Generating mapping_fe.inst
[ 11%] Generating partitioner.cuda.inst
[ 11%] Generating mapping_fe_field.inst
[ 11%] Generating grid_refinement.inst
[ 11%] Generating polynomials_rannacher_turek.inst
[ 11%] Generating mapping_q_generic.inst
[ 11%] Generating grid_tools.inst
[ 11%] Generating symmetric_tensor.inst
[ 11%] Generating mapping_q1_eulerian.inst
[ 11%] Generating grid_tools_dof_handlers.inst
[ 11%] Generating symbolic_function.inst
[ 11%] Generating mapping_q1.inst
[ 11%] Generating grid_tools_cache.inst
[ 11%] Generating tensor_function.inst
[ 11%] Generating mapping_q_cache.inst
[ 12%] Generating tensor_function_parser.inst
[ 12%] Generating intergrid_map.inst
[ 13%] Generating mapping_q_eulerian.inst
[ 14%] Generating manifold.inst
[ 14%] Generating time_stepping.inst
[ 14%] Generating mapping_q.inst
[ 14%] Generating manifold_lib.inst
[ 14%] Built target obj_base_inst
[ 14%] Generating reference_cell.inst
[ 14%] Generating mapping_manifold.inst
[ 14%] Generating tria_accessor.inst
[ 14%] Built target obj_fe_inst
[ 14%] Generating tria_description.inst
[ 14%] Generating dof_handler.inst
[ 14%] Generating tria.inst
[ 14%] Generating mg_base.inst
[ 14%] Generating fe_collection.inst
[ 14%] Generating tria_objects.inst
[ 14%] Generating mg_level_global_transfer.inst
[ 14%] Generating fe_values.inst
[ 14%] Generating mg_tools.inst
[ 14%] Built target obj_grid_inst
[ 14%] Generating mapping_collection.inst
[ 14%] Generating grid_refinement.inst
[ 15%] Generating mg_transfer_block.inst
[ 16%] Generating refinement.inst
[ 16%] Generating cell_weights.inst
[ 16%] Generating mg_transfer_component.inst
[ 16%] Built target obj_hp_inst
[ 16%] Generating cell_data_transfer.inst
[ 16%] Generating mg_transfer_global_coarsening.inst
[ 16%] Generating mg_transfer_internal.inst
[ 16%] Generating fully_distributed_tria.inst
[ 16%] Generating mg_transfer_prebuilt.inst
[ 16%] Generating mg_transfer_matrix_free.inst
[ 16%] Generating solution_transfer.inst
[ 16%] Generating multigrid.inst
[ 16%] Generating tria.inst
[ 16%] Generating operator.inst
[ 16%] Built target obj_multigrid_inst
[ 16%] Generating shared_tria.inst
[ 16%] Built target obj_algorithms_inst
[ 16%] Generating evaluation_template_factory.inst
[ 16%] Generating mesh_worker_info.inst
[ 17%] Generating tria_base.inst
[ 17%] Generating fe_point_evaluation.inst
[ 17%] Generating mesh_worker_vector_selector.inst
[ 17%] Generating p4est_wrappers.inst
[ 17%] Generating mapping_info.inst
[ 17%] Built target obj_distributed_inst
[ 17%] Generating scratch_data.inst
[ 17%] Generating matrix_free.inst
[ 17%] Generating shape_info.inst
[ 17%] Built target obj_meshworker_inst
[ 17%] Built target obj_matrix_free_inst
[ 17%] Generating manifold_lib.inst
[ 17%] Generating data_out.inst
[ 17%] Generating utilities.inst
[ 18%] Generating particle.inst
[ 18%] Generating particle_handler.inst
[ 18%] Built target obj_opencascade_inst
[ 18%] Generating generators.inst
[ 18%] Generating ad_drivers.inst
[ 18%] Generating symengine_number_visitor_internal.inst
[ 18%] Generating utilities.inst
[ 18%] Generating ad_drivers.inst1
[ 18%] Generating symengine_optimizer.inst
[ 18%] Built target obj_particle_inst
[ 18%] Generating ad_drivers.inst2
[ 18%] Generating symengine_tensor_operations.inst
[ 18%] Generating transformations.inst
[ 18%] Generating ad_helpers.inst
[ 18%] Built target obj_differentiation_sd_inst
[ 18%] Generating ad_helpers.inst1
[ 18%] Built target obj_physics_inst
[ 18%] Generating ad_helpers.inst2
[ 19%] Generating kinematics.inst
[ 19%] Generating coupling.inst
[ 19%] Generating adolc_number_types.inst
[ 19%] Generating standard_tensors.inst
[ 19%] Built target obj_non_matching_inst
[ 19%] Generating sacado_number_types.inst1
[ 19%] Built target obj_physics_elasticity_inst
[ 19%] Generating sacado_number_types.inst2
[ 19%] Generating n_vector.inst
[ 19%] Built target obj_differentiation_ad_inst
[ 19%] Building CXX object source/arborx/CMakeFiles/obj_arborx_debug.dir/access_traits.cc.o
[ 19%] Built target obj_sundials_inst
[ 19%] Building CXX object source/numerics/CMakeFiles/obj_numerics_debug.dir/data_out.cc.o
[ 19%] Building CXX object source/fe/CMakeFiles/obj_fe_debug.dir/block_mask.cc.o
[ 19%] Building CXX object source/fe/CMakeFiles/obj_fe_debug.dir/component_mask.cc.o
[ 19%] Built target obj_arborx_debug
[ 19%] Building CXX object source/fe/CMakeFiles/obj_fe_debug.dir/fe_abf.cc.o
[ 19%] Building CXX object source/dofs/CMakeFiles/obj_dofs_debug.dir/block_info.cc.o
[ 19%] Building CXX object source/dofs/CMakeFiles/obj_dofs_debug.dir/dof_faces.cc.o
[ 20%] Building CXX object source/dofs/CMakeFiles/obj_dofs_debug.dir/dof_handler.cc.o
[ 21%] Building CXX object source/fe/CMakeFiles/obj_fe_debug.dir/fe_bernardi_raugel.cc.o
[ 21%] Building CXX object source/numerics/CMakeFiles/obj_numerics_debug.dir/data_out_faces.cc.o
[ 21%] Building CXX object source/fe/CMakeFiles/obj_fe_debug.dir/fe_bdm.cc.o
[ 21%] Building CXX object source/fe/CMakeFiles/obj_fe_debug.dir/fe.cc.o
[ 21%] Building CXX object source/numerics/CMakeFiles/obj_numerics_debug.dir/data_out_stack.cc.o
[ 21%] Building CXX object source/dofs/CMakeFiles/obj_dofs_debug.dir/dof_objects.cc.o
[ 22%] Building CXX object source/numerics/CMakeFiles/obj_numerics_debug.dir/data_out_rotation.cc.o
[ 22%] Building CXX object source/fe/CMakeFiles/obj_fe_debug.dir/fe_bernstein.cc.o
[ 22%] Building CXX object source/dofs/CMakeFiles/obj_dofs_debug.dir/number_cache.cc.o
[ 22%] Building CXX object source/numerics/CMakeFiles/obj_numerics_debug.dir/data_postprocessor.cc.o
[ 22%] Building CXX object source/dofs/CMakeFiles/obj_dofs_debug.dir/dof_accessor.cc.o
[ 22%] Building CXX object source/fe/CMakeFiles/obj_fe_debug.dir/fe_data.cc.o
[ 22%] Building CXX object source/numerics/CMakeFiles/obj_numerics_debug.dir/dof_output_operator.cc.o
[ 22%] Building CXX object source/fe/CMakeFiles/obj_fe_debug.dir/fe_dgp.cc.o
[ 22%] Building CXX object source/numerics/CMakeFiles/obj_numerics_debug.dir/histogram.cc.o
[ 22%] Building CXX object source/numerics/CMakeFiles/obj_numerics_debug.dir/matrix_tools_once.cc.o
[ 22%] Building CXX object source/dofs/CMakeFiles/obj_dofs_debug.dir/dof_accessor_get.cc.o
[ 22%] Building CXX object source/fe/CMakeFiles/obj_fe_debug.dir/fe_dgp_monomial.cc.o
[ 22%] Building CXX object source/numerics/CMakeFiles/obj_numerics_debug.dir/matrix_tools.cc.o
[ 22%] Building CXX object source/fe/CMakeFiles/obj_fe_debug.dir/fe_dgp_nonparametric.cc.o
[ 22%] Building CXX object source/dofs/CMakeFiles/obj_dofs_debug.dir/dof_accessor_set.cc.o
[ 22%] Building CXX object source/numerics/CMakeFiles/obj_numerics_debug.dir/time_dependent.cc.o
[ 22%] Building CXX object source/numerics/CMakeFiles/obj_numerics_debug.dir/vector_tools_boundary.cc.o
[ 22%] Building CXX object source/fe/CMakeFiles/obj_fe_debug.dir/fe_dgq.cc.o
[ 22%] Building CXX object source/dofs/CMakeFiles/obj_dofs_debug.dir/dof_handler_policy.cc.o
[ 22%] Building CXX object source/fe/CMakeFiles/obj_fe_debug.dir/fe_dg_vector.cc.o
[ 22%] Building CXX object source/fe/CMakeFiles/obj_fe_debug.dir/fe_enriched.cc.o
[ 22%] Building CXX object source/numerics/CMakeFiles/obj_numerics_debug.dir/vector_tools_constraints.cc.o
[ 22%] Building CXX object source/dofs/CMakeFiles/obj_dofs_debug.dir/dof_renumbering.cc.o
[ 22%] Building CXX object source/fe/CMakeFiles/obj_fe_debug.dir/fe_face.cc.o
[ 22%] Building CXX object source/numerics/CMakeFiles/obj_numerics_debug.dir/vector_tools_mean_value.cc.o
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
from /usr/include/boost/archive/detail/helper_collection.hpp:27,
from /usr/include/boost/archive/detail/basic_iarchive.hpp:28,
from /usr/include/boost/archive/detail/common_iarchive.hpp:21,
from /usr/include/boost/archive/basic_binary_iarchive.hpp:30,
from /usr/include/boost/archive/binary_iarchive_impl.hpp:21,
from /usr/include/boost/archive/binary_iarchive.hpp:20,
from /tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/base/utilities.h:45,
from /tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/base/tensor.h:26,
from /tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/base/point.h:23,
from /tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/base/quadrature.h:22,
from /tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/base/quadrature_lib.h:22,
from /tmp/makepkg/deal-ii/src/dealii-9.3.1/source/dofs/dof_renumbering.cc:16:
/usr/include/boost/detail/iterator.hpp:13:1: note: ‘#pragma message: This header is deprecated. Use <iterator> instead.’
13 | BOOST_HEADER_DEPRECATED("<iterator>")
| ^~~~~~~~~~~~~~~~~~~~~~~
[ 22%] Building CXX object source/numerics/CMakeFiles/obj_numerics_debug.dir/vector_tools_point_gradient.cc.o
[ 23%] Building CXX object source/fe/CMakeFiles/obj_fe_debug.dir/fe_nedelec.cc.o
[ 23%] Building CXX object source/dofs/CMakeFiles/obj_dofs_debug.dir/dof_tools.cc.o
[ 23%] Building CXX object source/fe/CMakeFiles/obj_fe_debug.dir/fe_nedelec_sz.cc.o
[ 23%] Building CXX object source/numerics/CMakeFiles/obj_numerics_debug.dir/vector_tools_rhs.cc.o
[ 23%] Building CXX object source/fe/CMakeFiles/obj_fe_debug.dir/fe_nothing.cc.o
[ 23%] Building CXX object source/dofs/CMakeFiles/obj_dofs_debug.dir/dof_tools_constraints.cc.o
[ 24%] Building CXX object source/numerics/CMakeFiles/obj_numerics_debug.dir/cell_data_transfer.cc.o
[ 24%] Building CXX object source/fe/CMakeFiles/obj_fe_debug.dir/fe_poly.cc.o
[ 24%] Building CXX object source/fe/CMakeFiles/obj_fe_debug.dir/fe_poly_tensor.cc.o
[ 24%] Building CXX object source/numerics/CMakeFiles/obj_numerics_debug.dir/data_out_dof_data.cc.o
[ 24%] Building CXX object source/dofs/CMakeFiles/obj_dofs_debug.dir/dof_tools_sparsity.cc.o
[ 24%] Building CXX object source/fe/CMakeFiles/obj_fe_debug.dir/fe_pyramid_p.cc.o
[ 24%] Building CXX object source/fe/CMakeFiles/obj_fe_debug.dir/fe_p1nc.cc.o
[ 24%] Building CXX object source/fe/CMakeFiles/obj_fe_debug.dir/fe_q_base.cc.o
[ 24%] Building CXX object source/numerics/CMakeFiles/obj_numerics_debug.dir/data_out_dof_data_inst2.cc.o
[ 24%] Building CXX object source/fe/CMakeFiles/obj_fe_debug.dir/fe_q.cc.o
[ 24%] Built target obj_dofs_debug
[ 24%] Building CXX object source/fe/CMakeFiles/obj_fe_debug.dir/fe_q_bubbles.cc.o
[ 24%] Building CXX object source/fe/CMakeFiles/obj_fe_debug.dir/fe_q_dg0.cc.o
[ 24%] Building CXX object source/lac/CMakeFiles/obj_lac_debug.dir/affine_constraints.cc.o
[ 24%] Building CXX object source/fe/CMakeFiles/obj_fe_debug.dir/fe_q_hierarchical.cc.o
[ 24%] Building CXX object source/numerics/CMakeFiles/obj_numerics_debug.dir/data_out_dof_data_codim.cc.o
[ 24%] Building CXX object source/fe/CMakeFiles/obj_fe_debug.dir/fe_q_iso_q1.cc.o
[ 24%] Building CXX object source/lac/CMakeFiles/obj_lac_debug.dir/block_sparse_matrix.cc.o
[ 25%] Building CXX object source/fe/CMakeFiles/obj_fe_debug.dir/fe_rannacher_turek.cc.o
[ 25%] Building CXX object source/lac/CMakeFiles/obj_lac_debug.dir/block_sparse_matrix_ez.cc.o
[ 25%] Building CXX object source/numerics/CMakeFiles/obj_numerics_debug.dir/derivative_approximation.cc.o
[ 25%] Building CXX object source/lac/CMakeFiles/obj_lac_debug.dir/block_sparsity_pattern.cc.o
[ 25%] Building CXX object source/fe/CMakeFiles/obj_fe_debug.dir/fe_raviart_thomas.cc.o
[ 25%] Building CXX object source/lac/CMakeFiles/obj_lac_debug.dir/block_vector.cc.o
[ 25%] Building CXX object source/lac/CMakeFiles/obj_lac_debug.dir/chunk_sparse_matrix.cc.o
[ 25%] Building CXX object source/fe/CMakeFiles/obj_fe_debug.dir/fe_raviart_thomas_nodal.cc.o
[ 26%] Building CXX object source/lac/CMakeFiles/obj_lac_debug.dir/chunk_sparsity_pattern.cc.o
[ 26%] Building CXX object source/numerics/CMakeFiles/obj_numerics_debug.dir/error_estimator_1d.cc.o
[ 26%] Building CXX object source/fe/CMakeFiles/obj_fe_debug.dir/fe_rt_bubbles.cc.o
[ 26%] Building CXX object source/lac/CMakeFiles/obj_lac_debug.dir/dynamic_sparsity_pattern.cc.o
[ 26%] Building CXX object source/lac/CMakeFiles/obj_lac_debug.dir/exceptions.cc.o
[ 26%] Building CXX object source/lac/CMakeFiles/obj_lac_debug.dir/scalapack.cc.o
[ 26%] Building CXX object source/lac/CMakeFiles/obj_lac_debug.dir/la_vector.cc.o
[ 26%] Building CXX object source/fe/CMakeFiles/obj_fe_debug.dir/fe_series.cc.o
[ 26%] Building CXX object source/lac/CMakeFiles/obj_lac_debug.dir/la_parallel_vector.cc.o
[ 26%] Building CXX object source/numerics/CMakeFiles/obj_numerics_debug.dir/error_estimator.cc.o
[ 26%] Building CXX object source/fe/CMakeFiles/obj_fe_debug.dir/fe_series_fourier.cc.o
[ 26%] Building CXX object source/lac/CMakeFiles/obj_lac_debug.dir/la_parallel_block_vector.cc.o
[ 26%] Building CXX object source/fe/CMakeFiles/obj_fe_debug.dir/fe_series_legendre.cc.o
[ 26%] Building CXX object source/lac/CMakeFiles/obj_lac_debug.dir/matrix_out.cc.o
[ 26%] Building CXX object source/fe/CMakeFiles/obj_fe_debug.dir/fe_system.cc.o
[ 26%] Building CXX object source/lac/CMakeFiles/obj_lac_debug.dir/precondition_block.cc.o
[ 26%] Building CXX object source/numerics/CMakeFiles/obj_numerics_debug.dir/error_estimator_inst2.cc.o
[ 26%] Building CXX object source/lac/CMakeFiles/obj_lac_debug.dir/precondition_block_ez.cc.o
[ 26%] Building CXX object source/fe/CMakeFiles/obj_fe_debug.dir/fe_simplex_p.cc.o
[ 26%] Building CXX object source/lac/CMakeFiles/obj_lac_debug.dir/relaxation_block.cc.o
[ 26%] Building CXX object source/fe/CMakeFiles/obj_fe_debug.dir/fe_simplex_p_bubbles.cc.o
[ 26%] Building CXX object source/lac/CMakeFiles/obj_lac_debug.dir/read_write_vector.cc.o
[ 26%] Building CXX object source/lac/CMakeFiles/obj_lac_debug.dir/solver.cc.o
[ 26%] Building CXX object source/fe/CMakeFiles/obj_fe_debug.dir/fe_trace.cc.o
[ 26%] Building CXX object source/numerics/CMakeFiles/obj_numerics_debug.dir/fe_field_function.cc.o
[ 26%] Building CXX object source/fe/CMakeFiles/obj_fe_debug.dir/fe_wedge_p.cc.o
[ 27%] Building CXX object source/lac/CMakeFiles/obj_lac_debug.dir/solver_bicgstab.cc.o
[ 28%] Building CXX object source/fe/CMakeFiles/obj_fe_debug.dir/mapping_c1.cc.o
[ 28%] Building CXX object source/lac/CMakeFiles/obj_lac_debug.dir/solver_control.cc.o
[ 28%] Building CXX object source/fe/CMakeFiles/obj_fe_debug.dir/mapping_cartesian.cc.o
[ 28%] Building CXX object source/lac/CMakeFiles/obj_lac_debug.dir/sparse_decomposition.cc.o
[ 28%] Building CXX object source/lac/CMakeFiles/obj_lac_debug.dir/sparse_direct.cc.o
[ 28%] Building CXX object source/numerics/CMakeFiles/obj_numerics_debug.dir/matrix_creator.cc.o
[ 28%] Building CXX object source/fe/CMakeFiles/obj_fe_debug.dir/mapping.cc.o
[ 28%] Building CXX object source/lac/CMakeFiles/obj_lac_debug.dir/sparse_ilu.cc.o
[ 28%] Building CXX object source/lac/CMakeFiles/obj_lac_debug.dir/sparse_matrix_ez.cc.o
[ 28%] Building CXX object source/fe/CMakeFiles/obj_fe_debug.dir/mapping_q1.cc.o
[ 28%] Building CXX object source/lac/CMakeFiles/obj_lac_debug.dir/sparse_mic.cc.o
[ 28%] Building CXX object source/numerics/CMakeFiles/obj_numerics_debug.dir/matrix_creator_inst2.cc.o
[ 28%] Building CXX object source/fe/CMakeFiles/obj_fe_debug.dir/mapping_q.cc.o
[ 28%] Building CXX object source/lac/CMakeFiles/obj_lac_debug.dir/sparse_vanka.cc.o
[ 28%] Building CXX object source/lac/CMakeFiles/obj_lac_debug.dir/sparsity_pattern.cc.o
[ 28%] Building CXX object source/fe/CMakeFiles/obj_fe_debug.dir/mapping_q_cache.cc.o
[ 28%] Building CXX object source/lac/CMakeFiles/obj_lac_debug.dir/sparsity_tools.cc.o
[ 28%] Building CXX object source/numerics/CMakeFiles/obj_numerics_debug.dir/matrix_creator_inst3.cc.o
[ 28%] Building CXX object source/lac/CMakeFiles/obj_lac_debug.dir/vector.cc.o
[ 28%] Building CXX object source/lac/CMakeFiles/obj_lac_debug.dir/vector_memory.cc.o
[ 28%] Building CXX object source/fe/CMakeFiles/obj_fe_debug.dir/mapping_manifold.cc.o
[ 29%] Building CXX object source/lac/CMakeFiles/obj_lac_debug.dir/trilinos_block_sparse_matrix.cc.o
[ 29%] Building CXX object source/fe/CMakeFiles/obj_fe_debug.dir/fe_values.cc.o
[ 29%] Building CXX object source/lac/CMakeFiles/obj_lac_debug.dir/trilinos_block_vector.cc.o
[ 29%] Building CXX object source/lac/CMakeFiles/obj_lac_debug.dir/trilinos_epetra_communication_pattern.cc.o
[ 29%] Building CXX object source/numerics/CMakeFiles/obj_numerics_debug.dir/point_value_history.cc.o
[ 29%] Building CXX object source/lac/CMakeFiles/obj_lac_debug.dir/trilinos_epetra_vector.cc.o
[ 29%] Building CXX object source/lac/CMakeFiles/obj_lac_debug.dir/trilinos_precondition.cc.o
[ 29%] Building CXX object source/fe/CMakeFiles/obj_fe_debug.dir/fe_values_extractors.cc.o
[ 29%] Building CXX object source/lac/CMakeFiles/obj_lac_debug.dir/trilinos_precondition_ml.cc.o
[ 29%] Building CXX object source/fe/CMakeFiles/obj_fe_debug.dir/fe_values_inst2.cc.o
[ 30%] Building CXX object source/numerics/CMakeFiles/obj_numerics_debug.dir/smoothness_estimator.cc.o
[ 30%] Building CXX object source/lac/CMakeFiles/obj_lac_debug.dir/trilinos_solver.cc.o
[ 30%] Building CXX object source/lac/CMakeFiles/obj_lac_debug.dir/trilinos_sparse_matrix.cc.o
[ 30%] Building CXX object source/lac/CMakeFiles/obj_lac_debug.dir/trilinos_sparsity_pattern.cc.o
[ 30%] Building CXX object source/lac/CMakeFiles/obj_lac_debug.dir/trilinos_tpetra_communication_pattern.cc.o
[ 30%] Building CXX object source/lac/CMakeFiles/obj_lac_debug.dir/trilinos_tpetra_vector.cc.o
[ 30%] Building CXX object source/numerics/CMakeFiles/obj_numerics_debug.dir/solution_transfer.cc.o
[ 30%] Building CXX object source/lac/CMakeFiles/obj_lac_debug.dir/trilinos_vector.cc.o
[ 30%] Building CXX object source/lac/CMakeFiles/obj_lac_debug.dir/full_matrix.cc.o
[ 30%] Building CXX object source/fe/CMakeFiles/obj_fe_debug.dir/fe_values_inst3.cc.o
[ 31%] Building CXX object source/lac/CMakeFiles/obj_lac_debug.dir/lapack_full_matrix.cc.o
[ 31%] Building CXX object source/lac/CMakeFiles/obj_lac_debug.dir/qr.cc.o
[ 31%] Building CXX object source/numerics/CMakeFiles/obj_numerics_debug.dir/solution_transfer_inst2.cc.o
[ 31%] Building CXX object source/lac/CMakeFiles/obj_lac_debug.dir/sparse_matrix.cc.o
[ 31%] Building CXX object source/lac/CMakeFiles/obj_lac_debug.dir/sparse_matrix_inst2.cc.o
[ 31%] Building CXX object source/numerics/CMakeFiles/obj_numerics_debug.dir/solution_transfer_inst3.cc.o
[ 31%] Building CXX object source/lac/CMakeFiles/obj_lac_debug.dir/tridiagonal_matrix.cc.o
[ 31%] Building CXX object source/fe/CMakeFiles/obj_fe_debug.dir/fe_values_inst4.cc.o
[ 31%] Building CXX object source/lac/CMakeFiles/obj_lac_debug.dir/utilities.cc.o
[ 31%] Building CXX object source/lac/CMakeFiles/obj_lac_debug.dir/trilinos_precondition_muelu.cc.o
[ 31%] Built target obj_lac_debug
[ 31%] Building CXX object source/fe/CMakeFiles/obj_fe_debug.dir/fe_values_inst5.cc.o
[ 31%] Building CXX object source/base/CMakeFiles/obj_base_debug.dir/auto_derivative_function.cc.o
[ 31%] Building CXX object source/numerics/CMakeFiles/obj_numerics_debug.dir/solution_transfer_inst4.cc.o
[ 32%] Building CXX object source/base/CMakeFiles/obj_base_debug.dir/bounding_box.cc.o
[ 32%] Building CXX object source/base/CMakeFiles/obj_base_debug.dir/conditional_ostream.cc.o
[ 32%] Building CXX object source/base/CMakeFiles/obj_base_debug.dir/convergence_table.cc.o
[ 32%] Building CXX object source/base/CMakeFiles/obj_base_debug.dir/discrete_time.cc.o
[ 32%] Building CXX object source/base/CMakeFiles/obj_base_debug.dir/event.cc.o
[ 33%] Building CXX object source/fe/CMakeFiles/obj_fe_debug.dir/fe_values_inst6.cc.o
[ 33%] Building CXX object source/base/CMakeFiles/obj_base_debug.dir/exceptions.cc.o
[ 33%] Building CXX object source/base/CMakeFiles/obj_base_debug.dir/flow_function.cc.o
[ 33%] Building CXX object source/numerics/CMakeFiles/obj_numerics_debug.dir/vector_tools_integrate_difference.cc.o
[ 33%] Building CXX object source/base/CMakeFiles/obj_base_debug.dir/function.cc.o
[ 33%] Building CXX object source/base/CMakeFiles/obj_base_debug.dir/function_cspline.cc.o
[ 33%] Building CXX object source/base/CMakeFiles/obj_base_debug.dir/function_derivative.cc.o
[ 33%] Building CXX object source/numerics/CMakeFiles/obj_numerics_debug.dir/vector_tools_interpolate.cc.o
[ 33%] Building CXX object source/base/CMakeFiles/obj_base_debug.dir/function_level_set.cc.o
[ 33%] Building CXX object source/base/CMakeFiles/obj_base_debug.dir/function_lib.cc.o
[ 33%] Building CXX object source/base/CMakeFiles/obj_base_debug.dir/function_lib_cutoff.cc.o
[ 33%] Building CXX object source/fe/CMakeFiles/obj_fe_debug.dir/mapping_fe_field.cc.o
[ 34%] Building CXX object source/base/CMakeFiles/obj_base_debug.dir/function_parser.cc.o
[ 34%] Building CXX object source/base/CMakeFiles/obj_base_debug.dir/function_restriction.cc.o
[ 34%] Building CXX object source/base/CMakeFiles/obj_base_debug.dir/function_spherical.cc.o
[ 34%] Building CXX object source/base/CMakeFiles/obj_base_debug.dir/function_time.cc.o
[ 34%] Building CXX object source/base/CMakeFiles/obj_base_debug.dir/function_tools.cc.o
[ 34%] Building CXX object source/numerics/CMakeFiles/obj_numerics_debug.dir/vector_tools_point_value.cc.o
[ 34%] Building CXX object source/base/CMakeFiles/obj_base_debug.dir/geometry_info.cc.o
[ 34%] Building CXX object source/base/CMakeFiles/obj_base_debug.dir/geometric_utilities.cc.o
[ 34%] Building CXX object source/base/CMakeFiles/obj_base_debug.dir/graph_coloring.cc.o
[ 34%] Building CXX object source/base/CMakeFiles/obj_base_debug.dir/incremental_function.cc.o
[ 34%] Building CXX object source/numerics/CMakeFiles/obj_numerics_debug.dir/vector_tools_project.cc.o
[ 34%] Building CXX object source/base/CMakeFiles/obj_base_debug.dir/index_set.cc.o
[ 34%] Building CXX object source/base/CMakeFiles/obj_base_debug.dir/job_identifier.cc.o
[ 34%] Building CXX object source/base/CMakeFiles/obj_base_debug.dir/logstream.cc.o
[ 35%] Building CXX object source/base/CMakeFiles/obj_base_debug.dir/hdf5.cc.o
[ 35%] Building CXX object source/fe/CMakeFiles/obj_fe_debug.dir/mapping_fe_field_inst2.cc.o
[ 35%] Building CXX object source/base/CMakeFiles/obj_base_debug.dir/mpi.cc.o
[ 35%] Building CXX object source/numerics/CMakeFiles/obj_numerics_debug.dir/vector_tools_project_hp.cc.o
[ 35%] Building CXX object source/base/CMakeFiles/obj_base_debug.dir/mpi_consensus_algorithms.cc.o
[ 35%] Building CXX object source/base/CMakeFiles/obj_base_debug.dir/mpi_noncontiguous_partitioner.cc.o
[ 35%] Building CXX object source/base/CMakeFiles/obj_base_debug.dir/mpi_remote_point_evaluation.cc.o
[ 35%] Building CXX object source/numerics/CMakeFiles/obj_numerics_debug.dir/vector_tools_project_codim.cc.o
[ 35%] Building CXX object source/base/CMakeFiles/obj_base_debug.dir/mu_parser_internal.cc.o
[ 35%] Building CXX object source/base/CMakeFiles/obj_base_debug.dir/multithread_info.cc.o
[ 35%] Building CXX object source/fe/CMakeFiles/obj_fe_debug.dir/fe_tools.cc.o
[ 35%] Building CXX object source/base/CMakeFiles/obj_base_debug.dir/named_selection.cc.o
[ 35%] Building CXX object source/numerics/CMakeFiles/obj_numerics_debug.dir/vector_tools_project_qp.cc.o
[ 35%] Building CXX object source/base/CMakeFiles/obj_base_debug.dir/numbers.cc.o
[ 35%] Building CXX object source/base/CMakeFiles/obj_base_debug.dir/parallel.cc.o
[ 35%] Building CXX object source/base/CMakeFiles/obj_base_debug.dir/parameter_handler.cc.o
[ 35%] Building CXX object source/base/CMakeFiles/obj_base_debug.dir/parameter_acceptor.cc.o
[ 35%] Building CXX object source/base/CMakeFiles/obj_base_debug.dir/parsed_convergence_table.cc.o
[ 35%] Building CXX object source/fe/CMakeFiles/obj_fe_debug.dir/fe_tools_interpolate.cc.o
[ 36%] Building CXX object source/numerics/CMakeFiles/obj_numerics_debug.dir/vector_tools_project_qpmf.cc.o
[ 37%] Building CXX object source/base/CMakeFiles/obj_base_debug.dir/parsed_function.cc.o
[ 37%] Building CXX object source/base/CMakeFiles/obj_base_debug.dir/partitioner.cc.o
[ 37%] Building CXX object source/base/CMakeFiles/obj_base_debug.dir/patterns.cc.o
[ 37%] Building CXX object source/base/CMakeFiles/obj_base_debug.dir/path_search.cc.o
[ 37%] Building CXX object source/base/CMakeFiles/obj_base_debug.dir/polynomial.cc.o
[ 37%] Building CXX object source/fe/CMakeFiles/obj_fe_debug.dir/fe_tools_extrapolate.cc.o
[ 37%] Building CXX object source/base/CMakeFiles/obj_base_debug.dir/polynomials_abf.cc.o
[ 37%] Built target obj_numerics_debug
[ 37%] Building CXX object source/base/CMakeFiles/obj_base_debug.dir/polynomials_adini.cc.o
[ 37%] Building CXX object source/gmsh/CMakeFiles/obj_gmsh_debug.dir/utilities.cc.o
[ 37%] Building CXX object source/base/CMakeFiles/obj_base_debug.dir/tensor_polynomials_base.cc.o
[ 37%] Building CXX object source/base/CMakeFiles/obj_base_debug.dir/polynomials_barycentric.cc.o
[ 37%] Built target obj_gmsh_debug
[ 37%] Building CXX object source/base/CMakeFiles/obj_base_debug.dir/polynomials_bernstein.cc.o
[ 37%] Building CXX object source/grid/CMakeFiles/obj_grid_debug.dir/cell_id.cc.o
[ 37%] Building CXX object source/base/CMakeFiles/obj_base_debug.dir/polynomials_bdm.cc.o
[ 37%] Building CXX object source/grid/CMakeFiles/obj_grid_debug.dir/grid_refinement.cc.o
[ 37%] Building CXX object source/base/CMakeFiles/obj_base_debug.dir/polynomials_bernardi_raugel.cc.o
[ 38%] Building CXX object source/base/CMakeFiles/obj_base_debug.dir/polynomials_nedelec.cc.o
[ 38%] Building CXX object source/fe/CMakeFiles/obj_fe_debug.dir/mapping_fe.cc.o
[ 38%] Building CXX object source/grid/CMakeFiles/obj_grid_debug.dir/grid_reordering.cc.o
[ 38%] Building CXX object source/base/CMakeFiles/obj_base_debug.dir/polynomials_integrated_legendre_sz.cc.o
[ 38%] Building CXX object source/grid/CMakeFiles/obj_grid_debug.dir/intergrid_map.cc.o
[ 38%] Building CXX object source/base/CMakeFiles/obj_base_debug.dir/polynomial_space.cc.o
[ 38%] Building CXX object source/base/CMakeFiles/obj_base_debug.dir/polynomials_p.cc.o
[ 38%] Building CXX object source/grid/CMakeFiles/obj_grid_debug.dir/manifold.cc.o
[ 38%] Building CXX object source/fe/CMakeFiles/obj_fe_debug.dir/mapping_q_generic.cc.o
[ 38%] Building CXX object source/base/CMakeFiles/obj_base_debug.dir/polynomials_piecewise.cc.o
[ 38%] Building CXX object source/base/CMakeFiles/obj_base_debug.dir/polynomials_pyramid.cc.o
[ 38%] Building CXX object source/base/CMakeFiles/obj_base_debug.dir/polynomials_rannacher_turek.cc.o
[ 38%] Building CXX object source/grid/CMakeFiles/obj_grid_debug.dir/manifold_lib.cc.o
[ 38%] Building CXX object source/base/CMakeFiles/obj_base_debug.dir/polynomials_raviart_thomas.cc.o
[ 38%] Building CXX object source/base/CMakeFiles/obj_base_debug.dir/polynomials_rt_bubbles.cc.o
[ 38%] Building CXX object source/base/CMakeFiles/obj_base_debug.dir/polynomials_wedge.cc.o
[ 38%] Building CXX object source/fe/CMakeFiles/obj_fe_debug.dir/mapping_q1_eulerian.cc.o
[ 38%] Building CXX object source/base/CMakeFiles/obj_base_debug.dir/process_grid.cc.o
[ 38%] Building CXX object source/grid/CMakeFiles/obj_grid_debug.dir/persistent_tria.cc.o
[ 38%] Building CXX object source/base/CMakeFiles/obj_base_debug.dir/qprojector.cc.o
[ 39%] Building CXX object source/grid/CMakeFiles/obj_grid_debug.dir/reference_cell.cc.o
[ 39%] Building CXX object source/fe/CMakeFiles/obj_fe_debug.dir/mapping_q_eulerian.cc.o
[ 39%] Building CXX object source/base/CMakeFiles/obj_base_debug.dir/quadrature.cc.o
[ 40%] Building CXX object source/base/CMakeFiles/obj_base_debug.dir/quadrature_lib.cc.o
[ 40%] Building CXX object source/grid/CMakeFiles/obj_grid_debug.dir/tria_accessor.cc.o
[ 40%] Building CXX object source/base/CMakeFiles/obj_base_debug.dir/quadrature_selector.cc.o
[ 40%] Building CXX object source/base/CMakeFiles/obj_base_debug.dir/scalar_polynomials_base.cc.o
[ 40%] Building CXX object source/base/CMakeFiles/obj_base_debug.dir/subscriptor.cc.o
[ 40%] Building CXX object source/base/CMakeFiles/obj_base_debug.dir/symbolic_function.cc.o
[ 40%] Built target obj_fe_debug
[ 40%] Building CXX object source/base/CMakeFiles/obj_base_debug.dir/table_handler.cc.o
[ 40%] Building CXX object source/grid/CMakeFiles/obj_grid_debug.dir/tria_description.cc.o
[ 40%] Building CXX object source/grid/CMakeFiles/obj_grid_debug.dir/tria_faces.cc.o
[ 40%] Building CXX object source/base/CMakeFiles/obj_base_debug.dir/tensor.cc.o
[ 40%] Building CXX object source/base/CMakeFiles/obj_base_debug.dir/tensor_function.cc.o
[ 40%] Building CXX object source/grid/CMakeFiles/obj_grid_debug.dir/tria_levels.cc.o
[ 40%] Building CXX object source/grid/CMakeFiles/obj_grid_debug.dir/tria_objects.cc.o
[ 40%] Building CXX object source/base/CMakeFiles/obj_base_debug.dir/tensor_function_parser.cc.o
[ 40%] Building CXX object source/base/CMakeFiles/obj_base_debug.dir/tensor_product_polynomials.cc.o
[ 40%] Building CXX object source/grid/CMakeFiles/obj_grid_debug.dir/grid_generator_from_name.cc.o
[ 40%] Building CXX object source/grid/CMakeFiles/obj_grid_debug.dir/grid_in.cc.o
[ 40%] Building CXX object source/base/CMakeFiles/obj_base_debug.dir/tensor_product_polynomials_bubbles.cc.o
[ 40%] Building CXX object source/base/CMakeFiles/obj_base_debug.dir/tensor_product_polynomials_const.cc.o
[ 40%] Building CXX object source/grid/CMakeFiles/obj_grid_debug.dir/grid_out.cc.o
[ 41%] Building CXX object source/base/CMakeFiles/obj_base_debug.dir/thread_management.cc.o
[ 41%] Building CXX object source/base/CMakeFiles/obj_base_debug.dir/timer.cc.o
[ 41%] Building CXX object source/base/CMakeFiles/obj_base_debug.dir/time_stepping.cc.o
[ 41%] Building CXX object source/grid/CMakeFiles/obj_grid_debug.dir/grid_generator.cc.o
[ 41%] Building CXX object source/base/CMakeFiles/obj_base_debug.dir/utilities.cc.o
[ 41%] Building CXX object source/grid/CMakeFiles/obj_grid_debug.dir/grid_tools.cc.o
[ 41%] Building CXX object source/base/CMakeFiles/obj_base_debug.dir/vectorization.cc.o
[ 41%] Building CXX object source/base/CMakeFiles/obj_base_debug.dir/data_out_base.cc.o
[ 41%] Building CXX object source/base/CMakeFiles/obj_base_debug.dir/symmetric_tensor.cc.o
[ 41%] Building CXX object source/grid/CMakeFiles/obj_grid_debug.dir/grid_tools_cache.cc.o
[ 41%] Building CXX object source/hp/CMakeFiles/obj_hp_debug.dir/fe_collection.cc.o
[ 41%] Building CXX object source/hp/CMakeFiles/obj_hp_debug.dir/fe_values.cc.o
[ 41%] Built target obj_base_debug
[ 41%] Building CXX object source/hp/CMakeFiles/obj_hp_debug.dir/mapping_collection.cc.o
[ 41%] Building CXX object source/grid/CMakeFiles/obj_grid_debug.dir/grid_tools_nontemplates.cc.o
[ 42%] Building CXX object source/grid/CMakeFiles/obj_grid_debug.dir/grid_tools_dof_handlers.cc.o
[ 42%] Building CXX object source/hp/CMakeFiles/obj_hp_debug.dir/refinement.cc.o
[ 42%] Building CXX object source/hp/CMakeFiles/obj_hp_debug.dir/dof_handler.cc.o
[ 42%] Building CXX object source/grid/CMakeFiles/obj_grid_debug.dir/tria.cc.o
[ 42%] Built target obj_hp_debug
[ 43%] Building CXX object source/multigrid/CMakeFiles/obj_multigrid_debug.dir/mg_base.cc.o
[ 43%] Building CXX object source/multigrid/CMakeFiles/obj_multigrid_debug.dir/mg_level_global_transfer.cc.o
[ 43%] Building CXX object source/multigrid/CMakeFiles/obj_multigrid_debug.dir/mg_transfer_block.cc.o
[ 43%] Building CXX object source/multigrid/CMakeFiles/obj_multigrid_debug.dir/mg_transfer_component.cc.o
[ 43%] Building CXX object source/distributed/CMakeFiles/obj_distributed_debug.dir/grid_refinement.cc.o
[ 43%] Building CXX object source/distributed/CMakeFiles/obj_distributed_debug.dir/cell_weights.cc.o
[ 43%] Building CXX object source/multigrid/CMakeFiles/obj_multigrid_debug.dir/mg_transfer_global_coarsening.cc.o
[ 43%] Built target obj_grid_debug
[ 43%] Building CXX object source/multigrid/CMakeFiles/obj_multigrid_debug.dir/mg_transfer_internal.cc.o
[ 43%] Building CXX object source/distributed/CMakeFiles/obj_distributed_debug.dir/cell_data_transfer.cc.o
[ 43%] Building CXX object source/distributed/CMakeFiles/obj_distributed_debug.dir/fully_distributed_tria.cc.o
[ 43%] Building CXX object source/multigrid/CMakeFiles/obj_multigrid_debug.dir/mg_transfer_prebuilt.cc.o
[ 44%] Building CXX object source/distributed/CMakeFiles/obj_distributed_debug.dir/solution_transfer.cc.o
[ 44%] Building CXX object source/distributed/CMakeFiles/obj_distributed_debug.dir/tria.cc.o
[ 44%] Building CXX object source/multigrid/CMakeFiles/obj_multigrid_debug.dir/multigrid.cc.o
[ 44%] Building CXX object source/multigrid/CMakeFiles/obj_multigrid_debug.dir/mg_tools.cc.o
[ 44%] Building CXX object source/distributed/CMakeFiles/obj_distributed_debug.dir/tria_base.cc.o
[ 44%] Building CXX object source/multigrid/CMakeFiles/obj_multigrid_debug.dir/mg_transfer_matrix_free.cc.o
[ 44%] Building CXX object source/distributed/CMakeFiles/obj_distributed_debug.dir/shared_tria.cc.o
[ 44%] Building CXX object source/algorithms/CMakeFiles/obj_algorithms_debug.dir/general_data_storage.cc.o
[ 44%] Built target obj_multigrid_debug
[ 44%] Building CXX object source/matrix_free/CMakeFiles/obj_matrix_free_debug.dir/dof_info.cc.o
[ 44%] Building CXX object source/algorithms/CMakeFiles/obj_algorithms_debug.dir/operator.cc.o
[ 44%] Building CXX object source/distributed/CMakeFiles/obj_distributed_debug.dir/p4est_wrappers.cc.o
[ 44%] Built target obj_distributed_debug
[ 44%] Building CXX object source/meshworker/CMakeFiles/obj_meshworker_debug.dir/mesh_worker.cc.o
[ 44%] Building CXX object source/matrix_free/CMakeFiles/obj_matrix_free_debug.dir/evaluation_template_factory.cc.o
[ 44%] Building CXX object source/algorithms/CMakeFiles/obj_algorithms_debug.dir/timestep_control.cc.o
[ 44%] Building CXX object source/meshworker/CMakeFiles/obj_meshworker_debug.dir/mesh_worker_info.cc.o
[ 44%] Built target obj_algorithms_debug
[ 44%] Building CXX object source/meshworker/CMakeFiles/obj_meshworker_debug.dir/mesh_worker_vector_selector.cc.o
[ 44%] Building CXX object source/opencascade/CMakeFiles/obj_opencascade_debug.dir/utilities.cc.o
[ 44%] Building CXX object source/meshworker/CMakeFiles/obj_meshworker_debug.dir/scratch_data.cc.o
[ 45%] Building CXX object source/opencascade/CMakeFiles/obj_opencascade_debug.dir/manifold_lib.cc.o
[ 45%] Building CXX object source/matrix_free/CMakeFiles/obj_matrix_free_debug.dir/evaluation_template_factory_inst2.cc.o
[ 45%] Built target obj_opencascade_debug
[ 45%] Building CXX object source/matrix_free/CMakeFiles/obj_matrix_free_debug.dir/evaluation_template_factory_inst3.cc.o
[ 45%] Built target obj_meshworker_debug
[ 45%] Building CXX object source/matrix_free/CMakeFiles/obj_matrix_free_debug.dir/evaluation_template_factory_inst4.cc.o
[ 45%] Building CXX object source/particles/CMakeFiles/obj_particle_debug.dir/data_out.cc.o
[ 45%] Building CXX object source/particles/CMakeFiles/obj_particle_debug.dir/particle.cc.o
[ 45%] Building CXX object source/particles/CMakeFiles/obj_particle_debug.dir/particle_handler.cc.o
[ 45%] Building CXX object source/matrix_free/CMakeFiles/obj_matrix_free_debug.dir/evaluation_template_factory_inst5.cc.o
[ 45%] Building CXX object source/particles/CMakeFiles/obj_particle_debug.dir/generators.cc.o
[ 45%] Building CXX object source/matrix_free/CMakeFiles/obj_matrix_free_debug.dir/evaluation_template_factory_inst6.cc.o
[ 45%] Building CXX object source/particles/CMakeFiles/obj_particle_debug.dir/property_pool.cc.o
[ 45%] Building CXX object source/particles/CMakeFiles/obj_particle_debug.dir/utilities.cc.o
[ 45%] Built target obj_particle_debug
[ 45%] Building CXX object source/matrix_free/CMakeFiles/obj_matrix_free_debug.dir/fe_point_evaluation.cc.o
[ 45%] Building CXX object source/differentiation/ad/CMakeFiles/obj_differentiation_ad_debug.dir/ad_drivers.cc.o
[ 45%] Building CXX object source/differentiation/ad/CMakeFiles/obj_differentiation_ad_debug.dir/ad_helpers.cc.o
[ 45%] Building CXX object source/matrix_free/CMakeFiles/obj_matrix_free_debug.dir/mapping_info.cc.o
[ 45%] Building CXX object source/differentiation/ad/CMakeFiles/obj_differentiation_ad_debug.dir/adolc_number_types.cc.o
[ 46%] Building CXX object source/matrix_free/CMakeFiles/obj_matrix_free_debug.dir/mapping_info_inst2.cc.o
[ 47%] Building CXX object source/differentiation/ad/CMakeFiles/obj_differentiation_ad_debug.dir/sacado_number_types.cc.o
[ 47%] Built target obj_differentiation_ad_debug
[ 47%] Building CXX object source/differentiation/sd/CMakeFiles/obj_differentiation_sd_debug.dir/symengine_math.cc.o
[ 47%] Building CXX object source/differentiation/sd/CMakeFiles/obj_differentiation_sd_debug.dir/symengine_number_types.cc.o
[ 47%] Building CXX object source/differentiation/sd/CMakeFiles/obj_differentiation_sd_debug.dir/symengine_number_visitor_internal.cc.o
[ 47%] Building CXX object source/differentiation/sd/CMakeFiles/obj_differentiation_sd_debug.dir/symengine_optimizer.cc.o
[ 47%] Building CXX object source/differentiation/sd/CMakeFiles/obj_differentiation_sd_debug.dir/symengine_scalar_operations.cc.o
[ 47%] Building CXX object source/differentiation/sd/CMakeFiles/obj_differentiation_sd_debug.dir/symengine_tensor_operations.cc.o
[ 47%] Building CXX object source/differentiation/sd/CMakeFiles/obj_differentiation_sd_debug.dir/symengine_types.cc.o
[ 47%] Building CXX object source/differentiation/sd/CMakeFiles/obj_differentiation_sd_debug.dir/symengine_utilities.cc.o
[ 47%] Building CXX object source/matrix_free/CMakeFiles/obj_matrix_free_debug.dir/mapping_info_inst3.cc.o
[ 47%] Built target obj_differentiation_sd_debug
[ 47%] Building CXX object source/matrix_free/CMakeFiles/obj_matrix_free_debug.dir/matrix_free.cc.o
[ 47%] Building CXX object source/physics/CMakeFiles/obj_physics_debug.dir/transformations.cc.o
[ 47%] Built target obj_physics_debug
[ 47%] Building CXX object source/matrix_free/CMakeFiles/obj_matrix_free_debug.dir/shape_info.cc.o
[ 47%] Building CXX object source/physics/elasticity/CMakeFiles/obj_physics_elasticity_debug.dir/kinematics.cc.o
[ 47%] Building CXX object source/physics/elasticity/CMakeFiles/obj_physics_elasticity_debug.dir/standard_tensors.cc.o
[ 47%] Building CXX object source/matrix_free/CMakeFiles/obj_matrix_free_debug.dir/task_info.cc.o
[ 47%] Building CXX object source/matrix_free/CMakeFiles/obj_matrix_free_debug.dir/vector_data_exchange.cc.o
[ 47%] Built target obj_physics_elasticity_debug
[ 47%] Building CXX object source/non_matching/CMakeFiles/obj_non_matching_debug.dir/coupling.cc.o
[ 47%] Building CXX object source/sundials/CMakeFiles/obj_sundials_debug.dir/arkode.cc.o
[ 47%] Built target obj_matrix_free_debug
[ 47%] Building CXX object source/sundials/CMakeFiles/obj_sundials_debug.dir/ida.cc.o
[ 47%] Building CXX object source/arborx/CMakeFiles/obj_arborx_release.dir/access_traits.cc.o
[ 47%] Built target obj_arborx_release
[ 47%] Building CXX object source/sundials/CMakeFiles/obj_sundials_debug.dir/kinsol.cc.o
[ 47%] Building CXX object source/numerics/CMakeFiles/obj_numerics_release.dir/data_out.cc.o
[ 47%] Building CXX object source/sundials/CMakeFiles/obj_sundials_debug.dir/n_vector.cc.o
[ 47%] Building CXX object source/sundials/CMakeFiles/obj_sundials_debug.dir/sunlinsol_wrapper.cc.o
[ 47%] Building CXX object source/non_matching/CMakeFiles/obj_non_matching_debug.dir/immersed_surface_quadrature.cc.o
[ 47%] Built target obj_sundials_debug
[ 47%] Building CXX object source/fe/CMakeFiles/obj_fe_release.dir/block_mask.cc.o
[ 47%] Building CXX object source/fe/CMakeFiles/obj_fe_release.dir/component_mask.cc.o
[ 47%] Built target obj_non_matching_debug
[ 47%] Building CXX object source/fe/CMakeFiles/obj_fe_release.dir/fe_abf.cc.o
[ 47%] Building CXX object source/fe/CMakeFiles/obj_fe_release.dir/fe_bernardi_raugel.cc.o
[ 47%] Building CXX object source/numerics/CMakeFiles/obj_numerics_release.dir/data_out_faces.cc.o
[ 47%] Building CXX object source/numerics/CMakeFiles/obj_numerics_release.dir/data_out_stack.cc.o
[ 47%] Building CXX object source/fe/CMakeFiles/obj_fe_release.dir/fe_bdm.cc.o
[ 47%] Building CXX object source/fe/CMakeFiles/obj_fe_release.dir/fe.cc.o
[ 47%] Building CXX object source/numerics/CMakeFiles/obj_numerics_release.dir/data_out_rotation.cc.o
[ 47%] Building CXX object source/fe/CMakeFiles/obj_fe_release.dir/fe_bernstein.cc.o
[ 47%] Building CXX object source/numerics/CMakeFiles/obj_numerics_release.dir/data_postprocessor.cc.o
[ 48%] Building CXX object source/numerics/CMakeFiles/obj_numerics_release.dir/dof_output_operator.cc.o
[ 48%] Building CXX object source/fe/CMakeFiles/obj_fe_release.dir/fe_data.cc.o
[ 48%] Building CXX object source/numerics/CMakeFiles/obj_numerics_release.dir/histogram.cc.o
[ 48%] Building CXX object source/fe/CMakeFiles/obj_fe_release.dir/fe_dgp.cc.o
[ 48%] Building CXX object source/numerics/CMakeFiles/obj_numerics_release.dir/matrix_tools_once.cc.o
[ 48%] Building CXX object source/fe/CMakeFiles/obj_fe_release.dir/fe_dgp_monomial.cc.o
[ 48%] Building CXX object source/numerics/CMakeFiles/obj_numerics_release.dir/matrix_tools.cc.o
[ 48%] Building CXX object source/numerics/CMakeFiles/obj_numerics_release.dir/time_dependent.cc.o
[ 48%] Building CXX object source/fe/CMakeFiles/obj_fe_release.dir/fe_dgp_nonparametric.cc.o
[ 50%] Building CXX object source/fe/CMakeFiles/obj_fe_release.dir/fe_dgq.cc.o
[ 50%] Building CXX object source/numerics/CMakeFiles/obj_numerics_release.dir/vector_tools_boundary.cc.o
[ 50%] Building CXX object source/numerics/CMakeFiles/obj_numerics_release.dir/vector_tools_constraints.cc.o
[ 50%] Building CXX object source/fe/CMakeFiles/obj_fe_release.dir/fe_dg_vector.cc.o
[ 50%] Building CXX object source/fe/CMakeFiles/obj_fe_release.dir/fe_enriched.cc.o
[ 50%] Building CXX object source/numerics/CMakeFiles/obj_numerics_release.dir/vector_tools_mean_value.cc.o
[ 50%] Building CXX object source/fe/CMakeFiles/obj_fe_release.dir/fe_face.cc.o
[ 50%] Building CXX object source/numerics/CMakeFiles/obj_numerics_release.dir/vector_tools_point_gradient.cc.o
[ 50%] Building CXX object source/fe/CMakeFiles/obj_fe_release.dir/fe_nedelec.cc.o
[ 50%] Building CXX object source/numerics/CMakeFiles/obj_numerics_release.dir/vector_tools_rhs.cc.o
[ 50%] Building CXX object source/fe/CMakeFiles/obj_fe_release.dir/fe_nedelec_sz.cc.o
[ 50%] Building CXX object source/numerics/CMakeFiles/obj_numerics_release.dir/cell_data_transfer.cc.o
[ 50%] Building CXX object source/fe/CMakeFiles/obj_fe_release.dir/fe_nothing.cc.o
[ 50%] Building CXX object source/fe/CMakeFiles/obj_fe_release.dir/fe_poly.cc.o
[ 50%] Building CXX object source/numerics/CMakeFiles/obj_numerics_release.dir/data_out_dof_data.cc.o
[ 51%] Building CXX object source/numerics/CMakeFiles/obj_numerics_release.dir/data_out_dof_data_inst2.cc.o
[ 51%] Building CXX object source/fe/CMakeFiles/obj_fe_release.dir/fe_poly_tensor.cc.o
[ 51%] Building CXX object source/fe/CMakeFiles/obj_fe_release.dir/fe_pyramid_p.cc.o
[ 51%] Building CXX object source/fe/CMakeFiles/obj_fe_release.dir/fe_p1nc.cc.o
[ 51%] Building CXX object source/fe/CMakeFiles/obj_fe_release.dir/fe_q_base.cc.o
[ 52%] Building CXX object source/fe/CMakeFiles/obj_fe_release.dir/fe_q.cc.o
[ 52%] Building CXX object source/fe/CMakeFiles/obj_fe_release.dir/fe_q_bubbles.cc.o
[ 52%] Building CXX object source/numerics/CMakeFiles/obj_numerics_release.dir/data_out_dof_data_codim.cc.o
[ 52%] Building CXX object source/fe/CMakeFiles/obj_fe_release.dir/fe_q_dg0.cc.o
[ 52%] Building CXX object source/numerics/CMakeFiles/obj_numerics_release.dir/derivative_approximation.cc.o
[ 52%] Building CXX object source/fe/CMakeFiles/obj_fe_release.dir/fe_q_hierarchical.cc.o
[ 52%] Building CXX object source/fe/CMakeFiles/obj_fe_release.dir/fe_q_iso_q1.cc.o
[ 52%] Building CXX object source/fe/CMakeFiles/obj_fe_release.dir/fe_rannacher_turek.cc.o
[ 52%] Building CXX object source/numerics/CMakeFiles/obj_numerics_release.dir/error_estimator_1d.cc.o
[ 52%] Building CXX object source/fe/CMakeFiles/obj_fe_release.dir/fe_raviart_thomas.cc.o
[ 52%] Building CXX object source/fe/CMakeFiles/obj_fe_release.dir/fe_raviart_thomas_nodal.cc.o
[ 52%] Building CXX object source/numerics/CMakeFiles/obj_numerics_release.dir/error_estimator.cc.o
[ 52%] Building CXX object source/fe/CMakeFiles/obj_fe_release.dir/fe_rt_bubbles.cc.o
[ 52%] Building CXX object source/fe/CMakeFiles/obj_fe_release.dir/fe_series.cc.o
[ 52%] Building CXX object source/fe/CMakeFiles/obj_fe_release.dir/fe_series_fourier.cc.o
[ 52%] Building CXX object source/numerics/CMakeFiles/obj_numerics_release.dir/error_estimator_inst2.cc.o
[ 52%] Building CXX object source/fe/CMakeFiles/obj_fe_release.dir/fe_series_legendre.cc.o
[ 52%] Building CXX object source/fe/CMakeFiles/obj_fe_release.dir/fe_system.cc.o
[ 52%] Building CXX object source/numerics/CMakeFiles/obj_numerics_release.dir/fe_field_function.cc.o
[ 53%] Building CXX object source/fe/CMakeFiles/obj_fe_release.dir/fe_simplex_p.cc.o
[ 53%] Building CXX object source/fe/CMakeFiles/obj_fe_release.dir/fe_simplex_p_bubbles.cc.o
[ 53%] Building CXX object source/numerics/CMakeFiles/obj_numerics_release.dir/matrix_creator.cc.o
[ 53%] Building CXX object source/fe/CMakeFiles/obj_fe_release.dir/fe_trace.cc.o
[ 53%] Building CXX object source/fe/CMakeFiles/obj_fe_release.dir/fe_wedge_p.cc.o
[ 53%] Building CXX object source/fe/CMakeFiles/obj_fe_release.dir/mapping_c1.cc.o
[ 53%] Building CXX object source/numerics/CMakeFiles/obj_numerics_release.dir/matrix_creator_inst2.cc.o
[ 53%] Building CXX object source/fe/CMakeFiles/obj_fe_release.dir/mapping_cartesian.cc.o
[ 53%] Building CXX object source/fe/CMakeFiles/obj_fe_release.dir/mapping.cc.o
[ 53%] Building CXX object source/fe/CMakeFiles/obj_fe_release.dir/mapping_q1.cc.o
[ 53%] Building CXX object source/numerics/CMakeFiles/obj_numerics_release.dir/matrix_creator_inst3.cc.o
[ 53%] Building CXX object source/fe/CMakeFiles/obj_fe_release.dir/mapping_q.cc.o
[ 53%] Building CXX object source/fe/CMakeFiles/obj_fe_release.dir/mapping_q_cache.cc.o
[ 53%] Building CXX object source/fe/CMakeFiles/obj_fe_release.dir/mapping_manifold.cc.o
[ 53%] Building CXX object source/numerics/CMakeFiles/obj_numerics_release.dir/point_value_history.cc.o
[ 53%] Building CXX object source/fe/CMakeFiles/obj_fe_release.dir/fe_values.cc.o
[ 53%] Building CXX object source/numerics/CMakeFiles/obj_numerics_release.dir/smoothness_estimator.cc.o
[ 54%] Building CXX object source/fe/CMakeFiles/obj_fe_release.dir/fe_values_extractors.cc.o
[ 54%] Building CXX object source/numerics/CMakeFiles/obj_numerics_release.dir/solution_transfer.cc.o
[ 54%] Building CXX object source/fe/CMakeFiles/obj_fe_release.dir/fe_values_inst2.cc.o
[ 55%] Building CXX object source/numerics/CMakeFiles/obj_numerics_release.dir/solution_transfer_inst2.cc.o
[ 55%] Building CXX object source/fe/CMakeFiles/obj_fe_release.dir/fe_values_inst3.cc.o
[ 55%] Building CXX object source/numerics/CMakeFiles/obj_numerics_release.dir/solution_transfer_inst3.cc.o
[ 55%] Building CXX object source/numerics/CMakeFiles/obj_numerics_release.dir/solution_transfer_inst4.cc.o
[ 55%] Building CXX object source/fe/CMakeFiles/obj_fe_release.dir/fe_values_inst4.cc.o
[ 55%] Building CXX object source/numerics/CMakeFiles/obj_numerics_release.dir/vector_tools_integrate_difference.cc.o
[ 55%] Building CXX object source/numerics/CMakeFiles/obj_numerics_release.dir/vector_tools_interpolate.cc.o
[ 55%] Building CXX object source/fe/CMakeFiles/obj_fe_release.dir/fe_values_inst5.cc.o
[ 55%] Building CXX object source/fe/CMakeFiles/obj_fe_release.dir/fe_values_inst6.cc.o
[ 55%] Building CXX object source/numerics/CMakeFiles/obj_numerics_release.dir/vector_tools_point_value.cc.o
[ 55%] Building CXX object source/fe/CMakeFiles/obj_fe_release.dir/mapping_fe_field.cc.o
[ 55%] Building CXX object source/numerics/CMakeFiles/obj_numerics_release.dir/vector_tools_project.cc.o
In file included from /tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/operators.h:30,
from /tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/numerics/vector_tools_project.templates.h:33,
from /tmp/makepkg/deal-ii/src/dealii-9.3.1/source/numerics/vector_tools_project.cc:17:
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h: In function ‘void dealii::FEEvaluationBase<dim, n_components_, Number, is_face, VectorizedArrayType>::read_write_operation(const VectorOperation&, const std::array<VectorType*, n_components_>&, const std::array<const std::vector<dealii::ArrayView<const typename VectorType::value_type> >*, n_components_>&, const std::bitset<VectorizedArrayType::size()>&, bool) const [with VectorType = dealii::LinearAlgebra::distributed::Vector<double>; VectorOperation = dealii::internal::VectorDistributorLocalToGlobal<double, dealii::VectorizedArray<double, 2> >; int dim = 1; int n_components_ = 4; Number = double; bool is_face = false; VectorizedArrayType = dealii::VectorizedArray<double, 2>]’:
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4562:24: warning: ‘void* __builtin_memset(void*, int, long unsigned int)’ offset [24, 2040] is out of the bounds [0, 16] of object ‘dof_indices’ with type ‘const unsigned int* [2]’ [-Warray-bounds]
4562 | dof_indices[v] = nullptr;
| ~~~~~~~~~~~~~~~^~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4492:25: note: ‘dof_indices’ declared here
4492 | const unsigned int * dof_indices[n_lanes];
| ^~~~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h: In function ‘void dealii::FEEvaluationBase<dim, n_components_, Number, is_face, VectorizedArrayType>::read_write_operation(const VectorOperation&, const std::array<VectorType*, n_components_>&, const std::array<const std::vector<dealii::ArrayView<const typename VectorType::value_type> >*, n_components_>&, const std::bitset<VectorizedArrayType::size()>&, bool) const [with VectorType = dealii::LinearAlgebra::distributed::Vector<double>; VectorOperation = dealii::internal::VectorReader<double, dealii::VectorizedArray<double, 2> >; int dim = 1; int n_components_ = 4; Number = double; bool is_face = false; VectorizedArrayType = dealii::VectorizedArray<double, 2>]’:
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4562:24: warning: ‘void* __builtin_memset(void*, int, long unsigned int)’ offset [24, 2040] is out of the bounds [0, 16] of object ‘dof_indices’ with type ‘const unsigned int* [2]’ [-Warray-bounds]
4562 | dof_indices[v] = nullptr;
| ~~~~~~~~~~~~~~~^~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4492:25: note: ‘dof_indices’ declared here
4492 | const unsigned int * dof_indices[n_lanes];
| ^~~~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h: In function ‘void dealii::FEEvaluationBase<dim, n_components_, Number, is_face, VectorizedArrayType>::read_write_operation(const VectorOperation&, const std::array<VectorType*, n_components_>&, const std::array<const std::vector<dealii::ArrayView<const typename VectorType::value_type> >*, n_components_>&, const std::bitset<VectorizedArrayType::size()>&, bool) const [with VectorType = dealii::LinearAlgebra::distributed::Vector<double>; VectorOperation = dealii::internal::VectorDistributorLocalToGlobal<double, dealii::VectorizedArray<double, 2> >; int dim = 1; int n_components_ = 3; Number = double; bool is_face = false; VectorizedArrayType = dealii::VectorizedArray<double, 2>]’:
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4562:24: warning: ‘void* __builtin_memset(void*, int, long unsigned int)’ offset [24, 2040] is out of the bounds [0, 16] of object ‘dof_indices’ with type ‘const unsigned int* [2]’ [-Warray-bounds]
4562 | dof_indices[v] = nullptr;
| ~~~~~~~~~~~~~~~^~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4492:25: note: ‘dof_indices’ declared here
4492 | const unsigned int * dof_indices[n_lanes];
| ^~~~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h: In function ‘void dealii::FEEvaluationBase<dim, n_components_, Number, is_face, VectorizedArrayType>::read_write_operation(const VectorOperation&, const std::array<VectorType*, n_components_>&, const std::array<const std::vector<dealii::ArrayView<const typename VectorType::value_type> >*, n_components_>&, const std::bitset<VectorizedArrayType::size()>&, bool) const [with VectorType = dealii::LinearAlgebra::distributed::Vector<double>; VectorOperation = dealii::internal::VectorReader<double, dealii::VectorizedArray<double, 2> >; int dim = 1; int n_components_ = 3; Number = double; bool is_face = false; VectorizedArrayType = dealii::VectorizedArray<double, 2>]’:
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4562:24: warning: ‘void* __builtin_memset(void*, int, long unsigned int)’ offset [24, 2040] is out of the bounds [0, 16] of object ‘dof_indices’ with type ‘const unsigned int* [2]’ [-Warray-bounds]
4562 | dof_indices[v] = nullptr;
| ~~~~~~~~~~~~~~~^~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4492:25: note: ‘dof_indices’ declared here
4492 | const unsigned int * dof_indices[n_lanes];
| ^~~~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h: In function ‘void dealii::FEEvaluationBase<dim, n_components_, Number, is_face, VectorizedArrayType>::read_write_operation(const VectorOperation&, const std::array<VectorType*, n_components_>&, const std::array<const std::vector<dealii::ArrayView<const typename VectorType::value_type> >*, n_components_>&, const std::bitset<VectorizedArrayType::size()>&, bool) const [with VectorType = dealii::LinearAlgebra::distributed::Vector<double>; VectorOperation = dealii::internal::VectorDistributorLocalToGlobal<double, dealii::VectorizedArray<double, 2> >; int dim = 1; int n_components_ = 2; Number = double; bool is_face = false; VectorizedArrayType = dealii::VectorizedArray<double, 2>]’:
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4562:24: warning: ‘void* __builtin_memset(void*, int, long unsigned int)’ offset [24, 2040] is out of the bounds [0, 16] of object ‘dof_indices’ with type ‘const unsigned int* [2]’ [-Warray-bounds]
4562 | dof_indices[v] = nullptr;
| ~~~~~~~~~~~~~~~^~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4492:25: note: ‘dof_indices’ declared here
4492 | const unsigned int * dof_indices[n_lanes];
| ^~~~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h: In function ‘void dealii::FEEvaluationBase<dim, n_components_, Number, is_face, VectorizedArrayType>::read_write_operation(const VectorOperation&, const std::array<VectorType*, n_components_>&, const std::array<const std::vector<dealii::ArrayView<const typename VectorType::value_type> >*, n_components_>&, const std::bitset<VectorizedArrayType::size()>&, bool) const [with VectorType = dealii::LinearAlgebra::distributed::Vector<double>; VectorOperation = dealii::internal::VectorReader<double, dealii::VectorizedArray<double, 2> >; int dim = 1; int n_components_ = 2; Number = double; bool is_face = false; VectorizedArrayType = dealii::VectorizedArray<double, 2>]’:
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4562:24: warning: ‘void* __builtin_memset(void*, int, long unsigned int)’ offset [24, 2040] is out of the bounds [0, 16] of object ‘dof_indices’ with type ‘const unsigned int* [2]’ [-Warray-bounds]
4562 | dof_indices[v] = nullptr;
| ~~~~~~~~~~~~~~~^~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4492:25: note: ‘dof_indices’ declared here
4492 | const unsigned int * dof_indices[n_lanes];
| ^~~~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h: In function ‘void dealii::FEEvaluationBase<dim, n_components_, Number, is_face, VectorizedArrayType>::read_write_operation(const VectorOperation&, const std::array<VectorType*, n_components_>&, const std::array<const std::vector<dealii::ArrayView<const typename VectorType::value_type> >*, n_components_>&, const std::bitset<VectorizedArrayType::size()>&, bool) const [with VectorType = dealii::LinearAlgebra::distributed::Vector<double>; VectorOperation = dealii::internal::VectorDistributorLocalToGlobal<double, dealii::VectorizedArray<double, 2> >; int dim = 1; int n_components_ = 1; Number = double; bool is_face = false; VectorizedArrayType = dealii::VectorizedArray<double, 2>]’:
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4562:24: warning: ‘void* __builtin_memset(void*, int, long unsigned int)’ offset [24, 2040] is out of the bounds [0, 16] of object ‘dof_indices’ with type ‘const unsigned int* [2]’ [-Warray-bounds]
4562 | dof_indices[v] = nullptr;
| ~~~~~~~~~~~~~~~^~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4492:25: note: ‘dof_indices’ declared here
4492 | const unsigned int * dof_indices[n_lanes];
| ^~~~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h: In function ‘void dealii::FEEvaluationBase<dim, n_components_, Number, is_face, VectorizedArrayType>::read_write_operation(const VectorOperation&, const std::array<VectorType*, n_components_>&, const std::array<const std::vector<dealii::ArrayView<const typename VectorType::value_type> >*, n_components_>&, const std::bitset<VectorizedArrayType::size()>&, bool) const [with VectorType = dealii::LinearAlgebra::distributed::Vector<double>; VectorOperation = dealii::internal::VectorReader<double, dealii::VectorizedArray<double, 2> >; int dim = 1; int n_components_ = 1; Number = double; bool is_face = false; VectorizedArrayType = dealii::VectorizedArray<double, 2>]’:
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4562:24: warning: ‘void* __builtin_memset(void*, int, long unsigned int)’ offset [24, 2040] is out of the bounds [0, 16] of object ‘dof_indices’ with type ‘const unsigned int* [2]’ [-Warray-bounds]
4562 | dof_indices[v] = nullptr;
| ~~~~~~~~~~~~~~~^~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4492:25: note: ‘dof_indices’ declared here
4492 | const unsigned int * dof_indices[n_lanes];
| ^~~~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h: In function ‘void dealii::FEEvaluationBase<dim, n_components_, Number, is_face, VectorizedArrayType>::read_write_operation(const VectorOperation&, const std::array<VectorType*, n_components_>&, const std::array<const std::vector<dealii::ArrayView<const typename VectorType::value_type> >*, n_components_>&, const std::bitset<VectorizedArrayType::size()>&, bool) const [with VectorType = dealii::LinearAlgebra::distributed::Vector<double>; VectorOperation = dealii::internal::VectorDistributorLocalToGlobal<double, dealii::VectorizedArray<double, 2> >; int dim = 2; int n_components_ = 4; Number = double; bool is_face = false; VectorizedArrayType = dealii::VectorizedArray<double, 2>]’:
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4562:24: warning: ‘void* __builtin_memset(void*, int, long unsigned int)’ offset [24, 2040] is out of the bounds [0, 16] of object ‘dof_indices’ with type ‘const unsigned int* [2]’ [-Warray-bounds]
4562 | dof_indices[v] = nullptr;
| ~~~~~~~~~~~~~~~^~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4492:25: note: ‘dof_indices’ declared here
4492 | const unsigned int * dof_indices[n_lanes];
| ^~~~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h: In function ‘void dealii::FEEvaluationBase<dim, n_components_, Number, is_face, VectorizedArrayType>::read_write_operation(const VectorOperation&, const std::array<VectorType*, n_components_>&, const std::array<const std::vector<dealii::ArrayView<const typename VectorType::value_type> >*, n_components_>&, const std::bitset<VectorizedArrayType::size()>&, bool) const [with VectorType = dealii::LinearAlgebra::distributed::Vector<double>; VectorOperation = dealii::internal::VectorReader<double, dealii::VectorizedArray<double, 2> >; int dim = 2; int n_components_ = 4; Number = double; bool is_face = false; VectorizedArrayType = dealii::VectorizedArray<double, 2>]’:
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4562:24: warning: ‘void* __builtin_memset(void*, int, long unsigned int)’ offset [24, 2040] is out of the bounds [0, 16] of object ‘dof_indices’ with type ‘const unsigned int* [2]’ [-Warray-bounds]
4562 | dof_indices[v] = nullptr;
| ~~~~~~~~~~~~~~~^~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4492:25: note: ‘dof_indices’ declared here
4492 | const unsigned int * dof_indices[n_lanes];
| ^~~~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h: In function ‘void dealii::FEEvaluationBase<dim, n_components_, Number, is_face, VectorizedArrayType>::read_write_operation(const VectorOperation&, const std::array<VectorType*, n_components_>&, const std::array<const std::vector<dealii::ArrayView<const typename VectorType::value_type> >*, n_components_>&, const std::bitset<VectorizedArrayType::size()>&, bool) const [with VectorType = dealii::LinearAlgebra::distributed::Vector<double>; VectorOperation = dealii::internal::VectorDistributorLocalToGlobal<double, dealii::VectorizedArray<double, 2> >; int dim = 2; int n_components_ = 3; Number = double; bool is_face = false; VectorizedArrayType = dealii::VectorizedArray<double, 2>]’:
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4562:24: warning: ‘void* __builtin_memset(void*, int, long unsigned int)’ offset [24, 2040] is out of the bounds [0, 16] of object ‘dof_indices’ with type ‘const unsigned int* [2]’ [-Warray-bounds]
4562 | dof_indices[v] = nullptr;
| ~~~~~~~~~~~~~~~^~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4492:25: note: ‘dof_indices’ declared here
4492 | const unsigned int * dof_indices[n_lanes];
| ^~~~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h: In function ‘void dealii::FEEvaluationBase<dim, n_components_, Number, is_face, VectorizedArrayType>::read_write_operation(const VectorOperation&, const std::array<VectorType*, n_components_>&, const std::array<const std::vector<dealii::ArrayView<const typename VectorType::value_type> >*, n_components_>&, const std::bitset<VectorizedArrayType::size()>&, bool) const [with VectorType = dealii::LinearAlgebra::distributed::Vector<double>; VectorOperation = dealii::internal::VectorReader<double, dealii::VectorizedArray<double, 2> >; int dim = 2; int n_components_ = 3; Number = double; bool is_face = false; VectorizedArrayType = dealii::VectorizedArray<double, 2>]’:
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4562:24: warning: ‘void* __builtin_memset(void*, int, long unsigned int)’ offset [24, 2040] is out of the bounds [0, 16] of object ‘dof_indices’ with type ‘const unsigned int* [2]’ [-Warray-bounds]
4562 | dof_indices[v] = nullptr;
| ~~~~~~~~~~~~~~~^~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4492:25: note: ‘dof_indices’ declared here
4492 | const unsigned int * dof_indices[n_lanes];
| ^~~~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h: In function ‘void dealii::FEEvaluationBase<dim, n_components_, Number, is_face, VectorizedArrayType>::read_write_operation(const VectorOperation&, const std::array<VectorType*, n_components_>&, const std::array<const std::vector<dealii::ArrayView<const typename VectorType::value_type> >*, n_components_>&, const std::bitset<VectorizedArrayType::size()>&, bool) const [with VectorType = dealii::LinearAlgebra::distributed::Vector<double>; VectorOperation = dealii::internal::VectorDistributorLocalToGlobal<double, dealii::VectorizedArray<double, 2> >; int dim = 2; int n_components_ = 2; Number = double; bool is_face = false; VectorizedArrayType = dealii::VectorizedArray<double, 2>]’:
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4562:24: warning: ‘void* __builtin_memset(void*, int, long unsigned int)’ offset [24, 2040] is out of the bounds [0, 16] of object ‘dof_indices’ with type ‘const unsigned int* [2]’ [-Warray-bounds]
4562 | dof_indices[v] = nullptr;
| ~~~~~~~~~~~~~~~^~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4492:25: note: ‘dof_indices’ declared here
4492 | const unsigned int * dof_indices[n_lanes];
| ^~~~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h: In function ‘void dealii::FEEvaluationBase<dim, n_components_, Number, is_face, VectorizedArrayType>::read_write_operation(const VectorOperation&, const std::array<VectorType*, n_components_>&, const std::array<const std::vector<dealii::ArrayView<const typename VectorType::value_type> >*, n_components_>&, const std::bitset<VectorizedArrayType::size()>&, bool) const [with VectorType = dealii::LinearAlgebra::distributed::Vector<double>; VectorOperation = dealii::internal::VectorReader<double, dealii::VectorizedArray<double, 2> >; int dim = 2; int n_components_ = 2; Number = double; bool is_face = false; VectorizedArrayType = dealii::VectorizedArray<double, 2>]’:
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4562:24: warning: ‘void* __builtin_memset(void*, int, long unsigned int)’ offset [24, 2040] is out of the bounds [0, 16] of object ‘dof_indices’ with type ‘const unsigned int* [2]’ [-Warray-bounds]
4562 | dof_indices[v] = nullptr;
| ~~~~~~~~~~~~~~~^~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4492:25: note: ‘dof_indices’ declared here
4492 | const unsigned int * dof_indices[n_lanes];
| ^~~~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h: In function ‘void dealii::FEEvaluationBase<dim, n_components_, Number, is_face, VectorizedArrayType>::read_write_operation(const VectorOperation&, const std::array<VectorType*, n_components_>&, const std::array<const std::vector<dealii::ArrayView<const typename VectorType::value_type> >*, n_components_>&, const std::bitset<VectorizedArrayType::size()>&, bool) const [with VectorType = dealii::LinearAlgebra::distributed::Vector<double>; VectorOperation = dealii::internal::VectorDistributorLocalToGlobal<double, dealii::VectorizedArray<double, 2> >; int dim = 2; int n_components_ = 1; Number = double; bool is_face = false; VectorizedArrayType = dealii::VectorizedArray<double, 2>]’:
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4562:24: warning: ‘void* __builtin_memset(void*, int, long unsigned int)’ offset [24, 2040] is out of the bounds [0, 16] of object ‘dof_indices’ with type ‘const unsigned int* [2]’ [-Warray-bounds]
4562 | dof_indices[v] = nullptr;
| ~~~~~~~~~~~~~~~^~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4492:25: note: ‘dof_indices’ declared here
4492 | const unsigned int * dof_indices[n_lanes];
| ^~~~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h: In function ‘void dealii::FEEvaluationBase<dim, n_components_, Number, is_face, VectorizedArrayType>::read_write_operation(const VectorOperation&, const std::array<VectorType*, n_components_>&, const std::array<const std::vector<dealii::ArrayView<const typename VectorType::value_type> >*, n_components_>&, const std::bitset<VectorizedArrayType::size()>&, bool) const [with VectorType = dealii::LinearAlgebra::distributed::Vector<double>; VectorOperation = dealii::internal::VectorReader<double, dealii::VectorizedArray<double, 2> >; int dim = 2; int n_components_ = 1; Number = double; bool is_face = false; VectorizedArrayType = dealii::VectorizedArray<double, 2>]’:
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4562:24: warning: ‘void* __builtin_memset(void*, int, long unsigned int)’ offset [24, 2040] is out of the bounds [0, 16] of object ‘dof_indices’ with type ‘const unsigned int* [2]’ [-Warray-bounds]
4562 | dof_indices[v] = nullptr;
| ~~~~~~~~~~~~~~~^~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4492:25: note: ‘dof_indices’ declared here
4492 | const unsigned int * dof_indices[n_lanes];
| ^~~~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h: In function ‘void dealii::FEEvaluationBase<dim, n_components_, Number, is_face, VectorizedArrayType>::read_write_operation(const VectorOperation&, const std::array<VectorType*, n_components_>&, const std::array<const std::vector<dealii::ArrayView<const typename VectorType::value_type> >*, n_components_>&, const std::bitset<VectorizedArrayType::size()>&, bool) const [with VectorType = dealii::LinearAlgebra::distributed::Vector<double>; VectorOperation = dealii::internal::VectorDistributorLocalToGlobal<double, dealii::VectorizedArray<double, 2> >; int dim = 3; int n_components_ = 4; Number = double; bool is_face = false; VectorizedArrayType = dealii::VectorizedArray<double, 2>]’:
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4562:24: warning: ‘void* __builtin_memset(void*, int, long unsigned int)’ offset [24, 2040] is out of the bounds [0, 16] of object ‘dof_indices’ with type ‘const unsigned int* [2]’ [-Warray-bounds]
4562 | dof_indices[v] = nullptr;
| ~~~~~~~~~~~~~~~^~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4492:25: note: ‘dof_indices’ declared here
4492 | const unsigned int * dof_indices[n_lanes];
| ^~~~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h: In function ‘void dealii::FEEvaluationBase<dim, n_components_, Number, is_face, VectorizedArrayType>::read_write_operation(const VectorOperation&, const std::array<VectorType*, n_components_>&, const std::array<const std::vector<dealii::ArrayView<const typename VectorType::value_type> >*, n_components_>&, const std::bitset<VectorizedArrayType::size()>&, bool) const [with VectorType = dealii::LinearAlgebra::distributed::Vector<double>; VectorOperation = dealii::internal::VectorReader<double, dealii::VectorizedArray<double, 2> >; int dim = 3; int n_components_ = 4; Number = double; bool is_face = false; VectorizedArrayType = dealii::VectorizedArray<double, 2>]’:
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4562:24: warning: ‘void* __builtin_memset(void*, int, long unsigned int)’ offset [24, 2040] is out of the bounds [0, 16] of object ‘dof_indices’ with type ‘const unsigned int* [2]’ [-Warray-bounds]
4562 | dof_indices[v] = nullptr;
| ~~~~~~~~~~~~~~~^~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4492:25: note: ‘dof_indices’ declared here
4492 | const unsigned int * dof_indices[n_lanes];
| ^~~~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h: In function ‘void dealii::FEEvaluationBase<dim, n_components_, Number, is_face, VectorizedArrayType>::read_write_operation(const VectorOperation&, const std::array<VectorType*, n_components_>&, const std::array<const std::vector<dealii::ArrayView<const typename VectorType::value_type> >*, n_components_>&, const std::bitset<VectorizedArrayType::size()>&, bool) const [with VectorType = dealii::LinearAlgebra::distributed::Vector<double>; VectorOperation = dealii::internal::VectorDistributorLocalToGlobal<double, dealii::VectorizedArray<double, 2> >; int dim = 3; int n_components_ = 3; Number = double; bool is_face = false; VectorizedArrayType = dealii::VectorizedArray<double, 2>]’:
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4562:24: warning: ‘void* __builtin_memset(void*, int, long unsigned int)’ offset [24, 2040] is out of the bounds [0, 16] of object ‘dof_indices’ with type ‘const unsigned int* [2]’ [-Warray-bounds]
4562 | dof_indices[v] = nullptr;
| ~~~~~~~~~~~~~~~^~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4492:25: note: ‘dof_indices’ declared here
4492 | const unsigned int * dof_indices[n_lanes];
| ^~~~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h: In function ‘void dealii::FEEvaluationBase<dim, n_components_, Number, is_face, VectorizedArrayType>::read_write_operation(const VectorOperation&, const std::array<VectorType*, n_components_>&, const std::array<const std::vector<dealii::ArrayView<const typename VectorType::value_type> >*, n_components_>&, const std::bitset<VectorizedArrayType::size()>&, bool) const [with VectorType = dealii::LinearAlgebra::distributed::Vector<double>; VectorOperation = dealii::internal::VectorReader<double, dealii::VectorizedArray<double, 2> >; int dim = 3; int n_components_ = 3; Number = double; bool is_face = false; VectorizedArrayType = dealii::VectorizedArray<double, 2>]’:
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4562:24: warning: ‘void* __builtin_memset(void*, int, long unsigned int)’ offset [24, 2040] is out of the bounds [0, 16] of object ‘dof_indices’ with type ‘const unsigned int* [2]’ [-Warray-bounds]
4562 | dof_indices[v] = nullptr;
| ~~~~~~~~~~~~~~~^~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4492:25: note: ‘dof_indices’ declared here
4492 | const unsigned int * dof_indices[n_lanes];
| ^~~~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h: In function ‘void dealii::FEEvaluationBase<dim, n_components_, Number, is_face, VectorizedArrayType>::read_write_operation(const VectorOperation&, const std::array<VectorType*, n_components_>&, const std::array<const std::vector<dealii::ArrayView<const typename VectorType::value_type> >*, n_components_>&, const std::bitset<VectorizedArrayType::size()>&, bool) const [with VectorType = dealii::LinearAlgebra::distributed::Vector<double>; VectorOperation = dealii::internal::VectorDistributorLocalToGlobal<double, dealii::VectorizedArray<double, 2> >; int dim = 3; int n_components_ = 2; Number = double; bool is_face = false; VectorizedArrayType = dealii::VectorizedArray<double, 2>]’:
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4562:24: warning: ‘void* __builtin_memset(void*, int, long unsigned int)’ offset [24, 2040] is out of the bounds [0, 16] of object ‘dof_indices’ with type ‘const unsigned int* [2]’ [-Warray-bounds]
4562 | dof_indices[v] = nullptr;
| ~~~~~~~~~~~~~~~^~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4492:25: note: ‘dof_indices’ declared here
4492 | const unsigned int * dof_indices[n_lanes];
| ^~~~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h: In function ‘void dealii::FEEvaluationBase<dim, n_components_, Number, is_face, VectorizedArrayType>::read_write_operation(const VectorOperation&, const std::array<VectorType*, n_components_>&, const std::array<const std::vector<dealii::ArrayView<const typename VectorType::value_type> >*, n_components_>&, const std::bitset<VectorizedArrayType::size()>&, bool) const [with VectorType = dealii::LinearAlgebra::distributed::Vector<double>; VectorOperation = dealii::internal::VectorReader<double, dealii::VectorizedArray<double, 2> >; int dim = 3; int n_components_ = 2; Number = double; bool is_face = false; VectorizedArrayType = dealii::VectorizedArray<double, 2>]’:
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4562:24: warning: ‘void* __builtin_memset(void*, int, long unsigned int)’ offset [24, 2040] is out of the bounds [0, 16] of object ‘dof_indices’ with type ‘const unsigned int* [2]’ [-Warray-bounds]
4562 | dof_indices[v] = nullptr;
| ~~~~~~~~~~~~~~~^~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4492:25: note: ‘dof_indices’ declared here
4492 | const unsigned int * dof_indices[n_lanes];
| ^~~~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h: In function ‘void dealii::FEEvaluationBase<dim, n_components_, Number, is_face, VectorizedArrayType>::read_write_operation(const VectorOperation&, const std::array<VectorType*, n_components_>&, const std::array<const std::vector<dealii::ArrayView<const typename VectorType::value_type> >*, n_components_>&, const std::bitset<VectorizedArrayType::size()>&, bool) const [with VectorType = dealii::LinearAlgebra::distributed::Vector<double>; VectorOperation = dealii::internal::VectorDistributorLocalToGlobal<double, dealii::VectorizedArray<double, 2> >; int dim = 3; int n_components_ = 1; Number = double; bool is_face = false; VectorizedArrayType = dealii::VectorizedArray<double, 2>]’:
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4562:24: warning: ‘void* __builtin_memset(void*, int, long unsigned int)’ offset [24, 2040] is out of the bounds [0, 16] of object ‘dof_indices’ with type ‘const unsigned int* [2]’ [-Warray-bounds]
4562 | dof_indices[v] = nullptr;
| ~~~~~~~~~~~~~~~^~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4492:25: note: ‘dof_indices’ declared here
4492 | const unsigned int * dof_indices[n_lanes];
| ^~~~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h: In function ‘void dealii::FEEvaluationBase<dim, n_components_, Number, is_face, VectorizedArrayType>::read_write_operation(const VectorOperation&, const std::array<VectorType*, n_components_>&, const std::array<const std::vector<dealii::ArrayView<const typename VectorType::value_type> >*, n_components_>&, const std::bitset<VectorizedArrayType::size()>&, bool) const [with VectorType = dealii::LinearAlgebra::distributed::Vector<double>; VectorOperation = dealii::internal::VectorReader<double, dealii::VectorizedArray<double, 2> >; int dim = 3; int n_components_ = 1; Number = double; bool is_face = false; VectorizedArrayType = dealii::VectorizedArray<double, 2>]’:
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4562:24: warning: ‘void* __builtin_memset(void*, int, long unsigned int)’ offset [24, 2040] is out of the bounds [0, 16] of object ‘dof_indices’ with type ‘const unsigned int* [2]’ [-Warray-bounds]
4562 | dof_indices[v] = nullptr;
| ~~~~~~~~~~~~~~~^~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4492:25: note: ‘dof_indices’ declared here
4492 | const unsigned int * dof_indices[n_lanes];
| ^~~~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h: In function ‘void dealii::FEEvaluationBase<dim, n_components_, Number, is_face, VectorizedArrayType>::read_write_operation(const VectorOperation&, const std::array<VectorType*, n_components_>&, const std::array<const std::vector<dealii::ArrayView<const typename VectorType::value_type> >*, n_components_>&, const std::bitset<VectorizedArrayType::size()>&, bool) const [with VectorType = dealii::LinearAlgebra::distributed::Vector<float>; VectorOperation = dealii::internal::VectorDistributorLocalToGlobal<float, dealii::VectorizedArray<float, 4> >; int dim = 1; int n_components_ = 4; Number = float; bool is_face = false; VectorizedArrayType = dealii::VectorizedArray<float, 4>]’:
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4562:24: warning: ‘void* __builtin_memset(void*, int, long unsigned int)’ offset [40, 2040] is out of the bounds [0, 32] of object ‘dof_indices’ with type ‘const unsigned int* [4]’ [-Warray-bounds]
4562 | dof_indices[v] = nullptr;
| ~~~~~~~~~~~~~~~^~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4492:25: note: ‘dof_indices’ declared here
4492 | const unsigned int * dof_indices[n_lanes];
| ^~~~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h: In function ‘void dealii::FEEvaluationBase<dim, n_components_, Number, is_face, VectorizedArrayType>::read_write_operation(const VectorOperation&, const std::array<VectorType*, n_components_>&, const std::array<const std::vector<dealii::ArrayView<const typename VectorType::value_type> >*, n_components_>&, const std::bitset<VectorizedArrayType::size()>&, bool) const [with VectorType = dealii::LinearAlgebra::distributed::Vector<float>; VectorOperation = dealii::internal::VectorReader<float, dealii::VectorizedArray<float, 4> >; int dim = 1; int n_components_ = 4; Number = float; bool is_face = false; VectorizedArrayType = dealii::VectorizedArray<float, 4>]’:
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4562:24: warning: ‘void* __builtin_memset(void*, int, long unsigned int)’ offset [40, 2040] is out of the bounds [0, 32] of object ‘dof_indices’ with type ‘const unsigned int* [4]’ [-Warray-bounds]
4562 | dof_indices[v] = nullptr;
| ~~~~~~~~~~~~~~~^~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4492:25: note: ‘dof_indices’ declared here
4492 | const unsigned int * dof_indices[n_lanes];
| ^~~~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h: In function ‘void dealii::FEEvaluationBase<dim, n_components_, Number, is_face, VectorizedArrayType>::read_write_operation(const VectorOperation&, const std::array<VectorType*, n_components_>&, const std::array<const std::vector<dealii::ArrayView<const typename VectorType::value_type> >*, n_components_>&, const std::bitset<VectorizedArrayType::size()>&, bool) const [with VectorType = dealii::LinearAlgebra::distributed::Vector<float>; VectorOperation = dealii::internal::VectorDistributorLocalToGlobal<float, dealii::VectorizedArray<float, 4> >; int dim = 1; int n_components_ = 3; Number = float; bool is_face = false; VectorizedArrayType = dealii::VectorizedArray<float, 4>]’:
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4562:24: warning: ‘void* __builtin_memset(void*, int, long unsigned int)’ offset [40, 2040] is out of the bounds [0, 32] of object ‘dof_indices’ with type ‘const unsigned int* [4]’ [-Warray-bounds]
4562 | dof_indices[v] = nullptr;
| ~~~~~~~~~~~~~~~^~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4492:25: note: ‘dof_indices’ declared here
4492 | const unsigned int * dof_indices[n_lanes];
| ^~~~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h: In function ‘void dealii::FEEvaluationBase<dim, n_components_, Number, is_face, VectorizedArrayType>::read_write_operation(const VectorOperation&, const std::array<VectorType*, n_components_>&, const std::array<const std::vector<dealii::ArrayView<const typename VectorType::value_type> >*, n_components_>&, const std::bitset<VectorizedArrayType::size()>&, bool) const [with VectorType = dealii::LinearAlgebra::distributed::Vector<float>; VectorOperation = dealii::internal::VectorReader<float, dealii::VectorizedArray<float, 4> >; int dim = 1; int n_components_ = 3; Number = float; bool is_face = false; VectorizedArrayType = dealii::VectorizedArray<float, 4>]’:
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4562:24: warning: ‘void* __builtin_memset(void*, int, long unsigned int)’ offset [40, 2040] is out of the bounds [0, 32] of object ‘dof_indices’ with type ‘const unsigned int* [4]’ [-Warray-bounds]
4562 | dof_indices[v] = nullptr;
| ~~~~~~~~~~~~~~~^~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4492:25: note: ‘dof_indices’ declared here
4492 | const unsigned int * dof_indices[n_lanes];
| ^~~~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h: In function ‘void dealii::FEEvaluationBase<dim, n_components_, Number, is_face, VectorizedArrayType>::read_write_operation(const VectorOperation&, const std::array<VectorType*, n_components_>&, const std::array<const std::vector<dealii::ArrayView<const typename VectorType::value_type> >*, n_components_>&, const std::bitset<VectorizedArrayType::size()>&, bool) const [with VectorType = dealii::LinearAlgebra::distributed::Vector<float>; VectorOperation = dealii::internal::VectorDistributorLocalToGlobal<float, dealii::VectorizedArray<float, 4> >; int dim = 1; int n_components_ = 2; Number = float; bool is_face = false; VectorizedArrayType = dealii::VectorizedArray<float, 4>]’:
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4562:24: warning: ‘void* __builtin_memset(void*, int, long unsigned int)’ offset [40, 2040] is out of the bounds [0, 32] of object ‘dof_indices’ with type ‘const unsigned int* [4]’ [-Warray-bounds]
4562 | dof_indices[v] = nullptr;
| ~~~~~~~~~~~~~~~^~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4492:25: note: ‘dof_indices’ declared here
4492 | const unsigned int * dof_indices[n_lanes];
| ^~~~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h: In function ‘void dealii::FEEvaluationBase<dim, n_components_, Number, is_face, VectorizedArrayType>::read_write_operation(const VectorOperation&, const std::array<VectorType*, n_components_>&, const std::array<const std::vector<dealii::ArrayView<const typename VectorType::value_type> >*, n_components_>&, const std::bitset<VectorizedArrayType::size()>&, bool) const [with VectorType = dealii::LinearAlgebra::distributed::Vector<float>; VectorOperation = dealii::internal::VectorReader<float, dealii::VectorizedArray<float, 4> >; int dim = 1; int n_components_ = 2; Number = float; bool is_face = false; VectorizedArrayType = dealii::VectorizedArray<float, 4>]’:
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4562:24: warning: ‘void* __builtin_memset(void*, int, long unsigned int)’ offset [40, 2040] is out of the bounds [0, 32] of object ‘dof_indices’ with type ‘const unsigned int* [4]’ [-Warray-bounds]
4562 | dof_indices[v] = nullptr;
| ~~~~~~~~~~~~~~~^~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4492:25: note: ‘dof_indices’ declared here
4492 | const unsigned int * dof_indices[n_lanes];
| ^~~~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h: In function ‘void dealii::FEEvaluationBase<dim, n_components_, Number, is_face, VectorizedArrayType>::read_write_operation(const VectorOperation&, const std::array<VectorType*, n_components_>&, const std::array<const std::vector<dealii::ArrayView<const typename VectorType::value_type> >*, n_components_>&, const std::bitset<VectorizedArrayType::size()>&, bool) const [with VectorType = dealii::LinearAlgebra::distributed::Vector<float>; VectorOperation = dealii::internal::VectorDistributorLocalToGlobal<float, dealii::VectorizedArray<float, 4> >; int dim = 1; int n_components_ = 1; Number = float; bool is_face = false; VectorizedArrayType = dealii::VectorizedArray<float, 4>]’:
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4562:24: warning: ‘void* __builtin_memset(void*, int, long unsigned int)’ offset [40, 2040] is out of the bounds [0, 32] of object ‘dof_indices’ with type ‘const unsigned int* [4]’ [-Warray-bounds]
4562 | dof_indices[v] = nullptr;
| ~~~~~~~~~~~~~~~^~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4492:25: note: ‘dof_indices’ declared here
4492 | const unsigned int * dof_indices[n_lanes];
| ^~~~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h: In function ‘void dealii::FEEvaluationBase<dim, n_components_, Number, is_face, VectorizedArrayType>::read_write_operation(const VectorOperation&, const std::array<VectorType*, n_components_>&, const std::array<const std::vector<dealii::ArrayView<const typename VectorType::value_type> >*, n_components_>&, const std::bitset<VectorizedArrayType::size()>&, bool) const [with VectorType = dealii::LinearAlgebra::distributed::Vector<float>; VectorOperation = dealii::internal::VectorReader<float, dealii::VectorizedArray<float, 4> >; int dim = 1; int n_components_ = 1; Number = float; bool is_face = false; VectorizedArrayType = dealii::VectorizedArray<float, 4>]’:
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4562:24: warning: ‘void* __builtin_memset(void*, int, long unsigned int)’ offset [40, 2040] is out of the bounds [0, 32] of object ‘dof_indices’ with type ‘const unsigned int* [4]’ [-Warray-bounds]
4562 | dof_indices[v] = nullptr;
| ~~~~~~~~~~~~~~~^~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4492:25: note: ‘dof_indices’ declared here
4492 | const unsigned int * dof_indices[n_lanes];
| ^~~~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h: In function ‘void dealii::FEEvaluationBase<dim, n_components_, Number, is_face, VectorizedArrayType>::read_write_operation(const VectorOperation&, const std::array<VectorType*, n_components_>&, const std::array<const std::vector<dealii::ArrayView<const typename VectorType::value_type> >*, n_components_>&, const std::bitset<VectorizedArrayType::size()>&, bool) const [with VectorType = dealii::LinearAlgebra::distributed::Vector<float>; VectorOperation = dealii::internal::VectorDistributorLocalToGlobal<float, dealii::VectorizedArray<float, 4> >; int dim = 2; int n_components_ = 4; Number = float; bool is_face = false; VectorizedArrayType = dealii::VectorizedArray<float, 4>]’:
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4562:24: warning: ‘void* __builtin_memset(void*, int, long unsigned int)’ offset [40, 2040] is out of the bounds [0, 32] of object ‘dof_indices’ with type ‘const unsigned int* [4]’ [-Warray-bounds]
4562 | dof_indices[v] = nullptr;
| ~~~~~~~~~~~~~~~^~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4492:25: note: ‘dof_indices’ declared here
4492 | const unsigned int * dof_indices[n_lanes];
| ^~~~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h: In function ‘void dealii::FEEvaluationBase<dim, n_components_, Number, is_face, VectorizedArrayType>::read_write_operation(const VectorOperation&, const std::array<VectorType*, n_components_>&, const std::array<const std::vector<dealii::ArrayView<const typename VectorType::value_type> >*, n_components_>&, const std::bitset<VectorizedArrayType::size()>&, bool) const [with VectorType = dealii::LinearAlgebra::distributed::Vector<float>; VectorOperation = dealii::internal::VectorReader<float, dealii::VectorizedArray<float, 4> >; int dim = 2; int n_components_ = 4; Number = float; bool is_face = false; VectorizedArrayType = dealii::VectorizedArray<float, 4>]’:
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4562:24: warning: ‘void* __builtin_memset(void*, int, long unsigned int)’ offset [40, 2040] is out of the bounds [0, 32] of object ‘dof_indices’ with type ‘const unsigned int* [4]’ [-Warray-bounds]
4562 | dof_indices[v] = nullptr;
| ~~~~~~~~~~~~~~~^~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4492:25: note: ‘dof_indices’ declared here
4492 | const unsigned int * dof_indices[n_lanes];
| ^~~~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h: In function ‘void dealii::FEEvaluationBase<dim, n_components_, Number, is_face, VectorizedArrayType>::read_write_operation(const VectorOperation&, const std::array<VectorType*, n_components_>&, const std::array<const std::vector<dealii::ArrayView<const typename VectorType::value_type> >*, n_components_>&, const std::bitset<VectorizedArrayType::size()>&, bool) const [with VectorType = dealii::LinearAlgebra::distributed::Vector<float>; VectorOperation = dealii::internal::VectorDistributorLocalToGlobal<float, dealii::VectorizedArray<float, 4> >; int dim = 2; int n_components_ = 3; Number = float; bool is_face = false; VectorizedArrayType = dealii::VectorizedArray<float, 4>]’:
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4562:24: warning: ‘void* __builtin_memset(void*, int, long unsigned int)’ offset [40, 2040] is out of the bounds [0, 32] of object ‘dof_indices’ with type ‘const unsigned int* [4]’ [-Warray-bounds]
4562 | dof_indices[v] = nullptr;
| ~~~~~~~~~~~~~~~^~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4492:25: note: ‘dof_indices’ declared here
4492 | const unsigned int * dof_indices[n_lanes];
| ^~~~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h: In function ‘void dealii::FEEvaluationBase<dim, n_components_, Number, is_face, VectorizedArrayType>::read_write_operation(const VectorOperation&, const std::array<VectorType*, n_components_>&, const std::array<const std::vector<dealii::ArrayView<const typename VectorType::value_type> >*, n_components_>&, const std::bitset<VectorizedArrayType::size()>&, bool) const [with VectorType = dealii::LinearAlgebra::distributed::Vector<float>; VectorOperation = dealii::internal::VectorReader<float, dealii::VectorizedArray<float, 4> >; int dim = 2; int n_components_ = 3; Number = float; bool is_face = false; VectorizedArrayType = dealii::VectorizedArray<float, 4>]’:
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4562:24: warning: ‘void* __builtin_memset(void*, int, long unsigned int)’ offset [40, 2040] is out of the bounds [0, 32] of object ‘dof_indices’ with type ‘const unsigned int* [4]’ [-Warray-bounds]
4562 | dof_indices[v] = nullptr;
| ~~~~~~~~~~~~~~~^~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4492:25: note: ‘dof_indices’ declared here
4492 | const unsigned int * dof_indices[n_lanes];
| ^~~~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h: In function ‘void dealii::FEEvaluationBase<dim, n_components_, Number, is_face, VectorizedArrayType>::read_write_operation(const VectorOperation&, const std::array<VectorType*, n_components_>&, const std::array<const std::vector<dealii::ArrayView<const typename VectorType::value_type> >*, n_components_>&, const std::bitset<VectorizedArrayType::size()>&, bool) const [with VectorType = dealii::LinearAlgebra::distributed::Vector<float>; VectorOperation = dealii::internal::VectorDistributorLocalToGlobal<float, dealii::VectorizedArray<float, 4> >; int dim = 2; int n_components_ = 2; Number = float; bool is_face = false; VectorizedArrayType = dealii::VectorizedArray<float, 4>]’:
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4562:24: warning: ‘void* __builtin_memset(void*, int, long unsigned int)’ offset [40, 2040] is out of the bounds [0, 32] of object ‘dof_indices’ with type ‘const unsigned int* [4]’ [-Warray-bounds]
4562 | dof_indices[v] = nullptr;
| ~~~~~~~~~~~~~~~^~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4492:25: note: ‘dof_indices’ declared here
4492 | const unsigned int * dof_indices[n_lanes];
| ^~~~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h: In function ‘void dealii::FEEvaluationBase<dim, n_components_, Number, is_face, VectorizedArrayType>::read_write_operation(const VectorOperation&, const std::array<VectorType*, n_components_>&, const std::array<const std::vector<dealii::ArrayView<const typename VectorType::value_type> >*, n_components_>&, const std::bitset<VectorizedArrayType::size()>&, bool) const [with VectorType = dealii::LinearAlgebra::distributed::Vector<float>; VectorOperation = dealii::internal::VectorReader<float, dealii::VectorizedArray<float, 4> >; int dim = 2; int n_components_ = 2; Number = float; bool is_face = false; VectorizedArrayType = dealii::VectorizedArray<float, 4>]’:
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4562:24: warning: ‘void* __builtin_memset(void*, int, long unsigned int)’ offset [40, 2040] is out of the bounds [0, 32] of object ‘dof_indices’ with type ‘const unsigned int* [4]’ [-Warray-bounds]
4562 | dof_indices[v] = nullptr;
| ~~~~~~~~~~~~~~~^~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4492:25: note: ‘dof_indices’ declared here
4492 | const unsigned int * dof_indices[n_lanes];
| ^~~~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h: In function ‘void dealii::FEEvaluationBase<dim, n_components_, Number, is_face, VectorizedArrayType>::read_write_operation(const VectorOperation&, const std::array<VectorType*, n_components_>&, const std::array<const std::vector<dealii::ArrayView<const typename VectorType::value_type> >*, n_components_>&, const std::bitset<VectorizedArrayType::size()>&, bool) const [with VectorType = dealii::LinearAlgebra::distributed::Vector<float>; VectorOperation = dealii::internal::VectorDistributorLocalToGlobal<float, dealii::VectorizedArray<float, 4> >; int dim = 2; int n_components_ = 1; Number = float; bool is_face = false; VectorizedArrayType = dealii::VectorizedArray<float, 4>]’:
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4562:24: warning: ‘void* __builtin_memset(void*, int, long unsigned int)’ offset [40, 2040] is out of the bounds [0, 32] of object ‘dof_indices’ with type ‘const unsigned int* [4]’ [-Warray-bounds]
4562 | dof_indices[v] = nullptr;
| ~~~~~~~~~~~~~~~^~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4492:25: note: ‘dof_indices’ declared here
4492 | const unsigned int * dof_indices[n_lanes];
| ^~~~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h: In function ‘void dealii::FEEvaluationBase<dim, n_components_, Number, is_face, VectorizedArrayType>::read_write_operation(const VectorOperation&, const std::array<VectorType*, n_components_>&, const std::array<const std::vector<dealii::ArrayView<const typename VectorType::value_type> >*, n_components_>&, const std::bitset<VectorizedArrayType::size()>&, bool) const [with VectorType = dealii::LinearAlgebra::distributed::Vector<float>; VectorOperation = dealii::internal::VectorReader<float, dealii::VectorizedArray<float, 4> >; int dim = 2; int n_components_ = 1; Number = float; bool is_face = false; VectorizedArrayType = dealii::VectorizedArray<float, 4>]’:
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4562:24: warning: ‘void* __builtin_memset(void*, int, long unsigned int)’ offset [40, 2040] is out of the bounds [0, 32] of object ‘dof_indices’ with type ‘const unsigned int* [4]’ [-Warray-bounds]
4562 | dof_indices[v] = nullptr;
| ~~~~~~~~~~~~~~~^~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4492:25: note: ‘dof_indices’ declared here
4492 | const unsigned int * dof_indices[n_lanes];
| ^~~~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h: In function ‘void dealii::FEEvaluationBase<dim, n_components_, Number, is_face, VectorizedArrayType>::read_write_operation(const VectorOperation&, const std::array<VectorType*, n_components_>&, const std::array<const std::vector<dealii::ArrayView<const typename VectorType::value_type> >*, n_components_>&, const std::bitset<VectorizedArrayType::size()>&, bool) const [with VectorType = dealii::LinearAlgebra::distributed::Vector<float>; VectorOperation = dealii::internal::VectorDistributorLocalToGlobal<float, dealii::VectorizedArray<float, 4> >; int dim = 3; int n_components_ = 4; Number = float; bool is_face = false; VectorizedArrayType = dealii::VectorizedArray<float, 4>]’:
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4562:24: warning: ‘void* __builtin_memset(void*, int, long unsigned int)’ offset [40, 2040] is out of the bounds [0, 32] of object ‘dof_indices’ with type ‘const unsigned int* [4]’ [-Warray-bounds]
4562 | dof_indices[v] = nullptr;
| ~~~~~~~~~~~~~~~^~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4492:25: note: ‘dof_indices’ declared here
4492 | const unsigned int * dof_indices[n_lanes];
| ^~~~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h: In function ‘void dealii::FEEvaluationBase<dim, n_components_, Number, is_face, VectorizedArrayType>::read_write_operation(const VectorOperation&, const std::array<VectorType*, n_components_>&, const std::array<const std::vector<dealii::ArrayView<const typename VectorType::value_type> >*, n_components_>&, const std::bitset<VectorizedArrayType::size()>&, bool) const [with VectorType = dealii::LinearAlgebra::distributed::Vector<float>; VectorOperation = dealii::internal::VectorReader<float, dealii::VectorizedArray<float, 4> >; int dim = 3; int n_components_ = 4; Number = float; bool is_face = false; VectorizedArrayType = dealii::VectorizedArray<float, 4>]’:
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4562:24: warning: ‘void* __builtin_memset(void*, int, long unsigned int)’ offset [40, 2040] is out of the bounds [0, 32] of object ‘dof_indices’ with type ‘const unsigned int* [4]’ [-Warray-bounds]
4562 | dof_indices[v] = nullptr;
| ~~~~~~~~~~~~~~~^~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4492:25: note: ‘dof_indices’ declared here
4492 | const unsigned int * dof_indices[n_lanes];
| ^~~~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h: In function ‘void dealii::FEEvaluationBase<dim, n_components_, Number, is_face, VectorizedArrayType>::read_write_operation(const VectorOperation&, const std::array<VectorType*, n_components_>&, const std::array<const std::vector<dealii::ArrayView<const typename VectorType::value_type> >*, n_components_>&, const std::bitset<VectorizedArrayType::size()>&, bool) const [with VectorType = dealii::LinearAlgebra::distributed::Vector<float>; VectorOperation = dealii::internal::VectorDistributorLocalToGlobal<float, dealii::VectorizedArray<float, 4> >; int dim = 3; int n_components_ = 3; Number = float; bool is_face = false; VectorizedArrayType = dealii::VectorizedArray<float, 4>]’:
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4562:24: warning: ‘void* __builtin_memset(void*, int, long unsigned int)’ offset [40, 2040] is out of the bounds [0, 32] of object ‘dof_indices’ with type ‘const unsigned int* [4]’ [-Warray-bounds]
4562 | dof_indices[v] = nullptr;
| ~~~~~~~~~~~~~~~^~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4492:25: note: ‘dof_indices’ declared here
4492 | const unsigned int * dof_indices[n_lanes];
| ^~~~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h: In function ‘void dealii::FEEvaluationBase<dim, n_components_, Number, is_face, VectorizedArrayType>::read_write_operation(const VectorOperation&, const std::array<VectorType*, n_components_>&, const std::array<const std::vector<dealii::ArrayView<const typename VectorType::value_type> >*, n_components_>&, const std::bitset<VectorizedArrayType::size()>&, bool) const [with VectorType = dealii::LinearAlgebra::distributed::Vector<float>; VectorOperation = dealii::internal::VectorReader<float, dealii::VectorizedArray<float, 4> >; int dim = 3; int n_components_ = 3; Number = float; bool is_face = false; VectorizedArrayType = dealii::VectorizedArray<float, 4>]’:
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4562:24: warning: ‘void* __builtin_memset(void*, int, long unsigned int)’ offset [40, 2040] is out of the bounds [0, 32] of object ‘dof_indices’ with type ‘const unsigned int* [4]’ [-Warray-bounds]
4562 | dof_indices[v] = nullptr;
| ~~~~~~~~~~~~~~~^~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4492:25: note: ‘dof_indices’ declared here
4492 | const unsigned int * dof_indices[n_lanes];
| ^~~~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h: In function ‘void dealii::FEEvaluationBase<dim, n_components_, Number, is_face, VectorizedArrayType>::read_write_operation(const VectorOperation&, const std::array<VectorType*, n_components_>&, const std::array<const std::vector<dealii::ArrayView<const typename VectorType::value_type> >*, n_components_>&, const std::bitset<VectorizedArrayType::size()>&, bool) const [with VectorType = dealii::LinearAlgebra::distributed::Vector<float>; VectorOperation = dealii::internal::VectorDistributorLocalToGlobal<float, dealii::VectorizedArray<float, 4> >; int dim = 3; int n_components_ = 2; Number = float; bool is_face = false; VectorizedArrayType = dealii::VectorizedArray<float, 4>]’:
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4562:24: warning: ‘void* __builtin_memset(void*, int, long unsigned int)’ offset [40, 2040] is out of the bounds [0, 32] of object ‘dof_indices’ with type ‘const unsigned int* [4]’ [-Warray-bounds]
4562 | dof_indices[v] = nullptr;
| ~~~~~~~~~~~~~~~^~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4492:25: note: ‘dof_indices’ declared here
4492 | const unsigned int * dof_indices[n_lanes];
| ^~~~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h: In function ‘void dealii::FEEvaluationBase<dim, n_components_, Number, is_face, VectorizedArrayType>::read_write_operation(const VectorOperation&, const std::array<VectorType*, n_components_>&, const std::array<const std::vector<dealii::ArrayView<const typename VectorType::value_type> >*, n_components_>&, const std::bitset<VectorizedArrayType::size()>&, bool) const [with VectorType = dealii::LinearAlgebra::distributed::Vector<float>; VectorOperation = dealii::internal::VectorReader<float, dealii::VectorizedArray<float, 4> >; int dim = 3; int n_components_ = 2; Number = float; bool is_face = false; VectorizedArrayType = dealii::VectorizedArray<float, 4>]’:
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4562:24: warning: ‘void* __builtin_memset(void*, int, long unsigned int)’ offset [40, 2040] is out of the bounds [0, 32] of object ‘dof_indices’ with type ‘const unsigned int* [4]’ [-Warray-bounds]
4562 | dof_indices[v] = nullptr;
| ~~~~~~~~~~~~~~~^~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4492:25: note: ‘dof_indices’ declared here
4492 | const unsigned int * dof_indices[n_lanes];
| ^~~~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h: In function ‘void dealii::FEEvaluationBase<dim, n_components_, Number, is_face, VectorizedArrayType>::read_write_operation(const VectorOperation&, const std::array<VectorType*, n_components_>&, const std::array<const std::vector<dealii::ArrayView<const typename VectorType::value_type> >*, n_components_>&, const std::bitset<VectorizedArrayType::size()>&, bool) const [with VectorType = dealii::LinearAlgebra::distributed::Vector<float>; VectorOperation = dealii::internal::VectorDistributorLocalToGlobal<float, dealii::VectorizedArray<float, 4> >; int dim = 3; int n_components_ = 1; Number = float; bool is_face = false; VectorizedArrayType = dealii::VectorizedArray<float, 4>]’:
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4562:24: warning: ‘void* __builtin_memset(void*, int, long unsigned int)’ offset [40, 2040] is out of the bounds [0, 32] of object ‘dof_indices’ with type ‘const unsigned int* [4]’ [-Warray-bounds]
4562 | dof_indices[v] = nullptr;
| ~~~~~~~~~~~~~~~^~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4492:25: note: ‘dof_indices’ declared here
4492 | const unsigned int * dof_indices[n_lanes];
| ^~~~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h: In function ‘void dealii::FEEvaluationBase<dim, n_components_, Number, is_face, VectorizedArrayType>::read_write_operation(const VectorOperation&, const std::array<VectorType*, n_components_>&, const std::array<const std::vector<dealii::ArrayView<const typename VectorType::value_type> >*, n_components_>&, const std::bitset<VectorizedArrayType::size()>&, bool) const [with VectorType = dealii::LinearAlgebra::distributed::Vector<float>; VectorOperation = dealii::internal::VectorReader<float, dealii::VectorizedArray<float, 4> >; int dim = 3; int n_components_ = 1; Number = float; bool is_face = false; VectorizedArrayType = dealii::VectorizedArray<float, 4>]’:
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4562:24: warning: ‘void* __builtin_memset(void*, int, long unsigned int)’ offset [40, 2040] is out of the bounds [0, 32] of object ‘dof_indices’ with type ‘const unsigned int* [4]’ [-Warray-bounds]
4562 | dof_indices[v] = nullptr;
| ~~~~~~~~~~~~~~~^~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4492:25: note: ‘dof_indices’ declared here
4492 | const unsigned int * dof_indices[n_lanes];
| ^~~~~~~~~~~
[ 55%] Building CXX object source/numerics/CMakeFiles/obj_numerics_release.dir/vector_tools_project_hp.cc.o
[ 55%] Building CXX object source/fe/CMakeFiles/obj_fe_release.dir/mapping_fe_field_inst2.cc.o
[ 55%] Building CXX object source/numerics/CMakeFiles/obj_numerics_release.dir/vector_tools_project_codim.cc.o
[ 55%] Building CXX object source/numerics/CMakeFiles/obj_numerics_release.dir/vector_tools_project_qp.cc.o
In file included from /tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/operators.h:30,
from /tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/numerics/vector_tools_project.templates.h:33,
from /tmp/makepkg/deal-ii/src/dealii-9.3.1/source/numerics/vector_tools_project_qp.cc:17:
In member function ‘void dealii::FEEvaluationBase<dim, n_components_, Number, is_face, VectorizedArrayType>::read_write_operation(const VectorOperation&, const std::array<VectorType*, n_components_>&, const std::array<const std::vector<dealii::ArrayView<const typename VectorType::value_type> >*, n_components_>&, const std::bitset<VectorizedArrayType::size()>&, bool) const [with VectorType = dealii::LinearAlgebra::distributed::Vector<double>; VectorOperation = dealii::internal::VectorDistributorLocalToGlobal<double, dealii::VectorizedArray<double, 2> >; int dim = 1; int n_components_ = 1; Number = double; bool is_face = false; VectorizedArrayType = dealii::VectorizedArray<double, 2>]’,
inlined from ‘void dealii::FEEvaluationBase<dim, n_components_, Number, is_face, VectorizedArrayType>::distribute_local_to_global(VectorType&, unsigned int, const std::bitset<VectorizedArrayType::size()>&) const [with VectorType = dealii::LinearAlgebra::distributed::Vector<double>; int dim = 1; int n_components_ = 1; Number = double; bool is_face = false; VectorizedArrayType = dealii::VectorizedArray<double, 2>]’ at /tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:5352:23,
inlined from ‘void dealii::MatrixFreeOperators::MassOperator<dim, fe_degree, n_q_points_1d, n_components, VectorType, VectorizedArrayType>::local_apply_cell(const dealii::MatrixFree<dim, typename dealii::MatrixFreeOperators::Base<dim, VectorType, VectorizedArrayType>::value_type, VectorizedArrayType>&, VectorType&, const VectorType&, const std::pair<unsigned int, unsigned int>&) const [with int dim = 1; int fe_degree = -1; int n_q_points_1d = 0; int n_components = 1; VectorType = dealii::LinearAlgebra::distributed::Vector<double>; VectorizedArrayType = dealii::VectorizedArray<double, 2>]’ at /tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/operators.h:1873:39:
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4562:24: warning: ‘void* __builtin_memset(void*, int, long unsigned int)’ offset [24, 2040] is out of the bounds [0, 16] of object ‘dof_indices’ with type ‘const unsigned int* [2]’ [-Warray-bounds]
4562 | dof_indices[v] = nullptr;
| ~~~~~~~~~~~~~~~^~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h: In member function ‘void dealii::MatrixFreeOperators::MassOperator<dim, fe_degree, n_q_points_1d, n_components, VectorType, VectorizedArrayType>::local_apply_cell(const dealii::MatrixFree<dim, typename dealii::MatrixFreeOperators::Base<dim, VectorType, VectorizedArrayType>::value_type, VectorizedArrayType>&, VectorType&, const VectorType&, const std::pair<unsigned int, unsigned int>&) const [with int dim = 1; int fe_degree = -1; int n_q_points_1d = 0; int n_components = 1; VectorType = dealii::LinearAlgebra::distributed::Vector<double>; VectorizedArrayType = dealii::VectorizedArray<double, 2>]’:
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4492:25: note: ‘dof_indices’ declared here
4492 | const unsigned int * dof_indices[n_lanes];
| ^~~~~~~~~~~
In member function ‘void dealii::FEEvaluationBase<dim, n_components_, Number, is_face, VectorizedArrayType>::read_write_operation(const VectorOperation&, const std::array<VectorType*, n_components_>&, const std::array<const std::vector<dealii::ArrayView<const typename VectorType::value_type> >*, n_components_>&, const std::bitset<VectorizedArrayType::size()>&, bool) const [with VectorType = dealii::LinearAlgebra::distributed::Vector<double>; VectorOperation = dealii::internal::VectorReader<double, dealii::VectorizedArray<double, 2> >; int dim = 1; int n_components_ = 1; Number = double; bool is_face = false; VectorizedArrayType = dealii::VectorizedArray<double, 2>]’,
inlined from ‘void dealii::FEEvaluationBase<dim, n_components_, Number, is_face, VectorizedArrayType>::read_dof_values(const VectorType&, unsigned int) [with VectorType = dealii::LinearAlgebra::distributed::Vector<double>; int dim = 1; int n_components_ = 1; Number = double; bool is_face = false; VectorizedArrayType = dealii::VectorizedArray<double, 2>]’ at /tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:5279:23,
inlined from ‘void dealii::MatrixFreeOperators::MassOperator<dim, fe_degree, n_q_points_1d, n_components, VectorType, VectorizedArrayType>::local_apply_cell(const dealii::MatrixFree<dim, typename dealii::MatrixFreeOperators::Base<dim, VectorType, VectorizedArrayType>::value_type, VectorizedArrayType>&, VectorType&, const VectorType&, const std::pair<unsigned int, unsigned int>&) const [with int dim = 1; int fe_degree = -1; int n_q_points_1d = 0; int n_components = 1; VectorType = dealii::LinearAlgebra::distributed::Vector<double>; VectorizedArrayType = dealii::VectorizedArray<double, 2>]’ at /tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/operators.h:1868:28:
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4562:24: warning: ‘void* __builtin_memset(void*, int, long unsigned int)’ offset [24, 2040] is out of the bounds [0, 16] of object ‘dof_indices’ with type ‘const unsigned int* [2]’ [-Warray-bounds]
4562 | dof_indices[v] = nullptr;
| ~~~~~~~~~~~~~~~^~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h: In member function ‘void dealii::MatrixFreeOperators::MassOperator<dim, fe_degree, n_q_points_1d, n_components, VectorType, VectorizedArrayType>::local_apply_cell(const dealii::MatrixFree<dim, typename dealii::MatrixFreeOperators::Base<dim, VectorType, VectorizedArrayType>::value_type, VectorizedArrayType>&, VectorType&, const VectorType&, const std::pair<unsigned int, unsigned int>&) const [with int dim = 1; int fe_degree = -1; int n_q_points_1d = 0; int n_components = 1; VectorType = dealii::LinearAlgebra::distributed::Vector<double>; VectorizedArrayType = dealii::VectorizedArray<double, 2>]’:
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4492:25: note: ‘dof_indices’ declared here
4492 | const unsigned int * dof_indices[n_lanes];
| ^~~~~~~~~~~
In member function ‘void dealii::FEEvaluationBase<dim, n_components_, Number, is_face, VectorizedArrayType>::read_write_operation(const VectorOperation&, const std::array<VectorType*, n_components_>&, const std::array<const std::vector<dealii::ArrayView<const typename VectorType::value_type> >*, n_components_>&, const std::bitset<VectorizedArrayType::size()>&, bool) const [with VectorType = dealii::LinearAlgebra::distributed::Vector<double>; VectorOperation = dealii::internal::VectorDistributorLocalToGlobal<double, dealii::VectorizedArray<double, 2> >; int dim = 2; int n_components_ = 1; Number = double; bool is_face = false; VectorizedArrayType = dealii::VectorizedArray<double, 2>]’,
inlined from ‘void dealii::FEEvaluationBase<dim, n_components_, Number, is_face, VectorizedArrayType>::distribute_local_to_global(VectorType&, unsigned int, const std::bitset<VectorizedArrayType::size()>&) const [with VectorType = dealii::LinearAlgebra::distributed::Vector<double>; int dim = 2; int n_components_ = 1; Number = double; bool is_face = false; VectorizedArrayType = dealii::VectorizedArray<double, 2>]’ at /tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:5352:23,
inlined from ‘void dealii::MatrixFreeOperators::MassOperator<dim, fe_degree, n_q_points_1d, n_components, VectorType, VectorizedArrayType>::local_apply_cell(const dealii::MatrixFree<dim, typename dealii::MatrixFreeOperators::Base<dim, VectorType, VectorizedArrayType>::value_type, VectorizedArrayType>&, VectorType&, const VectorType&, const std::pair<unsigned int, unsigned int>&) const [with int dim = 2; int fe_degree = -1; int n_q_points_1d = 0; int n_components = 1; VectorType = dealii::LinearAlgebra::distributed::Vector<double>; VectorizedArrayType = dealii::VectorizedArray<double, 2>]’ at /tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/operators.h:1873:39:
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4562:24: warning: ‘void* __builtin_memset(void*, int, long unsigned int)’ offset [24, 2040] is out of the bounds [0, 16] of object ‘dof_indices’ with type ‘const unsigned int* [2]’ [-Warray-bounds]
4562 | dof_indices[v] = nullptr;
| ~~~~~~~~~~~~~~~^~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h: In member function ‘void dealii::MatrixFreeOperators::MassOperator<dim, fe_degree, n_q_points_1d, n_components, VectorType, VectorizedArrayType>::local_apply_cell(const dealii::MatrixFree<dim, typename dealii::MatrixFreeOperators::Base<dim, VectorType, VectorizedArrayType>::value_type, VectorizedArrayType>&, VectorType&, const VectorType&, const std::pair<unsigned int, unsigned int>&) const [with int dim = 2; int fe_degree = -1; int n_q_points_1d = 0; int n_components = 1; VectorType = dealii::LinearAlgebra::distributed::Vector<double>; VectorizedArrayType = dealii::VectorizedArray<double, 2>]’:
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4492:25: note: ‘dof_indices’ declared here
4492 | const unsigned int * dof_indices[n_lanes];
| ^~~~~~~~~~~
In member function ‘void dealii::FEEvaluationBase<dim, n_components_, Number, is_face, VectorizedArrayType>::read_write_operation(const VectorOperation&, const std::array<VectorType*, n_components_>&, const std::array<const std::vector<dealii::ArrayView<const typename VectorType::value_type> >*, n_components_>&, const std::bitset<VectorizedArrayType::size()>&, bool) const [with VectorType = dealii::LinearAlgebra::distributed::Vector<double>; VectorOperation = dealii::internal::VectorReader<double, dealii::VectorizedArray<double, 2> >; int dim = 2; int n_components_ = 1; Number = double; bool is_face = false; VectorizedArrayType = dealii::VectorizedArray<double, 2>]’,
inlined from ‘void dealii::FEEvaluationBase<dim, n_components_, Number, is_face, VectorizedArrayType>::read_dof_values(const VectorType&, unsigned int) [with VectorType = dealii::LinearAlgebra::distributed::Vector<double>; int dim = 2; int n_components_ = 1; Number = double; bool is_face = false; VectorizedArrayType = dealii::VectorizedArray<double, 2>]’ at /tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:5279:23,
inlined from ‘void dealii::MatrixFreeOperators::MassOperator<dim, fe_degree, n_q_points_1d, n_components, VectorType, VectorizedArrayType>::local_apply_cell(const dealii::MatrixFree<dim, typename dealii::MatrixFreeOperators::Base<dim, VectorType, VectorizedArrayType>::value_type, VectorizedArrayType>&, VectorType&, const VectorType&, const std::pair<unsigned int, unsigned int>&) const [with int dim = 2; int fe_degree = -1; int n_q_points_1d = 0; int n_components = 1; VectorType = dealii::LinearAlgebra::distributed::Vector<double>; VectorizedArrayType = dealii::VectorizedArray<double, 2>]’ at /tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/operators.h:1868:28:
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4562:24: warning: ‘void* __builtin_memset(void*, int, long unsigned int)’ offset [24, 2040] is out of the bounds [0, 16] of object ‘dof_indices’ with type ‘const unsigned int* [2]’ [-Warray-bounds]
4562 | dof_indices[v] = nullptr;
| ~~~~~~~~~~~~~~~^~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h: In member function ‘void dealii::MatrixFreeOperators::MassOperator<dim, fe_degree, n_q_points_1d, n_components, VectorType, VectorizedArrayType>::local_apply_cell(const dealii::MatrixFree<dim, typename dealii::MatrixFreeOperators::Base<dim, VectorType, VectorizedArrayType>::value_type, VectorizedArrayType>&, VectorType&, const VectorType&, const std::pair<unsigned int, unsigned int>&) const [with int dim = 2; int fe_degree = -1; int n_q_points_1d = 0; int n_components = 1; VectorType = dealii::LinearAlgebra::distributed::Vector<double>; VectorizedArrayType = dealii::VectorizedArray<double, 2>]’:
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4492:25: note: ‘dof_indices’ declared here
4492 | const unsigned int * dof_indices[n_lanes];
| ^~~~~~~~~~~
In member function ‘void dealii::FEEvaluationBase<dim, n_components_, Number, is_face, VectorizedArrayType>::read_write_operation(const VectorOperation&, const std::array<VectorType*, n_components_>&, const std::array<const std::vector<dealii::ArrayView<const typename VectorType::value_type> >*, n_components_>&, const std::bitset<VectorizedArrayType::size()>&, bool) const [with VectorType = dealii::LinearAlgebra::distributed::Vector<double>; VectorOperation = dealii::internal::VectorDistributorLocalToGlobal<double, dealii::VectorizedArray<double, 2> >; int dim = 3; int n_components_ = 1; Number = double; bool is_face = false; VectorizedArrayType = dealii::VectorizedArray<double, 2>]’,
inlined from ‘void dealii::FEEvaluationBase<dim, n_components_, Number, is_face, VectorizedArrayType>::distribute_local_to_global(VectorType&, unsigned int, const std::bitset<VectorizedArrayType::size()>&) const [with VectorType = dealii::LinearAlgebra::distributed::Vector<double>; int dim = 3; int n_components_ = 1; Number = double; bool is_face = false; VectorizedArrayType = dealii::VectorizedArray<double, 2>]’ at /tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:5352:23,
inlined from ‘void dealii::MatrixFreeOperators::MassOperator<dim, fe_degree, n_q_points_1d, n_components, VectorType, VectorizedArrayType>::local_apply_cell(const dealii::MatrixFree<dim, typename dealii::MatrixFreeOperators::Base<dim, VectorType, VectorizedArrayType>::value_type, VectorizedArrayType>&, VectorType&, const VectorType&, const std::pair<unsigned int, unsigned int>&) const [with int dim = 3; int fe_degree = -1; int n_q_points_1d = 0; int n_components = 1; VectorType = dealii::LinearAlgebra::distributed::Vector<double>; VectorizedArrayType = dealii::VectorizedArray<double, 2>]’ at /tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/operators.h:1873:39:
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4562:24: warning: ‘void* __builtin_memset(void*, int, long unsigned int)’ offset [24, 2040] is out of the bounds [0, 16] of object ‘dof_indices’ with type ‘const unsigned int* [2]’ [-Warray-bounds]
4562 | dof_indices[v] = nullptr;
| ~~~~~~~~~~~~~~~^~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h: In member function ‘void dealii::MatrixFreeOperators::MassOperator<dim, fe_degree, n_q_points_1d, n_components, VectorType, VectorizedArrayType>::local_apply_cell(const dealii::MatrixFree<dim, typename dealii::MatrixFreeOperators::Base<dim, VectorType, VectorizedArrayType>::value_type, VectorizedArrayType>&, VectorType&, const VectorType&, const std::pair<unsigned int, unsigned int>&) const [with int dim = 3; int fe_degree = -1; int n_q_points_1d = 0; int n_components = 1; VectorType = dealii::LinearAlgebra::distributed::Vector<double>; VectorizedArrayType = dealii::VectorizedArray<double, 2>]’:
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4492:25: note: ‘dof_indices’ declared here
4492 | const unsigned int * dof_indices[n_lanes];
| ^~~~~~~~~~~
In member function ‘void dealii::FEEvaluationBase<dim, n_components_, Number, is_face, VectorizedArrayType>::read_write_operation(const VectorOperation&, const std::array<VectorType*, n_components_>&, const std::array<const std::vector<dealii::ArrayView<const typename VectorType::value_type> >*, n_components_>&, const std::bitset<VectorizedArrayType::size()>&, bool) const [with VectorType = dealii::LinearAlgebra::distributed::Vector<double>; VectorOperation = dealii::internal::VectorReader<double, dealii::VectorizedArray<double, 2> >; int dim = 3; int n_components_ = 1; Number = double; bool is_face = false; VectorizedArrayType = dealii::VectorizedArray<double, 2>]’,
inlined from ‘void dealii::FEEvaluationBase<dim, n_components_, Number, is_face, VectorizedArrayType>::read_dof_values(const VectorType&, unsigned int) [with VectorType = dealii::LinearAlgebra::distributed::Vector<double>; int dim = 3; int n_components_ = 1; Number = double; bool is_face = false; VectorizedArrayType = dealii::VectorizedArray<double, 2>]’ at /tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:5279:23,
inlined from ‘void dealii::MatrixFreeOperators::MassOperator<dim, fe_degree, n_q_points_1d, n_components, VectorType, VectorizedArrayType>::local_apply_cell(const dealii::MatrixFree<dim, typename dealii::MatrixFreeOperators::Base<dim, VectorType, VectorizedArrayType>::value_type, VectorizedArrayType>&, VectorType&, const VectorType&, const std::pair<unsigned int, unsigned int>&) const [with int dim = 3; int fe_degree = -1; int n_q_points_1d = 0; int n_components = 1; VectorType = dealii::LinearAlgebra::distributed::Vector<double>; VectorizedArrayType = dealii::VectorizedArray<double, 2>]’ at /tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/operators.h:1868:28:
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4562:24: warning: ‘void* __builtin_memset(void*, int, long unsigned int)’ offset [24, 2040] is out of the bounds [0, 16] of object ‘dof_indices’ with type ‘const unsigned int* [2]’ [-Warray-bounds]
4562 | dof_indices[v] = nullptr;
| ~~~~~~~~~~~~~~~^~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h: In member function ‘void dealii::MatrixFreeOperators::MassOperator<dim, fe_degree, n_q_points_1d, n_components, VectorType, VectorizedArrayType>::local_apply_cell(const dealii::MatrixFree<dim, typename dealii::MatrixFreeOperators::Base<dim, VectorType, VectorizedArrayType>::value_type, VectorizedArrayType>&, VectorType&, const VectorType&, const std::pair<unsigned int, unsigned int>&) const [with int dim = 3; int fe_degree = -1; int n_q_points_1d = 0; int n_components = 1; VectorType = dealii::LinearAlgebra::distributed::Vector<double>; VectorizedArrayType = dealii::VectorizedArray<double, 2>]’:
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4492:25: note: ‘dof_indices’ declared here
4492 | const unsigned int * dof_indices[n_lanes];
| ^~~~~~~~~~~
In member function ‘void dealii::FEEvaluationBase<dim, n_components_, Number, is_face, VectorizedArrayType>::read_write_operation(const VectorOperation&, const std::array<VectorType*, n_components_>&, const std::array<const std::vector<dealii::ArrayView<const typename VectorType::value_type> >*, n_components_>&, const std::bitset<VectorizedArrayType::size()>&, bool) const [with VectorType = dealii::LinearAlgebra::distributed::Vector<float>; VectorOperation = dealii::internal::VectorDistributorLocalToGlobal<float, dealii::VectorizedArray<float, 4> >; int dim = 1; int n_components_ = 1; Number = float; bool is_face = false; VectorizedArrayType = dealii::VectorizedArray<float, 4>]’,
inlined from ‘void dealii::FEEvaluationBase<dim, n_components_, Number, is_face, VectorizedArrayType>::distribute_local_to_global(VectorType&, unsigned int, const std::bitset<VectorizedArrayType::size()>&) const [with VectorType = dealii::LinearAlgebra::distributed::Vector<float>; int dim = 1; int n_components_ = 1; Number = float; bool is_face = false; VectorizedArrayType = dealii::VectorizedArray<float, 4>]’ at /tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:5352:23,
inlined from ‘void dealii::MatrixFreeOperators::MassOperator<dim, fe_degree, n_q_points_1d, n_components, VectorType, VectorizedArrayType>::local_apply_cell(const dealii::MatrixFree<dim, typename dealii::MatrixFreeOperators::Base<dim, VectorType, VectorizedArrayType>::value_type, VectorizedArrayType>&, VectorType&, const VectorType&, const std::pair<unsigned int, unsigned int>&) const [with int dim = 1; int fe_degree = -1; int n_q_points_1d = 0; int n_components = 1; VectorType = dealii::LinearAlgebra::distributed::Vector<float>; VectorizedArrayType = dealii::VectorizedArray<float, 4>]’ at /tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/operators.h:1873:39:
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4562:24: warning: ‘void* __builtin_memset(void*, int, long unsigned int)’ offset [40, 2040] is out of the bounds [0, 32] of object ‘dof_indices’ with type ‘const unsigned int* [4]’ [-Warray-bounds]
4562 | dof_indices[v] = nullptr;
| ~~~~~~~~~~~~~~~^~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h: In member function ‘void dealii::MatrixFreeOperators::MassOperator<dim, fe_degree, n_q_points_1d, n_components, VectorType, VectorizedArrayType>::local_apply_cell(const dealii::MatrixFree<dim, typename dealii::MatrixFreeOperators::Base<dim, VectorType, VectorizedArrayType>::value_type, VectorizedArrayType>&, VectorType&, const VectorType&, const std::pair<unsigned int, unsigned int>&) const [with int dim = 1; int fe_degree = -1; int n_q_points_1d = 0; int n_components = 1; VectorType = dealii::LinearAlgebra::distributed::Vector<float>; VectorizedArrayType = dealii::VectorizedArray<float, 4>]’:
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4492:25: note: ‘dof_indices’ declared here
4492 | const unsigned int * dof_indices[n_lanes];
| ^~~~~~~~~~~
In member function ‘void dealii::FEEvaluationBase<dim, n_components_, Number, is_face, VectorizedArrayType>::read_write_operation(const VectorOperation&, const std::array<VectorType*, n_components_>&, const std::array<const std::vector<dealii::ArrayView<const typename VectorType::value_type> >*, n_components_>&, const std::bitset<VectorizedArrayType::size()>&, bool) const [with VectorType = dealii::LinearAlgebra::distributed::Vector<float>; VectorOperation = dealii::internal::VectorReader<float, dealii::VectorizedArray<float, 4> >; int dim = 1; int n_components_ = 1; Number = float; bool is_face = false; VectorizedArrayType = dealii::VectorizedArray<float, 4>]’,
inlined from ‘void dealii::FEEvaluationBase<dim, n_components_, Number, is_face, VectorizedArrayType>::read_dof_values(const VectorType&, unsigned int) [with VectorType = dealii::LinearAlgebra::distributed::Vector<float>; int dim = 1; int n_components_ = 1; Number = float; bool is_face = false; VectorizedArrayType = dealii::VectorizedArray<float, 4>]’ at /tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:5279:23,
inlined from ‘void dealii::MatrixFreeOperators::MassOperator<dim, fe_degree, n_q_points_1d, n_components, VectorType, VectorizedArrayType>::local_apply_cell(const dealii::MatrixFree<dim, typename dealii::MatrixFreeOperators::Base<dim, VectorType, VectorizedArrayType>::value_type, VectorizedArrayType>&, VectorType&, const VectorType&, const std::pair<unsigned int, unsigned int>&) const [with int dim = 1; int fe_degree = -1; int n_q_points_1d = 0; int n_components = 1; VectorType = dealii::LinearAlgebra::distributed::Vector<float>; VectorizedArrayType = dealii::VectorizedArray<float, 4>]’ at /tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/operators.h:1868:28:
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4562:24: warning: ‘void* __builtin_memset(void*, int, long unsigned int)’ offset [40, 2040] is out of the bounds [0, 32] of object ‘dof_indices’ with type ‘const unsigned int* [4]’ [-Warray-bounds]
4562 | dof_indices[v] = nullptr;
| ~~~~~~~~~~~~~~~^~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h: In member function ‘void dealii::MatrixFreeOperators::MassOperator<dim, fe_degree, n_q_points_1d, n_components, VectorType, VectorizedArrayType>::local_apply_cell(const dealii::MatrixFree<dim, typename dealii::MatrixFreeOperators::Base<dim, VectorType, VectorizedArrayType>::value_type, VectorizedArrayType>&, VectorType&, const VectorType&, const std::pair<unsigned int, unsigned int>&) const [with int dim = 1; int fe_degree = -1; int n_q_points_1d = 0; int n_components = 1; VectorType = dealii::LinearAlgebra::distributed::Vector<float>; VectorizedArrayType = dealii::VectorizedArray<float, 4>]’:
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4492:25: note: ‘dof_indices’ declared here
4492 | const unsigned int * dof_indices[n_lanes];
| ^~~~~~~~~~~
In member function ‘void dealii::FEEvaluationBase<dim, n_components_, Number, is_face, VectorizedArrayType>::read_write_operation(const VectorOperation&, const std::array<VectorType*, n_components_>&, const std::array<const std::vector<dealii::ArrayView<const typename VectorType::value_type> >*, n_components_>&, const std::bitset<VectorizedArrayType::size()>&, bool) const [with VectorType = dealii::LinearAlgebra::distributed::Vector<float>; VectorOperation = dealii::internal::VectorDistributorLocalToGlobal<float, dealii::VectorizedArray<float, 4> >; int dim = 2; int n_components_ = 1; Number = float; bool is_face = false; VectorizedArrayType = dealii::VectorizedArray<float, 4>]’,
inlined from ‘void dealii::FEEvaluationBase<dim, n_components_, Number, is_face, VectorizedArrayType>::distribute_local_to_global(VectorType&, unsigned int, const std::bitset<VectorizedArrayType::size()>&) const [with VectorType = dealii::LinearAlgebra::distributed::Vector<float>; int dim = 2; int n_components_ = 1; Number = float; bool is_face = false; VectorizedArrayType = dealii::VectorizedArray<float, 4>]’ at /tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:5352:23,
inlined from ‘void dealii::MatrixFreeOperators::MassOperator<dim, fe_degree, n_q_points_1d, n_components, VectorType, VectorizedArrayType>::local_apply_cell(const dealii::MatrixFree<dim, typename dealii::MatrixFreeOperators::Base<dim, VectorType, VectorizedArrayType>::value_type, VectorizedArrayType>&, VectorType&, const VectorType&, const std::pair<unsigned int, unsigned int>&) const [with int dim = 2; int fe_degree = -1; int n_q_points_1d = 0; int n_components = 1; VectorType = dealii::LinearAlgebra::distributed::Vector<float>; VectorizedArrayType = dealii::VectorizedArray<float, 4>]’ at /tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/operators.h:1873:39:
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4562:24: warning: ‘void* __builtin_memset(void*, int, long unsigned int)’ offset [40, 2040] is out of the bounds [0, 32] of object ‘dof_indices’ with type ‘const unsigned int* [4]’ [-Warray-bounds]
4562 | dof_indices[v] = nullptr;
| ~~~~~~~~~~~~~~~^~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h: In member function ‘void dealii::MatrixFreeOperators::MassOperator<dim, fe_degree, n_q_points_1d, n_components, VectorType, VectorizedArrayType>::local_apply_cell(const dealii::MatrixFree<dim, typename dealii::MatrixFreeOperators::Base<dim, VectorType, VectorizedArrayType>::value_type, VectorizedArrayType>&, VectorType&, const VectorType&, const std::pair<unsigned int, unsigned int>&) const [with int dim = 2; int fe_degree = -1; int n_q_points_1d = 0; int n_components = 1; VectorType = dealii::LinearAlgebra::distributed::Vector<float>; VectorizedArrayType = dealii::VectorizedArray<float, 4>]’:
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4492:25: note: ‘dof_indices’ declared here
4492 | const unsigned int * dof_indices[n_lanes];
| ^~~~~~~~~~~
In member function ‘void dealii::FEEvaluationBase<dim, n_components_, Number, is_face, VectorizedArrayType>::read_write_operation(const VectorOperation&, const std::array<VectorType*, n_components_>&, const std::array<const std::vector<dealii::ArrayView<const typename VectorType::value_type> >*, n_components_>&, const std::bitset<VectorizedArrayType::size()>&, bool) const [with VectorType = dealii::LinearAlgebra::distributed::Vector<float>; VectorOperation = dealii::internal::VectorReader<float, dealii::VectorizedArray<float, 4> >; int dim = 2; int n_components_ = 1; Number = float; bool is_face = false; VectorizedArrayType = dealii::VectorizedArray<float, 4>]’,
inlined from ‘void dealii::FEEvaluationBase<dim, n_components_, Number, is_face, VectorizedArrayType>::read_dof_values(const VectorType&, unsigned int) [with VectorType = dealii::LinearAlgebra::distributed::Vector<float>; int dim = 2; int n_components_ = 1; Number = float; bool is_face = false; VectorizedArrayType = dealii::VectorizedArray<float, 4>]’ at /tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:5279:23,
inlined from ‘void dealii::MatrixFreeOperators::MassOperator<dim, fe_degree, n_q_points_1d, n_components, VectorType, VectorizedArrayType>::local_apply_cell(const dealii::MatrixFree<dim, typename dealii::MatrixFreeOperators::Base<dim, VectorType, VectorizedArrayType>::value_type, VectorizedArrayType>&, VectorType&, const VectorType&, const std::pair<unsigned int, unsigned int>&) const [with int dim = 2; int fe_degree = -1; int n_q_points_1d = 0; int n_components = 1; VectorType = dealii::LinearAlgebra::distributed::Vector<float>; VectorizedArrayType = dealii::VectorizedArray<float, 4>]’ at /tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/operators.h:1868:28:
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4562:24: warning: ‘void* __builtin_memset(void*, int, long unsigned int)’ offset [40, 2040] is out of the bounds [0, 32] of object ‘dof_indices’ with type ‘const unsigned int* [4]’ [-Warray-bounds]
4562 | dof_indices[v] = nullptr;
| ~~~~~~~~~~~~~~~^~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h: In member function ‘void dealii::MatrixFreeOperators::MassOperator<dim, fe_degree, n_q_points_1d, n_components, VectorType, VectorizedArrayType>::local_apply_cell(const dealii::MatrixFree<dim, typename dealii::MatrixFreeOperators::Base<dim, VectorType, VectorizedArrayType>::value_type, VectorizedArrayType>&, VectorType&, const VectorType&, const std::pair<unsigned int, unsigned int>&) const [with int dim = 2; int fe_degree = -1; int n_q_points_1d = 0; int n_components = 1; VectorType = dealii::LinearAlgebra::distributed::Vector<float>; VectorizedArrayType = dealii::VectorizedArray<float, 4>]’:
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4492:25: note: ‘dof_indices’ declared here
4492 | const unsigned int * dof_indices[n_lanes];
| ^~~~~~~~~~~
In member function ‘void dealii::FEEvaluationBase<dim, n_components_, Number, is_face, VectorizedArrayType>::read_write_operation(const VectorOperation&, const std::array<VectorType*, n_components_>&, const std::array<const std::vector<dealii::ArrayView<const typename VectorType::value_type> >*, n_components_>&, const std::bitset<VectorizedArrayType::size()>&, bool) const [with VectorType = dealii::LinearAlgebra::distributed::Vector<float>; VectorOperation = dealii::internal::VectorDistributorLocalToGlobal<float, dealii::VectorizedArray<float, 4> >; int dim = 3; int n_components_ = 1; Number = float; bool is_face = false; VectorizedArrayType = dealii::VectorizedArray<float, 4>]’,
inlined from ‘void dealii::FEEvaluationBase<dim, n_components_, Number, is_face, VectorizedArrayType>::distribute_local_to_global(VectorType&, unsigned int, const std::bitset<VectorizedArrayType::size()>&) const [with VectorType = dealii::LinearAlgebra::distributed::Vector<float>; int dim = 3; int n_components_ = 1; Number = float; bool is_face = false; VectorizedArrayType = dealii::VectorizedArray<float, 4>]’ at /tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:5352:23,
inlined from ‘void dealii::MatrixFreeOperators::MassOperator<dim, fe_degree, n_q_points_1d, n_components, VectorType, VectorizedArrayType>::local_apply_cell(const dealii::MatrixFree<dim, typename dealii::MatrixFreeOperators::Base<dim, VectorType, VectorizedArrayType>::value_type, VectorizedArrayType>&, VectorType&, const VectorType&, const std::pair<unsigned int, unsigned int>&) const [with int dim = 3; int fe_degree = -1; int n_q_points_1d = 0; int n_components = 1; VectorType = dealii::LinearAlgebra::distributed::Vector<float>; VectorizedArrayType = dealii::VectorizedArray<float, 4>]’ at /tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/operators.h:1873:39:
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4562:24: warning: ‘void* __builtin_memset(void*, int, long unsigned int)’ offset [40, 2040] is out of the bounds [0, 32] of object ‘dof_indices’ with type ‘const unsigned int* [4]’ [-Warray-bounds]
4562 | dof_indices[v] = nullptr;
| ~~~~~~~~~~~~~~~^~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h: In member function ‘void dealii::MatrixFreeOperators::MassOperator<dim, fe_degree, n_q_points_1d, n_components, VectorType, VectorizedArrayType>::local_apply_cell(const dealii::MatrixFree<dim, typename dealii::MatrixFreeOperators::Base<dim, VectorType, VectorizedArrayType>::value_type, VectorizedArrayType>&, VectorType&, const VectorType&, const std::pair<unsigned int, unsigned int>&) const [with int dim = 3; int fe_degree = -1; int n_q_points_1d = 0; int n_components = 1; VectorType = dealii::LinearAlgebra::distributed::Vector<float>; VectorizedArrayType = dealii::VectorizedArray<float, 4>]’:
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4492:25: note: ‘dof_indices’ declared here
4492 | const unsigned int * dof_indices[n_lanes];
| ^~~~~~~~~~~
In member function ‘void dealii::FEEvaluationBase<dim, n_components_, Number, is_face, VectorizedArrayType>::read_write_operation(const VectorOperation&, const std::array<VectorType*, n_components_>&, const std::array<const std::vector<dealii::ArrayView<const typename VectorType::value_type> >*, n_components_>&, const std::bitset<VectorizedArrayType::size()>&, bool) const [with VectorType = dealii::LinearAlgebra::distributed::Vector<float>; VectorOperation = dealii::internal::VectorReader<float, dealii::VectorizedArray<float, 4> >; int dim = 3; int n_components_ = 1; Number = float; bool is_face = false; VectorizedArrayType = dealii::VectorizedArray<float, 4>]’,
inlined from ‘void dealii::FEEvaluationBase<dim, n_components_, Number, is_face, VectorizedArrayType>::read_dof_values(const VectorType&, unsigned int) [with VectorType = dealii::LinearAlgebra::distributed::Vector<float>; int dim = 3; int n_components_ = 1; Number = float; bool is_face = false; VectorizedArrayType = dealii::VectorizedArray<float, 4>]’ at /tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:5279:23,
inlined from ‘void dealii::MatrixFreeOperators::MassOperator<dim, fe_degree, n_q_points_1d, n_components, VectorType, VectorizedArrayType>::local_apply_cell(const dealii::MatrixFree<dim, typename dealii::MatrixFreeOperators::Base<dim, VectorType, VectorizedArrayType>::value_type, VectorizedArrayType>&, VectorType&, const VectorType&, const std::pair<unsigned int, unsigned int>&) const [with int dim = 3; int fe_degree = -1; int n_q_points_1d = 0; int n_components = 1; VectorType = dealii::LinearAlgebra::distributed::Vector<float>; VectorizedArrayType = dealii::VectorizedArray<float, 4>]’ at /tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/operators.h:1868:28:
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4562:24: warning: ‘void* __builtin_memset(void*, int, long unsigned int)’ offset [40, 2040] is out of the bounds [0, 32] of object ‘dof_indices’ with type ‘const unsigned int* [4]’ [-Warray-bounds]
4562 | dof_indices[v] = nullptr;
| ~~~~~~~~~~~~~~~^~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h: In member function ‘void dealii::MatrixFreeOperators::MassOperator<dim, fe_degree, n_q_points_1d, n_components, VectorType, VectorizedArrayType>::local_apply_cell(const dealii::MatrixFree<dim, typename dealii::MatrixFreeOperators::Base<dim, VectorType, VectorizedArrayType>::value_type, VectorizedArrayType>&, VectorType&, const VectorType&, const std::pair<unsigned int, unsigned int>&) const [with int dim = 3; int fe_degree = -1; int n_q_points_1d = 0; int n_components = 1; VectorType = dealii::LinearAlgebra::distributed::Vector<float>; VectorizedArrayType = dealii::VectorizedArray<float, 4>]’:
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4492:25: note: ‘dof_indices’ declared here
4492 | const unsigned int * dof_indices[n_lanes];
| ^~~~~~~~~~~
[ 55%] Building CXX object source/fe/CMakeFiles/obj_fe_release.dir/fe_tools.cc.o
[ 55%] Building CXX object source/numerics/CMakeFiles/obj_numerics_release.dir/vector_tools_project_qpmf.cc.o
In file included from /tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/operators.h:30,
from /tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/numerics/vector_tools_project.templates.h:33,
from /tmp/makepkg/deal-ii/src/dealii-9.3.1/source/numerics/vector_tools_project_qpmf.cc:17:
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h: In function ‘void dealii::FEEvaluationBase<dim, n_components_, Number, is_face, VectorizedArrayType>::read_write_operation(const VectorOperation&, const std::array<VectorType*, n_components_>&, const std::array<const std::vector<dealii::ArrayView<const typename VectorType::value_type> >*, n_components_>&, const std::bitset<VectorizedArrayType::size()>&, bool) const [with VectorType = dealii::LinearAlgebra::distributed::Vector<float>; VectorOperation = dealii::internal::VectorDistributorLocalToGlobal<float, dealii::VectorizedArray<float, 4> >; int dim = 1; int n_components_ = 1; Number = float; bool is_face = false; VectorizedArrayType = dealii::VectorizedArray<float, 4>]’:
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4562:24: warning: ‘void* __builtin_memset(void*, int, long unsigned int)’ offset [40, 2040] is out of the bounds [0, 32] of object ‘dof_indices’ with type ‘const unsigned int* [4]’ [-Warray-bounds]
4562 | dof_indices[v] = nullptr;
| ~~~~~~~~~~~~~~~^~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4492:25: note: ‘dof_indices’ declared here
4492 | const unsigned int * dof_indices[n_lanes];
| ^~~~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h: In function ‘void dealii::FEEvaluationBase<dim, n_components_, Number, is_face, VectorizedArrayType>::read_write_operation(const VectorOperation&, const std::array<VectorType*, n_components_>&, const std::array<const std::vector<dealii::ArrayView<const typename VectorType::value_type> >*, n_components_>&, const std::bitset<VectorizedArrayType::size()>&, bool) const [with VectorType = dealii::LinearAlgebra::distributed::Vector<float>; VectorOperation = dealii::internal::VectorDistributorLocalToGlobal<float, dealii::VectorizedArray<float, 4> >; int dim = 3; int n_components_ = 1; Number = float; bool is_face = false; VectorizedArrayType = dealii::VectorizedArray<float, 4>]’:
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4562:24: warning: ‘void* __builtin_memset(void*, int, long unsigned int)’ offset [40, 2040] is out of the bounds [0, 32] of object ‘dof_indices’ with type ‘const unsigned int* [4]’ [-Warray-bounds]
4562 | dof_indices[v] = nullptr;
| ~~~~~~~~~~~~~~~^~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4492:25: note: ‘dof_indices’ declared here
4492 | const unsigned int * dof_indices[n_lanes];
| ^~~~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h: In function ‘void dealii::FEEvaluationBase<dim, n_components_, Number, is_face, VectorizedArrayType>::read_write_operation(const VectorOperation&, const std::array<VectorType*, n_components_>&, const std::array<const std::vector<dealii::ArrayView<const typename VectorType::value_type> >*, n_components_>&, const std::bitset<VectorizedArrayType::size()>&, bool) const [with VectorType = dealii::LinearAlgebra::distributed::Vector<float>; VectorOperation = dealii::internal::VectorDistributorLocalToGlobal<float, dealii::VectorizedArray<float, 4> >; int dim = 2; int n_components_ = 1; Number = float; bool is_face = false; VectorizedArrayType = dealii::VectorizedArray<float, 4>]’:
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4562:24: warning: ‘void* __builtin_memset(void*, int, long unsigned int)’ offset [40, 2040] is out of the bounds [0, 32] of object ‘dof_indices’ with type ‘const unsigned int* [4]’ [-Warray-bounds]
4562 | dof_indices[v] = nullptr;
| ~~~~~~~~~~~~~~~^~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4492:25: note: ‘dof_indices’ declared here
4492 | const unsigned int * dof_indices[n_lanes];
| ^~~~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h: In function ‘void dealii::FEEvaluationBase<dim, n_components_, Number, is_face, VectorizedArrayType>::read_write_operation(const VectorOperation&, const std::array<VectorType*, n_components_>&, const std::array<const std::vector<dealii::ArrayView<const typename VectorType::value_type> >*, n_components_>&, const std::bitset<VectorizedArrayType::size()>&, bool) const [with VectorType = dealii::LinearAlgebra::distributed::Vector<double>; VectorOperation = dealii::internal::VectorDistributorLocalToGlobal<double, dealii::VectorizedArray<double, 2> >; int dim = 1; int n_components_ = 1; Number = double; bool is_face = false; VectorizedArrayType = dealii::VectorizedArray<double, 2>]’:
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4562:24: warning: ‘void* __builtin_memset(void*, int, long unsigned int)’ offset [24, 2040] is out of the bounds [0, 16] of object ‘dof_indices’ with type ‘const unsigned int* [2]’ [-Warray-bounds]
4562 | dof_indices[v] = nullptr;
| ~~~~~~~~~~~~~~~^~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4492:25: note: ‘dof_indices’ declared here
4492 | const unsigned int * dof_indices[n_lanes];
| ^~~~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h: In function ‘void dealii::FEEvaluationBase<dim, n_components_, Number, is_face, VectorizedArrayType>::read_write_operation(const VectorOperation&, const std::array<VectorType*, n_components_>&, const std::array<const std::vector<dealii::ArrayView<const typename VectorType::value_type> >*, n_components_>&, const std::bitset<VectorizedArrayType::size()>&, bool) const [with VectorType = dealii::LinearAlgebra::distributed::Vector<double>; VectorOperation = dealii::internal::VectorDistributorLocalToGlobal<double, dealii::VectorizedArray<double, 2> >; int dim = 2; int n_components_ = 1; Number = double; bool is_face = false; VectorizedArrayType = dealii::VectorizedArray<double, 2>]’:
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4562:24: warning: ‘void* __builtin_memset(void*, int, long unsigned int)’ offset [24, 2040] is out of the bounds [0, 16] of object ‘dof_indices’ with type ‘const unsigned int* [2]’ [-Warray-bounds]
4562 | dof_indices[v] = nullptr;
| ~~~~~~~~~~~~~~~^~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4492:25: note: ‘dof_indices’ declared here
4492 | const unsigned int * dof_indices[n_lanes];
| ^~~~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h: In function ‘void dealii::FEEvaluationBase<dim, n_components_, Number, is_face, VectorizedArrayType>::read_write_operation(const VectorOperation&, const std::array<VectorType*, n_components_>&, const std::array<const std::vector<dealii::ArrayView<const typename VectorType::value_type> >*, n_components_>&, const std::bitset<VectorizedArrayType::size()>&, bool) const [with VectorType = dealii::LinearAlgebra::distributed::Vector<double>; VectorOperation = dealii::internal::VectorDistributorLocalToGlobal<double, dealii::VectorizedArray<double, 2> >; int dim = 3; int n_components_ = 1; Number = double; bool is_face = false; VectorizedArrayType = dealii::VectorizedArray<double, 2>]’:
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4562:24: warning: ‘void* __builtin_memset(void*, int, long unsigned int)’ offset [24, 2040] is out of the bounds [0, 16] of object ‘dof_indices’ with type ‘const unsigned int* [2]’ [-Warray-bounds]
4562 | dof_indices[v] = nullptr;
| ~~~~~~~~~~~~~~~^~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4492:25: note: ‘dof_indices’ declared here
4492 | const unsigned int * dof_indices[n_lanes];
| ^~~~~~~~~~~
In member function ‘void dealii::FEEvaluationBase<dim, n_components_, Number, is_face, VectorizedArrayType>::read_write_operation(const VectorOperation&, const std::array<VectorType*, n_components_>&, const std::array<const std::vector<dealii::ArrayView<const typename VectorType::value_type> >*, n_components_>&, const std::bitset<VectorizedArrayType::size()>&, bool) const [with VectorType = dealii::LinearAlgebra::distributed::Vector<double>; VectorOperation = dealii::internal::VectorReader<double, dealii::VectorizedArray<double, 2> >; int dim = 1; int n_components_ = 1; Number = double; bool is_face = false; VectorizedArrayType = dealii::VectorizedArray<double, 2>]’,
inlined from ‘void dealii::FEEvaluationBase<dim, n_components_, Number, is_face, VectorizedArrayType>::read_dof_values(const VectorType&, unsigned int) [with VectorType = dealii::LinearAlgebra::distributed::Vector<double>; int dim = 1; int n_components_ = 1; Number = double; bool is_face = false; VectorizedArrayType = dealii::VectorizedArray<double, 2>]’ at /tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:5279:23,
inlined from ‘void dealii::MatrixFreeOperators::MassOperator<dim, fe_degree, n_q_points_1d, n_components, VectorType, VectorizedArrayType>::local_apply_cell(const dealii::MatrixFree<dim, typename dealii::MatrixFreeOperators::Base<dim, VectorType, VectorizedArrayType>::value_type, VectorizedArrayType>&, VectorType&, const VectorType&, const std::pair<unsigned int, unsigned int>&) const [with int dim = 1; int fe_degree = -1; int n_q_points_1d = 0; int n_components = 1; VectorType = dealii::LinearAlgebra::distributed::Vector<double>; VectorizedArrayType = dealii::VectorizedArray<double, 2>]’ at /tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/operators.h:1868:28:
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4562:24: warning: ‘void* __builtin_memset(void*, int, long unsigned int)’ offset [24, 2040] is out of the bounds [0, 16] of object ‘dof_indices’ with type ‘const unsigned int* [2]’ [-Warray-bounds]
4562 | dof_indices[v] = nullptr;
| ~~~~~~~~~~~~~~~^~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h: In member function ‘void dealii::MatrixFreeOperators::MassOperator<dim, fe_degree, n_q_points_1d, n_components, VectorType, VectorizedArrayType>::local_apply_cell(const dealii::MatrixFree<dim, typename dealii::MatrixFreeOperators::Base<dim, VectorType, VectorizedArrayType>::value_type, VectorizedArrayType>&, VectorType&, const VectorType&, const std::pair<unsigned int, unsigned int>&) const [with int dim = 1; int fe_degree = -1; int n_q_points_1d = 0; int n_components = 1; VectorType = dealii::LinearAlgebra::distributed::Vector<double>; VectorizedArrayType = dealii::VectorizedArray<double, 2>]’:
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4492:25: note: ‘dof_indices’ declared here
4492 | const unsigned int * dof_indices[n_lanes];
| ^~~~~~~~~~~
In member function ‘void dealii::FEEvaluationBase<dim, n_components_, Number, is_face, VectorizedArrayType>::read_write_operation(const VectorOperation&, const std::array<VectorType*, n_components_>&, const std::array<const std::vector<dealii::ArrayView<const typename VectorType::value_type> >*, n_components_>&, const std::bitset<VectorizedArrayType::size()>&, bool) const [with VectorType = dealii::LinearAlgebra::distributed::Vector<double>; VectorOperation = dealii::internal::VectorReader<double, dealii::VectorizedArray<double, 2> >; int dim = 2; int n_components_ = 1; Number = double; bool is_face = false; VectorizedArrayType = dealii::VectorizedArray<double, 2>]’,
inlined from ‘void dealii::FEEvaluationBase<dim, n_components_, Number, is_face, VectorizedArrayType>::read_dof_values(const VectorType&, unsigned int) [with VectorType = dealii::LinearAlgebra::distributed::Vector<double>; int dim = 2; int n_components_ = 1; Number = double; bool is_face = false; VectorizedArrayType = dealii::VectorizedArray<double, 2>]’ at /tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:5279:23,
inlined from ‘void dealii::MatrixFreeOperators::MassOperator<dim, fe_degree, n_q_points_1d, n_components, VectorType, VectorizedArrayType>::local_apply_cell(const dealii::MatrixFree<dim, typename dealii::MatrixFreeOperators::Base<dim, VectorType, VectorizedArrayType>::value_type, VectorizedArrayType>&, VectorType&, const VectorType&, const std::pair<unsigned int, unsigned int>&) const [with int dim = 2; int fe_degree = -1; int n_q_points_1d = 0; int n_components = 1; VectorType = dealii::LinearAlgebra::distributed::Vector<double>; VectorizedArrayType = dealii::VectorizedArray<double, 2>]’ at /tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/operators.h:1868:28:
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4562:24: warning: ‘void* __builtin_memset(void*, int, long unsigned int)’ offset [24, 2040] is out of the bounds [0, 16] of object ‘dof_indices’ with type ‘const unsigned int* [2]’ [-Warray-bounds]
4562 | dof_indices[v] = nullptr;
| ~~~~~~~~~~~~~~~^~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h: In member function ‘void dealii::MatrixFreeOperators::MassOperator<dim, fe_degree, n_q_points_1d, n_components, VectorType, VectorizedArrayType>::local_apply_cell(const dealii::MatrixFree<dim, typename dealii::MatrixFreeOperators::Base<dim, VectorType, VectorizedArrayType>::value_type, VectorizedArrayType>&, VectorType&, const VectorType&, const std::pair<unsigned int, unsigned int>&) const [with int dim = 2; int fe_degree = -1; int n_q_points_1d = 0; int n_components = 1; VectorType = dealii::LinearAlgebra::distributed::Vector<double>; VectorizedArrayType = dealii::VectorizedArray<double, 2>]’:
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4492:25: note: ‘dof_indices’ declared here
4492 | const unsigned int * dof_indices[n_lanes];
| ^~~~~~~~~~~
In member function ‘void dealii::FEEvaluationBase<dim, n_components_, Number, is_face, VectorizedArrayType>::read_write_operation(const VectorOperation&, const std::array<VectorType*, n_components_>&, const std::array<const std::vector<dealii::ArrayView<const typename VectorType::value_type> >*, n_components_>&, const std::bitset<VectorizedArrayType::size()>&, bool) const [with VectorType = dealii::LinearAlgebra::distributed::Vector<double>; VectorOperation = dealii::internal::VectorReader<double, dealii::VectorizedArray<double, 2> >; int dim = 3; int n_components_ = 1; Number = double; bool is_face = false; VectorizedArrayType = dealii::VectorizedArray<double, 2>]’,
inlined from ‘void dealii::FEEvaluationBase<dim, n_components_, Number, is_face, VectorizedArrayType>::read_dof_values(const VectorType&, unsigned int) [with VectorType = dealii::LinearAlgebra::distributed::Vector<double>; int dim = 3; int n_components_ = 1; Number = double; bool is_face = false; VectorizedArrayType = dealii::VectorizedArray<double, 2>]’ at /tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:5279:23,
inlined from ‘void dealii::MatrixFreeOperators::MassOperator<dim, fe_degree, n_q_points_1d, n_components, VectorType, VectorizedArrayType>::local_apply_cell(const dealii::MatrixFree<dim, typename dealii::MatrixFreeOperators::Base<dim, VectorType, VectorizedArrayType>::value_type, VectorizedArrayType>&, VectorType&, const VectorType&, const std::pair<unsigned int, unsigned int>&) const [with int dim = 3; int fe_degree = -1; int n_q_points_1d = 0; int n_components = 1; VectorType = dealii::LinearAlgebra::distributed::Vector<double>; VectorizedArrayType = dealii::VectorizedArray<double, 2>]’ at /tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/operators.h:1868:28:
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4562:24: warning: ‘void* __builtin_memset(void*, int, long unsigned int)’ offset [24, 2040] is out of the bounds [0, 16] of object ‘dof_indices’ with type ‘const unsigned int* [2]’ [-Warray-bounds]
4562 | dof_indices[v] = nullptr;
| ~~~~~~~~~~~~~~~^~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h: In member function ‘void dealii::MatrixFreeOperators::MassOperator<dim, fe_degree, n_q_points_1d, n_components, VectorType, VectorizedArrayType>::local_apply_cell(const dealii::MatrixFree<dim, typename dealii::MatrixFreeOperators::Base<dim, VectorType, VectorizedArrayType>::value_type, VectorizedArrayType>&, VectorType&, const VectorType&, const std::pair<unsigned int, unsigned int>&) const [with int dim = 3; int fe_degree = -1; int n_q_points_1d = 0; int n_components = 1; VectorType = dealii::LinearAlgebra::distributed::Vector<double>; VectorizedArrayType = dealii::VectorizedArray<double, 2>]’:
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4492:25: note: ‘dof_indices’ declared here
4492 | const unsigned int * dof_indices[n_lanes];
| ^~~~~~~~~~~
In member function ‘void dealii::FEEvaluationBase<dim, n_components_, Number, is_face, VectorizedArrayType>::read_write_operation(const VectorOperation&, const std::array<VectorType*, n_components_>&, const std::array<const std::vector<dealii::ArrayView<const typename VectorType::value_type> >*, n_components_>&, const std::bitset<VectorizedArrayType::size()>&, bool) const [with VectorType = dealii::LinearAlgebra::distributed::Vector<float>; VectorOperation = dealii::internal::VectorReader<float, dealii::VectorizedArray<float, 4> >; int dim = 2; int n_components_ = 1; Number = float; bool is_face = false; VectorizedArrayType = dealii::VectorizedArray<float, 4>]’,
inlined from ‘void dealii::FEEvaluationBase<dim, n_components_, Number, is_face, VectorizedArrayType>::read_dof_values(const VectorType&, unsigned int) [with VectorType = dealii::LinearAlgebra::distributed::Vector<float>; int dim = 2; int n_components_ = 1; Number = float; bool is_face = false; VectorizedArrayType = dealii::VectorizedArray<float, 4>]’ at /tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:5279:23,
inlined from ‘void dealii::MatrixFreeOperators::MassOperator<dim, fe_degree, n_q_points_1d, n_components, VectorType, VectorizedArrayType>::local_apply_cell(const dealii::MatrixFree<dim, typename dealii::MatrixFreeOperators::Base<dim, VectorType, VectorizedArrayType>::value_type, VectorizedArrayType>&, VectorType&, const VectorType&, const std::pair<unsigned int, unsigned int>&) const [with int dim = 2; int fe_degree = -1; int n_q_points_1d = 0; int n_components = 1; VectorType = dealii::LinearAlgebra::distributed::Vector<float>; VectorizedArrayType = dealii::VectorizedArray<float, 4>]’ at /tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/operators.h:1868:28:
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4562:24: warning: ‘void* __builtin_memset(void*, int, long unsigned int)’ offset [40, 2040] is out of the bounds [0, 32] of object ‘dof_indices’ with type ‘const unsigned int* [4]’ [-Warray-bounds]
4562 | dof_indices[v] = nullptr;
| ~~~~~~~~~~~~~~~^~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h: In member function ‘void dealii::MatrixFreeOperators::MassOperator<dim, fe_degree, n_q_points_1d, n_components, VectorType, VectorizedArrayType>::local_apply_cell(const dealii::MatrixFree<dim, typename dealii::MatrixFreeOperators::Base<dim, VectorType, VectorizedArrayType>::value_type, VectorizedArrayType>&, VectorType&, const VectorType&, const std::pair<unsigned int, unsigned int>&) const [with int dim = 2; int fe_degree = -1; int n_q_points_1d = 0; int n_components = 1; VectorType = dealii::LinearAlgebra::distributed::Vector<float>; VectorizedArrayType = dealii::VectorizedArray<float, 4>]’:
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4492:25: note: ‘dof_indices’ declared here
4492 | const unsigned int * dof_indices[n_lanes];
| ^~~~~~~~~~~
In member function ‘void dealii::FEEvaluationBase<dim, n_components_, Number, is_face, VectorizedArrayType>::read_write_operation(const VectorOperation&, const std::array<VectorType*, n_components_>&, const std::array<const std::vector<dealii::ArrayView<const typename VectorType::value_type> >*, n_components_>&, const std::bitset<VectorizedArrayType::size()>&, bool) const [with VectorType = dealii::LinearAlgebra::distributed::Vector<float>; VectorOperation = dealii::internal::VectorReader<float, dealii::VectorizedArray<float, 4> >; int dim = 3; int n_components_ = 1; Number = float; bool is_face = false; VectorizedArrayType = dealii::VectorizedArray<float, 4>]’,
inlined from ‘void dealii::FEEvaluationBase<dim, n_components_, Number, is_face, VectorizedArrayType>::read_dof_values(const VectorType&, unsigned int) [with VectorType = dealii::LinearAlgebra::distributed::Vector<float>; int dim = 3; int n_components_ = 1; Number = float; bool is_face = false; VectorizedArrayType = dealii::VectorizedArray<float, 4>]’ at /tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:5279:23,
inlined from ‘void dealii::MatrixFreeOperators::MassOperator<dim, fe_degree, n_q_points_1d, n_components, VectorType, VectorizedArrayType>::local_apply_cell(const dealii::MatrixFree<dim, typename dealii::MatrixFreeOperators::Base<dim, VectorType, VectorizedArrayType>::value_type, VectorizedArrayType>&, VectorType&, const VectorType&, const std::pair<unsigned int, unsigned int>&) const [with int dim = 3; int fe_degree = -1; int n_q_points_1d = 0; int n_components = 1; VectorType = dealii::LinearAlgebra::distributed::Vector<float>; VectorizedArrayType = dealii::VectorizedArray<float, 4>]’ at /tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/operators.h:1868:28:
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4562:24: warning: ‘void* __builtin_memset(void*, int, long unsigned int)’ offset [40, 2040] is out of the bounds [0, 32] of object ‘dof_indices’ with type ‘const unsigned int* [4]’ [-Warray-bounds]
4562 | dof_indices[v] = nullptr;
| ~~~~~~~~~~~~~~~^~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h: In member function ‘void dealii::MatrixFreeOperators::MassOperator<dim, fe_degree, n_q_points_1d, n_components, VectorType, VectorizedArrayType>::local_apply_cell(const dealii::MatrixFree<dim, typename dealii::MatrixFreeOperators::Base<dim, VectorType, VectorizedArrayType>::value_type, VectorizedArrayType>&, VectorType&, const VectorType&, const std::pair<unsigned int, unsigned int>&) const [with int dim = 3; int fe_degree = -1; int n_q_points_1d = 0; int n_components = 1; VectorType = dealii::LinearAlgebra::distributed::Vector<float>; VectorizedArrayType = dealii::VectorizedArray<float, 4>]’:
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4492:25: note: ‘dof_indices’ declared here
4492 | const unsigned int * dof_indices[n_lanes];
| ^~~~~~~~~~~
In member function ‘void dealii::FEEvaluationBase<dim, n_components_, Number, is_face, VectorizedArrayType>::read_write_operation(const VectorOperation&, const std::array<VectorType*, n_components_>&, const std::array<const std::vector<dealii::ArrayView<const typename VectorType::value_type> >*, n_components_>&, const std::bitset<VectorizedArrayType::size()>&, bool) const [with VectorType = dealii::LinearAlgebra::distributed::Vector<float>; VectorOperation = dealii::internal::VectorReader<float, dealii::VectorizedArray<float, 4> >; int dim = 1; int n_components_ = 1; Number = float; bool is_face = false; VectorizedArrayType = dealii::VectorizedArray<float, 4>]’,
inlined from ‘void dealii::FEEvaluationBase<dim, n_components_, Number, is_face, VectorizedArrayType>::read_dof_values(const VectorType&, unsigned int) [with VectorType = dealii::LinearAlgebra::distributed::Vector<float>; int dim = 1; int n_components_ = 1; Number = float; bool is_face = false; VectorizedArrayType = dealii::VectorizedArray<float, 4>]’ at /tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:5279:23,
inlined from ‘void dealii::MatrixFreeOperators::MassOperator<dim, fe_degree, n_q_points_1d, n_components, VectorType, VectorizedArrayType>::local_apply_cell(const dealii::MatrixFree<dim, typename dealii::MatrixFreeOperators::Base<dim, VectorType, VectorizedArrayType>::value_type, VectorizedArrayType>&, VectorType&, const VectorType&, const std::pair<unsigned int, unsigned int>&) const [with int dim = 1; int fe_degree = -1; int n_q_points_1d = 0; int n_components = 1; VectorType = dealii::LinearAlgebra::distributed::Vector<float>; VectorizedArrayType = dealii::VectorizedArray<float, 4>]’ at /tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/operators.h:1868:28:
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4562:24: warning: ‘void* __builtin_memset(void*, int, long unsigned int)’ offset [40, 2040] is out of the bounds [0, 32] of object ‘dof_indices’ with type ‘const unsigned int* [4]’ [-Warray-bounds]
4562 | dof_indices[v] = nullptr;
| ~~~~~~~~~~~~~~~^~~~~~~~~
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h: In member function ‘void dealii::MatrixFreeOperators::MassOperator<dim, fe_degree, n_q_points_1d, n_components, VectorType, VectorizedArrayType>::local_apply_cell(const dealii::MatrixFree<dim, typename dealii::MatrixFreeOperators::Base<dim, VectorType, VectorizedArrayType>::value_type, VectorizedArrayType>&, VectorType&, const VectorType&, const std::pair<unsigned int, unsigned int>&) const [with int dim = 1; int fe_degree = -1; int n_q_points_1d = 0; int n_components = 1; VectorType = dealii::LinearAlgebra::distributed::Vector<float>; VectorizedArrayType = dealii::VectorizedArray<float, 4>]’:
/tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/matrix_free/fe_evaluation.h:4492:25: note: ‘dof_indices’ declared here
4492 | const unsigned int * dof_indices[n_lanes];
| ^~~~~~~~~~~
[ 55%] Built target obj_numerics_release
[ 55%] Building CXX object source/fe/CMakeFiles/obj_fe_release.dir/fe_tools_interpolate.cc.o
[ 55%] Building CXX object source/fe/CMakeFiles/obj_fe_release.dir/fe_tools_extrapolate.cc.o
[ 55%] Building CXX object source/dofs/CMakeFiles/obj_dofs_release.dir/block_info.cc.o
[ 55%] Building CXX object source/dofs/CMakeFiles/obj_dofs_release.dir/dof_faces.cc.o
[ 55%] Building CXX object source/dofs/CMakeFiles/obj_dofs_release.dir/dof_handler.cc.o
[ 55%] Building CXX object source/fe/CMakeFiles/obj_fe_release.dir/mapping_fe.cc.o
[ 56%] Building CXX object source/dofs/CMakeFiles/obj_dofs_release.dir/dof_objects.cc.o
[ 56%] Building CXX object source/dofs/CMakeFiles/obj_dofs_release.dir/number_cache.cc.o
[ 56%] Building CXX object source/dofs/CMakeFiles/obj_dofs_release.dir/dof_accessor.cc.o
[ 56%] Building CXX object source/fe/CMakeFiles/obj_fe_release.dir/mapping_q_generic.cc.o
[ 56%] Building CXX object source/dofs/CMakeFiles/obj_dofs_release.dir/dof_accessor_get.cc.o
[ 57%] Building CXX object source/fe/CMakeFiles/obj_fe_release.dir/mapping_q1_eulerian.cc.o
[ 57%] Building CXX object source/dofs/CMakeFiles/obj_dofs_release.dir/dof_accessor_set.cc.o
[ 57%] Building CXX object source/dofs/CMakeFiles/obj_dofs_release.dir/dof_handler_policy.cc.o
[ 57%] Building CXX object source/fe/CMakeFiles/obj_fe_release.dir/mapping_q_eulerian.cc.o
[ 57%] Building CXX object source/lac/CMakeFiles/obj_lac_release.dir/affine_constraints.cc.o
[ 57%] Building CXX object source/dofs/CMakeFiles/obj_dofs_release.dir/dof_renumbering.cc.o
[ 57%] Built target obj_fe_release
[ 57%] Building CXX object source/dofs/CMakeFiles/obj_dofs_release.dir/dof_tools.cc.o
In file included from /usr/include/boost/smart_ptr/detail/sp_thread_sleep.hpp:22,
from /usr/include/boost/smart_ptr/detail/yield_k.hpp:23,
from /usr/include/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp:14,
from /usr/include/boost/smart_ptr/detail/spinlock.hpp:42,
from /usr/include/boost/smart_ptr/detail/spinlock_pool.hpp:25,
from /usr/include/boost/smart_ptr/shared_ptr.hpp:29,
from /usr/include/boost/archive/detail/helper_collection.hpp:27,
from /usr/include/boost/archive/detail/basic_iarchive.hpp:28,
from /usr/include/boost/archive/detail/common_iarchive.hpp:21,
from /usr/include/boost/archive/basic_binary_iarchive.hpp:30,
from /usr/include/boost/archive/binary_iarchive_impl.hpp:21,
from /usr/include/boost/archive/binary_iarchive.hpp:20,
from /tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/base/utilities.h:45,
from /tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/base/tensor.h:26,
from /tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/base/point.h:23,
from /tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/base/quadrature.h:22,
from /tmp/makepkg/deal-ii/src/dealii-9.3.1/include/deal.II/base/quadrature_lib.h:22,
from /tmp/makepkg/deal-ii/src/dealii-9.3.1/source/dofs/dof_renumbering.cc:16:
/usr/include/boost/detail/iterator.hpp:13:1: note: ‘#pragma message: This header is deprecated. Use <iterator> instead.’
13 | BOOST_HEADER_DEPRECATED("<iterator>")
| ^~~~~~~~~~~~~~~~~~~~~~~
[ 57%] Building CXX object source/lac/CMakeFiles/obj_lac_release.dir/block_sparse_matrix.cc.o
[ 57%] Building CXX object source/lac/CMakeFiles/obj_lac_release.dir/block_sparse_matrix_ez.cc.o
[ 57%] Building CXX object source/lac/CMakeFiles/obj_lac_release.dir/block_sparsity_pattern.cc.o
[ 57%] Building CXX object source/lac/CMakeFiles/obj_lac_release.dir/block_vector.cc.o
[ 57%] Building CXX object source/dofs/CMakeFiles/obj_dofs_release.dir/dof_tools_constraints.cc.o
[ 57%] Building CXX object source/dofs/CMakeFiles/obj_dofs_release.dir/dof_tools_sparsity.cc.o
[ 57%] Building CXX object source/lac/CMakeFiles/obj_lac_release.dir/chunk_sparse_matrix.cc.o
[ 57%] Building CXX object source/lac/CMakeFiles/obj_lac_release.dir/chunk_sparsity_pattern.cc.o
[ 57%] Building CXX object source/lac/CMakeFiles/obj_lac_release.dir/dynamic_sparsity_pattern.cc.o
[ 57%] Building CXX object source/lac/CMakeFiles/obj_lac_release.dir/exceptions.cc.o
[ 57%] Building CXX object source/lac/CMakeFiles/obj_lac_release.dir/scalapack.cc.o
[ 58%] Building CXX object source/lac/CMakeFiles/obj_lac_release.dir/la_vector.cc.o
[ 58%] Building CXX object source/base/CMakeFiles/obj_base_release.dir/auto_derivative_function.cc.o
[ 58%] Building CXX object source/base/CMakeFiles/obj_base_release.dir/bounding_box.cc.o
[ 58%] Building CXX object source/base/CMakeFiles/obj_base_release.dir/conditional_ostream.cc.o
[ 58%] Building CXX object source/base/CMakeFiles/obj_base_release.dir/convergence_table.cc.o
[ 58%] Building CXX object source/base/CMakeFiles/obj_base_release.dir/discrete_time.cc.o
[ 58%] Building CXX object source/base/CMakeFiles/obj_base_release.dir/event.cc.o
[ 58%] Building CXX object source/lac/CMakeFiles/obj_lac_release.dir/la_parallel_vector.cc.o
[ 58%] Building CXX object source/base/CMakeFiles/obj_base_release.dir/exceptions.cc.o
[ 58%] Building CXX object source/base/CMakeFiles/obj_base_release.dir/flow_function.cc.o
[ 58%] Building CXX object source/base/CMakeFiles/obj_base_release.dir/function.cc.o
[ 58%] Building CXX object source/lac/CMakeFiles/obj_lac_release.dir/la_parallel_block_vector.cc.o
[ 58%] Building CXX object source/base/CMakeFiles/obj_base_release.dir/function_cspline.cc.o
[ 58%] Building CXX object source/base/CMakeFiles/obj_base_release.dir/function_derivative.cc.o
[ 59%] Building CXX object source/base/CMakeFiles/obj_base_release.dir/function_level_set.cc.o
[ 59%] Building CXX object source/base/CMakeFiles/obj_base_release.dir/function_lib.cc.o
[ 59%] Building CXX object source/lac/CMakeFiles/obj_lac_release.dir/matrix_out.cc.o
[ 59%] Built target obj_dofs_release
[ 59%] Building CXX object source/lac/CMakeFiles/obj_lac_release.dir/precondition_block.cc.o
[ 59%] Building CXX object source/gmsh/CMakeFiles/obj_gmsh_release.dir/utilities.cc.o
[ 59%] Building CXX object source/base/CMakeFiles/obj_base_release.dir/function_lib_cutoff.cc.o
[ 59%] Building CXX object source/lac/CMakeFiles/obj_lac_release.dir/precondition_block_ez.cc.o
[ 59%] Building CXX object source/base/CMakeFiles/obj_base_release.dir/function_parser.cc.o
[ 59%] Built target obj_gmsh_release
[ 59%] Building CXX object source/base/CMakeFiles/obj_base_release.dir/function_restriction.cc.o
[ 59%] Building CXX object source/grid/CMakeFiles/obj_grid_release.dir/cell_id.cc.o
[ 59%] Building CXX object source/base/CMakeFiles/obj_base_release.dir/function_spherical.cc.o
[ 59%] Building CXX object source/grid/CMakeFiles/obj_grid_release.dir/grid_refinement.cc.o
[ 59%] Building CXX object source/base/CMakeFiles/obj_base_release.dir/function_time.cc.o
[ 59%] Building CXX object source/lac/CMakeFiles/obj_lac_release.dir/relaxation_block.cc.o
[ 59%] Building CXX object source/base/CMakeFiles/obj_base_release.dir/function_tools.cc.o
[ 59%] Building CXX object source/base/CMakeFiles/obj_base_release.dir/geometry_info.cc.o
[ 59%] Building CXX object source/base/CMakeFiles/obj_base_release.dir/geometric_utilities.cc.o
[ 59%] Building CXX object source/grid/CMakeFiles/obj_grid_release.dir/grid_reordering.cc.o
[ 59%] Building CXX object source/base/CMakeFiles/obj_base_release.dir/graph_coloring.cc.o
[ 59%] Building CXX object source/lac/CMakeFiles/obj_lac_release.dir/read_write_vector.cc.o
[ 59%] Building CXX object source/base/CMakeFiles/obj_base_release.dir/incremental_function.cc.o
[ 60%] Building CXX object source/base/CMakeFiles/obj_base_release.dir/index_set.cc.o
[ 60%] Building CXX object source/grid/CMakeFiles/obj_grid_release.dir/intergrid_map.cc.o
[ 60%] Building CXX object source/lac/CMakeFiles/obj_lac_release.dir/solver.cc.o
[ 60%] Building CXX object source/base/CMakeFiles/obj_base_release.dir/job_identifier.cc.o
[ 60%] Building CXX object source/base/CMakeFiles/obj_base_release.dir/logstream.cc.o
[ 60%] Building CXX object source/grid/CMakeFiles/obj_grid_release.dir/manifold.cc.o
[ 60%] Building CXX object source/base/CMakeFiles/obj_base_release.dir/hdf5.cc.o
[ 60%] Building CXX object source/base/CMakeFiles/obj_base_release.dir/mpi.cc.o
[ 60%] Building CXX object source/grid/CMakeFiles/obj_grid_release.dir/manifold_lib.cc.o
[ 60%] Building CXX object source/lac/CMakeFiles/obj_lac_release.dir/solver_bicgstab.cc.o
[ 60%] Building CXX object source/lac/CMakeFiles/obj_lac_release.dir/solver_control.cc.o
[ 60%] Building CXX object source/lac/CMakeFiles/obj_lac_release.dir/sparse_decomposition.cc.o
[ 61%] Building CXX object source/lac/CMakeFiles/obj_lac_release.dir/sparse_direct.cc.o
[ 61%] Building CXX object source/base/CMakeFiles/obj_base_release.dir/mpi_consensus_algorithms.cc.o
[ 61%] Building CXX object source/lac/CMakeFiles/obj_lac_release.dir/sparse_ilu.cc.o
[ 62%] Building CXX object source/grid/CMakeFiles/obj_grid_release.dir/persistent_tria.cc.o
[ 62%] Building CXX object source/base/CMakeFiles/obj_base_release.dir/mpi_noncontiguous_partitioner.cc.o
[ 62%] Building CXX object source/lac/CMakeFiles/obj_lac_release.dir/sparse_matrix_ez.cc.o
[ 62%] Building CXX object source/grid/CMakeFiles/obj_grid_release.dir/reference_cell.cc.o
[ 62%] Building CXX object source/lac/CMakeFiles/obj_lac_release.dir/sparse_mic.cc.o
[ 62%] Building CXX object source/base/CMakeFiles/obj_base_release.dir/mpi_remote_point_evaluation.cc.o
[ 62%] Building CXX object source/lac/CMakeFiles/obj_lac_release.dir/sparse_vanka.cc.o
[ 62%] Building CXX object source/grid/CMakeFiles/obj_grid_release.dir/tria_accessor.cc.o
[ 62%] Building CXX object source/lac/CMakeFiles/obj_lac_release.dir/sparsity_pattern.cc.o
[ 62%] Building CXX object source/lac/CMakeFiles/obj_lac_release.dir/sparsity_tools.cc.o
[ 62%] Building CXX object source/base/CMakeFiles/obj_base_release.dir/mu_parser_internal.cc.o
[ 62%] Building CXX object source/lac/CMakeFiles/obj_lac_release.dir/vector.cc.o
[ 62%] Building CXX object source/base/CMakeFiles/obj_base_release.dir/multithread_info.cc.o
[ 62%] Building CXX object source/base/CMakeFiles/obj_base_release.dir/named_selection.cc.o
[ 62%] Building CXX object source/base/CMakeFiles/obj_base_release.dir/numbers.cc.o
[ 62%] Building CXX object source/grid/CMakeFiles/obj_grid_release.dir/tria_description.cc.o
[ 62%] Building CXX object source/base/CMakeFiles/obj_base_release.dir/parallel.cc.o
[ 63%] Building CXX object source/base/CMakeFiles/obj_base_release.dir/parameter_handler.cc.o
[ 63%] Building CXX object source/lac/CMakeFiles/obj_lac_release.dir/vector_memory.cc.o
[ 63%] Building CXX object source/base/CMakeFiles/obj_base_release.dir/parameter_acceptor.cc.o
[ 63%] Building CXX object source/lac/CMakeFiles/obj_lac_release.dir/trilinos_block_sparse_matrix.cc.o
[ 63%] Building CXX object source/grid/CMakeFiles/obj_grid_release.dir/tria_faces.cc.o
[ 63%] Building CXX object source/base/CMakeFiles/obj_base_release.dir/parsed_convergence_table.cc.o
[ 63%] Building CXX object source/lac/CMakeFiles/obj_lac_release.dir/trilinos_block_vector.cc.o
[ 63%] Building CXX object source/grid/CMakeFiles/obj_grid_release.dir/tria_levels.cc.o
[ 63%] Building CXX object source/grid/CMakeFiles/obj_grid_release.dir/tria_objects.cc.o
[ 63%] Building CXX object source/lac/CMakeFiles/obj_lac_release.dir/trilinos_epetra_communication_pattern.cc.o
[ 63%] Building CXX object source/base/CMakeFiles/obj_base_release.dir/parsed_function.cc.o
[ 63%] Building CXX object source/base/CMakeFiles/obj_base_release.dir/partitioner.cc.o
[ 63%] Building CXX object source/grid/CMakeFiles/obj_grid_release.dir/grid_generator_from_name.cc.o
[ 63%] Building CXX object source/lac/CMakeFiles/obj_lac_release.dir/trilinos_epetra_vector.cc.o
[ 64%] Building CXX object source/lac/CMakeFiles/obj_lac_release.dir/trilinos_precondition.cc.o
[ 64%] Building CXX object source/base/CMakeFiles/obj_base_release.dir/patterns.cc.o
[ 64%] Building CXX object source/grid/CMakeFiles/obj_grid_release.dir/grid_in.cc.o
[ 64%] Building CXX object source/base/CMakeFiles/obj_base_release.dir/path_search.cc.o
[ 64%] Building CXX object source/lac/CMakeFiles/obj_lac_release.dir/trilinos_precondition_ml.cc.o
[ 64%] Building CXX object source/base/CMakeFiles/obj_base_release.dir/polynomial.cc.o
[ 64%] Building CXX object source/base/CMakeFiles/obj_base_release.dir/polynomials_abf.cc.o
[ 64%] Building CXX object source/lac/CMakeFiles/obj_lac_release.dir/trilinos_solver.cc.o
[ 64%] Building CXX object source/base/CMakeFiles/obj_base_release.dir/polynomials_adini.cc.o
[ 64%] Building CXX object source/lac/CMakeFiles/obj_lac_release.dir/trilinos_sparse_matrix.cc.o
[ 64%] Building CXX object source/base/CMakeFiles/obj_base_release.dir/tensor_polynomials_base.cc.o
[ 64%] Building CXX object source/lac/CMakeFiles/obj_lac_release.dir/trilinos_sparsity_pattern.cc.o
[ 64%] Building CXX object source/base/CMakeFiles/obj_base_release.dir/polynomials_barycentric.cc.o
[ 64%] Building CXX object source/grid/CMakeFiles/obj_grid_release.dir/grid_out.cc.o
[ 64%] Building CXX object source/lac/CMakeFiles/obj_lac_release.dir/trilinos_tpetra_communication_pattern.cc.o
[ 64%] Building CXX object source/lac/CMakeFiles/obj_lac_release.dir/trilinos_tpetra_vector.cc.o
[ 65%] Building CXX object source/base/CMakeFiles/obj_base_release.dir/polynomials_bernstein.cc.o
[ 65%] Building CXX object source/lac/CMakeFiles/obj_lac_release.dir/trilinos_vector.cc.o
[ 65%] Building CXX object source/base/CMakeFiles/obj_base_release.dir/polynomials_bdm.cc.o
[ 65%] Building CXX object source/lac/CMakeFiles/obj_lac_release.dir/full_matrix.cc.o
[ 65%] Building CXX object source/base/CMakeFiles/obj_base_release.dir/polynomials_bernardi_raugel.cc.o
[ 65%] Building CXX object source/base/CMakeFiles/obj_base_release.dir/polynomials_nedelec.cc.o
[ 65%] Building CXX object source/grid/CMakeFiles/obj_grid_release.dir/grid_generator.cc.o
[ 65%] Building CXX object source/base/CMakeFiles/obj_base_release.dir/polynomials_integrated_legendre_sz.cc.o
[ 65%] Building CXX object source/base/CMakeFiles/obj_base_release.dir/polynomial_space.cc.o
[ 65%] Building CXX object source/lac/CMakeFiles/obj_lac_release.dir/lapack_full_matrix.cc.o
[ 65%] Building CXX object source/base/CMakeFiles/obj_base_release.dir/polynomials_p.cc.o
[ 65%] Building CXX object source/base/CMakeFiles/obj_base_release.dir/polynomials_piecewise.cc.o
[ 65%] Building CXX object source/base/CMakeFiles/obj_base_release.dir/polynomials_pyramid.cc.o
[ 65%] Building CXX object source/lac/CMakeFiles/obj_lac_release.dir/qr.cc.o
[ 65%] Building CXX object source/lac/CMakeFiles/obj_lac_release.dir/sparse_matrix.cc.o
[ 65%] Building CXX object source/grid/CMakeFiles/obj_grid_release.dir/grid_tools.cc.o
[ 65%] Building CXX object source/base/CMakeFiles/obj_base_release.dir/polynomials_rannacher_turek.cc.o
[ 65%] Building CXX object source/base/CMakeFiles/obj_base_release.dir/polynomials_raviart_thomas.cc.o
[ 65%] Building CXX object source/base/CMakeFiles/obj_base_release.dir/polynomials_rt_bubbles.cc.o
[ 65%] Building CXX object source/base/CMakeFiles/obj_base_release.dir/polynomials_wedge.cc.o
[ 66%] Building CXX object source/lac/CMakeFiles/obj_lac_release.dir/sparse_matrix_inst2.cc.o
[ 67%] Building CXX object source/base/CMakeFiles/obj_base_release.dir/process_grid.cc.o
[ 67%] Building CXX object source/base/CMakeFiles/obj_base_release.dir/qprojector.cc.o
[ 67%] Building CXX object source/lac/CMakeFiles/obj_lac_release.dir/tridiagonal_matrix.cc.o
[ 67%] Building CXX object source/base/CMakeFiles/obj_base_release.dir/quadrature.cc.o
[ 67%] Building CXX object source/lac/CMakeFiles/obj_lac_release.dir/utilities.cc.o
[ 67%] Building CXX object source/base/CMakeFiles/obj_base_release.dir/quadrature_lib.cc.o
[ 67%] Building CXX object source/lac/CMakeFiles/obj_lac_release.dir/trilinos_precondition_muelu.cc.o
[ 67%] Building CXX object source/base/CMakeFiles/obj_base_release.dir/quadrature_selector.cc.o
[ 67%] Built target obj_lac_release
[ 67%] Building CXX object source/base/CMakeFiles/obj_base_release.dir/scalar_polynomials_base.cc.o
[ 67%] Building CXX object source/hp/CMakeFiles/obj_hp_release.dir/fe_collection.cc.o
[ 67%] Building CXX object source/base/CMakeFiles/obj_base_release.dir/subscriptor.cc.o
[ 67%] Building CXX object source/base/CMakeFiles/obj_base_release.dir/symbolic_function.cc.o
[ 67%] Building CXX object source/hp/CMakeFiles/obj_hp_release.dir/fe_values.cc.o
[ 67%] Building CXX object source/base/CMakeFiles/obj_base_release.dir/table_handler.cc.o
[ 67%] Building CXX object source/base/CMakeFiles/obj_base_release.dir/tensor.cc.o
[ 67%] Building CXX object source/base/CMakeFiles/obj_base_release.dir/tensor_function.cc.o
[ 68%] Building CXX object source/grid/CMakeFiles/obj_grid_release.dir/grid_tools_cache.cc.o
[ 68%] Building CXX object source/hp/CMakeFiles/obj_hp_release.dir/mapping_collection.cc.o
[ 68%] Building CXX object source/hp/CMakeFiles/obj_hp_release.dir/refinement.cc.o
[ 68%] Building CXX object source/base/CMakeFiles/obj_base_release.dir/tensor_function_parser.cc.o
[ 69%] Building CXX object source/base/CMakeFiles/obj_base_release.dir/tensor_product_polynomials.cc.o
[ 69%] Building CXX object source/grid/CMakeFiles/obj_grid_release.dir/grid_tools_nontemplates.cc.o
[ 69%] Building CXX object source/hp/CMakeFiles/obj_hp_release.dir/dof_handler.cc.o
[ 69%] Building CXX object source/base/CMakeFiles/obj_base_release.dir/tensor_product_polynomials_bubbles.cc.o
[ 69%] Building CXX object source/grid/CMakeFiles/obj_grid_release.dir/grid_tools_dof_handlers.cc.o
[ 69%] Built target obj_hp_release
[ 69%] Building CXX object source/grid/CMakeFiles/obj_grid_release.dir/tria.cc.o
[ 69%] Building CXX object source/base/CMakeFiles/obj_base_release.dir/tensor_product_polynomials_const.cc.o
[ 69%] Building CXX object source/base/CMakeFiles/obj_base_release.dir/thread_management.cc.o
[ 69%] Building CXX object source/base/CMakeFiles/obj_base_release.dir/timer.cc.o
[ 69%] Building CXX object source/base/CMakeFiles/obj_base_release.dir/time_stepping.cc.o
[ 69%] Building CXX object source/base/CMakeFiles/obj_base_release.dir/utilities.cc.o
[ 69%] Building CXX object source/base/CMakeFiles/obj_base_release.dir/vectorization.cc.o
[ 69%] Building CXX object source/base/CMakeFiles/obj_base_release.dir/data_out_base.cc.o
[ 69%] Building CXX object source/base/CMakeFiles/obj_base_release.dir/symmetric_tensor.cc.o
[ 69%] Built target obj_grid_release
[ 69%] Building CXX object source/multigrid/CMakeFiles/obj_multigrid_release.dir/mg_base.cc.o
[ 69%] Building CXX object source/multigrid/CMakeFiles/obj_multigrid_release.dir/mg_level_global_transfer.cc.o
[ 69%] Building CXX object source/multigrid/CMakeFiles/obj_multigrid_release.dir/mg_transfer_block.cc.o
[ 69%] Building CXX object source/distributed/CMakeFiles/obj_distributed_release.dir/grid_refinement.cc.o
[ 69%] Building CXX object source/multigrid/CMakeFiles/obj_multigrid_release.dir/mg_transfer_component.cc.o
[ 69%] Building CXX object source/distributed/CMakeFiles/obj_distributed_release.dir/cell_weights.cc.o
[ 69%] Building CXX object source/multigrid/CMakeFiles/obj_multigrid_release.dir/mg_transfer_global_coarsening.cc.o
[ 69%] Built target obj_base_release
[ 70%] Building CXX object source/multigrid/CMakeFiles/obj_multigrid_release.dir/mg_transfer_internal.cc.o
[ 70%] Building CXX object source/distributed/CMakeFiles/obj_distributed_release.dir/cell_data_transfer.cc.o
[ 70%] Building CXX object source/distributed/CMakeFiles/obj_distributed_release.dir/fully_distributed_tria.cc.o
[ 70%] Building CXX object source/distributed/CMakeFiles/obj_distributed_release.dir/solution_transfer.cc.o
[ 70%] Building CXX object source/multigrid/CMakeFiles/obj_multigrid_release.dir/mg_transfer_prebuilt.cc.o
[ 70%] Building CXX object source/distributed/CMakeFiles/obj_distributed_release.dir/tria.cc.o
[ 70%] Building CXX object source/distributed/CMakeFiles/obj_distributed_release.dir/tria_base.cc.o
[ 70%] Building CXX object source/multigrid/CMakeFiles/obj_multigrid_release.dir/multigrid.cc.o
[ 70%] Building CXX object source/multigrid/CMakeFiles/obj_multigrid_release.dir/mg_tools.cc.o
[ 70%] Building CXX object source/distributed/CMakeFiles/obj_distributed_release.dir/shared_tria.cc.o
[ 70%] Building CXX object source/multigrid/CMakeFiles/obj_multigrid_release.dir/mg_transfer_matrix_free.cc.o
[ 70%] Building CXX object source/algorithms/CMakeFiles/obj_algorithms_release.dir/general_data_storage.cc.o
[ 70%] Building CXX object source/algorithms/CMakeFiles/obj_algorithms_release.dir/operator.cc.o
[ 70%] Building CXX object source/distributed/CMakeFiles/obj_distributed_release.dir/p4est_wrappers.cc.o
[ 70%] Built target obj_distributed_release
[ 70%] Building CXX object source/algorithms/CMakeFiles/obj_algorithms_release.dir/timestep_control.cc.o
[ 70%] Building CXX object source/matrix_free/CMakeFiles/obj_matrix_free_release.dir/dof_info.cc.o
[ 70%] Built target obj_algorithms_release
[ 70%] Building CXX object source/meshworker/CMakeFiles/obj_meshworker_release.dir/mesh_worker.cc.o
[ 70%] Building CXX object source/meshworker/CMakeFiles/obj_meshworker_release.dir/mesh_worker_info.cc.o
[ 71%] Building CXX object source/matrix_free/CMakeFiles/obj_matrix_free_release.dir/evaluation_template_factory.cc.o
[ 71%] Built target obj_multigrid_release
[ 71%] Building CXX object source/matrix_free/CMakeFiles/obj_matrix_free_release.dir/evaluation_template_factory_inst2.cc.o
[ 71%] Building CXX object source/meshworker/CMakeFiles/obj_meshworker_release.dir/mesh_worker_vector_selector.cc.o
[ 71%] Building CXX object source/meshworker/CMakeFiles/obj_meshworker_release.dir/scratch_data.cc.o
[ 71%] Building CXX object source/matrix_free/CMakeFiles/obj_matrix_free_release.dir/evaluation_template_factory_inst3.cc.o
[ 71%] Built target obj_meshworker_release
[ 71%] Building CXX object source/matrix_free/CMakeFiles/obj_matrix_free_release.dir/evaluation_template_factory_inst4.cc.o
[ 71%] Building CXX object source/opencascade/CMakeFiles/obj_opencascade_release.dir/utilities.cc.o
[ 71%] Building CXX object source/opencascade/CMakeFiles/obj_opencascade_release.dir/manifold_lib.cc.o
[ 71%] Built target obj_opencascade_release
[ 71%] Building CXX object source/particles/CMakeFiles/obj_particle_release.dir/data_out.cc.o
[ 71%] Building CXX object source/particles/CMakeFiles/obj_particle_release.dir/particle.cc.o
[ 71%] Building CXX object source/particles/CMakeFiles/obj_particle_release.dir/particle_handler.cc.o
[ 71%] Building CXX object source/particles/CMakeFiles/obj_particle_release.dir/generators.cc.o
[ 71%] Building CXX object source/matrix_free/CMakeFiles/obj_matrix_free_release.dir/evaluation_template_factory_inst5.cc.o
[ 71%] Building CXX object source/particles/CMakeFiles/obj_particle_release.dir/property_pool.cc.o
[ 71%] Building CXX object source/particles/CMakeFiles/obj_particle_release.dir/utilities.cc.o
[ 71%] Building CXX object source/matrix_free/CMakeFiles/obj_matrix_free_release.dir/evaluation_template_factory_inst6.cc.o
[ 71%] Built target obj_particle_release
[ 71%] Building CXX object source/differentiation/ad/CMakeFiles/obj_differentiation_ad_release.dir/ad_drivers.cc.o
[ 71%] Building CXX object source/differentiation/ad/CMakeFiles/obj_differentiation_ad_release.dir/ad_helpers.cc.o
[ 72%] Building CXX object source/differentiation/ad/CMakeFiles/obj_differentiation_ad_release.dir/adolc_number_types.cc.o
[ 72%] Building CXX object source/differentiation/ad/CMakeFiles/obj_differentiation_ad_release.dir/sacado_number_types.cc.o
[ 72%] Built target obj_differentiation_ad_release
[ 72%] Building CXX object source/matrix_free/CMakeFiles/obj_matrix_free_release.dir/fe_point_evaluation.cc.o
[ 73%] Building CXX object source/differentiation/sd/CMakeFiles/obj_differentiation_sd_release.dir/symengine_math.cc.o
[ 73%] Building CXX object source/differentiation/sd/CMakeFiles/obj_differentiation_sd_release.dir/symengine_number_types.cc.o
[ 73%] Building CXX object source/differentiation/sd/CMakeFiles/obj_differentiation_sd_release.dir/symengine_number_visitor_internal.cc.o
[ 73%] Building CXX object source/differentiation/sd/CMakeFiles/obj_differentiation_sd_release.dir/symengine_optimizer.cc.o
[ 73%] Building CXX object source/differentiation/sd/CMakeFiles/obj_differentiation_sd_release.dir/symengine_scalar_operations.cc.o
[ 73%] Building CXX object source/differentiation/sd/CMakeFiles/obj_differentiation_sd_release.dir/symengine_tensor_operations.cc.o
[ 73%] Building CXX object source/differentiation/sd/CMakeFiles/obj_differentiation_sd_release.dir/symengine_types.cc.o
[ 73%] Building CXX object source/differentiation/sd/CMakeFiles/obj_differentiation_sd_release.dir/symengine_utilities.cc.o
[ 73%] Built target obj_differentiation_sd_release
[ 73%] Building CXX object source/matrix_free/CMakeFiles/obj_matrix_free_release.dir/mapping_info.cc.o
[ 73%] Building CXX object source/matrix_free/CMakeFiles/obj_matrix_free_release.dir/mapping_info_inst2.cc.o
[ 73%] Building CXX object source/physics/CMakeFiles/obj_physics_release.dir/transformations.cc.o
[ 73%] Building CXX object source/physics/elasticity/CMakeFiles/obj_physics_elasticity_release.dir/kinematics.cc.o
[ 73%] Built target obj_physics_release
[ 73%] Building CXX object source/non_matching/CMakeFiles/obj_non_matching_release.dir/coupling.cc.o
[ 73%] Building CXX object source/physics/elasticity/CMakeFiles/obj_physics_elasticity_release.dir/standard_tensors.cc.o
[ 73%] Built target obj_physics_elasticity_release
[ 73%] Building CXX object source/sundials/CMakeFiles/obj_sundials_release.dir/arkode.cc.o
[ 74%] Building CXX object source/sundials/CMakeFiles/obj_sundials_release.dir/ida.cc.o
[ 74%] Building CXX object source/sundials/CMakeFiles/obj_sundials_release.dir/kinsol.cc.o
[ 74%] Building CXX object source/matrix_free/CMakeFiles/obj_matrix_free_release.dir/mapping_info_inst3.cc.o
[ 74%] Building CXX object source/sundials/CMakeFiles/obj_sundials_release.dir/n_vector.cc.o
[ 74%] Building CXX object source/sundials/CMakeFiles/obj_sundials_release.dir/sunlinsol_wrapper.cc.o
[ 74%] Built target obj_sundials_release
[ 74%] Building CXX object source/matrix_free/CMakeFiles/obj_matrix_free_release.dir/matrix_free.cc.o
[ 74%] Building CXX object source/CMakeFiles/deal_II.g.dir/dummy.cc.o
[ 74%] Linking CXX shared library ../lib/libdeal_II.g.so
collect2: fatal error: ld terminated with signal 9 [Killed]
compilation terminated.
make[2]: *** [source/CMakeFiles/deal_II.g.dir/build.make:1031: lib/libdeal_II.g.so.9.3.1] Error 1
make[1]: *** [CMakeFiles/Makefile2:1684: source/CMakeFiles/deal_II.g.dir/all] Error 2
make[1]: *** Waiting for unfinished jobs....
[ 74%] Building CXX object source/matrix_free/CMakeFiles/obj_matrix_free_release.dir/shape_info.cc.o
[ 74%] Building CXX object source/non_matching/CMakeFiles/obj_non_matching_release.dir/immersed_surface_quadrature.cc.o
[ 74%] Building CXX object source/matrix_free/CMakeFiles/obj_matrix_free_release.dir/task_info.cc.o
[ 74%] Built target obj_non_matching_release
[ 75%] Building CXX object source/matrix_free/CMakeFiles/obj_matrix_free_release.dir/vector_data_exchange.cc.o
[ 75%] Built target obj_matrix_free_release
make: *** [Makefile:136: all] Error 2
==> ERROR: A failure occurred in build().
Aborting...
error making: deal-ii
# out of pacman -Ql intel-mkl
intel-mkl /etc/
intel-mkl /etc/ld.so.conf.d/
intel-mkl /etc/ld.so.conf.d/intel-mkl.conf
intel-mkl /etc/profile.d/
intel-mkl /etc/profile.d/intel-mkl.sh
intel-mkl /opt/
intel-mkl /opt/intel/
intel-mkl /opt/intel/mkl/
intel-mkl /opt/intel/mkl/bin/
intel-mkl /opt/intel/mkl/bin/mkl_link_tool
intel-mkl /opt/intel/mkl/include/
intel-mkl /opt/intel/mkl/include/blas.f90
intel-mkl /opt/intel/mkl/include/fftw/
intel-mkl /opt/intel/mkl/include/fftw/fftw.h
intel-mkl /opt/intel/mkl/include/fftw/fftw3-mpi.f03
intel-mkl /opt/intel/mkl/include/fftw/fftw3-mpi.h
intel-mkl /opt/intel/mkl/include/fftw/fftw3-mpi_mkl.h
intel-mkl /opt/intel/mkl/include/fftw/fftw3.f
intel-mkl /opt/intel/mkl/include/fftw/fftw3.f03
intel-mkl /opt/intel/mkl/include/fftw/fftw3.h
intel-mkl /opt/intel/mkl/include/fftw/fftw3_mkl.f
intel-mkl /opt/intel/mkl/include/fftw/fftw3_mkl.h
intel-mkl /opt/intel/mkl/include/fftw/fftw3_mkl_f77.h
intel-mkl /opt/intel/mkl/include/fftw/fftw_f77.i
intel-mkl /opt/intel/mkl/include/fftw/fftw_mpi.h
intel-mkl /opt/intel/mkl/include/fftw/fftw_threads.h
intel-mkl /opt/intel/mkl/include/fftw/rfftw.h
intel-mkl /opt/intel/mkl/include/fftw/rfftw_mpi.h
intel-mkl /opt/intel/mkl/include/fftw/rfftw_threads.h
intel-mkl /opt/intel/mkl/include/i_malloc.h
intel-mkl /opt/intel/mkl/include/ia32/
intel-mkl /opt/intel/mkl/include/ia32/blas95.mod
intel-mkl /opt/intel/mkl/include/ia32/f95_precision.mod
intel-mkl /opt/intel/mkl/include/ia32/lapack95.mod
intel-mkl /opt/intel/mkl/include/ia32/mkl_service.mod
intel-mkl /opt/intel/mkl/include/intel64/
intel-mkl /opt/intel/mkl/include/intel64/ilp64/
intel-mkl /opt/intel/mkl/include/intel64/ilp64/blas95.mod
intel-mkl /opt/intel/mkl/include/intel64/ilp64/f95_precision.mod
intel-mkl /opt/intel/mkl/include/intel64/ilp64/lapack95.mod
intel-mkl /opt/intel/mkl/include/intel64/ilp64/mkl_service.mod
intel-mkl /opt/intel/mkl/include/intel64/lp64/
intel-mkl /opt/intel/mkl/include/intel64/lp64/blas95.mod
intel-mkl /opt/intel/mkl/include/intel64/lp64/f95_precision.mod
intel-mkl /opt/intel/mkl/include/intel64/lp64/lapack95.mod
intel-mkl /opt/intel/mkl/include/intel64/lp64/mkl_service.mod
intel-mkl /opt/intel/mkl/include/lapack.f90
intel-mkl /opt/intel/mkl/include/mkl.fi
intel-mkl /opt/intel/mkl/include/mkl.h
intel-mkl /opt/intel/mkl/include/mkl_blacs.h
intel-mkl /opt/intel/mkl/include/mkl_blas.f90
intel-mkl /opt/intel/mkl/include/mkl_blas.fi
intel-mkl /opt/intel/mkl/include/mkl_blas.h
intel-mkl /opt/intel/mkl/include/mkl_cblas.h
intel-mkl /opt/intel/mkl/include/mkl_cdft.f90
intel-mkl /opt/intel/mkl/include/mkl_cdft.h
intel-mkl /opt/intel/mkl/include/mkl_cdft_types.h
intel-mkl /opt/intel/mkl/include/mkl_cluster_sparse_solver.f90
intel-mkl /opt/intel/mkl/include/mkl_cluster_sparse_solver.fi
intel-mkl /opt/intel/mkl/include/mkl_cluster_sparse_solver.h
intel-mkl /opt/intel/mkl/include/mkl_compact.h
intel-mkl /opt/intel/mkl/include/mkl_df.f90
intel-mkl /opt/intel/mkl/include/mkl_df.h
intel-mkl /opt/intel/mkl/include/mkl_df_defines.h
intel-mkl /opt/intel/mkl/include/mkl_df_functions.h
intel-mkl /opt/intel/mkl/include/mkl_df_types.h
intel-mkl /opt/intel/mkl/include/mkl_dfti.f90
intel-mkl /opt/intel/mkl/include/mkl_dfti.h
intel-mkl /opt/intel/mkl/include/mkl_direct_blas.h
intel-mkl /opt/intel/mkl/include/mkl_direct_blas_kernels.h
intel-mkl /opt/intel/mkl/include/mkl_direct_call.fi
intel-mkl /opt/intel/mkl/include/mkl_direct_call.h
intel-mkl /opt/intel/mkl/include/mkl_direct_lapack.h
intel-mkl /opt/intel/mkl/include/mkl_direct_types.h
intel-mkl /opt/intel/mkl/include/mkl_dss.f90
intel-mkl /opt/intel/mkl/include/mkl_dss.fi
intel-mkl /opt/intel/mkl/include/mkl_dss.h
intel-mkl /opt/intel/mkl/include/mkl_graph.h
intel-mkl /opt/intel/mkl/include/mkl_lapack.fi
intel-mkl /opt/intel/mkl/include/mkl_lapack.h
intel-mkl /opt/intel/mkl/include/mkl_lapacke.h
intel-mkl /opt/intel/mkl/include/mkl_pardiso.f90
intel-mkl /opt/intel/mkl/include/mkl_pardiso.fi
intel-mkl /opt/intel/mkl/include/mkl_pardiso.h
intel-mkl /opt/intel/mkl/include/mkl_pblas.h
intel-mkl /opt/intel/mkl/include/mkl_poisson.f90
intel-mkl /opt/intel/mkl/include/mkl_poisson.h
intel-mkl /opt/intel/mkl/include/mkl_rci.f90
intel-mkl /opt/intel/mkl/include/mkl_rci.fi
intel-mkl /opt/intel/mkl/include/mkl_rci.h
intel-mkl /opt/intel/mkl/include/mkl_scalapack.h
intel-mkl /opt/intel/mkl/include/mkl_service.f90
intel-mkl /opt/intel/mkl/include/mkl_service.fi
intel-mkl /opt/intel/mkl/include/mkl_service.h
intel-mkl /opt/intel/mkl/include/mkl_solvers_ee.f90
intel-mkl /opt/intel/mkl/include/mkl_solvers_ee.fi
intel-mkl /opt/intel/mkl/include/mkl_solvers_ee.h
intel-mkl /opt/intel/mkl/include/mkl_sparse_handle.f90
intel-mkl /opt/intel/mkl/include/mkl_sparse_handle.fi
intel-mkl /opt/intel/mkl/include/mkl_sparse_handle.h
intel-mkl /opt/intel/mkl/include/mkl_sparse_qr.f90
intel-mkl /opt/intel/mkl/include/mkl_sparse_qr.h
intel-mkl /opt/intel/mkl/include/mkl_spblas.f90
intel-mkl /opt/intel/mkl/include/mkl_spblas.fi
intel-mkl /opt/intel/mkl/include/mkl_spblas.h
intel-mkl /opt/intel/mkl/include/mkl_trans.fi
intel-mkl /opt/intel/mkl/include/mkl_trans.h
intel-mkl /opt/intel/mkl/include/mkl_trig_transforms.f90
intel-mkl /opt/intel/mkl/include/mkl_trig_transforms.h
intel-mkl /opt/intel/mkl/include/mkl_types.h
intel-mkl /opt/intel/mkl/include/mkl_version.h
intel-mkl /opt/intel/mkl/include/mkl_vml.f90
intel-mkl /opt/intel/mkl/include/mkl_vml.fi
intel-mkl /opt/intel/mkl/include/mkl_vml.h
intel-mkl /opt/intel/mkl/include/mkl_vml_defines.h
intel-mkl /opt/intel/mkl/include/mkl_vml_functions.h
intel-mkl /opt/intel/mkl/include/mkl_vml_types.h
intel-mkl /opt/intel/mkl/include/mkl_vsl.f90
intel-mkl /opt/intel/mkl/include/mkl_vsl.fi
intel-mkl /opt/intel/mkl/include/mkl_vsl.h
intel-mkl /opt/intel/mkl/include/mkl_vsl_defines.h
intel-mkl /opt/intel/mkl/include/mkl_vsl_functions.h
intel-mkl /opt/intel/mkl/include/mkl_vsl_subroutine.fi
intel-mkl /opt/intel/mkl/include/mkl_vsl_types.h
intel-mkl /opt/intel/mkl/lib/
intel-mkl /opt/intel/mkl/lib/intel64/
intel-mkl /opt/intel/mkl/lib/intel64/libiomp5.so
intel-mkl /opt/intel/mkl/lib/intel64/libiomp5_db.so
intel-mkl /opt/intel/mkl/lib/intel64/libiompstubs5.so
intel-mkl /opt/intel/mkl/lib/intel64/libmkl_avx.so
intel-mkl /opt/intel/mkl/lib/intel64/libmkl_avx2.so
intel-mkl /opt/intel/mkl/lib/intel64/libmkl_avx512.so
intel-mkl /opt/intel/mkl/lib/intel64/libmkl_avx512_mic.so
intel-mkl /opt/intel/mkl/lib/intel64/libmkl_blacs_intelmpi_ilp64.so
intel-mkl /opt/intel/mkl/lib/intel64/libmkl_blacs_intelmpi_lp64.so
intel-mkl /opt/intel/mkl/lib/intel64/libmkl_blacs_openmpi_ilp64.so
intel-mkl /opt/intel/mkl/lib/intel64/libmkl_blacs_openmpi_lp64.so
intel-mkl /opt/intel/mkl/lib/intel64/libmkl_blacs_sgimpt_ilp64.so
intel-mkl /opt/intel/mkl/lib/intel64/libmkl_blacs_sgimpt_lp64.so
intel-mkl /opt/intel/mkl/lib/intel64/libmkl_cdft_core.so
intel-mkl /opt/intel/mkl/lib/intel64/libmkl_core.so
intel-mkl /opt/intel/mkl/lib/intel64/libmkl_def.so
intel-mkl /opt/intel/mkl/lib/intel64/libmkl_gf_ilp64.so
intel-mkl /opt/intel/mkl/lib/intel64/libmkl_gf_lp64.so
intel-mkl /opt/intel/mkl/lib/intel64/libmkl_gnu_thread.so
intel-mkl /opt/intel/mkl/lib/intel64/libmkl_intel_ilp64.so
intel-mkl /opt/intel/mkl/lib/intel64/libmkl_intel_lp64.so
intel-mkl /opt/intel/mkl/lib/intel64/libmkl_intel_thread.so
intel-mkl /opt/intel/mkl/lib/intel64/libmkl_mc.so
intel-mkl /opt/intel/mkl/lib/intel64/libmkl_mc3.so
intel-mkl /opt/intel/mkl/lib/intel64/libmkl_pgi_thread.so
intel-mkl /opt/intel/mkl/lib/intel64/libmkl_rt.so
intel-mkl /opt/intel/mkl/lib/intel64/libmkl_scalapack_ilp64.so
intel-mkl /opt/intel/mkl/lib/intel64/libmkl_scalapack_lp64.so
intel-mkl /opt/intel/mkl/lib/intel64/libmkl_sequential.so
intel-mkl /opt/intel/mkl/lib/intel64/libmkl_tbb_thread.so
intel-mkl /opt/intel/mkl/lib/intel64/libmkl_vml_avx.so
intel-mkl /opt/intel/mkl/lib/intel64/libmkl_vml_avx2.so
intel-mkl /opt/intel/mkl/lib/intel64/libmkl_vml_avx512.so
intel-mkl /opt/intel/mkl/lib/intel64/libmkl_vml_avx512_mic.so
intel-mkl /opt/intel/mkl/lib/intel64/libmkl_vml_cmpt.so
intel-mkl /opt/intel/mkl/lib/intel64/libmkl_vml_def.so
intel-mkl /opt/intel/mkl/lib/intel64/libmkl_vml_mc.so
intel-mkl /opt/intel/mkl/lib/intel64/libmkl_vml_mc2.so
intel-mkl /opt/intel/mkl/lib/intel64/libmkl_vml_mc3.so
intel-mkl /opt/intel/mkl/lib/intel64/locale/
intel-mkl /opt/intel/mkl/lib/intel64/locale/en_US/
intel-mkl /opt/intel/mkl/lib/intel64/locale/en_US/mkl_msg.cat
intel-mkl /opt/intel/mkl/lib/intel64/locale/ja_JP/
intel-mkl /opt/intel/mkl/lib/intel64/locale/ja_JP/mkl_msg.cat
intel-mkl /opt/intel/mkl/lib/intel64_lin
intel-mkl /usr/
intel-mkl /usr/bin/
intel-mkl /usr/bin/mkl_link_tool
intel-mkl /usr/bin/mklvars.sh
intel-mkl /usr/lib/
intel-mkl /usr/lib/pkgconfig/
intel-mkl /usr/lib/pkgconfig/mkl-dynamic-ilp64-iomp.pc
intel-mkl /usr/lib/pkgconfig/mkl-dynamic-ilp64-seq.pc
intel-mkl /usr/lib/pkgconfig/mkl-dynamic-lp64-iomp.pc
intel-mkl /usr/lib/pkgconfig/mkl-dynamic-lp64-seq.pc
intel-mkl /usr/share/
intel-mkl /usr/share/licenses/
intel-mkl /usr/share/licenses/intel-mkl/
intel-mkl /usr/share/licenses/intel-mkl/LICENSE
#!/hint/bash
#
# /etc/makepkg.conf
#
#########################################################################
# SOURCE ACQUISITION
#########################################################################
#
#-- The download utilities that makepkg should use to acquire sources
# Format: 'protocol::agent'
DLAGENTS=('file::/usr/bin/curl -gqC - -o %o %u'
'ftp::/usr/bin/curl -gqfC - --ftp-pasv --retry 3 --retry-delay 3 -o %o %u'
'http::/usr/bin/curl -gqb "" -fLC - --retry 3 --retry-delay 3 -o %o %u'
'https::/usr/bin/curl -gqb "" -fLC - --retry 3 --retry-delay 3 -o %o %u'
'rsync::/usr/bin/rsync --no-motd -z %u %o'
'scp::/usr/bin/scp -C %u %o')
# Other common tools:
# /usr/bin/snarf
# /usr/bin/lftpget -c
# /usr/bin/wget
#-- The package required by makepkg to download VCS sources
# Format: 'protocol::package'
VCSCLIENTS=('bzr::bzr'
'git::git'
'hg::mercurial'
'svn::subversion')
#########################################################################
# ARCHITECTURE, COMPILE FLAGS
#########################################################################
#
CARCH="x86_64"
CHOST="x86_64-pc-linux-gnu"
#-- Compiler and Linker Flags
CPPFLAGS="-D_FORTIFY_SOURCE=2"
CFLAGS="-march=x86-64 -mtune=generic -O2 -pipe -fno-plt"
CXXFLAGS="-march=x86-64 -mtune=generic -O2 -pipe -fno-plt"
LDFLAGS="-Wl,-O1,--sort-common,--as-needed,-z,relro,-z,now"
#RUSTFLAGS="-C opt-level=2"
#-- Make Flags: change this for DistCC/SMP systems
MAKEFLAGS="-j3"
#MAKEFLAGS="-j$(nproc)"
#-- Debugging flags
DEBUG_CFLAGS="-g -fvar-tracking-assignments"
DEBUG_CXXFLAGS="-g -fvar-tracking-assignments"
#DEBUG_RUSTFLAGS="-C debuginfo=2"
#########################################################################
# BUILD ENVIRONMENT
#########################################################################
#
# Defaults: BUILDENV=(!distcc !color !ccache check !sign)
# A negated environment option will do the opposite of the comments below.
#
#-- distcc: Use the Distributed C/C++/ObjC compiler
#-- color: Colorize output messages
#-- ccache: Use ccache to cache compilation
#-- check: Run the check() function if present in the PKGBUILD
#-- sign: Generate PGP signature file
#
BUILDENV=(!distcc color !ccache check !sign)
#
#-- If using DistCC, your MAKEFLAGS will also need modification. In addition,
#-- specify a space-delimited list of hosts running in the DistCC cluster.
#DISTCC_HOSTS=""
#
#-- Specify a directory for package building.
BUILDDIR=/tmp/makepkg
#########################################################################
# GLOBAL PACKAGE OPTIONS
# These are default values for the options=() settings
#########################################################################
#
# Default: OPTIONS=(!strip docs libtool staticlibs emptydirs !zipman !purge !debug)
# A negated option will do the opposite of the comments below.
#
#-- strip: Strip symbols from binaries/libraries
#-- docs: Save doc directories specified by DOC_DIRS
#-- libtool: Leave libtool (.la) files in packages
#-- staticlibs: Leave static library (.a) files in packages
#-- emptydirs: Leave empty directories in packages
#-- zipman: Compress manual (man and info) pages in MAN_DIRS with gzip
#-- purge: Remove files specified by PURGE_TARGETS
#-- debug: Add debugging flags as specified in DEBUG_* variables
#
OPTIONS=(strip docs !libtool !staticlibs emptydirs zipman purge !debug)
#-- File integrity checks to use. Valid: md5, sha1, sha224, sha256, sha384, sha512, b2
INTEGRITY_CHECK=(md5)
#-- Options to be used when stripping binaries. See `man strip' for details.
STRIP_BINARIES="--strip-all"
#-- Options to be used when stripping shared libraries. See `man strip' for details.
STRIP_SHARED="--strip-unneeded"
#-- Options to be used when stripping static libraries. See `man strip' for details.
STRIP_STATIC="--strip-debug"
#-- Manual (man and info) directories to compress (if zipman is specified)
MAN_DIRS=({usr{,/local}{,/share},opt/*}/{man,info})
#-- Doc directories to remove (if !docs is specified)
DOC_DIRS=(usr/{,local/}{,share/}{doc,gtk-doc} opt/*/{doc,gtk-doc})
#-- Files to be removed from all packages (if purge is specified)
PURGE_TARGETS=(usr/{,share}/info/dir .packlist *.pod)
#-- Directory to store source code in for debug packages
DBGSRCDIR="/usr/src/debug"
#########################################################################
# PACKAGE OUTPUT
#########################################################################
#
# Default: put built package and cached source in build directory
#
#-- Destination: specify a fixed directory where all packages will be placed
#PKGDEST=/home/packages
#-- Source cache: specify a fixed directory where source files will be cached
#SRCDEST=/home/sources
#-- Source packages: specify a fixed directory where all src packages will be placed
#SRCPKGDEST=/home/srcpackages
#-- Log files: specify a fixed directory where all log files will be placed
#LOGDEST=/home/makepkglogs
#-- Packager: name/email of the person or organization building packages
#PACKAGER="John Doe <john@doe.com>"
#-- Specify a key to use for package signing
#GPGKEY=""
#########################################################################
# COMPRESSION DEFAULTS
#########################################################################
#
COMPRESSGZ=(gzip -c -f -n)
COMPRESSBZ2=(bzip2 -c -f)
COMPRESSXZ=(xz -c -z -)
COMPRESSZST=(zstd -c -z -q -)
COMPRESSLRZ=(lrzip -q)
COMPRESSLZO=(lzop -q)
COMPRESSZ=(compress -c -f)
COMPRESSLZ4=(lz4 -q)
COMPRESSLZ=(lzip -c -f)
#########################################################################
# EXTENSION DEFAULTS
#########################################################################
#
PKGEXT='.pkg.tar.zst'
SRCEXT='.src.tar.gz'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment