diff options
author | Miodrag Milanovic <mmicko@gmail.com> | 2018-08-08 18:34:12 +0200 |
---|---|---|
committer | Miodrag Milanovic <mmicko@gmail.com> | 2018-08-08 18:34:12 +0200 |
commit | 46aa56021be18d76523d89601ef98cf6d14b12c1 (patch) | |
tree | ab4e2e18bcc70da8da0c53f9022174249ceb9c4e /common | |
parent | 330bb86bfcfd0e1727c6e786f41b1f4c2440cac4 (diff) | |
download | nextpnr-46aa56021be18d76523d89601ef98cf6d14b12c1.tar.gz nextpnr-46aa56021be18d76523d89601ef98cf6d14b12c1.tar.bz2 nextpnr-46aa56021be18d76523d89601ef98cf6d14b12c1.zip |
Moved option to common
Diffstat (limited to 'common')
-rw-r--r-- | common/command.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/common/command.cc b/common/command.cc index cf12df3a..736f6201 100644 --- a/common/command.cc +++ b/common/command.cc @@ -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"); |