There was an error while loading. Please reload this page.
2 parents 233010a + 255eb96 commit 78516ccCopy full SHA for 78516cc
2 files changed
Dockerfile
@@ -92,7 +92,7 @@ COPY support .
92
RUN ./build-libzip.sh
93
RUN ./build-bluez.sh
94
RUN ./build-libsamplerate.sh
95
-
+RUN ./build-lz4.sh
96
97
ENV UNION_PLATFORM=tg5040
98
# do we still need this?
support/build-lz4.sh
@@ -0,0 +1,10 @@
1
+#! /bin/bash
2
+
3
+set -euo pipefail
4
5
+# lz4
6
+git clone --depth=1 --branch v1.10.0 https://github.com/lz4/lz4.git /tmp/lz4 && \
7
+ cd /tmp/lz4 && \
8
+ make CC=$CC PREFIX=$SYSROOT/usr -j$(nproc) && \
9
+ make CC=$CC PREFIX=$SYSROOT/usr install && \
10
+ cd /tmp && rm -rf /tmp/lz4
0 commit comments