-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCross.toml
More file actions
27 lines (21 loc) · 864 Bytes
/
Cross.toml
File metadata and controls
27 lines (21 loc) · 864 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
[target.aarch64-apple-darwin]
image = "aloismisery/aarch64-apple-darwin-cross:extra"
[target.aarch64-pc-windows-msvc]
image = "aloismisery/aarch64-pc-windows-msvc-cross:extra"
[target.i686-apple-darwin-cross]
image = "aloismisery/i686-apple-darwin-cross:extra"
[target.i686-pc-windows-msvc]
image = "aloismisery/i686-pc-windows-msvc-cross:extra"
[target.x86_64-unknown-netbsd]
pre-build = [
"mkdir -p /tmp/netbsd",
"curl -LO https://cdn.netbsd.org/pub/NetBSD/NetBSD-10.1/amd64/binary/sets/base.tar.xz",
"tar -C /tmp/netbsd -xJf base.tar.xz",
"cp /tmp/netbsd/usr/lib/libexecinfo.so /usr/local/x86_64-unknown-netbsd/lib",
"rm base.tar.xz",
"rm -rf /tmp/netbsd",
]
[target.x86_64-apple-darwin]
image = "aloismisery/x86_64-apple-darwin-cross:extra"
[target.x86_64-pc-windows-msvc]
image = "aloismisery/x86_64-pc-windows-msvc-cross:extra"