From 0ee2a0e6d7d3b823f2870f0759d4849c5ae55ebd Mon Sep 17 00:00:00 2001 From: Wilson Snyder Date: Tue, 21 Nov 2023 22:08:47 -0500 Subject: [PATCH] Don't remove DepSet as messes with skip-identical, part of last commit --- src/Verilator.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/Verilator.cpp b/src/Verilator.cpp index cc4fb7fdf..e09dcb093 100644 --- a/src/Verilator.cpp +++ b/src/Verilator.cpp @@ -637,11 +637,10 @@ static void verilate(const string& argString) { // Cleanup // Ideally we'd do prefix + "_*.*", and prefix + ".*", but this seems - // potentially disruptive to old behavior + // potentially disruptive to old behavior, and --skip-identical V3Os::unlinkRegexp(v3Global.opt.hierTopDataDir(), v3Global.opt.prefix() + "_*.dot"); V3Os::unlinkRegexp(v3Global.opt.hierTopDataDir(), v3Global.opt.prefix() + "_*.tree"); V3Os::unlinkRegexp(v3Global.opt.hierTopDataDir(), v3Global.opt.prefix() + "_*.txt"); - V3Os::unlinkRegexp(v3Global.opt.hierTopDataDir(), v3Global.opt.prefix() + "_*_DepSet_*"); // Internal tests (after option parsing as need debug() setting, // and after removing files as may make debug output)