-
Notifications
You must be signed in to change notification settings - Fork 925
New issue
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
Support for Go 1.24 #4719
Labels
enhancement
New feature or request
Comments
Thanks for starting up this testing @QuLogic |
Made a work-in-progress PR here: #4732 |
I also hit the same thing compiling for wasm in the browser. Error message is at least thinking ahead - You knew it was coming I guess :) --- golang wasm ---
cd /Users/apple/workspace/go/src/magodo__go-wasmww/.src/go-wasmww && cd examples/dedicated/control && GOOS=js GOARCH=wasm go build -o .bin /go_wasmww_dedicated_control_bin_js_wasmgo
--- golang wasm wasm_exec.js ---
cp /opt/homebrew/opt/go/libexec/lib/wasm/wasm_exec.js /Users/apple/workspace/go/src/github.com/gedw99/kanka-cloudflare/modules/wasm/magodo__go-wasmww/.bin
--- tinygo wasm ---
tinygo build -o /Users/apple/workspace/go/src/magodo__go-wasmww/.bin/go_wasmww_dedicated_control_bin_js_wasmtiny -target wasm .
requires go version 1.19 through 1.23, got go1.24
old path $(GOROOT)/misc/wasm/wasm_exec.js new path for go 1.24 $(GOROOT)/lib/wasm/wasm_exec.js |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Go 1.24 is almost out; this issue records the problems building against it, mostly due to new internals.
From
go test
:plus various variations of the above in other similar tests.
And then for
make wasmtest
:and with
make tinygo-test
:The text was updated successfully, but these errors were encountered: