From 7f5ac4520d1553170b1053a9ffcd58179386a6d2 Mon Sep 17 00:00:00 2001 From: fanquake Date: Tue, 30 Jan 2024 09:37:37 +0000 Subject: 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. --- depends/config.site.in | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'depends/config.site.in') 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 -- cgit v1.2.3