diff options
author | gatecat <gatecat@ds0.me> | 2023-03-17 09:27:36 +0100 |
---|---|---|
committer | myrtle <gatecat@ds0.me> | 2023-03-17 10:38:11 +0100 |
commit | e4fcd3740dd8a650922903db6e15f4eaff25b5ee (patch) | |
tree | 788ef589fcba0f4c95d02c900a060cd3b54d4215 /nexus | |
parent | 4111cc25d653bde9fbda72b9cf9dc13a876e214a (diff) | |
download | nextpnr-e4fcd3740dd8a650922903db6e15f4eaff25b5ee.tar.gz nextpnr-e4fcd3740dd8a650922903db6e15f4eaff25b5ee.tar.bz2 nextpnr-e4fcd3740dd8a650922903db6e15f4eaff25b5ee.zip |
cmake: Make HeAP placer always-enabled
Signed-off-by: gatecat <gatecat@ds0.me>
Diffstat (limited to 'nexus')
-rw-r--r-- | nexus/arch.cc | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/nexus/arch.cc b/nexus/arch.cc index 187e5312..4818906d 100644 --- a/nexus/arch.cc +++ b/nexus/arch.cc @@ -1122,18 +1122,9 @@ bool Arch::getClusterPlacement(ClusterId cluster, BelId root_bel, // ----------------------------------------------------------------------- -#ifdef WITH_HEAP const std::string Arch::defaultPlacer = "heap"; -#else -const std::string Arch::defaultPlacer = "sa"; -#endif -const std::vector<std::string> Arch::availablePlacers = {"sa", -#ifdef WITH_HEAP - "heap" -#endif - -}; +const std::vector<std::string> Arch::availablePlacers = {"sa", "heap"}; const std::string Arch::defaultRouter = "router2"; const std::vector<std::string> Arch::availableRouters = {"router1", "router2"}; |