fix: pthread gc fix: xiao-esp32c3 symbol refactor: use clite memset instead of linking fix: stack top symbol
10 lines
143 B
Go
10 lines
143 B
Go
//go:build !nogc && !baremetal
|
|
|
|
package runtime
|
|
|
|
import "github.com/goplus/llgo/runtime/internal/clite/bdwgc"
|
|
|
|
func GC() {
|
|
bdwgc.Gcollect()
|
|
}
|