rust: use system libs (#43797)
This commit is contained in:
parent
3f1cfdb7d7
commit
1eb6977049
1 changed files with 7 additions and 0 deletions
|
@ -56,10 +56,12 @@ class Rust(Package):
|
||||||
depends_on("cmake@3.13.4:", type="build")
|
depends_on("cmake@3.13.4:", type="build")
|
||||||
depends_on("curl+nghttp2")
|
depends_on("curl+nghttp2")
|
||||||
depends_on("libgit2")
|
depends_on("libgit2")
|
||||||
|
depends_on("libssh2")
|
||||||
depends_on("ninja", type="build")
|
depends_on("ninja", type="build")
|
||||||
depends_on("openssl")
|
depends_on("openssl")
|
||||||
depends_on("pkgconfig", type="build")
|
depends_on("pkgconfig", type="build")
|
||||||
depends_on("python", type="build")
|
depends_on("python", type="build")
|
||||||
|
depends_on("zlib-api")
|
||||||
|
|
||||||
# Compiling Rust requires a previous version of Rust.
|
# Compiling Rust requires a previous version of Rust.
|
||||||
# The easiest way to bootstrap a Rust environment is to
|
# The easiest way to bootstrap a Rust environment is to
|
||||||
|
@ -94,6 +96,11 @@ def setup_dependent_package(self, module, dependent_spec):
|
||||||
module.cargo = Executable(os.path.join(self.spec.prefix.bin, "cargo"))
|
module.cargo = Executable(os.path.join(self.spec.prefix.bin, "cargo"))
|
||||||
|
|
||||||
def setup_build_environment(self, env):
|
def setup_build_environment(self, env):
|
||||||
|
# Manually instruct Cargo dependency libssh2-sys to build with
|
||||||
|
# the Spack installed libssh2 package. For more info see
|
||||||
|
# https://github.com/alexcrichton/ssh2-rs/issues/173
|
||||||
|
env.set("LIBSSH2_SYS_USE_PKG_CONFIG", "1")
|
||||||
|
|
||||||
# Manually inject the path of ar for build.
|
# Manually inject the path of ar for build.
|
||||||
ar = which("ar", required=True)
|
ar = which("ar", required=True)
|
||||||
env.set("AR", ar.path)
|
env.set("AR", ar.path)
|
||||||
|
|
Loading…
Reference in a new issue