Unverified Commit a7161298 authored by moto's avatar moto Committed by GitHub
Browse files

Remove MACOSX_DEPLOYMENT_TARGET (#1880)

It seems that this is no longer necessary for recent macOS .
parent fe1ca374
...@@ -63,7 +63,7 @@ cd audio ...@@ -63,7 +63,7 @@ cd audio
git submodule update --init --recursive git submodule update --init --recursive
python setup.py develop python setup.py develop
# or, for OSX # or, for OSX
# MACOSX_DEPLOYMENT_TARGET=10.9 CC=clang CXX=clang++ python setup.py develop # CC=clang CXX=clang++ python setup.py develop
``` ```
Some environmnet variables that change the build behavior Some environmnet variables that change the build behavior
......
...@@ -64,7 +64,7 @@ The build process also builds the RNN transducer loss. This functionality can be ...@@ -64,7 +64,7 @@ The build process also builds the RNN transducer loss. This functionality can be
python setup.py install python setup.py install
# OSX # OSX
MACOSX_DEPLOYMENT_TARGET=10.9 CC=clang CXX=clang++ python setup.py install CC=clang CXX=clang++ python setup.py install
# Windows # Windows
# We need to use the MSVC x64 toolset for compilation, with Visual Studio's vcvarsall.bat or directly with vcvars64.bat. # We need to use the MSVC x64 toolset for compilation, with Visual Studio's vcvarsall.bat or directly with vcvars64.bat.
......
...@@ -141,7 +141,7 @@ setup_build_version() { ...@@ -141,7 +141,7 @@ setup_build_version() {
# Set some useful variables for OS X, if applicable # Set some useful variables for OS X, if applicable
setup_macos() { setup_macos() {
if [[ "$(uname)" == Darwin ]]; then if [[ "$(uname)" == Darwin ]]; then
export MACOSX_DEPLOYMENT_TARGET=10.9 CC=clang CXX=clang++ export CC=clang CXX=clang++
fi fi
} }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment