diff options
author | Andrew Clayton <a.clayton@nginx.com> | 2024-02-13 22:12:38 +0000 |
---|---|---|
committer | Andrew Clayton <a.clayton@nginx.com> | 2024-02-13 22:12:38 +0000 |
commit | 016ae29e0d69cc6b919b9011894802bb70ce5fad (patch) | |
tree | 177a81a2e95407b26d9de694f957117b87fd8556 /c/wasi-http/0.2.0/large-upload/Makefile | |
parent | f5e85249d680e1501793cc46b7a3f0a177f3f383 (diff) | |
download | project_blackbird-016ae29e0d69cc6b919b9011894802bb70ce5fad.tar.gz project_blackbird-016ae29e0d69cc6b919b9011894802bb70ce5fad.tar.bz2 |
Add a wasi-http 0.2.0 large-upload component in C
This makes use of the 'reactor' adaptor for filesystem access via the
preopens method.
Signed-off-by: Andrew Clayton <a.clayton@nginx.com>
Diffstat (limited to 'c/wasi-http/0.2.0/large-upload/Makefile')
-rw-r--r-- | c/wasi-http/0.2.0/large-upload/Makefile | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/c/wasi-http/0.2.0/large-upload/Makefile b/c/wasi-http/0.2.0/large-upload/Makefile new file mode 100644 index 0000000..d84c222 --- /dev/null +++ b/c/wasi-http/0.2.0/large-upload/Makefile @@ -0,0 +1,29 @@ +# Look for wasi-sysroot in some common places, falling back +# to provided WASI_SYSROOT +ifneq ("$(wildcard /usr/wasm32-wasi)", "") + # Fedora + WASI_SYSROOT ?= /usr/wasm32-wasi +endif + +export WASI_SYSROOT + +CC = clang +CFLAGS = -Wall -Wextra -g --target=wasm32-wasi --sysroot=$(WASI_SYSROOT) +LDFLAGS = -Wl,--no-entry,--export=__heap_base,--export=__data_end,--export=malloc,--export=free,--stack-first,-z,stack-size=$$((8*1024*1024)) -mexec-model=reactor --rtlib=compiler-rt + +all: component.wasm + +bindgen: + /home/andrew/src/c/wasm/git/wit-bindgen/target/release/wit-bindgen c /home/andrew/src/c/wasm/git/wasi-http/wit --autodrop-borrows yes --world wasi:http/proxy + /home/andrew/src/c/wasm/git/wit-bindgen/target/release/wit-bindgen markdown /home/andrew/src/c/wasm/git/wasi-http/wit --world wasi:http/proxy + +.PHONY: +module.wasm: bindgen + $(CC) $(CFLAGS) $(LDFLAGS) -o $@ proxy.c proxy_component_type.o component.c + +.PHONY: +component.wasm: module.wasm + /home/andrew/src/c/wasm/git/wasm-tools/target/release/wasm-tools component new module.wasm --adapt wasi_snapshot_preview1.reactor.wasm -o component.wasm + +clean: + rm -f component.wasm module.wasm proxy* |