Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -154,12 +154,12 @@ bash: merge-sysroot
'$(APPS_ROOT)/bash/compile_bash.sh'

# ---------------- nginx (WASM build) -------------------------------------------
# Uses nginx/compile_nginx.sh to build nginx as a wasm32-wasi binary using the
# merged sysroot and toolchain detected by preflight, and stages artifacts
# under build/bin/nginx/wasm32-wasi/.
# Uses nginx/compile_nginx_dynamic.sh to build nginx as a PIE wasm32-wasi binary
# with dynamic loading support (dlopen/dlsym/dlclose via Lind's runtime loader),
# and stages artifacts under build/bin/nginx/wasm32-wasi/.
nginx: merge-sysroot
. '$(TOOL_ENV)'
'$(APPS_ROOT)/nginx/compile_nginx.sh'
'$(APPS_ROOT)/nginx/compile_nginx_dynamic.sh'

# ---------------- coreutils (WASM build) --------------------------------------
# Uses coreutils/compile_coreutils.sh and requires the merged sysroot.
Expand Down
Loading