File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -11,12 +11,13 @@ RUN apt-get update && \
1111 elif [ "$TARGETARCH" = "arm64" ]; then \
1212 echo aarch64-unknown-linux-gnu > TARGET && \
1313 echo aarch64-linux-gnu-gcc > LINKER && \
14- apt-get install -y gcc-aarch64-linux-gnu libgcc-s1-arm64-cross cmake && \
14+ apt-get install -y gcc-aarch64-linux-gnu libgcc-s1-arm64-cross && \
1515 cp /usr/aarch64-linux-gnu/lib/libgcc_s.so.1 .; \
1616 elif [ "$TARGETARCH" = "arm" ]; then \
1717 echo armv7-unknown-linux-gnueabihf > TARGET && \
1818 echo arm-linux-gnueabihf-gcc > LINKER && \
19- apt-get install -y gcc-arm-linux-gnueabihf libgcc-s1-armhf-cross cmake && \
19+ apt-get install -y gcc-arm-linux-gnueabihf libgcc-s1-armhf-cross cmake libclang1 libc6-dev-armhf-cross && \
20+ cargo install --force --locked bindgen-cli && \
2021 cp /usr/arm-linux-gnueabihf/lib/libgcc_s.so.1 .; \
2122 else \
2223 echo "Unsupported cross compilation target: $TARGETARCH" ; \
You can’t perform that action at this time.
0 commit comments