Skip to content

Commit

Permalink
Update to WASI-SDK-24
Browse files Browse the repository at this point in the history
  • Loading branch information
Namaneo committed Aug 5, 2024
1 parent 831de2c commit 3581539
Show file tree
Hide file tree
Showing 13 changed files with 6 additions and 4 deletions.
1 change: 1 addition & 0 deletions cores/GNUmakefile
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ lib%.a: fetch-%
$(MAKE) -C $$name/$$makedir -f $$makefile TARGET=$$target $(BUILD_FLAGS) $(QUIET)

clean-%:
@rm -f `pwd`/lib$*.a
@target=`pwd`/lib$*.a && \
name=`jq -r '."$*".repository // "$*"' cores.json` && \
makedir=`jq -r '."$*".directory // ""' cores.json` && \
Expand Down
Binary file modified cores/lib2048.a
Binary file not shown.
Binary file modified cores/libdesmume.a
Binary file not shown.
Binary file modified cores/libgambatte.a
Binary file not shown.
Binary file modified cores/libgenesis.a
Binary file not shown.
Binary file modified cores/libnestopia.a
Binary file not shown.
Binary file modified cores/libparallel.a
Binary file not shown.
Binary file modified cores/libpcsx.a
Binary file not shown.
Binary file modified cores/libsnes9x.a
Binary file not shown.
Binary file modified cores/libvbam.a
Binary file not shown.
9 changes: 5 additions & 4 deletions deps/GNUmakefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
WASI_VERSION = 22
WASI_VERSION = wasi-sdk-24
WASI_BUILD = $(WASI_VERSION).0-x86_64-linux

DEFINES := -I$(DEPS_DIR)/libretro-common/include
include ../GNUmakefile.common
Expand All @@ -7,9 +8,9 @@ all: wasi-sdk emsdk zlib libretro-common libz.a libretro.a

wasi-sdk:
@echo Fetching wasi-sdk...
@wget https://github.com/WebAssembly/wasi-sdk/releases/download/wasi-sdk-$(WASI_VERSION)/wasi-sdk-$(WASI_VERSION).0-linux.tar.gz $(QUIET)
@mkdir wasi-sdk && tar xvf wasi-sdk-$(WASI_VERSION).0-linux.tar.gz -C wasi-sdk --strip-components 1 $(QUIET)
@rm wasi-sdk-$(WASI_VERSION).0-linux.tar.gz
@wget https://github.com/WebAssembly/wasi-sdk/releases/download/$(WASI_VERSION)/$(WASI_BUILD).tar.gz $(QUIET)
@mkdir wasi-sdk && tar xvf $(WASI_BUILD).tar.gz -C wasi-sdk --strip-components 1 $(QUIET)
@rm $(WASI_BUILD).tar.gz

emsdk:
@echo Fetching emscripten...
Expand Down
Binary file modified deps/libretro.a
Binary file not shown.
Binary file modified deps/libz.a
Binary file not shown.

0 comments on commit 3581539

Please sign in to comment.