summaryrefslogtreecommitdiff
path: root/src/syscall/env_unix.go
diff options
context:
space:
mode:
authorClément Chigot <clement.chigot@atos.net>2018-09-28 15:29:58 +0200
committerIan Lance Taylor <iant@golang.org>2018-10-10 04:29:55 +0000
commit8f9902da269c08ad9a741d828d7f6781f56a7a42 (patch)
tree8ec446fcaa96969b155cc22d45183b397da775f6 /src/syscall/env_unix.go
parentc870d56f98eab5370726afd223fe0ab14d9e88ab (diff)
downloadgo-git-8f9902da269c08ad9a741d828d7f6781f56a7a42.tar.gz
syscall: add AIX operating system
This commit adds AIX operating system to syscall package for ppc64 architecture. It also adds the file syscall_aix.go in the runtime package for syscalls needed during fork and exec. Updates: #25893 Change-Id: I301b1051b178a3efb7bbc39cdbd8e00b594d65ef Reviewed-on: https://go-review.googlesource.com/c/138720 Run-TryBot: Ian Lance Taylor <iant@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Ian Lance Taylor <iant@golang.org>
Diffstat (limited to 'src/syscall/env_unix.go')
-rw-r--r--src/syscall/env_unix.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/syscall/env_unix.go b/src/syscall/env_unix.go
index 1ebc0b17f2..0b6b711a8f 100644
--- a/src/syscall/env_unix.go
+++ b/src/syscall/env_unix.go
@@ -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 dragonfly freebsd js,wasm linux nacl netbsd openbsd solaris
+// +build aix darwin dragonfly freebsd js,wasm linux nacl netbsd openbsd solaris
// Unix environment variables.