From d6c6f003935dc3d41e794cdcd17642604b295544 Mon Sep 17 00:00:00 2001 From: Patrick Way Date: Mon, 14 Dec 2015 12:38:26 -0500 Subject: [PATCH] Common-Issues: add section for upgrading OS X. Closes Homebrew/homebrew#47008. Signed-off-by: Mike McQuaid --- share/doc/homebrew/Common-Issues.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/share/doc/homebrew/Common-Issues.md b/share/doc/homebrew/Common-Issues.md index a3f4d531f7..7d8c8640c0 100644 --- a/share/doc/homebrew/Common-Issues.md +++ b/share/doc/homebrew/Common-Issues.md @@ -160,3 +160,17 @@ To list all files that would be deleted: Don't follow the advice here but fix by using `Language::Python.setup_install_args` in the formula as described in [Python for Formula Authors](Python-for-Formula-Authors.md). + +### Upgrading OS X + +Upgrading OS X can cause errors like the following: + +- `dyld: Library not loaded: /usr/local/opt/icu4c/lib/libicui18n.54.dylib` +- `configure: error: Cannot find libz` + +Following an OS X upgrade it may be necessary to reinstall the Xcode Command Line Tools and `brew upgrade` all installed formula: + +```bash +xcode-select --install +brew upgrade +```