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
Problem is the same as with arm64 - new platforms do not have syscall.Dup2, but have syscall.Dup3 instead.
Proper solution would be to get a list of all platforms that have Dup2 syscall and whitelist them for old one and use new one for all other platforms (as new platforms will likely implement Dup3 syscall and not Dup2).
Or at least to:
Rename syscall_dup_arm64.go to not include arch name
Build it on:
// +build linux
// +build arm64 riscv64
Do not build old file on riscv64 (simple header modification).
The text was updated successfully, but these errors were encountered:
Problem is the same as with arm64 - new platforms do not have syscall.Dup2, but have syscall.Dup3 instead.
Proper solution would be to get a list of all platforms that have Dup2 syscall and whitelist them for old one and use new one for all other platforms (as new platforms will likely implement Dup3 syscall and not Dup2).
Or at least to:
syscall_dup_arm64.go
to not include arch nameThe text was updated successfully, but these errors were encountered: