aboutsummaryrefslogtreecommitdiffstats
path: root/common/router1.cc
diff options
context:
space:
mode:
authorDavid Shah <davey1576@gmail.com>2018-11-26 09:37:07 +0000
committerGitHub <noreply@github.com>2018-11-26 09:37:07 +0000
commit22ac41d6272e66cf68a7e282e7ffe065ab82c5b8 (patch)
tree576a835841aeb8e93639510248eccd9b472d88ef /common/router1.cc
parent98858fe611a149e19e1d679db4a98fe88ff647bc (diff)
parentb035cb9fcf3502c74c769560f02e29adcafe6fd8 (diff)
downloadnextpnr-22ac41d6272e66cf68a7e282e7ffe065ab82c5b8.tar.gz
nextpnr-22ac41d6272e66cf68a7e282e7ffe065ab82c5b8.tar.bz2
nextpnr-22ac41d6272e66cf68a7e282e7ffe065ab82c5b8.zip
Merge pull request #138 from YosysHQ/refactor_log
Tidy up logging code, add log file support, make timing failures non-fatal errors
Diffstat (limited to 'common/router1.cc')
-rw-r--r--common/router1.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/common/router1.cc b/common/router1.cc
index aa4332aa..cbc0df90 100644
--- a/common/router1.cc
+++ b/common/router1.cc
@@ -812,7 +812,8 @@ bool router1(Context *ctx, const Router1Cfg &cfg)
#endif
log_info("Checksum: 0x%08x\n", ctx->checksum());
- timing_analysis(ctx, true /* slack_histogram */, true /* print_fmax */, true /* print_path */);
+ timing_analysis(ctx, true /* slack_histogram */, true /* print_fmax */, true /* print_path */,
+ true /* warn_on_failure */);
ctx->unlock();
return true;