From 931898d528a47601f7378d0ec7afd45a09fef4fd Mon Sep 17 00:00:00 2001 From: Josh Friend Date: Wed, 10 Oct 2018 16:43:38 -0400 Subject: [PATCH] Updated Common build problems (markdown) --- Common-build-problems.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Common-build-problems.md b/Common-build-problems.md index 72e429f..7d711ab 100644 --- a/Common-build-problems.md +++ b/Common-build-problems.md @@ -33,6 +33,12 @@ zypper in zlib-devel bzip2 libbz2-devel readline-devel sqlite3 sqlite3-devel lib ```sh brew install readline xz +``` + + When running Mojave or higher (10.14+) you will also [need to install the additional SDK headers](https://developer.apple.com/documentation/xcode_release_notes/xcode_10_release_notes#3035624): + +```sh +sudo installer -pkg /Library/Developer/CommandLineTools/Packages/macOS_SDK_headers_for_macOS_10.14.pkg -target / ``` **NOTE**: `libssl-dev` is required when compiling Python, installing `libssl-dev` will actually install `zlib1g-dev`, which leads to uninstall and re-install Python versions (installed before installing `libssl-dev`). On Redhat and derivatives the package is named `openssl-devel`.