Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion buildscripts/manylinux_2_17/build_llvmdev.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
cd $(dirname $0)
source ./prepare_miniconda.sh $1
source /root/miniconda3/bin/activate buildenv
if [[ $ARCH == "aarch64" ]] ; then
if [[ $ARCH == "aarch64" || $ARCH == "ppc64le" ]] ; then
export BUILD_CHANNELS="-c conda-forge"
fi
echo "BUILD_CHANNELS: $BUILD_CHANNELS"
Expand Down
2 changes: 1 addition & 1 deletion buildscripts/manylinux_2_17/build_llvmlite.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ conda create -y -n $envname
source activate $envname
# Install llvmdev

if [[ $ARCH == "aarch64" ]] ; then
if [[ $ARCH == "aarch64" || $ARCH == "ppc64le" ]] ; then
conda install -y numba/label/manylinux2014::llvmdev --no-deps
else
conda install -y -c numba/label/manylinux2014 llvmdev
Expand Down
4 changes: 4 additions & 0 deletions buildscripts/manylinux_2_17/docker_run_ppc64le.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
export ARCH="ppc64le"
export MINICONDA_FILE="https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge3-Linux-ppc64le.sh"
cd $(dirname $0)
./docker_run.sh $1 $2