Skip to content

Commit

Permalink
Update spack-ext/repos/spack-stack/packages/neptune-env/package.py: u…
Browse files Browse the repository at this point in the history
…se sp with aocc, ip with all other compilers
  • Loading branch information
climbfuji committed Aug 30, 2024
1 parent 3af0aee commit b415ce9
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion spack-ext/repos/spack-stack/packages/neptune-env/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,11 @@ class NeptuneEnv(BundlePackage):
depends_on("p4est", type="run")
depends_on("w3emc", type="run")
depends_on("w3nco", type="run")
depends_on("ip@5:", type="run")
depends_on("sp", type="run", when="%aocc")
depends_on("ip@5:", type="run", when="%apple-clang")
depends_on("ip@5:", type="run", when="%gcc")
depends_on("ip@5:", type="run", when="%intel")
depends_on("ip@5:", type="run", when="%oneapi")
depends_on("esmf", type="run")
depends_on("nco", type="run")
depends_on("mct", type="run")
Expand Down

0 comments on commit b415ce9

Please sign in to comment.