Skip to content

Commit

Permalink
spark2014: shared gmp should not be in the environment for builds
Browse files Browse the repository at this point in the history
We just need to install it.
  • Loading branch information
Fabien-Chouteau committed Aug 1, 2024
1 parent edb490b commit 08aa8e6
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion specs/spark2014.anod
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,7 @@ class SPARK2014(spec("common")):
Anod.Dependency("libgpr2", qualifier="next"),
Anod.Dependency("libgpr"),
Anod.Dependency("langkit_support"),
Anod.Dependency("adasat", track=True),
Anod.Dependency("libadalang"),
]

Expand All @@ -135,7 +136,8 @@ class SPARK2014(spec("common")):
jobs=self.jobs
)
for dep in self.deps:
self.deps[dep].setenv()
if dep not in ["gmp_shared"]:
self.deps[dep].setenv()
make("all-nightly", jobs=1)

self.install()
Expand Down

0 comments on commit 08aa8e6

Please sign in to comment.