mirror of
https://github.com/edera-dev/krata.git
synced 2025-08-02 21:00:55 +00:00
35 lines
841 B
TOML
35 lines
841 B
TOML
[target.aarch64-unknown-linux-gnu]
|
|
pre-build = [
|
|
"apt-get update && apt-get --assume-yes install protobuf-compiler"
|
|
]
|
|
|
|
[target.aarch64-unknown-linux-musl]
|
|
pre-build = [
|
|
"apt-get update && apt-get --assume-yes install protobuf-compiler"
|
|
]
|
|
|
|
[target.x86_64-unknown-linux-gnu]
|
|
pre-build = [
|
|
"apt-get update && apt-get --assume-yes install protobuf-compiler"
|
|
]
|
|
|
|
[target.x86_64-unknown-linux-musl]
|
|
pre-build = [
|
|
"apt-get update && apt-get --assume-yes install protobuf-compiler"
|
|
]
|
|
|
|
[target.riscv64gc-unknown-linux-gnu]
|
|
pre-build = [
|
|
"apt-get update && apt-get --assume-yes install protobuf-compiler"
|
|
]
|
|
|
|
[target.x86_64-unknown-freebsd]
|
|
pre-build = [
|
|
"apt-get update && apt-get --assume-yes install protobuf-compiler"
|
|
]
|
|
|
|
[target.x86_64-unknown-netbsd]
|
|
pre-build = [
|
|
"apt-get update && apt-get --assume-yes install protobuf-compiler"
|
|
]
|