From ec893e3a066e60d64e1735f3ec6a3e21b50c01b4 Mon Sep 17 00:00:00 2001 From: R Veera Kumar Date: Wed, 10 Mar 2021 14:50:37 +0530 Subject: [PATCH] Corrections --- HDL_workflow/nextpnr.mdwn | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/HDL_workflow/nextpnr.mdwn b/HDL_workflow/nextpnr.mdwn index c169dafa2..90d02c243 100644 --- a/HDL_workflow/nextpnr.mdwn +++ b/HDL_workflow/nextpnr.mdwn @@ -15,7 +15,7 @@ chroot $MY_CHROOT /bin/bash ## Steps to compile Project Trellis -Necessary software to install +### Necessary software to install apt-get install git @@ -23,29 +23,34 @@ apt-get install python3 python3-dev clang cmake libboost-dev libboost-filesystem git clone --recursive https://github.com/YosysHQ/prjtrellis -Build Project Trellis +### Build Project Trellis cd prjtrellis + cd libtrellis cmake -DCMAKE_INSTALL_PREFIX=/usr/local/libtrellis . + make + make install ## Steps to compile Project Nextpnr with ECP5 -Necessary software to install +### Necessary software to install apt-get install libeigen3-dev git clone --recursive https://github.com/YosysHQ/nextpnr -Build Project nextpnr-ecp5 +### Build Project nextpnr-ecp5 cd nextpnr cmake -DCMAKE_INSTALL_PREFIX=/usr/local/nextpnr-ecp5 -DARCH=ecp5 -DTRELLIS_INSTALL_PREFIX=/usr/local/libtrellis . + make + make install Please adjust the install paths for nextpnr and previous prjtrellis. -- 2.30.2