From f7a9af5252dda6f131831f3aa0844358a0285bf0 Mon Sep 17 00:00:00 2001 From: AdvaySingh1 Date: Tue, 24 Mar 2026 14:39:21 -0700 Subject: [PATCH] Make the signal_map flag optional --- passes/techmap/abc.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/passes/techmap/abc.cc b/passes/techmap/abc.cc index 66ea5e7dd..a01fcd08d 100644 --- a/passes/techmap/abc.cc +++ b/passes/techmap/abc.cc @@ -2193,6 +2193,8 @@ struct AbcPass : public Pass { config.markgroups = design->scratchpad_get_bool("abc.markgroups", false); config.max_threads = design->scratchpad_get_int("abc.max_threads", -1); config.reserved_cores = design->scratchpad_get_int("abc.reserved_cores", 4); + config.signal_map_file = design->scratchpad_get_string("abc.signal_map", ""); + config.cdc_file = design->scratchpad_get_string("abc.cdc_map", ""); if (config.cleanup) config.global_tempdir_name = get_base_tmpdir() + "/";