Add workaround for golang/go#68760

This commit is contained in:
世界
2024-12-10 10:30:42 +08:00
parent 3032317918
commit f0b6818b4c
7 changed files with 79 additions and 16 deletions
+8
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
+5
View File
@@ -0,0 +1,5 @@
//go:build !(android && debug)
package constant
const FixAndroidStack = false