use _start as entrypoint, closes #18
This commit is contained in:
parent
25d512186b
commit
112f4287e1
|
@ -24,12 +24,13 @@ import (
|
||||||
)
|
)
|
||||||
|
|
||||||
var (
|
var (
|
||||||
natsURL = flag.String("nats-url", nats.DefaultURL, "nats URL")
|
natsURL = flag.String("nats-url", nats.DefaultURL, "nats URL")
|
||||||
ipfsURL = flag.String("ipfs-host", "localhost:5001", "IPFS host")
|
ipfsURL = flag.String("ipfs-host", "localhost:5001", "IPFS host")
|
||||||
workerCount = flag.Int("worker-count", 1, "number of wasm executor workers")
|
workerCount = flag.Int("worker-count", 1, "number of wasm executor workers")
|
||||||
gasLimit = flag.Int("gas-limit", 1048576, "number of wasm instructions per execution")
|
gasLimit = flag.Int("gas-limit", 1048576, "number of wasm instructions per execution")
|
||||||
ramLimit = flag.Int("ram-limit", 128, "number of wasm pages that can be used")
|
ramLimit = flag.Int("ram-limit", 128, "number of wasm pages that can be used")
|
||||||
loopTimeout = flag.Duration("loop-timeout", 30*time.Second, "idle time per loop")
|
loopTimeout = flag.Duration("loop-timeout", 30*time.Second, "idle time per loop")
|
||||||
|
cwaEntrypoint = flag.String("cwa-entrypoint", "_start", "entrypoint into CWA programs")
|
||||||
)
|
)
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
|
@ -126,7 +127,7 @@ func waitForNewWASM(ctx context.Context, wg *sync.WaitGroup, sh *shell.Shell, nc
|
||||||
},
|
},
|
||||||
|
|
||||||
Name: er.Name,
|
Name: er.Name,
|
||||||
FuncName: "cwa_main",
|
FuncName: *cwaEntrypoint,
|
||||||
Env: er.Env,
|
Env: er.Env,
|
||||||
Binary: wasmBin,
|
Binary: wasmBin,
|
||||||
Stdin: stdin,
|
Stdin: stdin,
|
||||||
|
|
|
@ -44,7 +44,7 @@ Flags:
|
||||||
}
|
}
|
||||||
|
|
||||||
func (r *runCmd) SetFlags(fs *flag.FlagSet) {
|
func (r *runCmd) SetFlags(fs *flag.FlagSet) {
|
||||||
fs.StringVar(&r.funcName, "func-name", "cwa_main", "entrypoint function to call")
|
fs.StringVar(&r.funcName, "func-name", "_start", "entrypoint function to call")
|
||||||
fs.StringVar(&r.abi, "abi", "cwa", "ABI to use")
|
fs.StringVar(&r.abi, "abi", "cwa", "ABI to use")
|
||||||
fs.Uint64Var(&r.gasLimit, "gas-limit", 1048576, "number of wasm instructions per execution")
|
fs.Uint64Var(&r.gasLimit, "gas-limit", 1048576, "number of wasm instructions per execution")
|
||||||
fs.IntVar(&r.ramLimit, "ram-limit", 128, "number of wasm pages that can be used")
|
fs.IntVar(&r.ramLimit, "ram-limit", 128, "number of wasm pages that can be used")
|
||||||
|
|
Loading…
Reference in New Issue