Moved option to common

This commit is contained in:
Miodrag Milanovic 2018-08-08 18:34:12 +02:00
parent 330bb86bfc
commit 46aa56021b
2 changed files with 1 additions and 1 deletions

View File

@ -97,6 +97,7 @@ po::options_description CommandHandler::getGeneralOptions()
general.add_options()("seed", po::value<int>(), "seed value for random number generator");
general.add_options()("slack_redist_iter", po::value<int>(), "number of iterations between slack redistribution");
general.add_options()("cstrweight", po::value<float>(), "placer weighting for relative constraint satisfaction");
general.add_options()("pack-only", "pack design only without placement or routing");
general.add_options()("version,V", "show version");
general.add_options()("test", "check architecture database integrity");

View File

@ -66,7 +66,6 @@ po::options_description Ice40CommandHandler::getArchOptions()
specific.add_options()("asc", po::value<std::string>(), "asc bitstream file to write");
specific.add_options()("read", po::value<std::string>(), "asc bitstream file to read");
specific.add_options()("tmfuzz", "run path delay estimate fuzzer");
specific.add_options()("pack-only", "pack design only without placement or routing");
return specific;
}
void Ice40CommandHandler::validate()