From 7a3affc8f1eee83e74f4471c2691e8c38271af72 Mon Sep 17 00:00:00 2001 From: "Rodrigo A. Melo" Date: Sat, 30 Nov 2024 15:47:05 -0300 Subject: [PATCH] Re-add synlig, but with a new approach --- recipes/synthesis | 14 ++++++++++++++ tests.sh | 1 + 2 files changed, 15 insertions(+) diff --git a/recipes/synthesis b/recipes/synthesis index b4f882d..96860c2 100644 --- a/recipes/synthesis +++ b/recipes/synthesis @@ -20,6 +20,10 @@ RUN apt update -qq \ libffi-dev \ pkg-config \ python3 \ + # Synlig + cmake \ + default-jre \ + python3-orderedmultidict \ && apt autoclean && apt clean && apt -y autoremove \ && rm -rf /var/lib/apt/lists/* @@ -48,6 +52,15 @@ RUN git clone --depth 1 https://github.com/ghdl/ghdl-yosys-plugin.git \ && cd ghdl-yosys-plugin && git submodule update --init \ && make -j$(nproc) && make install +# +# Synlig +# + +RUN git clone --depth 1 https://github.com/chipsalliance/synlig.git && cd synlig \ + && git submodule update --init --depth 1 --recursive third_party/surelog \ + && git submodule update --init --depth 1 --recursive third_party/yosys \ + && make install -j$(nproc) + # # Clean-up # @@ -71,3 +84,4 @@ COPY --from=build /usr/local/bin /usr/local/bin COPY --from=build /usr/local/lib /usr/local/lib COPY --from=build /usr/local/include/ghdl /usr/local/include/ghdl COPY --from=build /usr/local/share/yosys /usr/local/share/yosys +COPY --from=build /usr/local/share/synlig /usr/local/share/synlig diff --git a/tests.sh b/tests.sh index ef6c996..7b93262 100644 --- a/tests.sh +++ b/tests.sh @@ -2,3 +2,4 @@ set -e bash run.sh synthesis 'ghdl --version' bash run.sh synthesis 'yosys -m ghdl -V' +bash run.sh synthesis 'synlig -V'