diff options
| author | Laytan <laytanlaats@hotmail.com> | 2025-01-01 21:26:28 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-01-01 21:26:28 +0100 |
| commit | 71b0f7e69897ec8a8c956f86c10b27ced2c06b8a (patch) | |
| tree | e7de00cd6da002ecae2f69b0bf71561466bcf07f | |
| parent | 8763b15c614ea2021158630f8793f1d9e29a171f (diff) | |
| parent | f80c33727ca4920e8ffe809c1c79abb093595c76 (diff) | |
Merge pull request #4644 from karl-zylinski/box2d-build-script-fix
Fix for casing error in box2d/wasm.Makefile
| -rw-r--r-- | vendor/box2d/wasm.Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vendor/box2d/wasm.Makefile b/vendor/box2d/wasm.Makefile index 929b61aea..c3e3ed25a 100644 --- a/vendor/box2d/wasm.Makefile +++ b/vendor/box2d/wasm.Makefile @@ -10,7 +10,7 @@ SRCS = $(wildcard box2d-$(VERSION)/src/*.c) OBJS_SIMD = $(SRCS:.c=_simd.o) OBJS = $(SRCS:.c=.o) SYSROOT = $(shell odin root)/vendor/libc -CFLAGS = -Ibox2d-$(VERSION)/include -Ibox2d-$(VERSION)/Extern/simde --target=wasm32 -D__EMSCRIPTEN__ -DNDEBUG -O3 --sysroot=$(SYSROOT) +CFLAGS = -Ibox2d-$(VERSION)/include -Ibox2d-$(VERSION)/extern/simde --target=wasm32 -D__EMSCRIPTEN__ -DNDEBUG -O3 --sysroot=$(SYSROOT) all: lib/box2d_wasm.o lib/box2d_wasm_simd.o clean |