I am not able to compile current git trunk so I downloaded last two tagged releases. In 1.6 you dropped support for older llvm due to new syntax used. The configure fails for me complaining the code requires -c++14 or -gnu++14 but configure.ac forces -c++11 everywhere. Was this overlooked in the past? After editing generated configure and replacing -c++11 with -c++14 I could make configure happy and generate config.status. Still compilation of the package fails for me later but it was a good move ahead.
Practically same happens with 1.6.1 source tree.
Provided >=1.6 require llvm-14 I assume the -c++11 is a leftover from the past?
I am not able to compile current
git trunk
so I downloaded last two tagged releases. In1.6
you dropped support for olderllvm
due to new syntax used. The configure fails for me complaining the code requires-c++14
or-gnu++14
butconfigure.ac
forces-c++11
everywhere. Was this overlooked in the past? After editing generatedconfigure
and replacing-c++11
with-c++14
I could makeconfigure
happy and generateconfig.status
. Still compilation of the package fails for me later but it was a good move ahead.Practically same happens with
1.6.1
source tree.Provided
>=1.6
require llvm-14 I assume the-c++11
is a leftover from the past?