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 trying to compile this:
package main import ( "fmt" _ "net" ) func main() { fmt.Println("Hello") }
with these comands:
# docker run --privileged --rm -v $(pwd):/src -ti tinygo/tinygo bash > cd /src > tinygo run main.go
I get:
# net ../usr/include/netdb.h:617:23: unexpected token ILLEGAL ../usr/include/netdb.h:618:22: unexpected token ILLEGAL ../usr/include/netdb.h:624:23: unexpected token ILLEGAL ../usr/include/netdb.h:625:25: unexpected token ILLEGAL ../usr/include/netdb.h:617:23: unexpected token ILLEGAL ../usr/include/netdb.h:618:22: unexpected token ILLEGAL ../usr/include/netdb.h:624:23: unexpected token ILLEGAL ../usr/include/netdb.h:625:25: unexpected token ILLEGAL ../usr/include/netdb.h:617:23: unexpected token ILLEGAL ../usr/include/netdb.h:618:22: unexpected token ILLEGAL ../usr/include/netdb.h:624:23: unexpected token ILLEGAL ../usr/include/netdb.h:625:25: unexpected token ILLEGAL
I get the same error, when I have included the bluetooth package (https://github.com/tinygo-org/bluetooth).
So I can not compile for linux with the bluetooth package.
The text was updated successfully, but these errors were encountered:
net API is not yet supported according to:
https://tinygo.org/lang-support/stdlib/#net
# net /home/ron/.gvm/gos/go1.15/src/net/parse.go:80:12: st.ModTime undefined (type os.FileInfo has no field or method ModTime)
Relate-to: rzr/webthing-go#4
Sorry, something went wrong.
No branches or pull requests
When trying to compile this:
with these comands:
I get:
I get the same error, when I have included the bluetooth package (https://github.com/tinygo-org/bluetooth).
So I can not compile for linux with the bluetooth package.
The text was updated successfully, but these errors were encountered: