Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Still fails, but with a clearer error message: $ go.gcc build internal/syscallcompat/unix2syscall_linux.go:32:13: error: incompatible types in assignment (cannot use type int64 as type syscall.Timespec_sec_t) s.Atim.Sec = u.Atim.Sec ^ internal/syscallcompat/unix2syscall_linux.go:33:14: error: incompatible types in assignment (cannot use type int64 as type syscall.Timespec_nsec_t) s.Atim.Nsec = u.Atim.Nsec ^ internal/syscallcompat/unix2syscall_linux.go:35:13: error: incompatible types in assignment (cannot use type int64 as type syscall.Timespec_sec_t) s.Mtim.Sec = u.Mtim.Sec ^ internal/syscallcompat/unix2syscall_linux.go:36:14: error: incompatible types in assignment (cannot use type int64 as type syscall.Timespec_nsec_t) s.Mtim.Nsec = u.Mtim.Nsec ^ internal/syscallcompat/unix2syscall_linux.go:38:13: error: incompatible types in assignment (cannot use type int64 as type syscall.Timespec_sec_t) s.Ctim.Sec = u.Ctim.Sec ^ internal/syscallcompat/unix2syscall_linux.go:39:14: error: incompatible types in assignment (cannot use type int64 as type syscall.Timespec_nsec_t) s.Ctim.Nsec = u.Ctim.Nsec ^
- Loading branch information