diff options
author | Anthony Ramine <nox@nox.paris> | 2019-09-24 12:04:39 +0200 |
---|---|---|
committer | Anthony Ramine <nox@nox.paris> | 2019-09-24 12:04:39 +0200 |
commit | 15e5bb7ec1032cd3a8f1269fec87dcb888dc84a0 (patch) | |
tree | d4c700aa865e8ba041fb1736f381d363ddbaa576 | |
parent | 6ca62aa0de1fda970daac53681a9b6e47cf91fbd (diff) | |
download | servo-15e5bb7ec1032cd3a8f1269fec87dcb888dc84a0.tar.gz servo-15e5bb7ec1032cd3a8f1269fec87dcb888dc84a0.zip |
Remove obsolete macOS build instructions
openssl is already installed through the Brewfile, and libffi needs no
environment variable anymore now that glib was fixed.
https://github.com/Homebrew/homebrew-core/pull/44446
-rw-r--r-- | README.md | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/README.md b/README.md index 0a8180957db..040a18ddf2a 100644 --- a/README.md +++ b/README.md @@ -66,20 +66,6 @@ pip install virtualenv ``` sh sudo port install python27 py27-virtualenv cmake yasm llvm ``` -##### On macOS >= 10.11 (El Capitan), you also have to install OpenSSL - -``` sh -brew install openssl - -export OPENSSL_INCLUDE_DIR="$(brew --prefix openssl)/include" -export OPENSSL_LIB_DIR="$(brew --prefix openssl)/lib" - -./mach build ... -``` - -##### Note: Please make sure the required `PKG_CONFIG_PATH` environment variable is set the same as the one provided from `brew info libffi` ([Check this comment for more details](https://github.com/servo/servo/issues/23015#issuecomment-475050175)). - -If you've already partially compiled servo but forgot to do this step, run `./mach clean`, set the shell variables, and recompile. #### On Debian-based Linuxes |