mirror of
https://github.com/RightNow-AI/openfang.git
synced 2026-07-30 15:01:15 +00:00
12 lines
353 B
TOML
12 lines
353 B
TOML
[target.aarch64-unknown-linux-gnu]
|
|
pre-build = [
|
|
"dpkg --add-architecture $CROSS_DEB_ARCH",
|
|
"apt-get update && apt-get install --assume-yes libssl-dev:$CROSS_DEB_ARCH"
|
|
]
|
|
|
|
[target.armv7-unknown-linux-gnueabihf]
|
|
pre-build = [
|
|
"dpkg --add-architecture $CROSS_DEB_ARCH",
|
|
"apt-get update && apt-get install --assume-yes libssl-dev:$CROSS_DEB_ARCH"
|
|
]
|