From 91e20a53e03bbb10af8ebc455e9c0304c4367d08 Mon Sep 17 00:00:00 2001 From: deadprogram Date: Tue, 1 Apr 2025 12:13:46 +0200 Subject: [PATCH] fix: display all of the current GC options for the -gc flag Signed-off-by: deadprogram --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index 5d5b7b6c8..465025156 100644 --- a/main.go +++ b/main.go @@ -1492,7 +1492,7 @@ func main() { command := os.Args[1] opt := flag.String("opt", "z", "optimization level: 0, 1, 2, s, z") - gc := flag.String("gc", "", "garbage collector to use (none, leaking, conservative)") + gc := flag.String("gc", "", "garbage collector to use (none, leaking, conservative, custom, precise, boehm)") panicStrategy := flag.String("panic", "print", "panic strategy (print, trap)") scheduler := flag.String("scheduler", "", "which scheduler to use (none, tasks, asyncify)") serial := flag.String("serial", "", "which serial output to use (none, uart, usb, rtt)")