1
0
mirror of https://github.com/YosysHQ/nextpnr.git synced 2026-05-02 06:25:16 +00:00

Merge pull request #420 from ironsteel/fix-reporting-of-default-router

command.cc: Use correct constant for default router
This commit is contained in:
David Shah
2020-04-04 09:13:27 +01:00
committed by GitHub

View File

@@ -135,7 +135,7 @@ po::options_description CommandHandler::getGeneralOptions()
general.add_options()(
"router", po::value<std::string>(),
std::string("router algorithm to use; available: " + boost::algorithm::join(Arch::availableRouters, ", ") +
"; default: " + Arch::defaultPlacer)
"; default: " + Arch::defaultRouter)
.c_str());
general.add_options()("slack_redist_iter", po::value<int>(), "number of iterations between slack redistribution");