Files
llgo/runtime/internal/lib/runtime/runtime_gc.go
Haolan 812dfd45c9 feat: implement baremetal GC
fix: pthread gc

fix: xiao-esp32c3 symbol

refactor: use clite memset instead of linking

fix: stack top symbol
2025-11-14 16:12:56 +08:00

10 lines
143 B
Go

//go:build !nogc && !baremetal
package runtime
import "github.com/goplus/llgo/runtime/internal/clite/bdwgc"
func GC() {
bdwgc.Gcollect()
}