Skip to content

Commit 7def999

Browse files
authored
Merge pull request #3976 from Pinata-Consulting/lec-optinal
flow: only enable LEC_CHECK when kepler-formal is installed
2 parents f6d585e + 52cf309 commit 7def999

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

flow/settings.mk

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,5 @@
1-
export LEC_CHECK ?= 1
1+
# Enable LEC (Logical Equivalence Check) only if kepler-formal is installed.
2+
# kepler-formal is primarily an OpenROAD/ORFS developer tool, not an end-user
3+
# tool. End-users would typically run LEC transactionally at project completion,
4+
# not in every CI run where it wastes CI time.
5+
export LEC_CHECK ?= $(if $(wildcard $(KEPLER_FORMAL_EXE)),1,0)

0 commit comments

Comments
 (0)