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
syscall
syscall.FDFLAG_NONBLOCK
Go's internal/syscall/unix package expects it, and is needed for some tests
internal/syscall/unix
~ $ tinygo test -target=wasip1 mime/multipart FAIL mime/multipart 0.000s # internal/syscall/unix /Users/dgryski/go/src/go.googlesource.com/go/src/internal/syscall/unix/nonblocking_wasip1.go:19:23: undefined: syscall.FDFLAG_NONBLOCK /Users/dgryski/go/src/go.googlesource.com/go/src/internal/syscall/unix/nonblocking_wasip1.go:23:22: undefined: syscall.FDFLAG_NONBLOCK ~ $ tinygo test -target=wasip1 net/mail FAIL net/mail 0.000s # internal/syscall/unix /Users/dgryski/go/src/go.googlesource.com/go/src/internal/syscall/unix/nonblocking_wasip1.go:19:23: undefined: syscall.FDFLAG_NONBLOCK /Users/dgryski/go/src/go.googlesource.com/go/src/internal/syscall/unix/nonblocking_wasip1.go:23:22: undefined: syscall.FDFLAG_NONBLOCK ~ $ tinygo test -target=wasip1 net/textproto FAIL net/textproto 0.000s # internal/syscall/unix /Users/dgryski/go/src/go.googlesource.com/go/src/internal/syscall/unix/nonblocking_wasip1.go:19:23: undefined: syscall.FDFLAG_NONBLOCK /Users/dgryski/go/src/go.googlesource.com/go/src/internal/syscall/unix/nonblocking_wasip1.go:23:22: undefined: syscall.FDFLAG_NONBLOCK
The text was updated successfully, but these errors were encountered:
I was actually changing some targets over to use the Go stdlib syscall package instead. That would probably solve this issue. See: #4461 for example.
Sorry, something went wrong.
No branches or pull requests
Go's
internal/syscall/unix
package expects it, and is needed for some testsThe text was updated successfully, but these errors were encountered: