Skip to content

Commit

Permalink
fix recursive clone
Browse files Browse the repository at this point in the history
  • Loading branch information
nbingham1 committed Jun 21, 2024
1 parent d83c9b1 commit d67ac71
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 14 deletions.
12 changes: 0 additions & 12 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -84,18 +84,6 @@ RUN sed -i 's/make/make CXX=mpic++ CC=mpicc CC_COMPILER=mpicc CXX_COMPILER=mpic+
WORKDIR /toolsrc/actflow
RUN echo "g++" > CXX_COMPILER
RUN CXX="g++" CC="gcc" CXX_COMPILER="g++" CC_COMPILER="gcc" ./build
# RUN ./build

# install actsim
#WORKDIR /toolsrc
#RUN git clone https://github.com/asyncvlsi/actsim.git
#WORKDIR actsim
#RUN ./configure
#RUN ./grab_xyce.sh /toolsrc/Xyce/build
#WORKDIR ext
#RUN ./build.sh
#WORKDIR ..
#RUN make CXX=mpic++ CC=mpicc install

# install ACT-06
RUN apt-get install -y libedit-dev zlib1g-dev m4 git gcc g++ make
Expand Down
3 changes: 1 addition & 2 deletions ubuntu/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ mv dependencies $SCRIPT_PATH/or-tools
# install ACT
cd $SCRIPT_PATH/toolsrc
apt-get install -y libedit-dev zlib1g-dev m4 git gcc g++ make libboost-all-dev
git --recursive clone https://www.github.com/asyncvlsi/actflow.git
git clone --recursive https://www.github.com/asyncvlsi/actflow.git
cd actflow
export ACT_HOME=$SCRIPT_PATH/cad
export VLSI_TOOLS_SRC=$SCRIPT_PATH/toolsrc/actflow
Expand All @@ -73,7 +73,6 @@ sed -i 's/make/make CXX=mpic++ CC=mpicc CC_COMPILER=mpicc CXX_COMPILER=mpic++ C_
cd $SCRIPT_PATH/toolsrc/actflow
echo "g++" > CXX_COMPILER
CXX="g++" CC="gcc" CXX_COMPILER="g++" CC_COMPILER="gcc" ./build
# ./build

# install ACT-06
apt-get install -y libedit-dev zlib1g-dev m4 git gcc g++ make
Expand Down

0 comments on commit d67ac71

Please sign in to comment.