summaryrefslogtreecommitdiff
path: root/src/lib9
diff options
context:
space:
mode:
authorJoel Sing <jsing@google.com>2013-08-24 01:18:04 +1000
committerJoel Sing <jsing@google.com>2013-08-24 01:18:04 +1000
commite4359c6c3e34692c5784ccb7f34c42ded6607358 (patch)
tree34c9edb41ec4280a598e026b9472f50b0098437f /src/lib9
parent730c50ac8c44d92b2bb3c21c20ab7e25aa56c1c3 (diff)
downloadgo-e4359c6c3e34692c5784ccb7f34c42ded6607358.tar.gz
all: compiler/bootstrap for dragonfly/amd64
Add dragonfly/amd64 support to the Go compiler, bootstrap and GOOS list. R=devon.odell, bradfitz CC=golang-dev https://codereview.appspot.com/12796050
Diffstat (limited to 'src/lib9')
-rw-r--r--src/lib9/run_unix.c2
-rw-r--r--src/lib9/tempdir_unix.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/lib9/run_unix.c b/src/lib9/run_unix.c
index c26cf0afb..3db33c76e 100644
--- a/src/lib9/run_unix.c
+++ b/src/lib9/run_unix.c
@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
-// +build darwin freebsd linux netbsd openbsd
+// +build darwin dragonfly freebsd linux netbsd openbsd
#include <u.h>
#include <errno.h>
diff --git a/src/lib9/tempdir_unix.c b/src/lib9/tempdir_unix.c
index 99a7092b6..3ce87751b 100644
--- a/src/lib9/tempdir_unix.c
+++ b/src/lib9/tempdir_unix.c
@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
-// +build darwin freebsd linux netbsd openbsd
+// +build darwin dragonfly freebsd linux netbsd openbsd
#include <u.h>
#include <dirent.h>