On Sun, Aug 2, 2020 at 12:50 AM Andreas Schwab wrote: > > This breaks ia64-linux. According to > arch/ia64/kernel/syscalls/syscall.tbl, the getrandom syscall is 315 and > copy_file_range is 323. > > ../../../libgo/go/internal/syscall/unix/copy_file_range_linux.go:13:42: error: reference to undefined name 'copyFileRangeTrap' > 13 | r1, _, errno := syscall.Syscall6(copyFileRangeTrap, > | ^ > ../../../libgo/go/internal/syscall/unix/getrandom_linux.go:35:41: error: reference to undefined name 'getrandomTrap' > 35 | r1, _, errno := syscall.Syscall(getrandomTrap, > | ^ > make[4]: *** [internal/syscall/unix.lo] Error 1 > make[4]: *** Waiting for unfinished jobs.... Thanks. Fixed like so. Committed to mainline. Ian