You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Trying to compile an application using ui on Linux for a Windows system but I get the following output.
user@host:~/Remote$ GOOS=windows GOARCH=amd64 CGO_ENABLED=1 go build .# runtime/cgo
gcc: error: unrecognized command line option ‘-mthreads’; did you mean ‘-pthread’?
No output binary is generated. Disabling CGO gives the following result.
user@host:~/Remote$ GOOS=windows GOARCH=amd64 CGO_ENABLED=0 go build .
package github.com/ramadan8/Remote
imports github.com/andlabs/ui: build constraints exclude all Go files in /home/user/go/pkg/mod/github.com/andlabs/ui@v0.0.0-20200610043537-70a69d6ae31e
The text was updated successfully, but these errors were encountered:
Trying to compile an application using
ui
on Linux for a Windows system but I get the following output.No output binary is generated. Disabling CGO gives the following result.
The text was updated successfully, but these errors were encountered: