Add workaround for golang/go#68760

This commit is contained in:
世界
2024-12-10 09:58:55 +08:00
parent ec66c58bd4
commit a11949b743
7 changed files with 79 additions and 16 deletions

View File

@@ -0,0 +1,8 @@
//go:build android && debug
package constant
// TODO: remove after fixed
// https://github.com/golang/go/issues/68760
const FixAndroidStack = true

View File

@@ -0,0 +1,5 @@
//go:build !(android && debug)
package constant
const FixAndroidStack = false