From d62392ab885540b583e31ef6312e873cf2549938 Mon Sep 17 00:00:00 2001 From: Maciej Kurc Date: Mon, 9 Jan 2023 16:12:40 +0100 Subject: [PATCH 1/2] Added printing URLs and MD5 sums of downloaded FPGA interchange resources Signed-off-by: Maciej Kurc --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index a1bf5c7e..f6651315 100644 --- a/Makefile +++ b/Makefile @@ -67,11 +67,15 @@ install_f4pga: | $(CONDA_ENV_PYTHON) install_interchange: mkdir -p env/interchange/devices TECHMAP_DATA_URL=$$(curl -fsSL ${INTERCHANGE_RELEASES_URL}/interchange-techmaps-latest); \ + echo "FPGA Interchange techmaps URL: $${TECHMAP_DATA_URL}"; \ curl -fsSL $${TECHMAP_DATA_URL} | tar -xJC env/interchange; \ for device in ${INTERCHANGE_DEVICES}; do \ DEVICE_DATA_URL=$$(curl -fsSL ${INTERCHANGE_RELEASES_URL}/interchange-$${device}-latest); \ + echo "FPGA Interchange $${device} data URL: $${DEVICE_DATA_URL}"; \ curl -fsSL $${DEVICE_DATA_URL} | tar -xJC env/interchange/devices; \ done + @echo "FPGA Interchange device data MD5 checksums:" + @find env/interchange/devices -type f | xargs md5sum make install_rapidwright install_rapidwright: From c73898857bb3a86117575f90b84e65019c6a0653 Mon Sep 17 00:00:00 2001 From: Maciej Kurc Date: Mon, 9 Jan 2023 16:58:44 +0100 Subject: [PATCH 2/2] libtbb test Signed-off-by: Maciej Kurc --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index f6651315..cc81b7ca 100644 --- a/Makefile +++ b/Makefile @@ -48,6 +48,7 @@ include third_party/make-env/conda.mk env:: | $(CONDA_ENV_PYTHON) $(IN_CONDA_ENV) conda list + find . -iname "*tbb*" install_f4pga: | $(CONDA_ENV_PYTHON) mkdir -p env/f4pga