mirror of
https://github.com/openharmony/third_party_rust_libc.git
synced 2026-07-01 21:34:09 -04:00
0e57942c36
Signed-off-by: ljy9810 <longjianyin@h-partners.com>
16 lines
482 B
Docker
16 lines
482 B
Docker
FROM ubuntu:25.04
|
|
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
ca-certificates \
|
|
gcc \
|
|
gcc-sparc64-linux-gnu \
|
|
libc6-dev \
|
|
libc6-dev-sparc64-cross \
|
|
qemu-system-sparc64 \
|
|
qemu-user
|
|
|
|
ENV CARGO_TARGET_SPARC64_UNKNOWN_LINUX_GNU_LINKER=sparc64-linux-gnu-gcc \
|
|
CARGO_TARGET_SPARC64_UNKNOWN_LINUX_GNU_RUNNER="qemu-sparc64 -L /usr/sparc64-linux-gnu" \
|
|
CC_sparc64_unknown_linux_gnu=sparc64-linux-gnu-gcc \
|
|
PATH=$PATH:/rust/bin
|