mirror of
https://github.com/saymrwulf/pulp-runtime.git
synced 2026-05-14 20:48:09 +00:00
Fix run target for pulp cluster
This commit is contained in:
parent
28406c4e54
commit
272b0dafba
1 changed files with 6 additions and 2 deletions
|
|
@ -78,5 +78,9 @@ ifndef gui
|
|||
vsim-flags = -c
|
||||
endif
|
||||
|
||||
run: $(TARGETS)
|
||||
cd $(TARGET_BUILD_DIR); $(QUESTA) vsim $(vsim-flags) -do "set VSIM_PATH $(VSIM_PATH); source $(VSIM_PATH)/scripts/start.tcl"
|
||||
run:
|
||||
ifdef gui
|
||||
$(QUESTA) vsim $(vsim-flags) -do "set VSIM_PATH $(VSIM_PATH); set APP $(TARGET_BUILD_DIR)/$(PULP_APP)/$(PULP_APP); source $(VSIM_PATH)/scripts/start.tcl"
|
||||
else
|
||||
$(QUESTA) vsim $(vsim-flags) -do "set VSIM_PATH $(VSIM_PATH); set APP $(TARGET_BUILD_DIR)/$(PULP_APP)/$(PULP_APP); source $(VSIM_PATH)/scripts/run_and_exit.tcl"
|
||||
endif
|
||||
Loading…
Reference in a new issue