We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8476c44 commit 71ac321Copy full SHA for 71ac321
Cargo.toml
@@ -51,3 +51,14 @@ test-in-browser = []
51
[package.metadata.docs.rs]
52
features = ["std", "custom"]
53
rustdoc-args = ["--cfg", "docsrs"]
54
+
55
+# workaround for https://github.com/cross-rs/cross/issues/1345
56
+[package.metadata.cross.target.x86_64-unknown-netbsd]
57
+pre-build = [
58
+ "mkdir -p /tmp/netbsd",
59
+ "curl https://cdn.netbsd.org/pub/NetBSD/NetBSD-9.2/amd64/binary/sets/base.tar.xz -O",
60
+ "tar -C /tmp/netbsd -xJf base.tar.xz",
61
+ "cp /tmp/netbsd/usr/lib/libexecinfo.so /usr/local/x86_64-unknown-netbsd/lib",
62
+ "rm base.tar.xz",
63
+ "rm -rf /tmp/netbsd",
64
+]
0 commit comments