Last active
May 25, 2020 19:01
-
-
Save blakesmith/338c26fec3c84c1521e71902388d0d22 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
With Ubuntu 20.04 installed, nextpnr was having trouble finding Python during the build. | |
After installing libboost-python-dev and python3-dev, I had to configure cmake with (ECP5 arch): | |
cmake -DARCH=ecp5 -DPYTHONLIBS_VERSION_STRING=3.8 -DPYTHON_INCLUDE_DIR=/usr/include/python3.8 -DTRELLIS_INSTALL_PREFIX=/usr . | |
make -j4 | |
sudo make install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment