Skip to content
Snippets Groups Projects
Verified Commit a1607acc authored by Jeremy Soller's avatar Jeremy Soller
Browse files

Use system curl and nghttp2 for cargo

parent a551814a
No related branches found
No related tags found
No related merge requests found
...@@ -6,12 +6,26 @@ branch = "redox-2022-03-18" ...@@ -6,12 +6,26 @@ branch = "redox-2022-03-18"
[build] [build]
template = "custom" template = "custom"
dependencies = [ dependencies = [
"curl",
"libssh2", "libssh2",
"nghttp2",
"openssl", "openssl",
"zlib", "zlib",
] ]
script = """ script = """
export LIBSSH2_SYS_USE_PKG_CONFIG=1 export LIBSSH2_SYS_USE_PKG_CONFIG=1
export LIBZ_SYS_STATIC=1 export LIBZ_SYS_STATIC=1
cookbook_cargo export DEP_NGHTTP2_ROOT="${COOKBOOK_SYSROOT}"
export DEP_OPENSSL_ROOT="${COOKBOOK_SYSROOT}"
export DEP_Z_ROOT="${COOKBOOK_SYSROOT}"
# Force linking system nghttp2
"${COOKBOOK_CARGO}" rustc \
--manifest-path "${COOKBOOK_SOURCE}/Cargo.toml" \
--release \
--bin cargo \
-- \
-L "${COOKBOOK_SYSROOT}/lib" \
-C link-arg="-lnghttp2"
mkdir -pv "${COOKBOOK_STAGE}/bin"
cp -v "target/${TARGET}/release/cargo" "${COOKBOOK_STAGE}/bin/cargo"
""" """
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment