2025-03-07 00:18:36 +01:00
|
|
|
#we build x86_64 natively, so we do not need this!
|
|
|
|
#[target.x86_64-unknown-linux-gnu]
|
|
|
|
#pre-build = [
|
|
|
|
# "apt-get update && apt-get install --assume-yes capnproto"
|
|
|
|
#]
|
|
|
|
|
|
|
|
[target.aarch64-unknown-linux-gnu]
|
|
|
|
pre-build = [
|
2025-03-07 01:16:49 +01:00
|
|
|
"dpkg --add-architecture $CROSS_DEB_ARCH",
|
|
|
|
"apt-get update",
|
|
|
|
"apt-get install --assume-yes capnproto",
|
|
|
|
"apt-get install --assume-yes libpcsclite-dev:$CROSS_DEB_ARCH --no-install-recommends"
|
2025-03-07 00:18:36 +01:00
|
|
|
]
|
|
|
|
|
|
|
|
[target.armv7-unknown-linux-gnueabihf]
|
|
|
|
pre-build = [
|
2025-03-07 01:16:49 +01:00
|
|
|
"dpkg --add-architecture $CROSS_DEB_ARCH",
|
|
|
|
"apt-get update",
|
|
|
|
"apt-get install --assume-yes capnproto",
|
|
|
|
"apt-get install --assume-yes libpcsclite-dev:$CROSS_DEB_ARCH --no-install-recommends"
|
2025-03-07 00:18:36 +01:00
|
|
|
]
|