Как установить инструменты командной строки OS X 10.12 на 10.11? - PullRequest
1 голос
/ 13 апреля 2020

Я получаю эту ошибку при попытке brew install geckodriver

==> Installing geckodriver dependency: rust
==> Downloading https://static.rust-lang.org/dist/rustc-1.42.0-src.tar.gz
######################################################################## 100.0%
==> ./configure --prefix=/usr/local/Cellar/rust/1.42.0 --release-channel=stable
==> make
Last 15 lines from /Users/nilshaus/Library/Logs/Homebrew/rust/02.make:
2020-04-12 21:13:48 -0400

make

make: error: unable to find utility "make", not a developer tool or in PATH
xcodebuild: error: SDK "/Library/Developer/CommandLineTools/SDKs/MacOSX10.12.sdk" cannot be located.
clang: error: unable to find utility "clang", not a developer tool or in PATH

Do not report this issue to Homebrew/brew or Homebrew/core!

These open issues may also help:
Rust dependents that currently fail to build from source https://github.com/Homebrew/homebrew-core/issues/50815

Error: You are using macOS 10.11.
We (and Apple) do not provide support for this old version.
You will encounter build failures with some formulae.
Please create pull requests instead of asking for help on Homebrew's GitHub,
Discourse, Twitter or IRC. You are responsible for resolving any issues you
experience while you are running this old version.

Очевидно, что 10.11 больше не поддерживается Homebrew. Тот факт, что он не может найти make, странен, но я готов поспорить, что реальная проблема заключается в том, что сборка ржавчины ожидает инструменты командной строки 10.12. Есть ли способ для меня, чтобы установить их на OS X 10.11? У меня есть Xcode 8.

...