summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2019-03-22 10:15:44 -0500
committerAlon Zakai <alonzakai@gmail.com>2019-03-22 08:15:44 -0700
commit08f9dc5341b9c698681a72805284ddc6fbfe6bae (patch)
treeb86d54ca398bca1d70874f12aa74de35b9aa515b
parent9414fa7f9a4299ab192bb6c1f6b01a318636414f (diff)
downloadbinaryen-08f9dc5341b9c698681a72805284ddc6fbfe6bae.tar.gz
binaryen-08f9dc5341b9c698681a72805284ddc6fbfe6bae.tar.bz2
binaryen-08f9dc5341b9c698681a72805284ddc6fbfe6bae.zip
Fix OSX build error on master (#1958)
Accidentally introduced in #1698, it looks like the `MACOSX_DEPLOYMENT_TARGET` can't be set so low to 10.7 because it causes build errors. After some [investigation] it looks like the minimum currently required is 10.9, so this commit changes the OSX deployment target to 10.9 in an effort to be compatible with as many OSX installations as possible. [investigation]: https://travis-ci.org/WebAssembly/binaryen/builds/509462566
-rw-r--r--.travis.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index d7622b3f2..df64d4f2d 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -28,7 +28,7 @@ DEPLOY_TO_GITHUB: &DEPLOY_TO_GITHUB
jobs:
include:
# OSX Binary
- - env: JOB=dist-osx MACOSX_DEPLOYMENT_TARGET=10.7 ARCH=x86_64-apple-darwin
+ - env: JOB=dist-osx MACOSX_DEPLOYMENT_TARGET=10.9 ARCH=x86_64-apple-darwin
os: osx
stage: build
script: