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

cmake: Make HeAP placer always-enabled

Signed-off-by: gatecat <gatecat@ds0.me>
This commit is contained in:
gatecat
2023-03-17 09:27:36 +01:00
committed by myrtle
parent 4111cc25d6
commit e4fcd3740d
12 changed files with 12 additions and 102 deletions

View File

@@ -1116,17 +1116,9 @@ std::string Arch::get_part() const
// -----------------------------------------------------------------------
#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"};