Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix renode rcc build failure (close #170) #171

Merged
merged 1 commit into from
Sep 4, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions renode_rcc/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM ubuntu:20.04
WORKDIR /root
ENV DEBIAN_FRONTEND noninteractive
ENV DEBIAN_FRONTEND=noninteractive

# Using Docker BuildKit cache mounts for /var/cache/apt and /var/lib/apt ensures that
# the cache won't make it into the built image but will be maintained between steps.
Expand Down Expand Up @@ -36,9 +36,9 @@ WORKDIR /root/renode-rtems-leon3
RUN ./build-rtems.sh
RUN ./build-prom.sh
RUN mv rcc-1.3.0-gcc/ /opt/renode/
RUN mv grlib-gpl-2021.2-b4267 /opt/renode/
RUN mv grlib-gpl-2024.1-b4291 /opt/renode/

ENV PATH $PATH:/opt/renode/rcc-1.3.0-gcc/bin
ENV PATH=$PATH:/opt/renode/rcc-1.3.0-gcc/bin

WORKDIR /root
COPY config .config/renode/
Expand Down
Loading