mirror of
https://github.com/alibaba/higress.git
synced 2026-02-25 13:10:50 +08:00
11 lines
453 B
Makefile
11 lines
453 B
Makefile
.PHONY: reload
|
|
|
|
build:
|
|
tinygo build -o main.wasm -scheduler=none -target=wasi -gc=custom -tags='custommalloc nottinygc_finalizer' ./main.go
|
|
|
|
reload:
|
|
tinygo build -o main.wasm -scheduler=none -target=wasi -gc=custom -tags='custommalloc nottinygc_finalizer' ./main.go
|
|
./envoy -c envoy.yaml --concurrency 0 --log-level info --component-log-level wasm:debug
|
|
|
|
start:
|
|
./envoy -c envoy.yaml --concurrency 0 --log-level info --component-log-level wasm:debug
|