Skip to content

Commit

Permalink
Merge pull request #141 from mathursanjiv/use_new_abc
Browse files Browse the repository at this point in the history
Use berkeley ABC in yosys build
  • Loading branch information
mathursanjiv authored Sep 3, 2021
2 parents 77afccd + f05a0cc commit affb7b4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build_openroad.sh
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ if [ "$build_method" == "DOCKER" ]; then

# Local build
elif [ "$build_method" == "LOCAL" ]; then
$NICE make install -C tools/yosys -j${PROC} PREFIX=$(pwd)/tools/install/yosys CONFIG=gcc
$NICE make install -C tools/yosys -j${PROC} PREFIX=$(pwd)/tools/install/yosys CONFIG=gcc ABCREV=62180f3 ABCURL=https://github.com/berkeley-abc/abc

cmake -B tools/OpenROAD/build tools/OpenROAD -DCMAKE_INSTALL_PREFIX=tools/install/OpenROAD
$NICE cmake --build tools/OpenROAD/build --target install -j${PROC}
Expand Down
2 changes: 1 addition & 1 deletion tools/yosys_util/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM openroad/yosys-dev AS builder
COPY . /yosys
WORKDIR /yosys
RUN make PREFIX=/install CONFIG=gcc install -j$(nproc)
RUN make PREFIX=/install CONFIG=gcc ABCREV=62180f3 ABCURL=https://github.com/berkeley-abc/abc install -j$(nproc)

0 comments on commit affb7b4

Please sign in to comment.