File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -269,9 +269,9 @@ endif
269269# Priority is given to
270270# 1 user include path to the executable prior to running make
271271# 2 user explicit set with variable in Makefile or command line
272- OPENROAD_EXE ?= $(shell command -v openroad)
272+ export OPENROAD_EXE ?= $(shell command -v openroad)
273273ifeq ($(OPENROAD_EXE ) ,)
274- OPENROAD_EXE = $(abspath $(FLOW_HOME ) /../tools/install/OpenROAD/bin/openroad)
274+ export OPENROAD_EXE = $(abspath $(FLOW_HOME ) /../tools/install/OpenROAD/bin/openroad)
275275endif
276276OPENROAD_ARGS = -no_init $(OR_ARGS )
277277OPENROAD_CMD = $(OPENROAD_EXE ) -exit $(OPENROAD_ARGS )
Original file line number Diff line number Diff line change @@ -120,12 +120,12 @@ command:
120120
121121# # Provide easy access to debugging
122122ifdef GDB
123- OPENROAD_EXE := gdb --args $(OPENROAD_EXE )
123+ export OPENROAD_EXE := gdb --args $(OPENROAD_EXE )
124124endif
125125
126126# # Provide easy way to run valgrind
127127ifdef VALGRIND
128- OPENROAD_EXE := valgrind $(VALGRIND_ARGS ) $(OPENROAD_EXE )
128+ export OPENROAD_EXE := valgrind $(VALGRIND_ARGS ) $(OPENROAD_EXE )
129129endif
130130
131131# # Convert RVE DRC database to JSON
You can’t perform that action at this time.
0 commit comments