diff options
author | Yehowshua Immanuel <programmed4jesus@gmail.com> | 2020-11-17 17:53:46 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-17 17:53:46 -0500 |
commit | fe8a0116299ca30e32a2ac7dcdb7d122bdd030f5 (patch) | |
tree | c698905bc3caecea61c5f80488e69fb7bb2bd5e4 | |
parent | 93faa752f5aa1f41b552be94d0b3e732e893bbaf (diff) | |
download | nextpnr-fe8a0116299ca30e32a2ac7dcdb7d122bdd030f5.tar.gz nextpnr-fe8a0116299ca30e32a2ac7dcdb7d122bdd030f5.tar.bz2 nextpnr-fe8a0116299ca30e32a2ac7dcdb7d122bdd030f5.zip |
Update CMakeLists.txt
I believe Prjtrellis has CMAKE define pytrellis as a shared module, not library.
On MacOS, this makes a difference and NextPNR expected ``.dylib``
instead of ``.so``. Things still work on Linux.
-rw-r--r-- | ecp5/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ecp5/CMakeLists.txt b/ecp5/CMakeLists.txt index ff6b2d20..bc34d51b 100644 --- a/ecp5/CMakeLists.txt +++ b/ecp5/CMakeLists.txt @@ -52,7 +52,7 @@ else() if(WIN32) set(pytrellis_lib pytrellis.pyd) else() - set(pytrellis_lib pytrellis${CMAKE_SHARED_LIBRARY_SUFFIX}) + set(pytrellis_lib pytrellis${CMAKE_SHARED_MODULE_SUFFIX}) endif() find_path(TRELLIS_LIBDIR ${pytrellis_lib} |