awtk-go icon indicating copy to clipboard operation
awtk-go copied to clipboard

awtk-go binding

Results 4 awtk-go issues
Sort by recently updated
recently updated
newest added

go version 1.2 awtk 都是当前最新的 windows11 ``` # github.com/zlgopen/awtk-go/awtk .\awtk.go:230:29: could not determine kind of name for C.BIDI_TYPE_AUTO .\awtk.go:233:29: could not determine kind of name for C.BIDI_TYPE_LRO .\awtk.go:231:29: could not...

问题1:请问awtk-go是否支持交叉编译,比如在linux下编译出windows下的可执行程序? 我在linux下执行下面的命令,但是报错了: GOOS=windows GOARCH=amd64 go build -o button.exe button.go go build github.com/zlgopen/awtk-go/awtk: build constraints exclude all Go files in /home/xxx/pkg/mod/github.com/zlgopen/[email protected]/awtk 尝试开启cgo,进行交叉编译,仍然报错: $ CGO_ENABLED=1 GOOS=windows GOARCH=amd64 go build -o button.exe button.go...