diff options
Diffstat (limited to 'libgo/Makefile.am')
-rw-r--r-- | libgo/Makefile.am | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libgo/Makefile.am b/libgo/Makefile.am index 9318f38..e0a1eec 100644 --- a/libgo/Makefile.am +++ b/libgo/Makefile.am @@ -817,6 +817,7 @@ libgo_go_objs = \ syscall/errno.lo \ syscall/signame.lo \ syscall/wait.lo \ + runtime/internal/syscall/errno.lo \ os/dir_gccgo_c.lo \ $(golangorg_x_net_lif_lo) \ $(golangorg_x_net_route_lo) \ @@ -1180,6 +1181,11 @@ syscall/wait.lo: go/syscall/wait.c runtime.inc @$(MKDIR_P) syscall $(LTCOMPILE) -c -o $@ $(srcdir)/go/syscall/wait.c +# Some runtime/internal/syscall functions are written in C. +runtime/internal/syscall/errno.lo: go/runtime/internal/syscall/errno.c runtime.inc + @$(MKDIR_P) runtime/internal/syscall + $(LTCOMPILE) -c -o $@ $(srcdir)/go/runtime/internal/syscall/errno.c + # An os function is written in C. os/dir_gccgo_c.lo: go/os/dir_gccgo_c.c runtime.inc @$(MKDIR_P) os |