Disable those packages that won't build

This commit is contained in:
Stephen Sachs 2024-04-09 11:46:31 +02:00
parent 2d490017a7
commit a9699e7fc0
3 changed files with 12 additions and 5 deletions

View File

@ -4,9 +4,11 @@ spack:
definitions: definitions:
- apps: - apps:
- gromacs - gromacs
- mpas-model # - mpas-model: Spack currently forces REAL(8) when using GCC. This conflicts with `precision=single`
# Fix proposed in https://github.com/spack/spack/pull/43547
- openfoam - openfoam
- quantum-espresso # - quantum-espresso : %gcc@12.3.0 on neoverse_v1 fails.
# Root cause: internal compiler error: in compute_live_loop_exits, at tree-ssa-loop-manip.cc:247
- wrf - wrf
- targets: - targets:

View File

@ -6,6 +6,12 @@ packages:
- "cflags=-std=c18 target=x86_64_v4" - "cflags=-std=c18 target=x86_64_v4"
- "cflags=-std=c18 target=x86_64_v3" - "cflags=-std=c18 target=x86_64_v3"
- "%gcc" - "%gcc"
gettext:
require:
- one_of:
- '%intel cflags="-std=c18"'
- '%gcc'
message: "gettext uses single valued `static_assert` which is only available in `icc` as part of later C standard."
gromacs: gromacs:
require: require:
- one_of: - one_of:

View File

@ -5,11 +5,10 @@ spack:
- apps: - apps:
- gromacs - gromacs
- lammps - lammps
# - mpas-model: Spack currently forces REAL(8) when using GCC. This conflicts with `precision=single` - mpas-model
- openfoam - openfoam
- palace - palace
# - quantum-espresso : %gcc@12.3.0 on neoverse_v1 fails. - quantum-espresso
# Root cause: internal compiler error: in compute_live_loop_exits, at tree-ssa-loop-manip.cc:247
# - wrf : While building hdf5 cmake errors out with Detecting Fortran/C Interface: Failed to compile # - wrf : While building hdf5 cmake errors out with Detecting Fortran/C Interface: Failed to compile
# Root cause: ifort cannot deal with arbitrarily long file names. # Root cause: ifort cannot deal with arbitrarily long file names.