aboutsummaryrefslogtreecommitdiff
path: root/depends/config.site.in
diff options
context:
space:
mode:
authorfanquake <fanquake@gmail.com>2024-01-30 09:37:37 +0000
committerfanquake <fanquake@gmail.com>2024-05-08 16:36:41 +0800
commit7f5ac4520d1553170b1053a9ffcd58179386a6d2 (patch)
treed0b2d5b5e0e4e1abaeab6f5fc29bc5cfe8791a98 /depends/config.site.in
parent43a66c55ec8770cf7c21112aac9b997f3f2fb704 (diff)
downloadbitcoin-7f5ac4520d1553170b1053a9ffcd58179386a6d2.tar.xz
build: swap otool for (llvm-)objdump
Similar to libtool, (llvm-)otool only exists with a version suffix on some systems (Ubuntu), which makes it annoying to use/find. Avoid this, by switching to objdump. Which is a drop-in replacement. This is related to #21778, and the switchover to using vanilla LLVM for macOS.
Diffstat (limited to 'depends/config.site.in')
-rw-r--r--depends/config.site.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/depends/config.site.in b/depends/config.site.in
index 81975f02b9..f6bed6a9d4 100644
--- a/depends/config.site.in
+++ b/depends/config.site.in
@@ -118,9 +118,9 @@ if test -n "@STRIP@"; then
fi
if test "@host_os@" = darwin; then
- if test -n "@OTOOL@"; then
- OTOOL="@OTOOL@"
- ac_cv_path_OTOOL="${OTOOL}"
+ if test -n "@OBJDUMP@"; then
+ OBJDUMP="@OBJDUMP@"
+ ac_cv_path_OBJDUMP="${OBJDUMP}"
fi
if test -n "@DSYMUTIL@"; then