We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 200f34c commit be0ca6cCopy full SHA for be0ca6c
mk/artifact.mk
@@ -34,7 +34,7 @@ TEST_BENCHES += \
34
SHELL_HACK := $(shell mkdir -p $(BIN_DIR)/linux-x86-softfp $(BIN_DIR)/riscv32)
35
36
ifeq ($(call has, PREBUILT), 1)
37
- LATEST_RELEASE := $(shell wget -q https://api.github.com/repos/sysprog21/rv32emu-prebuilt/releases/latest -O- | grep -Po '(?<="tag_name": ").+(?=",)')
+ LATEST_RELEASE := $(shell wget -q https://api.github.com/repos/sysprog21/rv32emu-prebuilt/releases/latest -O- | grep '"tag_name"' | sed -E 's/.*"tag_name": "([^"]+)".*/\1/')
38
else
39
# Since rv32emu only supports the dynamic binary translation of integer instruction in tiered compilation currently,
40
# we disable the hardware floating-point and the related SIMD operation of x86.
0 commit comments