We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When I try to make support for llgo to build wasm file. It occurs errors but not only in wasm case:
llgo
go build -v github.com/goplus/llgo/cmd/llgo && ./llgo build -o main-binary main.go
GOOS=linux GOARCH=arm64 ./llgo build -o main-binary main.go
c/c_linux.go:25:11: undefined: FilePtr c/c_linux.go:28:12: undefined: FilePtr c/c_linux.go:31:12: undefined: FilePtr ...
all llgo/c packages show same type error with undefined type.
I think we can make it runnable, ignore GOOS and GOARCH to build local target binary; or provide error message to show cross-compile is not supported.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When I try to make support for
llgo
to build wasm file. It occurs errors but not only in wasm case:go build -v github.com/goplus/llgo/cmd/llgo && ./llgo build -o main-binary main.go
, everything works fine.GOOS=linux GOARCH=arm64 ./llgo build -o main-binary main.go
(use other os and arch pair is same), It shows errors:all llgo/c packages show same type error with undefined type.
I think we can make it runnable, ignore GOOS and GOARCH to build local target binary; or provide error message to show cross-compile is not supported.
The text was updated successfully, but these errors were encountered: