Skip to content

Commit

Permalink
Fix for casing error in box2d/wasm.Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
karl-zylinski committed Jan 1, 2025
1 parent 1cf7a56 commit f80c337
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vendor/box2d/wasm.Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit f80c337

Please sign in to comment.