Skip to content

Commit a716129

Browse files
authored
Remove MACOSX_DEPLOYMENT_TARGET (#1880)
It seems that this is no longer necessary for recent macOS .
1 parent fe1ca37 commit a716129

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ cd audio
6363
git submodule update --init --recursive
6464
python setup.py develop
6565
# or, for OSX
66-
# MACOSX_DEPLOYMENT_TARGET=10.9 CC=clang CXX=clang++ python setup.py develop
66+
# CC=clang CXX=clang++ python setup.py develop
6767
```
6868

6969
Some environmnet variables that change the build behavior

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ The build process also builds the RNN transducer loss. This functionality can be
6464
python setup.py install
6565

6666
# OSX
67-
MACOSX_DEPLOYMENT_TARGET=10.9 CC=clang CXX=clang++ python setup.py install
67+
CC=clang CXX=clang++ python setup.py install
6868

6969
# Windows
7070
# We need to use the MSVC x64 toolset for compilation, with Visual Studio's vcvarsall.bat or directly with vcvars64.bat.

packaging/pkg_helpers.bash

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ setup_build_version() {
141141
# Set some useful variables for OS X, if applicable
142142
setup_macos() {
143143
if [[ "$(uname)" == Darwin ]]; then
144-
export MACOSX_DEPLOYMENT_TARGET=10.9 CC=clang CXX=clang++
144+
export CC=clang CXX=clang++
145145
fi
146146
}
147147

0 commit comments

Comments
 (0)