Mainline bootstrap on x86_64-unknown-linux-gnu (CentOS 5.6) was failing due to a trivial typo. Fixed as follows.
Rainer
diff --git a/libgo/runtime/go-nosys.c b/libgo/runtime/go-nosys.c --- a/libgo/runtime/go-nosys.c +++ b/libgo/runtime/go-nosys.c @@ -52,7 +52,7 @@ faccessat (int fd __attribute__ ((unused int fallocate (int fd __attribute__ ((unused)), int mode __attribute__ ((unused)), - off_t offset __attribute __ ((unused)), + off_t offset __attribute__ ((unused)), off_t len __attribute__ ((unused))) { errno = ENOSYS;
-- ----------------------------------------------------------------------------- Rainer Orth, Center for Biotechnology, Bielefeld University