aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Shah <dave@ds0.me>2020-03-04 07:21:36 +0000
committerGitHub <noreply@github.com>2020-03-04 07:21:36 +0000
commitc06827cd505444fca4e05c8b9dbe8067a66cf1a9 (patch)
treef4b6b7d93a85765bca1ddccba06d6f9420d392ee
parent5fa10e1a9522d626f48d2a70eb58e96c39226212 (diff)
parent054be6fb6700eae02ec1a47ecf3d4c2838ee06d2 (diff)
downloadnextpnr-c06827cd505444fca4e05c8b9dbe8067a66cf1a9.tar.gz
nextpnr-c06827cd505444fca4e05c8b9dbe8067a66cf1a9.tar.bz2
nextpnr-c06827cd505444fca4e05c8b9dbe8067a66cf1a9.zip
Merge pull request #404 from smunaut/fix_prefix_default
build: Default the ECP5 and iCE40 roots to the install prefix
-rw-r--r--ecp5/family.cmake4
-rw-r--r--ice40/family.cmake2
2 files changed, 3 insertions, 3 deletions
diff --git a/ecp5/family.cmake b/ecp5/family.cmake
index 8756aa36..14112964 100644
--- a/ecp5/family.cmake
+++ b/ecp5/family.cmake
@@ -2,8 +2,8 @@ if (NOT EXTERNAL_CHIPDB)
set(devices 25k 45k 85k)
if (NOT DEFINED TRELLIS_INSTALL_PREFIX)
- message(STATUS "TRELLIS_INSTALL_PREFIX not defined using -DTRELLIS_INSTALL_PREFIX=/path-prefix/to/prjtrellis-installation. Default to /usr/local or reset by -DCMAKE_INSTALL_PREFIX when building prjtrellis/libtrellis")
- set(TRELLIS_INSTALL_PREFIX "/usr/local")
+ message(STATUS "TRELLIS_INSTALL_PREFIX not defined using -DTRELLIS_INSTALL_PREFIX=/path-prefix/to/prjtrellis-installation. Defaulted to ${CMAKE_INSTALL_PREFIX}")
+ set(TRELLIS_INSTALL_PREFIX ${CMAKE_INSTALL_PREFIX})
endif()
if (NOT DEFINED PYTRELLIS_LIBDIR)
diff --git a/ice40/family.cmake b/ice40/family.cmake
index 381fe96a..0252e36a 100644
--- a/ice40/family.cmake
+++ b/ice40/family.cmake
@@ -10,7 +10,7 @@ if (NOT EXTERNAL_CHIPDB)
set(DB_PY ${CMAKE_CURRENT_SOURCE_DIR}/ice40/chipdb.py)
- set(ICEBOX_ROOT "/usr/local/share/icebox" CACHE STRING "icebox location root")
+ set(ICEBOX_ROOT ${CMAKE_INSTALL_PREFIX}/share/icebox CACHE STRING "icebox location root")
file(MAKE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/ice40/chipdbs/)
add_library(ice40_chipdb OBJECT ${CMAKE_CURRENT_BINARY_DIR}/ice40/chipdbs/)
target_compile_definitions(ice40_chipdb PRIVATE NEXTPNR_NAMESPACE=nextpnr_${family})