mirror of
https://github.com/lancedb/lancedb.git
synced 2026-01-06 11:52:57 +00:00
27 lines
1.0 KiB
TOML
27 lines
1.0 KiB
TOML
# These make sure our builds are compatible with old glibc versions.
|
|
[target.x86_64-unknown-linux-gnu]
|
|
pre-build = [
|
|
"dpkg --add-architecture $CROSS_DEB_ARCH",
|
|
"apt-get update && apt-get install --assume-yes libssl-dev:$CROSS_DEB_ARCH protobuf-compiler:$CROSS_DEB_ARCH",
|
|
]
|
|
image = "ghcr.io/cross-rs/x86_64-unknown-linux-gnu:main-centos"
|
|
|
|
[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 protobuf-compiler:$CROSS_DEB_ARCH",
|
|
]
|
|
image = "ghcr.io/cross-rs/aarch64-unknown-linux-gnu:main-centos"
|
|
|
|
[target.x86_64-unknown-linux-musl]
|
|
pre-build = [
|
|
"dpkg --add-architecture $CROSS_DEB_ARCH",
|
|
"apt-get update && apt-get install --assume-yes libssl-dev:$CROSS_DEB_ARCH protobuf-compiler:$CROSS_DEB_ARCH",
|
|
]
|
|
|
|
[target.aarch64-unknown-linux-musl]
|
|
pre-build = [
|
|
"dpkg --add-architecture $CROSS_DEB_ARCH",
|
|
"apt-get update && apt-get install --assume-yes libssl-dev:$CROSS_DEB_ARCH protobuf-compiler:$CROSS_DEB_ARCH",
|
|
]
|