You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 19, 2024. It is now read-only.
Background
the syscall package does not support all posix systems properly as it has been last updated sometime in 2015. Back then only linux was decently well supported for IOCTL's and other calls. Since then all further improvements have gone into x/sys/unix and not into syscall.
The text was updated successfully, but these errors were encountered:
Thank you for reporting! Agreed that this library should avoid dropping down to syscall and instead use more of the standard library to avoid cross-platform limitations. I've tried a migration here but it broke some prompts #377
x/sys/unix is a drop in replacement for syscall infact it's the same package. The problem is not dropping down to the sycall layer, it is using an extremely out of date and limited version of that package.
What operating system and terminal are you using?
illumos and bash
An example that showcases the bug.
Compile github cli or any project using this library on a system not linux
What did you expect to see?
Github cli being able to compile
What did you see instead?
Background
the
syscall
package does not support all posix systems properly as it has been last updated sometime in 2015. Back then only linux was decently well supported for IOCTL's and other calls. Since then all further improvements have gone into x/sys/unix and not into syscall.The text was updated successfully, but these errors were encountered: