-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathCross.toml
More file actions
91 lines (65 loc) · 2.85 KB
/
Cross.toml
File metadata and controls
91 lines (65 loc) · 2.85 KB
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
# ============================================================
# Cross.toml (cross-only keys)
# ============================================================
[build]
[target.x86_64-unknown-linux-gnu]
image = "static-cross-x86_64-unknown-linux-gnu:latest"
[target.aarch64-unknown-linux-gnu]
image = "static-cross-aarch64-unknown-linux-gnu:latest"
[target.armv7-unknown-linux-gnueabihf]
image = "static-cross-armv7-unknown-linux-gnueabihf:latest"
[target.i686-unknown-linux-gnu]
image = "static-cross-i686-unknown-linux-gnu:latest"
[target.x86_64-unknown-linux-musl]
image = "static-cross-x86_64-unknown-linux-musl:latest"
[target.aarch64-unknown-linux-musl]
image = "static-cross-aarch64-unknown-linux-musl:latest"
[target.armv7-unknown-linux-musleabihf]
image = "static-cross-armv7-unknown-linux-musleabihf:latest"
[target.aarch64-linux-android]
image = "static-cross-aarch64-linux-android:latest"
[target.armv7-linux-androideabi]
image = "static-cross-armv7-linux-androideabi:latest"
[target.x86_64-linux-android]
image = "static-cross-x86_64-linux-android:latest"
[target.i686-linux-android]
image = "static-cross-i686-linux-android:latest"
[target.x86_64-apple-darwin]
image = "static-cross-x86_64-apple-darwin:latest"
[target.aarch64-apple-darwin]
image = "static-cross-aarch64-apple-darwin:latest"
[target.aarch64-apple-ios]
image = "static-cross-aarch64-apple-ios:latest"
[target.aarch64-apple-ios-sim]
image = "static-cross-aarch64-apple-ios-sim:latest"
[target.x86_64-apple-ios]
image = "static-cross-x86_64-apple-ios:latest"
[target.x86_64-unknown-freebsd]
image = "static-cross-x86_64-unknown-freebsd:latest"
[target.aarch64-unknown-freebsd]
image = "static-cross-aarch64-unknown-freebsd:latest"
[target.x86_64-unknown-netbsd]
image = "static-cross-x86_64-unknown-netbsd:latest"
[target.x86_64-unknown-openbsd]
image = "static-cross-x86_64-unknown-openbsd:latest"
[target.x86_64-unknown-dragonfly]
image = "static-cross-x86_64-unknown-dragonfly:latest"
[target.x86_64-pc-windows-gnu]
image = "static-cross-x86_64-pc-windows-gnu:latest"
[target.i686-pc-windows-gnu]
image = "static-cross-i686-pc-windows-gnu:latest"
[target.aarch64-pc-windows-gnullvm]
image = "static-cross-aarch64-pc-windows-gnullvm:latest"
[target.x86_64-pc-windows-gnu.env]
passthrough = [
"PKG_CONFIG_ALLOW_CROSS=1",
"PKG_CONFIG_PATH=/usr/x86_64-w64-mingw32/lib/pkgconfig",
"PKG_CONFIG_LIBDIR=/usr/x86_64-w64-mingw32/lib/pkgconfig",
"PKG_CONFIG_PATH_x86_64_pc_windows_gnu=/usr/x86_64-w64-mingw32/lib/pkgconfig",
"PKG_CONFIG_LIBDIR_x86_64_pc_windows_gnu=/usr/x86_64-w64-mingw32/lib/pkgconfig",
"FFMPEG_PKG_CONFIG_PATH=/usr/x86_64-w64-mingw32/lib/pkgconfig",
"FFMPEG_LIBS_DIR=/usr/x86_64-w64-mingw32/lib",
"FFMPEG_INCLUDE_DIR=/usr/x86_64-w64-mingw32/include",
"CFLAGS_x86_64_pc_windows_gnu=-DSIO_UDP_NETRESET=SIO_UDP_CONNRESET",
"CXXFLAGS_x86_64_pc_windows_gnu=-DSIO_UDP_NETRESET=SIO_UDP_CONNRESET"
]