Skip to content

Commit

Permalink
Merge pull request #1 from jakirkham/feather-format
Browse files Browse the repository at this point in the history
Fix the flags so they work on 10.7
  • Loading branch information
jjhelmus committed May 3, 2016
2 parents 58d0802 + ece2e47 commit 8cf6ecd
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions recipes/feather-format/build.sh
Original file line number Diff line number Diff line change
@@ -1,8 +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.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
$PYTHON setup.py install --single-version-externally-managed --record=record.txt

0 comments on commit 8cf6ecd

Please sign in to comment.