From 8b67bb2e1a78273d16ceb4abacf024fc46669e87 Mon Sep 17 00:00:00 2001 From: Weili An Date: Sat, 24 Aug 2024 10:42:09 -0400 Subject: [PATCH] sst-integration: pull to have other branches --- Dockerfile | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/Dockerfile b/Dockerfile index 9591cd6..78f1f60 100644 --- a/Dockerfile +++ b/Dockerfile @@ -25,19 +25,20 @@ ENV RISCV_TOOLCHAIN_INSTALL_PATH /accel-sim/riscv-gnu-install # && rm -rf llvm-project # Build RISCV GNU Toolchain 2024.08.06.nightly -RUN apt-get update && apt-get -y install autoconf automake autotools-dev curl python3 python3-pip libmpc-dev libmpfr-dev libgmp-dev gawk build-essential bison flex texinfo gperf libtool patchutils bc zlib1g-dev libexpat-dev ninja-build git cmake libglib2.0-dev libslirp-dev -RUN git clone https://github.com/riscv-collab/riscv-gnu-toolchain.git \ -&& mkdir riscv-gnu-install \ -&& cd riscv-gnu-toolchain \ -&& git checkout 2024.08.06 \ -&& ./configure --prefix=$RISCV_TOOLCHAIN_INSTALL_PATH \ -&& make linux -j4 \ -&& cd .. \ -&& rm -rf riscv-gnu-toolchain +# RUN apt-get update && apt-get -y install autoconf automake autotools-dev curl python3 python3-pip libmpc-dev libmpfr-dev libgmp-dev gawk build-essential bison flex texinfo gperf libtool patchutils bc zlib1g-dev libexpat-dev ninja-build git cmake libglib2.0-dev libslirp-dev +# RUN git clone https://github.com/riscv-collab/riscv-gnu-toolchain.git \ +# && mkdir riscv-gnu-install \ +# && cd riscv-gnu-toolchain \ +# && git checkout 2024.08.06 \ +# && ./configure --prefix=$RISCV_TOOLCHAIN_INSTALL_PATH \ +# && make linux -j4 \ +# && cd .. \ +# && rm -rf riscv-gnu-toolchain # Setup GPU app collection in SST mode RUN export PATH=$CUDA_INSTALL_PATH/bin:$PATH \ && cd gpu-app-collection \ +&& git pull \ && git checkout sst_support \ && source ./src/setup_environment sst \ && rm gpucomputingsdk_4.2.9_linux.run \