1
0
mirror of https://github.com/YosysHQ/nextpnr.git synced 2026-04-10 14:58:50 +00:00

command.cc: Use correct constant for default router

Otherwise --help reports that the default router is heap

Signed-off-by: Rangel Ivanov <rangelivanov88@gmail.com>
This commit is contained in:
Rangel Ivanov
2020-04-04 10:39:29 +03:00
parent 98e2f9ea81
commit ef4a699b72

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");