-
Notifications
You must be signed in to change notification settings - Fork 324
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
The syscall.SYS_EXIT constant is not defined on Windows #1
Comments
Thanks for opening the first issue! 😄 |
My pleasure to be the first contributor too ;) |
wow~ |
We should remove "syscall.Exit". Prefer log.Fatal. |
Fixed in: 7fac6df |
saitofun
added a commit
that referenced
this issue
May 30, 2024
* feat(ioctl/ioid): ioctl support ioid interactions * chore: remove redundent abis * fix: transfer amount flag type change to string
dustinxie
pushed a commit
that referenced
this issue
May 30, 2024
* feat(ioctl/ioid): ioctl support ioid interactions * chore: remove redundent abis * fix: transfer amount flag type change to string
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
If you plan to support Windows OS in the future, I found that the server builds well, except that the SYS_EXIT constant used in syscall.Exit() is not defined on Windows.
I quickly fixed that with
syscall.Exit(60)
, though I'm not a Go developer therefore a more suitable replacement is probably available.The text was updated successfully, but these errors were encountered: