Skip to content

Commit 3e41f4f

Browse files
committed
build patchelf for ARMv7 from source.
1 parent 4703fbd commit 3e41f4f

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

docker/armv7l_wheel.Dockerfile

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,13 @@ RUN \
1616
pkg-config \
1717
autoconf \
1818
automake \
19-
cmake \
20-
patchelf && \
19+
cmake && \
2120
python3 -m pip install --upgrade pip && \
21+
echo "**** Installing patchelf ****" && \
22+
git clone https://github.com/NixOS/patchelf.git && \
23+
cd patchelf && \
24+
./bootstrap.sh && ./configure && make && make check && make install && \
25+
cd .. && \
2226
echo "**** Install python build dependencies ****" && \
2327
python3 -m pip install cffi pytest && \
2428
echo "**** Start building ****" && \

0 commit comments

Comments
 (0)