Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
G
golang
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
go
golang
Commits
728c16cf
Commit
728c16cf
authored
Dec 12, 2011
by
Christopher Nielsen
Committed by
Russ Cox
Dec 12, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
build: Changes to the build infrastructure for NetBSD.
R=golang-dev, rsc CC=golang-dev
https://golang.org/cl/5476048
parent
d56ca13c
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
66 additions
and
0 deletions
+66
-0
Make.inc
src/Make.inc
+4
-0
Makefile
src/cmd/cov/Makefile
+1
-0
Makefile
src/cmd/prof/Makefile
+1
-0
Makefile
src/pkg/crypto/tls/Makefile
+1
-0
Makefile
src/pkg/mime/Makefile
+3
-0
Makefile
src/pkg/net/Makefile
+21
-0
Makefile
src/pkg/os/Makefile
+11
-0
Makefile
src/pkg/os/exec/Makefile
+3
-0
Makefile
src/pkg/path/filepath/Makefile
+3
-0
Makefile
src/pkg/runtime/Makefile
+3
-0
Makefile
src/pkg/syscall/Makefile
+11
-0
Makefile
src/pkg/time/Makefile
+4
-0
No files found.
src/Make.inc
View file @
728c16cf
...
...
@@ -33,6 +33,7 @@ GOOS_LIST=\
darwin
\
freebsd
\
linux
\
netbsd
\
openbsd
\
plan9
\
windows
\
...
...
@@ -138,6 +139,9 @@ endif
ifeq
(
$
(
GOOS
),
openbsd
)
# ... and not on OpenBSD
CGO_ENABLED
:=
0
endif
ifeq
(
$
(
GOOS
),
netbsd
)
# ... and not on NetBSD
CGO_ENABLED
:=
0
endif
endif
# Make environment more standard.
...
...
src/cmd/cov/Makefile
View file @
728c16cf
...
...
@@ -29,6 +29,7 @@ endif
install
:
install-$(NAME)
install-linux
:
install-default
install-freebsd
:
install-default
install-netbsd
:
install-default
install-openbsd
:
install-default
install-windows
:
install-default
...
...
src/cmd/prof/Makefile
View file @
728c16cf
...
...
@@ -25,6 +25,7 @@ endif
install
:
install-$(NAME) install-pprof
install-linux
:
install-default
install-freebsd
:
install-default
install-netbsd
:
install-default
install-openbsd
:
install-default
install-windows
:
install-default
...
...
src/pkg/crypto/tls/Makefile
View file @
728c16cf
...
...
@@ -26,6 +26,7 @@ endif
GOFILES_freebsd
+=
root_unix.go
GOFILES_linux
+=
root_unix.go
GOFILES_netbsd
+=
root_unix.go
GOFILES_openbsd
+=
root_unix.go
GOFILES_plan9
+=
root_stub.go
GOFILES_windows
+=
root_windows.go
...
...
src/pkg/mime/Makefile
View file @
728c16cf
...
...
@@ -19,6 +19,9 @@ GOFILES_darwin=\
GOFILES_linux
=
\
type_unix.go
GOFILES_netbsd
=
\
type_unix.go
GOFILES_openbsd
=
\
type_unix.go
...
...
src/pkg/net/Makefile
View file @
728c16cf
...
...
@@ -104,6 +104,27 @@ else
GOFILES_linux
+=
cgo_stub.go
endif
GOFILES_netbsd
=
\
dnsclient_unix.go
\
dnsconfig.go
\
fd.go
\
fd_
$(GOOS)
.go
\
file.go
\
interface_bsd.go
\
interface_openbsd.go
\
iprawsock_posix.go
\
ipsock_posix.go
\
lookup_unix.go
\
newpollserver.go
\
port.go
\
sendfile_stub.go
\
sock.go
\
sock_bsd.go
\
tcpsock_posix.go
\
udpsock_posix.go
\
unixsock_posix.go
\
cgo_stub.go
\
GOFILES_openbsd
=
\
dnsclient_unix.go
\
dnsconfig.go
\
...
...
src/pkg/os/Makefile
View file @
728c16cf
...
...
@@ -50,6 +50,17 @@ GOFILES_linux=\
exec_unix.go
\
signal_unix.go
\
GOFILES_netbsd
=
\
dir_unix.go
\
error_posix.go
\
file_posix.go
\
file_unix.go
\
path_unix.go
\
sys_bsd.go
\
exec_posix.go
\
exec_unix.go
\
signal_unix.go
\
GOFILES_openbsd
=
\
dir_unix.go
\
error_posix.go
\
...
...
src/pkg/os/exec/Makefile
View file @
728c16cf
...
...
@@ -17,6 +17,9 @@ GOFILES_darwin=\
GOFILES_linux
=
\
lp_unix.go
\
GOFILES_netbsd
=
\
lp_unix.go
\
GOFILES_openbsd
=
\
lp_unix.go
\
...
...
src/pkg/path/filepath/Makefile
View file @
728c16cf
...
...
@@ -18,6 +18,9 @@ GOFILES_darwin=\
GOFILES_linux
=
\
path_unix.go
GOFILES_netbsd
=
\
path_unix.go
GOFILES_openbsd
=
\
path_unix.go
...
...
src/pkg/runtime/Makefile
View file @
728c16cf
...
...
@@ -39,6 +39,9 @@ OFILES_freebsd=\
OFILES_linux
=
\
lock_futex.
$O
\
OFILES_netbsd
=
\
lock_sema.
$O
\
OFILES_openbsd
=
\
lock_sema.
$O
\
...
...
src/pkg/syscall/Makefile
View file @
728c16cf
...
...
@@ -45,6 +45,17 @@ GOFILES_linux=\
sockcmsg_unix.go
\
syscall_unix.go
\
GOFILES_netbsd
=
\
bpf_bsd.go
\
env_unix.go
\
exec_unix.go
\
route_bsd.go
\
route_netbsd.go
\
sockcmsg_unix.go
\
syscall_bsd.go
\
syscall_unix.go
\
zsysctl_netbsd.go
\
GOFILES_openbsd
=
\
bpf_bsd.go
\
env_unix.go
\
...
...
src/pkg/time/Makefile
View file @
728c16cf
...
...
@@ -25,6 +25,10 @@ GOFILES_linux=\
sys_unix.go
\
zoneinfo_unix.go
\
GOFILES_netbsd
=
\
sys_unix.go
\
zoneinfo_unix.go
\
GOFILES_openbsd
=
\
sys_unix.go
\
zoneinfo_unix.go
\
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment