[dev.cc] runtime: generate GOOS- and GOARCH-specific files with go generate
Eventually I'd like almost everything cmd/dist generates to be done with 'go generate' and checked in, to simplify the bootstrap process. The only thing cmd/dist really needs to do is write things like the current experiment info and the current version. This is a first step toward that. It replaces the _NaCl etc constants with generated ones goos_nacl, goos_darwin, goarch_386, and so on. LGTM=dave, austin R=austin, dave, bradfitz CC=golang-codereviews, iant, r https://golang.org/cl/174290043
Showing
src/runtime/gengoos.go
0 → 100644
src/runtime/zgoarch_386.go
0 → 100644
src/runtime/zgoarch_amd64.go
0 → 100644
src/runtime/zgoarch_arm.go
0 → 100644
src/runtime/zgoos_android.go
0 → 100644
src/runtime/zgoos_darwin.go
0 → 100644
src/runtime/zgoos_freebsd.go
0 → 100644
src/runtime/zgoos_linux.go
0 → 100644
src/runtime/zgoos_nacl.go
0 → 100644
src/runtime/zgoos_netbsd.go
0 → 100644
src/runtime/zgoos_openbsd.go
0 → 100644
src/runtime/zgoos_plan9.go
0 → 100644
src/runtime/zgoos_solaris.go
0 → 100644
src/runtime/zgoos_windows.go
0 → 100644
Please register or sign in to comment