mirror of
https://github.com/feather-wallet/feather.git
synced 2024-10-30 17:07:54 +00:00
c0a5a549f4
Some checks failed
ci/gh-actions/build / build-ubuntu-without-scanner (push) Has been cancelled
ci/gh-actions/guix / cache-sources (push) Has been cancelled
ci/gh-actions/guix / ${{ matrix.toolchain.target }} (map[target:aarch64-linux-gnu]) (push) Has been cancelled
ci/gh-actions/guix / ${{ matrix.toolchain.target }} (map[target:arm-linux-gnueabihf]) (push) Has been cancelled
ci/gh-actions/guix / ${{ matrix.toolchain.target }} (map[target:arm64-apple-darwin]) (push) Has been cancelled
ci/gh-actions/guix / ${{ matrix.toolchain.target }} (map[target:i686-linux-gnu]) (push) Has been cancelled
ci/gh-actions/guix / ${{ matrix.toolchain.target }} (map[target:riscv64-linux-gnu]) (push) Has been cancelled
ci/gh-actions/guix / ${{ matrix.toolchain.target }} (map[target:x86_64-apple-darwin]) (push) Has been cancelled
ci/gh-actions/guix / ${{ matrix.toolchain.target }} (map[target:x86_64-linux-gnu.no-tor-bundle]) (push) Has been cancelled
ci/gh-actions/guix / ${{ matrix.toolchain.target }} (map[target:x86_64-linux-gnu.pack]) (push) Has been cancelled
ci/gh-actions/guix / ${{ matrix.toolchain.target }} (map[target:x86_64-linux-gnu]) (push) Has been cancelled
ci/gh-actions/guix / ${{ matrix.toolchain.target }} (map[target:x86_64-w64-mingw32.installer]) (push) Has been cancelled
ci/gh-actions/guix / ${{ matrix.toolchain.target }} (map[target:x86_64-w64-mingw32]) (push) Has been cancelled
ci/gh-actions/guix / bundle-logs (push) Has been cancelled
42 lines
1.6 KiB
Diff
42 lines
1.6 KiB
Diff
Fixes a reproducibility defect. We don't need the library.
|
|
|
|
diff --git a/libs/stacktrace/build/Jamfile.v2 b/libs/stacktrace/build/Jamfile.v2
|
|
index 230d5a8b4..d3d74599b 100644
|
|
--- a/libs/stacktrace/build/Jamfile.v2
|
|
+++ b/libs/stacktrace/build/Jamfile.v2
|
|
@@ -48,9 +48,6 @@ rule mp-run-simple ( sources + : args * : input-files * : requirements * : targe
|
|
mp-run-simple has_backtrace.cpp : : : <library>backtrace : libbacktrace ;
|
|
explicit libbacktrace ;
|
|
|
|
-mp-run-simple has_addr2line.cpp : : : : addr2line ;
|
|
-explicit addr2line ;
|
|
-
|
|
mp-run-simple has_windbg.cpp : : : <library>Dbgeng <library>ole32 : WinDbg ;
|
|
explicit WinDbg ;
|
|
|
|
@@ -82,19 +79,6 @@ lib boost_stacktrace_backtrace
|
|
#<link>shared:<define>BOOST_STACKTRACE_DYN_LINK=1
|
|
;
|
|
|
|
-lib boost_stacktrace_addr2line
|
|
- : # sources
|
|
- ../src/addr2line.cpp
|
|
- : # requirements
|
|
- <warnings>all
|
|
- <target-os>linux:<library>dl
|
|
- <link>shared:<define>BOOST_STACKTRACE_DYN_LINK=1
|
|
- [ check-target-builds ../build//addr2line : : <build>no ]
|
|
- : # default build
|
|
- : # usage-requirements
|
|
- #<link>shared:<define>BOOST_STACKTRACE_DYN_LINK=1
|
|
- ;
|
|
-
|
|
lib boost_stacktrace_basic
|
|
: # sources
|
|
../src/basic.cpp
|
|
@@ -152,4 +136,4 @@ lib boost_stacktrace_from_exception
|
|
#<link>shared:<define>BOOST_STACKTRACE_DYN_LINK=1
|
|
;
|
|
|
|
-boost-install boost_stacktrace_noop boost_stacktrace_backtrace boost_stacktrace_addr2line boost_stacktrace_basic boost_stacktrace_windbg boost_stacktrace_windbg_cached boost_stacktrace_from_exception ;
|
|
+boost-install boost_stacktrace_noop boost_stacktrace_backtrace boost_stacktrace_basic boost_stacktrace_windbg boost_stacktrace_windbg_cached boost_stacktrace_from_exception ;
|