Skip to content

Commit 5416120

Browse files
authored
Merge pull request #3652 from Pinata-Consulting/minimal-sdc-file-overridable
asap7/minimal: make SDC_FILE can be overridable
2 parents e768a69 + 992cb34 commit 5416120

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

flow/designs/asap7/minimal/config.mk

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
export DESIGN_NICKNAME = minimal
2-
export SDC_FILE = $(FLOW_HOME)/designs/asap7/minimal/empty.sdc
2+
export SDC_FILE ?= $(FLOW_HOME)/designs/asap7/minimal/empty.sdc
33
export PLATFORM = asap7
44
# Faster build and more information in GUI with hierarchical synthesis
55
export SYNTH_HIERARCHICAL ?= 1
@@ -15,9 +15,11 @@ export CORE_UTILIZATION ?= 10
1515
export PLACE_DENSITY ?= 0.20
1616

1717
# This won't work with an empty .sdc file
18-
export SKIP_REPORT_METRICS = 1
18+
export SKIP_REPORT_METRICS ?= 1
1919

2020
# Faster build, remove these in your own config.mk
21-
export SKIP_CTS_REPAIR_TIMING = 1
22-
export REMOVE_ABC_BUFFERS = 1
23-
export SKIP_INCREMENTAL_REPAIR = 1
21+
export SKIP_CTS_REPAIR_TIMING ?= 1
22+
export REMOVE_ABC_BUFFERS ?= 1
23+
export SKIP_INCREMENTAL_REPAIR ?= 1
24+
export GPL_TIMING_DRIVEN ?= 0
25+
export GPL_ROUTING_DRIVEN ?= 0

0 commit comments

Comments
 (0)