Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cross-compile linux-{aarch64,ppc64le} #87

3 changes: 1 addition & 2 deletions recipe/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ mkdir -p ${PREFIX}/bin
mkdir build

pushd build;
PYTHON_MODULE_EXTENSION=$(python -c "import sysconfig; print(sysconfig.get_config_var('EXT_SUFFIX'))")
h-vetinari marked this conversation as resolved.
Show resolved Hide resolved

cmake ${CMAKE_ARGS} \
-DUSE_FFMPEG=ON \
Expand All @@ -19,7 +18,7 @@ cmake ${CMAKE_ARGS} \
-DCMAKE_INSTALL_LIBDIR=lib \
-DCMAKE_BUILD_TYPE=Release \
-DPYTHON_VERSION=$PY_VER \
-DPYTHON_MODULE_EXTENSION=${PYTHON_MODULE_EXTENSION} \
-DPython_FIND_VIRTUALENV=First \
h-vetinari marked this conversation as resolved.
Show resolved Hide resolved
..

make all -j${CPU_COUNT}
Expand Down