mirror of
https://github.com/lightningdevkit/rust-lightning.git
synced 2025-03-10 05:33:40 +01:00
Fix 1.54- builds with the backtrace
feature due to MSRV breakage
The test-only `backtrace` feature broke on rustc prior to 1.55.
This commit is contained in:
parent
ab80fcf953
commit
6bbe1a4dd1
1 changed files with 3 additions and 0 deletions
|
@ -11,6 +11,9 @@ HOST_PLATFORM="$(rustc --version --verbose | grep "host:" | awk '{ print $2 }')"
|
||||||
# Sadly the log crate is always a dependency of tokio until 1.20, and has no reasonable MSRV guarantees
|
# Sadly the log crate is always a dependency of tokio until 1.20, and has no reasonable MSRV guarantees
|
||||||
[ "$RUSTC_MINOR_VERSION" -lt 49 ] && cargo update -p log --precise "0.4.18" --verbose
|
[ "$RUSTC_MINOR_VERSION" -lt 49 ] && cargo update -p log --precise "0.4.18" --verbose
|
||||||
|
|
||||||
|
# The addr2line v0.20 crate (a dependency of `backtrace` starting with 0.3.68) relies on 1.55+
|
||||||
|
[ "$RUSTC_MINOR_VERSION" -lt 55 ] && cargo update -p backtrace --precise "0.3.67" --verbose
|
||||||
|
|
||||||
[ "$LDK_COVERAGE_BUILD" != "" ] && export RUSTFLAGS="-C link-dead-code"
|
[ "$LDK_COVERAGE_BUILD" != "" ] && export RUSTFLAGS="-C link-dead-code"
|
||||||
|
|
||||||
export RUST_BACKTRACE=1
|
export RUST_BACKTRACE=1
|
||||||
|
|
Loading…
Add table
Reference in a new issue