File tree Expand file tree Collapse file tree 1 file changed +5
-10
lines changed
Expand file tree Collapse file tree 1 file changed +5
-10
lines changed Original file line number Diff line number Diff line change @@ -267,21 +267,16 @@ endif
267267
268268# The following determine the executable location for each tool used by this flow.
269269# Priority is given to
270- # 1 user include path to the executable prior to running make
271- # 2 user explicit set with variable in Makefile or command line
272- export OPENROAD_EXE ?= $(shell command -v openroad)
273- ifeq ($(OPENROAD_EXE ) ,)
274- export OPENROAD_EXE = $(abspath $(FLOW_HOME ) /../tools/install/OpenROAD/bin/openroad)
275- endif
270+ # 1 user explicit set with variable in Makefile or command line, for instance setting OPENROAD_EXE
271+ # 2 ORFS compiled tools: openroad, yosys
272+ export OPENROAD_EXE ?= $(abspath $(FLOW_HOME ) /../tools/install/OpenROAD/bin/openroad)
273+
276274OPENROAD_ARGS = -no_init $(OR_ARGS )
277275OPENROAD_CMD = $(OPENROAD_EXE ) -exit $(OPENROAD_ARGS )
278276OPENROAD_NO_EXIT_CMD = $(OPENROAD_EXE ) $(OPENROAD_ARGS )
279277OPENROAD_GUI_CMD = $(OPENROAD_EXE ) -gui $(OR_ARGS )
280278
281- YOSYS_CMD ?= $(shell command -v yosys)
282- ifeq ($(YOSYS_CMD ) ,)
283- YOSYS_CMD = $(abspath $(FLOW_HOME ) /../tools/install/yosys/bin/yosys)
284- endif
279+ YOSYS_CMD ?= $(abspath $(FLOW_HOME ) /../tools/install/yosys/bin/yosys)
285280
286281KLAYOUT_CMD ?= $(shell command -v klayout)
287282
You can’t perform that action at this time.
0 commit comments