Skip to content
Snippets Groups Projects
Commit 27a1b2e7 authored by André Anjos's avatar André Anjos :speech_balloon:
Browse files

[extra-wheels] Add support to build menpo stuff on OSX

parent 1965595d
No related branches found
No related tags found
No related merge requests found
...@@ -20,5 +20,9 @@ if [ "${?}" != 0 ]; then ...@@ -20,5 +20,9 @@ if [ "${?}" != 0 ]; then
fi fi
echo "[>>] Generating wheels..." echo "[>>] Generating wheels..."
CFLAGS="-I${CONDA_PREFIX}/include" LDFLAGS="-L${CONDA_PREFIX}/lib -lvl -Wl,-rpath=${CONDA_PREFIX}/lib" pip --no-cache-dir wheel --no-deps ${CYVLFEAT} if [ "$(uname)" == "Linux" ]; then
CFLAGS="-I${CONDA_PREFIX}/include" LDFLAGS="-L${CONDA_PREFIX}/lib -lvl -Wl,-rpath=${CONDA_PREFIX}/lib" pip --no-cache-dir wheel --no-deps ${CYVLFEAT}
else
CFLAGS="-I${CONDA_PREFIX}/include -mmacosx-version-min=10.9" LDFLAGS="-L${CONDA_PREFIX}/lib -lvl -Wl,-headerpad_max_install_names" pip --no-cache-dir wheel --no-deps ${CYVLFEAT}
fi
pip --no-cache-dir wheel --no-deps ${MENPO} pip --no-cache-dir wheel --no-deps ${MENPO}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment