diff options
author | David Shah <dave@ds0.me> | 2018-11-26 09:22:42 +0000 |
---|---|---|
committer | David Shah <dave@ds0.me> | 2018-11-26 09:22:42 +0000 |
commit | b035cb9fcf3502c74c769560f02e29adcafe6fd8 (patch) | |
tree | 597f9f963f5ed1ab6d6644f8f5d9a21c917e453d /common/command.cc | |
parent | 51d1363dfeb7005ec35a2acd10fe9ae2cd8631d5 (diff) | |
download | nextpnr-b035cb9fcf3502c74c769560f02e29adcafe6fd8.tar.gz nextpnr-b035cb9fcf3502c74c769560f02e29adcafe6fd8.tar.bz2 nextpnr-b035cb9fcf3502c74c769560f02e29adcafe6fd8.zip |
Add nonfatal error support and use for timing failures
Signed-off-by: David Shah <dave@ds0.me>
Diffstat (limited to 'common/command.cc')
-rw-r--r-- | common/command.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/command.cc b/common/command.cc index fd634df4..6cc9fbe7 100644 --- a/common/command.cc +++ b/common/command.cc @@ -270,7 +270,7 @@ int CommandHandler::executeMain(std::unique_ptr<Context> ctx) deinit_python(); #endif - return 0; + return had_nonfatal_error ? 1 : 0; } void CommandHandler::conflicting_options(const boost::program_options::variables_map &vm, const char *opt1, |