From: Bdale Garbee Date: Tue, 5 Aug 2025 05:01:46 +0000 (-0600) Subject: turn mincut off in pcb_drc so success and failure are both quick X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=1af6c21b72358d87b6d89c2d23119c36f6535dfe;p=hw%2Faltusmetrum turn mincut off in pcb_drc so success and failure are both quick --- diff --git a/pcb-rnd.mk b/pcb-rnd.mk index 7393513..b18d727 100644 --- a/pcb-rnd.mk +++ b/pcb-rnd.mk @@ -67,7 +67,7 @@ pcb: $(SCHEMATICS) Makefile $(CONFIG) # echo "Run pcb-rnd and import $(PROJECT).tdx" define pcb_drc - echo "Atomic(Save); DeleteRats(AllRats); Atomic(Restore); AddRats(AllRats); Atomic(Close)" | pcb-rnd --gui batch $(PROJECT).lht | grep "The layout is complete and has no shorted nets." + echo "Atomic(Save); DeleteRats(AllRats); Atomic(Restore); AddRats(AllRats); Atomic(Close)" | pcb-rnd --gui batch -c plugins/mincut/enable=0 $(PROJECT).lht | grep "The layout is complete and has no shorted nets." # not obvious what to look for in DRC() output to indicate 'all ok', so don't try echo "DRC()" | pcb-rnd --gui batch $(PROJECT).lht endef