1
0
mirror of https://github.com/YosysHQ/nextpnr.git synced 2026-02-15 04:16:41 +00:00

CMake: refactor architecture-specific build system parts.

Two user-visible changes were made:
* `-DUSE_RUST` is replaced with `-DBUILD_RUST`, by analogy with
  `-DBUILD_PYTHON`
* `-DCOVERAGE` was removed as it doesn't work with either modern GCC
  or Clang
This commit is contained in:
Catherine
2025-01-16 20:06:10 +00:00
parent bb2336ad73
commit cd7f7c12f1
44 changed files with 1246 additions and 370 deletions

View File

@@ -8,7 +8,7 @@ function build_nextpnr {
mkdir build
pushd build
cmake .. -DARCH=himbaechel -DHIMBAECHEL_UARCH=example -DHIMBAECHEL_EXAMPLE_DEVICES=example
make nextpnr-himbaechel chipdb-himbaechel-example -j`nproc`
make nextpnr-himbaechel -j`nproc`
popd
}