File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 2424 buildInputs = [
2525 openroad . packages . ${ system } . default
2626 yosys . packages . ${ system } . default
27+ pkgs . time
2728 pkgs . klayout
2829 pkgs . verilator
2930 pkgs . python3
Original file line number Diff line number Diff line change @@ -233,12 +233,12 @@ endif
233233# 1 user explicit set with variable in Makefile or command line, for instance setting OPENROAD_EXE
234234# 2 ORFS compiled tools: openroad, yosys
235235ifneq (${IN_NIX_SHELL}, "")
236- export OPENROAD_EXE := $(shell which openroad)
236+ export OPENROAD_EXE := $(shell command -v openroad)
237237else
238238 export OPENROAD_EXE ?= $(abspath $(FLOW_HOME ) /../tools/install/OpenROAD/bin/openroad)
239239endif
240240ifneq (${IN_NIX_SHELL}, "")
241- export OPENSTA_EXE := $(shell which opensta)
241+ export OPENSTA_EXE := $(shell command -v opensta)
242242else
243243 export OPENSTA_EXE ?= $(abspath $(FLOW_HOME ) /../tools/install/OpenROAD/bin/opensta)
244244endif
@@ -249,7 +249,7 @@ OPENROAD_NO_EXIT_CMD = $(OPENROAD_EXE) $(OPENROAD_ARGS)
249249OPENROAD_GUI_CMD = $(OPENROAD_EXE ) -gui $(OR_ARGS )
250250
251251ifneq (${IN_NIX_SHELL}, "")
252- YOSYS_EXE := $(shell which yosys)
252+ YOSYS_EXE := $(shell command -v yosys)
253253else
254254 YOSYS_EXE ?= $(abspath $(FLOW_HOME ) /../tools/install/yosys/bin/yosys)
255255endif
You can’t perform that action at this time.
0 commit comments