From 5af2e1d971cdde9d7582458ecd2689e5a41f284c Mon Sep 17 00:00:00 2001 From: John Kirkham Date: Tue, 3 May 2016 15:08:39 -0400 Subject: [PATCH 1/2] feather-format: Fix the flags so they work on 10.7. --- recipes/feather-format/build.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/recipes/feather-format/build.sh b/recipes/feather-format/build.sh index 8cf3dbc30bfe0..3aa1a04390cfa 100644 --- a/recipes/feather-format/build.sh +++ b/recipes/feather-format/build.sh @@ -2,7 +2,9 @@ if [ "$(uname)" == "Darwin" ]; then # Building Feather requires a C++11 compiler, which requires OS X 10.9+ - export MACOSX_DEPLOYMENT_TARGET=10.8 + export MACOSX_DEPLOYMENT_TARGET=10.7 + export CFLAGS="${CXXFLAGS} -stdlib=libc++ -std=c++11" + export CXXFLAGS="${CXXFLAGS} -stdlib=libc++ -std=c++11" fi $PYTHON setup.py install --single-version-externally-managed --record record.txt From ece2e47f208dd0261f08f9455ea8b96595b9b66d Mon Sep 17 00:00:00 2001 From: John Kirkham Date: Tue, 3 May 2016 15:11:49 -0400 Subject: [PATCH 2/2] feather-format: Other stuff. --- recipes/feather-format/build.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/recipes/feather-format/build.sh b/recipes/feather-format/build.sh index 3aa1a04390cfa..15881a60ebc0e 100644 --- a/recipes/feather-format/build.sh +++ b/recipes/feather-format/build.sh @@ -1,10 +1,9 @@ #!/bin/bash if [ "$(uname)" == "Darwin" ]; then - # Building Feather requires a C++11 compiler, which requires OS X 10.9+ export MACOSX_DEPLOYMENT_TARGET=10.7 export CFLAGS="${CXXFLAGS} -stdlib=libc++ -std=c++11" export CXXFLAGS="${CXXFLAGS} -stdlib=libc++ -std=c++11" fi -$PYTHON setup.py install --single-version-externally-managed --record record.txt +$PYTHON setup.py install --single-version-externally-managed --record=record.txt