forked from vectordotdev/vector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cross.toml
36 lines (28 loc) · 1019 Bytes
/
Cross.toml
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
[build.env]
passthrough = [
"BUILD_DIR",
"CARGO_INCREMENTAL",
"CARGO_PROFILE_RELEASE_OPT_LEVEL",
"CARGO_PROFILE_RELEASE_CODEGEN_UNITS",
"RUST_BACKTRACE",
"RUST_LOG",
"VECTOR_BUILD_DESC",
"JEMALLOC_SYS_WITH_LG_PAGE",
"JEMALLOC_SYS_WITH_LG_HUGEPAGE",
]
[target.x86_64-unknown-linux-gnu]
image = "vector-cross-env:x86_64-unknown-linux-gnu"
[target.aarch64-unknown-linux-gnu]
image = "vector-cross-env:aarch64-unknown-linux-gnu"
[target.x86_64-unknown-linux-musl]
image = "vector-cross-env:x86_64-unknown-linux-musl"
[target.aarch64-unknown-linux-musl]
image = "vector-cross-env:aarch64-unknown-linux-musl"
[target.armv7-unknown-linux-gnueabihf]
image = "vector-cross-env:armv7-unknown-linux-gnueabihf"
[target.armv7-unknown-linux-musleabihf]
image = "vector-cross-env:armv7-unknown-linux-musleabihf"
[target.arm-unknown-linux-gnueabi]
image = "vector-cross-env:arm-unknown-linux-gnueabi"
[target.arm-unknown-linux-musleabi]
image = "vector-cross-env:arm-unknown-linux-musleabi"