forked from op-rs/kona
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathasterisc.dockerfile
33 lines (28 loc) · 1.02 KB
/
asterisc.dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
FROM --platform=linux/amd64 ubuntu:22.04
ENV SHELL=/bin/bash
ENV DEBIAN_FRONTEND noninteractive
# todo: pin `nightly` version
ENV RUST_VERSION nightly
RUN apt-get update && apt-get install --assume-yes --no-install-recommends \
ca-certificates \
build-essential \
curl \
g++-riscv64-linux-gnu \
libc6-dev-riscv64-cross \
binutils-riscv64-linux-gnu \
llvm \
clang \
make \
cmake \
git
# Install Rustup and Rust
RUN curl https://sh.rustup.rs -sSf | bash -s -- -y --default-toolchain ${RUST_VERSION} --component rust-src
ENV PATH="/root/.cargo/bin:${PATH}"
# Set up the env vars to instruct rustc to use the correct compiler and linker
# and to build correctly to support the Cannon processor
ENV CC_riscv64_unknown_none_elf=riscv64-linux-gnu-gcc \
CXX_riscv64_unknown_none_elf=riscv64-linux-gnu-g++ \
CARGO_TARGET_RISCV64_UNKNOWN_NONE_ELF_LINKER=riscv64-linux-gnu-gcc \
RUSTFLAGS="-Clink-arg=-e_start -Ctarget-feature=-c" \
CARGO_BUILD_TARGET="riscv64gc-unknown-none-elf" \
RUSTUP_TOOLCHAIN=${RUST_VERSION}