Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var DebuggerFlags = []cli.Flag{}
View Source
var IoOverrideFlags = []cli.Flag{ newRedirectFlag("stdinFromFile", os.O_RDONLY, &os.Stdin, "os.Stdin", "input from file"), newRedirectFlag("stdoutToFile", os.O_WRONLY|os.O_TRUNC|os.O_CREATE, &os.Stdout, "os.Stdout", "output to file"), newRedirectFlag("stderrToFile", os.O_WRONLY|os.O_TRUNC|os.O_CREATE, &os.Stderr, "os.Stderr", "output to file"), }
View Source
var PackageProps = packageprops.Props{ WASMWASI: packageprops.WASMBlocked, WASMJS: packageprops.WASMBlocked, WASMFreestanding: packageprops.WASMBlocked, }
PackageProps records this package's curated properties (ADR-0080). Seeded by `wasmsurvey props generate`; curate by hand, then `wasmsurvey props verify`.
View Source
var WaitForDebugger = env.NewBool(env.Spec{ Name: "BOXER_WAIT_FOR_DEBUGGER", Description: "execution of program waits until an attached debugger is detected (linux only)", Category: env.CategoryDev, CliFlagName: "waitForDebugger", })
WaitForDebugger gates a Linux-only "block until ptrace tracer attached" loop in the CLI Action. The env var is registered on every platform so the registry is uniform; the cli.Flag is only attached on Linux.
Functions ¶
func NewCliCommand ¶
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.