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
I want to build a c-shared lib
when I use go build -buildmode=c-shared -o libdartinterface.so dart_interface.go it works fine.
when I use GOOS=linux GOARCH=arm64 go build -buildmode=c-shared -o libdartinterface.so dart_interface.go it says go: no Go source files .
But the two action is in the same directory
What did you expect to see?
generate c-shared lib file with cmd GOOS=linux GOARCH=arm64 go build -buildmode=c-shared -o libdartinterface.so dart_interface.go
What did you see instead?
go: no Go source files
The text was updated successfully, but these errors were encountered:
you need to explicitly enable cgo when cross compiling
Unlike many projects, the Go project does not use GitHub Issues for general discussion or asking questions. GitHub Issues are used for tracking bugs and proposals only.
you need to explicitly enable cgo when cross compiling
Unlike many projects, the Go project does not use GitHub Issues for general discussion or asking questions. GitHub Issues are used for tracking bugs and proposals only.
What version of Go are you using (
go version
)?Does this issue reproduce with the latest release?
What operating system and processor architecture are you using (
go env
)?go env
OutputWhat did you do?
I want to build a c-shared lib
when I use
go build -buildmode=c-shared -o libdartinterface.so dart_interface.go
it works fine.when I use
GOOS=linux GOARCH=arm64 go build -buildmode=c-shared -o libdartinterface.so dart_interface.go
it saysgo: no Go source files
.But the two action is in the same directory
What did you expect to see?
generate c-shared lib file with cmd
GOOS=linux GOARCH=arm64 go build -buildmode=c-shared -o libdartinterface.so dart_interface.go
What did you see instead?
go: no Go source files
The text was updated successfully, but these errors were encountered: