diff options
Diffstat (limited to 'ice40')
-rw-r--r-- | ice40/arch.cc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ice40/arch.cc b/ice40/arch.cc index cc50cb68..0f8e5969 100644 --- a/ice40/arch.cc +++ b/ice40/arch.cc @@ -1245,7 +1245,11 @@ void Arch::assignCellInfo(CellInfo *cell) } } +#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 |