Skip to content

Commit 0cb5699

Browse files
committed
WIP: use new headers for musl build
1 parent aa41265 commit 0cb5699

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

ci/docker/x86_64-unknown-linux-musl/Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ RUN curl https://www.musl-libc.org/releases/musl-1.1.19.tar.gz | \
99
./configure --prefix=/musl-x86_64 && \
1010
make install -j4 && \
1111
cd .. && \
12-
rm -rf musl-1.1.19 && \
12+
rm -rf musl-1.1.19
1313
# Install linux kernel headers sanitized for use with musl
14-
curl -L https://github.com/sabotage-linux/kernel-headers/archive/v3.12.6-5.tar.gz | \
14+
RUN curl -L https://github.com/bachp/kernel-headers/archive/v3.12.6-6.tar.gz | \
1515
tar xzf - && \
16-
cd kernel-headers-3.12.6-5 && \
16+
cd kernel-headers-3.12.6-6 && \
1717
make ARCH=x86_64 prefix=/musl-x86_64 install -j4 && \
1818
cd .. && \
19-
rm -rf kernel-headers-3.12.6-5
19+
rm -rf kernel-headers-3.12.6-6
2020
ENV PATH=$PATH:/musl-x86_64/bin:/rust/bin

0 commit comments

Comments
 (0)