Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build: call AC_PATH_TOOL for dsymutil in macOS cross-compile
While testing bitcoin#19530 I noticed that we couldn't call dsymutil after LTO: ```bash ../libtool: line 10643: x86_64-apple-darwin16-dsymutil: command not found ``` This updates configure to call `AC_PATH_TOOL` so that we end up with the full path to dsymutil, similar to `otool` and `install_name_tool`, ie: `/bitcoin/depends/x86_64-apple-darwin16/share/../native/bin/x86_64-apple-darwin16-otool`.
- Loading branch information