$ g++ -mabi=lp64 -c -o source/fe/fe_tools.o -DSPEC -DNDEBUG -Iinclude -I. -DSPEC_AUTO_SUPPRESS_OPENMP -g -O3 -mcpu=native -fpermissive -DSPEC_LP64 source/fe/fe_tools.cc source/fe/fe_tools.cc:1301:21: error: call of overloaded 'back_interpolate(const dealii::DoFHandler<3, 3>&, const dealii::BlockVector<double>&, const dealii::FiniteElement<3, 3>&, dealii::BlockVector<double>&)' is ambiguous 1301 | back_interpolate(dof1, u1, dof2.get_fe(), u1_interpolated); | ~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ $ /home/ubuntu/gccmainline/bin/g++ -v Using built-in specs. COLLECT_GCC=/home/ubuntu/gccmainline/bin/g++ COLLECT_LTO_WRAPPER=/home/ubuntu/gccmainline/libexec/gcc/aarch64-unknown-linux-gnu/13.0.0/lto-wrapper Target: aarch64-unknown-linux-gnu Configured with: ../configure --prefix=/home/ubuntu/gccmainline --enable-languages=c,fortran Thread model: posix Supported LTO compression algorithms: zlib gcc version 13.0.0 20221026 (experimental) (GCC)
As mentioned slightly here: https://www.spec.org/cpu2017/Docs/benchmarks/510.parest_r.html please use -std=c++98 or something < c++17.
(In reply to Martin Liška from comment #1) > As mentioned slightly here: > https://www.spec.org/cpu2017/Docs/benchmarks/510.parest_r.html > please use -std=c++98 or something < c++17. Thank you. I had it for C compiler. Will add it to C++ compiler command-line too.