Devon H. O'Dell | 553be84 | 2009-11-14 15:29:09 -0800 | [diff] [blame] | 1 | #!/usr/bin/env bash |
Russ Cox | 602a446 | 2009-06-01 22:14:57 -0700 | [diff] [blame] | 2 | # Copyright 2009 The Go Authors. All rights reserved. |
| 3 | # Use of this source code is governed by a BSD-style |
| 4 | # license that can be found in the LICENSE file. |
| 5 | |
| 6 | # The syscall package provides access to the raw system call |
| 7 | # interface of the underlying operating system. Porting Go to |
| 8 | # a new architecture/operating system combination requires |
| 9 | # some manual effort, though there are tools that automate |
| 10 | # much of the process. The auto-generated files have names |
| 11 | # beginning with z. |
| 12 | # |
Russ Cox | fd1add2 | 2009-11-01 11:13:27 -0800 | [diff] [blame] | 13 | # This script runs or (given -n) prints suggested commands to generate z files |
Russ Cox | 602a446 | 2009-06-01 22:14:57 -0700 | [diff] [blame] | 14 | # for the current system. Running those commands is not automatic. |
| 15 | # This script is documentation more than anything else. |
| 16 | # |
| 17 | # * asm_${GOOS}_${GOARCH}.s |
| 18 | # |
| 19 | # This hand-written assembly file implements system call dispatch. |
| 20 | # There are three entry points: |
| 21 | # |
| 22 | # func Syscall(trap, a1, a2, a3 uintptr) (r1, r2, err uintptr); |
| 23 | # func Syscall6(trap, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2, err uintptr); |
| 24 | # func RawSyscall(trap, a1, a2, a3 uintptr) (r1, r2, err uintptr); |
| 25 | # |
| 26 | # The first and second are the standard ones; they differ only in |
| 27 | # how many arguments can be passed to the kernel. |
| 28 | # The third is for low-level use by the ForkExec wrapper; |
| 29 | # unlike the first two, it does not call into the scheduler to |
| 30 | # let it know that a system call is running. |
| 31 | # |
| 32 | # * syscall_${GOOS}.go |
| 33 | # |
| 34 | # This hand-written Go file implements system calls that need |
| 35 | # special handling and lists "//sys" comments giving prototypes |
| 36 | # for ones that can be auto-generated. Mksyscall reads those |
| 37 | # comments to generate the stubs. |
| 38 | # |
| 39 | # * syscall_${GOOS}_${GOARCH}.go |
| 40 | # |
| 41 | # Same as syscall_${GOOS}.go except that it contains code specific |
| 42 | # to ${GOOS} on one particular architecture. |
| 43 | # |
| 44 | # * types_${GOOS}.c |
| 45 | # |
| 46 | # This hand-written C file includes standard C headers and then |
| 47 | # creates typedef or enum names beginning with a dollar sign |
| 48 | # (use of $ in variable names is a gcc extension). The hardest |
| 49 | # part about preparing this file is figuring out which headers to |
| 50 | # include and which symbols need to be #defined to get the |
| 51 | # actual data structures that pass through to the kernel system calls. |
| 52 | # Some C libraries present alternate versions for binary compatibility |
| 53 | # and translate them on the way in and out of system calls, but |
| 54 | # there is almost always a #define that can get the real ones. |
| 55 | # See types_darwin.c and types_linux.c for examples. |
| 56 | # |
Russ Cox | 602a446 | 2009-06-01 22:14:57 -0700 | [diff] [blame] | 57 | # * zerror_${GOOS}_${GOARCH}.go |
| 58 | # |
| 59 | # This machine-generated file defines the system's error numbers, |
Rob Pike | cd32498 | 2009-08-13 13:22:37 -0700 | [diff] [blame] | 60 | # error strings, and signal numbers. The generator is "mkerrors.sh". |
| 61 | # Usually no arguments are needed, but mkerrors.sh will pass its |
Russ Cox | 602a446 | 2009-06-01 22:14:57 -0700 | [diff] [blame] | 62 | # arguments on to godefs. |
| 63 | # |
| 64 | # * zsyscall_${GOOS}_${GOARCH}.go |
| 65 | # |
Rob Pike | 319a8c4 | 2011-03-21 13:02:10 -0700 | [diff] [blame] | 66 | # Generated by mksyscall.pl; see syscall_${GOOS}.go above. |
Russ Cox | 602a446 | 2009-06-01 22:14:57 -0700 | [diff] [blame] | 67 | # |
| 68 | # * zsysnum_${GOOS}_${GOARCH}.go |
| 69 | # |
| 70 | # Generated by mksysnum_${GOOS}. |
| 71 | # |
| 72 | # * ztypes_${GOOS}_${GOARCH}.go |
| 73 | # |
| 74 | # Generated by godefs; see types_${GOOS}.c above. |
| 75 | |
| 76 | GOOSARCH="${GOOS}_${GOARCH}" |
| 77 | |
| 78 | # defaults |
Rob Pike | 319a8c4 | 2011-03-21 13:02:10 -0700 | [diff] [blame] | 79 | mksyscall="./mksyscall.pl" |
Alex Brainman | 8c24fa9 | 2010-03-17 20:07:14 -0700 | [diff] [blame] | 80 | mkerrors="./mkerrors.sh" |
Alex Brainman | e71fc0c | 2011-07-07 10:40:45 +1000 | [diff] [blame] | 81 | zerrors="zerrors_$GOOSARCH.go" |
Joel Sing | 773a921 | 2011-11-17 23:13:49 +1100 | [diff] [blame] | 82 | mksysctl="" |
| 83 | zsysctl="zsysctl_$GOOSARCH.go" |
Alex Brainman | c07ca77 | 2014-03-11 16:36:14 +1100 | [diff] [blame] | 84 | mksysnum= |
| 85 | mktypes= |
Russ Cox | fd1add2 | 2009-11-01 11:13:27 -0800 | [diff] [blame] | 86 | run="sh" |
| 87 | |
| 88 | case "$1" in |
Russ Cox | 48ae1f2 | 2011-04-06 17:52:02 -0400 | [diff] [blame] | 89 | -syscalls) |
| 90 | for i in zsyscall*go |
| 91 | do |
Han-Wen Nienhuys | 4dc85d6 | 2012-07-29 17:59:14 -0400 | [diff] [blame] | 92 | sed 1q $i | sed 's;^// ;;' | sh > _$i && gofmt < _$i > $i |
| 93 | rm _$i |
Russ Cox | 48ae1f2 | 2011-04-06 17:52:02 -0400 | [diff] [blame] | 94 | done |
| 95 | exit 0 |
| 96 | ;; |
Russ Cox | fd1add2 | 2009-11-01 11:13:27 -0800 | [diff] [blame] | 97 | -n) |
| 98 | run="cat" |
| 99 | shift |
| 100 | esac |
| 101 | |
| 102 | case "$#" in |
| 103 | 0) |
| 104 | ;; |
| 105 | *) |
| 106 | echo 'usage: mkall.sh [-n]' 1>&2 |
| 107 | exit 2 |
| 108 | esac |
Russ Cox | 602a446 | 2009-06-01 22:14:57 -0700 | [diff] [blame] | 109 | |
Shenghou Ma | c74a4d4 | 2014-08-12 19:49:31 -0400 | [diff] [blame] | 110 | GOOSARCH_in=syscall_$GOOSARCH.go |
Russ Cox | 602a446 | 2009-06-01 22:14:57 -0700 | [diff] [blame] | 111 | case "$GOOSARCH" in |
| 112 | _* | *_ | _) |
| 113 | echo 'undefined $GOOS_$GOARCH:' "$GOOSARCH" 1>&2 |
| 114 | exit 1 |
| 115 | ;; |
| 116 | darwin_386) |
Russ Cox | dd2abe5 | 2011-11-10 19:08:28 -0500 | [diff] [blame] | 117 | mkerrors="$mkerrors -m32" |
Rob Pike | 319a8c4 | 2011-03-21 13:02:10 -0700 | [diff] [blame] | 118 | mksyscall="./mksyscall.pl -l32" |
Jeff Hodges | 0ce57a7 | 2011-06-14 12:56:46 -0400 | [diff] [blame] | 119 | mksysnum="./mksysnum_darwin.pl /usr/include/sys/syscall.h" |
Mikio Hara | 44122ed | 2012-02-03 12:22:40 +0900 | [diff] [blame] | 120 | mktypes="GOARCH=$GOARCH go tool cgo -godefs" |
Russ Cox | 602a446 | 2009-06-01 22:14:57 -0700 | [diff] [blame] | 121 | ;; |
| 122 | darwin_amd64) |
Russ Cox | dd2abe5 | 2011-11-10 19:08:28 -0500 | [diff] [blame] | 123 | mkerrors="$mkerrors -m64" |
Jeff Hodges | 0ce57a7 | 2011-06-14 12:56:46 -0400 | [diff] [blame] | 124 | mksysnum="./mksysnum_darwin.pl /usr/include/sys/syscall.h" |
Mikio Hara | 44122ed | 2012-02-03 12:22:40 +0900 | [diff] [blame] | 125 | mktypes="GOARCH=$GOARCH go tool cgo -godefs" |
Russ Cox | 602a446 | 2009-06-01 22:14:57 -0700 | [diff] [blame] | 126 | ;; |
Joel Sing | 465ba6b | 2013-08-31 09:32:07 -0700 | [diff] [blame] | 127 | dragonfly_386) |
| 128 | mkerrors="$mkerrors -m32" |
| 129 | mksyscall="./mksyscall.pl -l32 -dragonfly" |
| 130 | mksysnum="curl -s 'http://gitweb.dragonflybsd.org/dragonfly.git/blob_plain/HEAD:/sys/kern/syscalls.master' | ./mksysnum_dragonfly.pl" |
| 131 | mktypes="GOARCH=$GOARCH go tool cgo -godefs" |
| 132 | ;; |
Joel Sing | 8f3f4c9 | 2013-08-24 01:51:25 +1000 | [diff] [blame] | 133 | dragonfly_amd64) |
| 134 | mkerrors="$mkerrors -m64" |
| 135 | mksyscall="./mksyscall.pl -dragonfly" |
| 136 | mksysnum="curl -s 'http://gitweb.dragonflybsd.org/dragonfly.git/blob_plain/HEAD:/sys/kern/syscalls.master' | ./mksysnum_dragonfly.pl" |
| 137 | mktypes="GOARCH=$GOARCH go tool cgo -godefs" |
| 138 | ;; |
Mikio Hara | 055b4f7 | 2011-12-16 19:51:25 +0900 | [diff] [blame] | 139 | freebsd_386) |
| 140 | mkerrors="$mkerrors -m32" |
| 141 | mksyscall="./mksyscall.pl -l32" |
Mikio Hara | 737efeb | 2014-03-04 09:26:01 +0900 | [diff] [blame] | 142 | mksysnum="curl -s 'http://svn.freebsd.org/base/stable/10/sys/kern/syscalls.master' | ./mksysnum_freebsd.pl" |
Mikio Hara | 44122ed | 2012-02-03 12:22:40 +0900 | [diff] [blame] | 143 | mktypes="GOARCH=$GOARCH go tool cgo -godefs" |
Mikio Hara | 055b4f7 | 2011-12-16 19:51:25 +0900 | [diff] [blame] | 144 | ;; |
| 145 | freebsd_amd64) |
| 146 | mkerrors="$mkerrors -m64" |
Mikio Hara | 737efeb | 2014-03-04 09:26:01 +0900 | [diff] [blame] | 147 | mksysnum="curl -s 'http://svn.freebsd.org/base/stable/10/sys/kern/syscalls.master' | ./mksysnum_freebsd.pl" |
Mikio Hara | 44122ed | 2012-02-03 12:22:40 +0900 | [diff] [blame] | 148 | mktypes="GOARCH=$GOARCH go tool cgo -godefs" |
Mikio Hara | 055b4f7 | 2011-12-16 19:51:25 +0900 | [diff] [blame] | 149 | ;; |
Shenghou Ma | 378d7ef | 2012-10-12 16:26:42 +0800 | [diff] [blame] | 150 | freebsd_arm) |
| 151 | mkerrors="$mkerrors" |
| 152 | mksyscall="./mksyscall.pl -l32 -arm" |
Mikio Hara | 737efeb | 2014-03-04 09:26:01 +0900 | [diff] [blame] | 153 | mksysnum="curl -s 'http://svn.freebsd.org/base/stable/10/sys/kern/syscalls.master' | ./mksysnum_freebsd.pl" |
Mikio Hara | 546081f | 2014-02-07 10:23:53 +0900 | [diff] [blame] | 154 | # Let the type of C char be singed for making the bare syscall |
| 155 | # API consistent across over platforms. |
| 156 | mktypes="GOARCH=$GOARCH go tool cgo -godefs -- -fsigned-char" |
Shenghou Ma | 378d7ef | 2012-10-12 16:26:42 +0800 | [diff] [blame] | 157 | ;; |
Russ Cox | 802d6d4 | 2009-06-04 13:33:40 -0700 | [diff] [blame] | 158 | linux_386) |
Russ Cox | dd2abe5 | 2011-11-10 19:08:28 -0500 | [diff] [blame] | 159 | mkerrors="$mkerrors -m32" |
Rob Pike | 319a8c4 | 2011-03-21 13:02:10 -0700 | [diff] [blame] | 160 | mksyscall="./mksyscall.pl -l32" |
| 161 | mksysnum="./mksysnum_linux.pl /usr/include/asm/unistd_32.h" |
Mikio Hara | 44122ed | 2012-02-03 12:22:40 +0900 | [diff] [blame] | 162 | mktypes="GOARCH=$GOARCH go tool cgo -godefs" |
Russ Cox | 802d6d4 | 2009-06-04 13:33:40 -0700 | [diff] [blame] | 163 | ;; |
Russ Cox | 602a446 | 2009-06-01 22:14:57 -0700 | [diff] [blame] | 164 | linux_amd64) |
Brad Fitzpatrick | fc39363 | 2012-12-11 12:03:18 -0500 | [diff] [blame] | 165 | unistd_h=$(ls -1 /usr/include/asm/unistd_64.h /usr/include/x86_64-linux-gnu/asm/unistd_64.h 2>/dev/null | head -1) |
| 166 | if [ "$unistd_h" = "" ]; then |
| 167 | echo >&2 cannot find unistd_64.h |
| 168 | exit 1 |
| 169 | fi |
Russ Cox | dd2abe5 | 2011-11-10 19:08:28 -0500 | [diff] [blame] | 170 | mkerrors="$mkerrors -m64" |
Brad Fitzpatrick | fc39363 | 2012-12-11 12:03:18 -0500 | [diff] [blame] | 171 | mksysnum="./mksysnum_linux.pl $unistd_h" |
Mikio Hara | 44122ed | 2012-02-03 12:22:40 +0900 | [diff] [blame] | 172 | mktypes="GOARCH=$GOARCH go tool cgo -godefs" |
Russ Cox | 602a446 | 2009-06-01 22:14:57 -0700 | [diff] [blame] | 173 | ;; |
Kai Backman | e5c884f | 2009-10-01 06:55:01 -0700 | [diff] [blame] | 174 | linux_arm) |
Kai Backman | 534dbc7 | 2010-08-23 13:25:14 +0300 | [diff] [blame] | 175 | mkerrors="$mkerrors" |
Shenghou Ma | 6e21122 | 2012-03-06 03:12:11 +0800 | [diff] [blame] | 176 | mksyscall="./mksyscall.pl -l32 -arm" |
Rémy Oudompheng | 4a7a72b | 2013-08-22 00:59:48 +0200 | [diff] [blame] | 177 | mksysnum="curl -s 'http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/plain/arch/arm/include/uapi/asm/unistd.h' | ./mksysnum_linux.pl" |
Mikio Hara | 44122ed | 2012-02-03 12:22:40 +0900 | [diff] [blame] | 178 | mktypes="GOARCH=$GOARCH go tool cgo -godefs" |
Kai Backman | e5c884f | 2009-10-01 06:55:01 -0700 | [diff] [blame] | 179 | ;; |
Russ Cox | 09d92b6 | 2014-12-05 19:13:20 -0500 | [diff] [blame] | 180 | linux_ppc64) |
| 181 | GOOSARCH_in=syscall_linux_ppc64x.go |
Shenghou Ma | c74a4d4 | 2014-08-12 19:49:31 -0400 | [diff] [blame] | 182 | unistd_h=/usr/include/asm/unistd.h |
| 183 | mkerrors="$mkerrors -m64" |
| 184 | mksysnum="./mksysnum_linux.pl $unistd_h" |
| 185 | mktypes="GOARCH=$GOARCH go tool cgo -godefs" |
| 186 | ;; |
Russ Cox | 09d92b6 | 2014-12-05 19:13:20 -0500 | [diff] [blame] | 187 | linux_ppc64le) |
| 188 | GOOSARCH_in=syscall_linux_ppc64x.go |
Shenghou Ma | c74a4d4 | 2014-08-12 19:49:31 -0400 | [diff] [blame] | 189 | unistd_h=/usr/include/powerpc64le-linux-gnu/asm/unistd.h |
| 190 | mkerrors="$mkerrors -m64" |
| 191 | mksysnum="./mksysnum_linux.pl $unistd_h" |
| 192 | mktypes="GOARCH=$GOARCH go tool cgo -godefs" |
| 193 | ;; |
Dave Cheney | 7c8280c | 2014-02-25 09:47:42 -0500 | [diff] [blame] | 194 | nacl_386) |
| 195 | mkerrors="" |
| 196 | mksyscall="./mksyscall.pl -l32 -nacl" |
| 197 | mksysnum="" |
| 198 | mktypes="" |
| 199 | ;; |
| 200 | nacl_amd64p32) |
| 201 | mkerrors="" |
| 202 | mksyscall="./mksyscall.pl -nacl" |
| 203 | mksysnum="" |
| 204 | mktypes="" |
| 205 | ;; |
Christopher Nielsen | 5425db8 | 2011-12-20 03:57:58 +1100 | [diff] [blame] | 206 | netbsd_386) |
| 207 | mkerrors="$mkerrors -m32" |
| 208 | mksyscall="./mksyscall.pl -l32 -netbsd" |
| 209 | mksysnum="curl -s 'http://cvsweb.netbsd.org/bsdweb.cgi/~checkout~/src/sys/kern/syscalls.master' | ./mksysnum_netbsd.pl" |
Mikio Hara | 44122ed | 2012-02-03 12:22:40 +0900 | [diff] [blame] | 210 | mktypes="GOARCH=$GOARCH go tool cgo -godefs" |
Christopher Nielsen | 5425db8 | 2011-12-20 03:57:58 +1100 | [diff] [blame] | 211 | ;; |
| 212 | netbsd_amd64) |
| 213 | mkerrors="$mkerrors -m64" |
| 214 | mksyscall="./mksyscall.pl -netbsd" |
| 215 | mksysnum="curl -s 'http://cvsweb.netbsd.org/bsdweb.cgi/~checkout~/src/sys/kern/syscalls.master' | ./mksysnum_netbsd.pl" |
Mikio Hara | 44122ed | 2012-02-03 12:22:40 +0900 | [diff] [blame] | 216 | mktypes="GOARCH=$GOARCH go tool cgo -godefs" |
Christopher Nielsen | 5425db8 | 2011-12-20 03:57:58 +1100 | [diff] [blame] | 217 | ;; |
Joel Sing | 88e984f | 2011-08-29 10:04:28 -0400 | [diff] [blame] | 218 | openbsd_386) |
Russ Cox | dd2abe5 | 2011-11-10 19:08:28 -0500 | [diff] [blame] | 219 | mkerrors="$mkerrors -m32" |
Joel Sing | 88e984f | 2011-08-29 10:04:28 -0400 | [diff] [blame] | 220 | mksyscall="./mksyscall.pl -l32 -openbsd" |
Joel Sing | 773a921 | 2011-11-17 23:13:49 +1100 | [diff] [blame] | 221 | mksysctl="./mksysctl_openbsd.pl" |
| 222 | zsysctl="zsysctl_openbsd.go" |
Joel Sing | 88e984f | 2011-08-29 10:04:28 -0400 | [diff] [blame] | 223 | mksysnum="curl -s 'http://www.openbsd.org/cgi-bin/cvsweb/~checkout~/src/sys/kern/syscalls.master' | ./mksysnum_openbsd.pl" |
Mikio Hara | 44122ed | 2012-02-03 12:22:40 +0900 | [diff] [blame] | 224 | mktypes="GOARCH=$GOARCH go tool cgo -godefs" |
Joel Sing | 88e984f | 2011-08-29 10:04:28 -0400 | [diff] [blame] | 225 | ;; |
Joel Sing | bf2d403 | 2011-08-22 23:24:32 -0400 | [diff] [blame] | 226 | openbsd_amd64) |
Russ Cox | dd2abe5 | 2011-11-10 19:08:28 -0500 | [diff] [blame] | 227 | mkerrors="$mkerrors -m64" |
Joel Sing | bf2d403 | 2011-08-22 23:24:32 -0400 | [diff] [blame] | 228 | mksyscall="./mksyscall.pl -openbsd" |
Joel Sing | 773a921 | 2011-11-17 23:13:49 +1100 | [diff] [blame] | 229 | mksysctl="./mksysctl_openbsd.pl" |
| 230 | zsysctl="zsysctl_openbsd.go" |
Joel Sing | bf2d403 | 2011-08-22 23:24:32 -0400 | [diff] [blame] | 231 | mksysnum="curl -s 'http://www.openbsd.org/cgi-bin/cvsweb/~checkout~/src/sys/kern/syscalls.master' | ./mksysnum_openbsd.pl" |
Mikio Hara | 44122ed | 2012-02-03 12:22:40 +0900 | [diff] [blame] | 232 | mktypes="GOARCH=$GOARCH go tool cgo -godefs" |
Joel Sing | bf2d403 | 2011-08-22 23:24:32 -0400 | [diff] [blame] | 233 | ;; |
Mikio Hara | 055b4f7 | 2011-12-16 19:51:25 +0900 | [diff] [blame] | 234 | plan9_386) |
| 235 | mkerrors= |
| 236 | mksyscall="./mksyscall.pl -l32 -plan9" |
| 237 | mksysnum="./mksysnum_plan9.sh /n/sources/plan9/sys/src/libc/9syscall/sys.h" |
| 238 | mktypes="XXX" |
| 239 | ;; |
Aram Hăvărneanu | 1c98619 | 2014-02-25 21:12:10 +1100 | [diff] [blame] | 240 | solaris_amd64) |
| 241 | mksyscall="./mksyscall_solaris.pl" |
| 242 | mkerrors="$mkerrors -m64" |
| 243 | mksysnum= |
| 244 | mktypes="GOARCH=$GOARCH go tool cgo -godefs" |
| 245 | ;; |
Alex Brainman | c07ca77 | 2014-03-11 16:36:14 +1100 | [diff] [blame] | 246 | windows_*) |
Alex Brainman | d00024b | 2014-12-22 16:54:07 +1100 | [diff] [blame] | 247 | echo 'run "go generate syscall_windows.go" instead' 1>&2 |
| 248 | exit 1 |
Mikio Hara | 055b4f7 | 2011-12-16 19:51:25 +0900 | [diff] [blame] | 249 | ;; |
Russ Cox | 602a446 | 2009-06-01 22:14:57 -0700 | [diff] [blame] | 250 | *) |
| 251 | echo 'unrecognized $GOOS_$GOARCH: ' "$GOOSARCH" 1>&2 |
| 252 | exit 1 |
| 253 | ;; |
| 254 | esac |
| 255 | |
Russ Cox | fd1add2 | 2009-11-01 11:13:27 -0800 | [diff] [blame] | 256 | ( |
Alex Brainman | e71fc0c | 2011-07-07 10:40:45 +1000 | [diff] [blame] | 257 | if [ -n "$mkerrors" ]; then echo "$mkerrors |gofmt >$zerrors"; fi |
Alex Brainman | d00024b | 2014-12-22 16:54:07 +1100 | [diff] [blame] | 258 | syscall_goos="syscall_$GOOS.go" |
| 259 | case "$GOOS" in |
| 260 | darwin | dragonfly | freebsd | netbsd | openbsd) |
| 261 | syscall_goos="syscall_bsd.go $syscall_goos" |
| 262 | ;; |
| 263 | esac |
| 264 | if [ -n "$mksyscall" ]; then echo "$mksyscall $syscall_goos syscall_$GOOSARCH.go |gofmt >zsyscall_$GOOSARCH.go"; fi |
Joel Sing | 773a921 | 2011-11-17 23:13:49 +1100 | [diff] [blame] | 265 | if [ -n "$mksysctl" ]; then echo "$mksysctl |gofmt >$zsysctl"; fi |
Alex Brainman | 5e6203d | 2010-03-16 23:10:07 -0700 | [diff] [blame] | 266 | if [ -n "$mksysnum" ]; then echo "$mksysnum |gofmt >zsysnum_$GOOSARCH.go"; fi |
Russ Cox | dd2abe5 | 2011-11-10 19:08:28 -0500 | [diff] [blame] | 267 | if [ -n "$mktypes" ]; then echo "$mktypes types_$GOOS.go |gofmt >ztypes_$GOOSARCH.go"; fi |
Russ Cox | fd1add2 | 2009-11-01 11:13:27 -0800 | [diff] [blame] | 268 | ) | $run |