From 7d92468a5d298ec6dd6455482ff0521efecf9541 Mon Sep 17 00:00:00 2001 From: Mitya Selivanov Date: Fri, 14 Feb 2025 17:30:28 +0100 Subject: Adjust wasm code and examples for new features --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Dockerfile') diff --git a/Dockerfile b/Dockerfile index 97577f1..d783d81 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ RUN apk add clang lld COPY examples /usr/examples COPY reduced_system_layer.c /usr/reduced_system_layer.c COPY graphics.c /usr/graphics.c -RUN clang -D NDEBUG -O3 --target=wasm32 -nostdlib -fno-builtin -mbulk-memory -Wl,--no-entry,--allow-undefined -o /usr/index.wasm /usr/examples/julia_set.c +RUN clang -g --target=wasm32 -nostdlib -fno-builtin -mbulk-memory -Wl,--no-entry,--allow-undefined -o /usr/index.wasm /usr/examples/julia_set.c FROM nginx:alpine EXPOSE 80 -- cgit v1.2.3