File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ TESTBENCHES += \
34
34
$(ticks )
35
35
36
36
ifeq ($(USE_PREBUILT ) ,1)
37
- LATEST_RELEASE := $(shell curl -s https://api.github.com/repos/sysprog21/rv32emu-prebuilt/releases/latest | grep -Po '(?<="tag_name": ") .+(?=",)')
37
+ LATEST_RELEASE := $(shell wget -qO - https://api.github.com/repos/sysprog21/rv32emu-prebuilt/releases/latest | grep -Po '(?<="tag_name": ") .+(?=",)')
38
38
endif
39
39
40
40
.PHONY : build-testbenches benchmark
@@ -45,7 +45,7 @@ benchmark: build-testbenches
45
45
build-testbenches :
46
46
ifeq ($(USE_PREBUILT ) ,1)
47
47
@echo "Fetching prebuilt executables in \"rv32emu-prebuilt\"..."
48
- @curl --progress-bar -L https://github.com/sysprog21/rv32emu-prebuilt/releases/download/$(LATEST_RELEASE)/rv32emu-prebuilt.tar.gz | tar zx -C build
48
+ @wget -O - https://github.com/sysprog21/rv32emu-prebuilt/releases/download/$(LATEST_RELEASE)/rv32emu-prebuilt.tar.gz | tar zx -C build
49
49
else
50
50
@$(foreach tb,$(TEST_SUITES), \
51
51
git submodule update --init ./tests/$(tb) &&) true
You can’t perform that action at this time.
0 commit comments