mirror of
https://github.com/domcyrus/rustnet.git
synced 2026-01-01 11:30:14 -06:00
* Remove musl targets to simplify Linux builds and fix cross-compilation issues * Enable eBPF by default on Linux via linux-default feature for better packet capture * Add macOS code signing and notarization support with graceful fallback for unsigned builds * Fix Windows MSI packaging with improved WiX configuration and Npcap library linking * Auto-extract changelog content from CHANGELOG.md into GitHub release notes * Fix ARM cross-compilation (aarch64, armv7) with proper library paths and eBPF support * Add comprehensive installation documentation for DMG, MSI, DEB, and RPM packages * Allow re-running releases with --clobber flag for artifact uploads
17 lines
694 B
TOML
17 lines
694 B
TOML
[target.aarch64-unknown-linux-gnu]
|
|
image = "ghcr.io/cross-rs/aarch64-unknown-linux-gnu:edge"
|
|
pre-build = [
|
|
"dpkg --add-architecture $CROSS_DEB_ARCH",
|
|
"apt-get update -y",
|
|
"apt-get install -y libelf-dev:arm64 zlib1g-dev:arm64 libpcap-dev:arm64 gcc-aarch64-linux-gnu protobuf-compiler libseccomp-dev:arm64 libbpf-dev clang llvm"
|
|
]
|
|
|
|
[target.armv7-unknown-linux-gnueabihf]
|
|
image = "ghcr.io/cross-rs/armv7-unknown-linux-gnueabihf:edge"
|
|
pre-build = [
|
|
"dpkg --add-architecture $CROSS_DEB_ARCH",
|
|
"apt-get update -y",
|
|
"apt-get install -y libelf-dev:armhf zlib1g-dev:armhf libpcap-dev:armhf gcc-arm-linux-gnueabihf protobuf-compiler libseccomp-dev:armhf libbpf-dev clang llvm"
|
|
]
|
|
|