From e4fcd3740dd8a650922903db6e15f4eaff25b5ee Mon Sep 17 00:00:00 2001 From: gatecat Date: Fri, 17 Mar 2023 09:27:36 +0100 Subject: cmake: Make HeAP placer always-enabled Signed-off-by: gatecat --- nexus/arch.cc | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) (limited to 'nexus') 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 Arch::availablePlacers = {"sa", -#ifdef WITH_HEAP - "heap" -#endif - -}; +const std::vector Arch::availablePlacers = {"sa", "heap"}; const std::string Arch::defaultRouter = "router2"; const std::vector Arch::availableRouters = {"router1", "router2"}; -- cgit v1.2.3