File tree 2 files changed +7
-7
lines changed
2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 1
1
# Build stage: basic development tools
2
2
FROM debian:trixie-slim AS builder
3
3
4
-
5
- WORKDIR /root/
6
4
RUN apt-get update
7
5
RUN apt install -y \
8
6
git \
@@ -31,6 +29,7 @@ RUN apt install -y \
31
29
zlib1g-dev
32
30
33
31
# Clone RISC-V GCC
32
+ WORKDIR /root/
34
33
RUN git clone --depth=1 --branch 2024.04.12 https://github.com/riscv-collab/riscv-gnu-toolchain
35
34
36
35
# Build RISC-V cross-compiler
Original file line number Diff line number Diff line change @@ -149,12 +149,13 @@ TL;DR:
149
149
3. (podman only) Add to your VS Code settings: `"dev.containers.dockerPath": "podman"`
150
150
4. Make sure the container is running, i.e.,
151
151
`podman run --name rust-rv32emc -dt rust-rv32emc` or `podman start rust-rv32emc`
152
- 5. Then `Command Palette` -> `Dev Containers: Attach to Running Container...`.
153
- For first time load, VS Code will take some time to set up the remote
154
- container.
152
+ 5. Make sure the container is running, i.e., `podman run --name rust-rv32emc -dt rust-rv32emc` or
153
+ `podman start rust-rv32emc`
154
+ 6. Then `Command Palette` -> `Dev Containers: Attach to Running Container...`. For first time load,
155
+ VS Code will take some time to set up the remote container.
155
156
156
- If it doesn' t work for you and something else is also required, open an issue
157
- and I might figure it out.
157
+ If it doesn' t work for you and something else is also required, open an issue and I might figure it
158
+ out.
158
159
159
160
# # Using your SSH keys with the container
160
161
You can’t perform that action at this time.
0 commit comments