From 607164a8115edbefc79ba73bcebbe5c97b31f3f3 Mon Sep 17 00:00:00 2001 From: glihm Date: Wed, 12 Jun 2024 16:24:05 -0600 Subject: [PATCH] fix: add missing path to foundry binaries --- .devcontainer/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index ed7155c5c1..66bba6e674 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -18,6 +18,7 @@ RUN echo "deb http://apt.llvm.org/${VARIANT}/ llvm-toolchain-${VARIANT}-17 main" RUN apt-get -y install -t llvm-toolchain-${VARIANT}-17 llvm-17 llvm-17-dev llvm-17-runtime clang-17 clang-tools-17 lld-17 libpolly-17-dev libmlir-17-dev mlir-17-tools RUN curl -L https://foundry.paradigm.xyz/ | bash && . /root/.bashrc && foundryup +ENV PATH="${PATH}:/root/.foundry/bin" # To build Katana with 'native' feature, we need to set the following environment variables ENV MLIR_SYS_170_PREFIX=/usr/lib/llvm-17