We need to make sure we trip when unknown configure options are being used.
The autoconf configure script will only issue a warning, but will happily continue, e.g. when using --enable-mpi-threads with OpenMPI v1.6.4:
configure: WARNING: unrecognized options: --enable-mpi-threads
This particular one was only figured out when OpenMPI was being used to build and test larger programs depending on its functionality, i.e. CP2K, so way too late in the build cycle.
We need to make sure we trip when unknown configure options are being used.
The autoconf
configurescript will only issue a warning, but will happily continue, e.g. when using--enable-mpi-threadswith OpenMPI v1.6.4:This particular one was only figured out when OpenMPI was being used to build and test larger programs depending on its functionality, i.e. CP2K, so way too late in the build cycle.