summaryrefslogtreecommitdiff
path: root/c/wasi-http/echo-request/Makefile
diff options
context:
space:
mode:
authorAndrew Clayton <a.clayton@nginx.com>2024-02-13 22:15:59 +0000
committerAndrew Clayton <a.clayton@nginx.com>2024-02-13 22:15:59 +0000
commitd4dd93dc442e997223ebddc8e187e1022b5880f2 (patch)
treedbf3ce1a422ffc7ff6417f5a2ac0f0db4130c694 /c/wasi-http/echo-request/Makefile
parent016ae29e0d69cc6b919b9011894802bb70ce5fad (diff)
downloadproject_blackbird-d4dd93dc442e997223ebddc8e187e1022b5880f2.tar.gz
project_blackbird-d4dd93dc442e997223ebddc8e187e1022b5880f2.tar.bz2
wasi-http/echo-request: Remove it
This is superseded by the wasi-http 0.2.0 version. Signed-off-by: Andrew Clayton <a.clayton@nginx.com>
Diffstat (limited to '')
-rw-r--r--c/wasi-http/echo-request/Makefile31
1 files changed, 0 insertions, 31 deletions
diff --git a/c/wasi-http/echo-request/Makefile b/c/wasi-http/echo-request/Makefile
deleted file mode 100644
index 255a2ae..0000000
--- a/c/wasi-http/echo-request/Makefile
+++ /dev/null
@@ -1,31 +0,0 @@
-# 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 --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 --world wasi:http/proxy
- sed -i 's/_0_2_0_rc_2023_11_10//g' proxy.[ch]
- sed -i 's/_0_2_0_RC_2023_11_10//g' proxy.[ch]
- /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*