LEFT | RIGHT |
(no file at all) | |
1 // Copyright 2011 The Go Authors. All rights reserved. | 1 // Copyright 2011 The Go Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style | 2 // Use of this source code is governed by a BSD-style |
3 // license that can be found in the LICENSE file. | 3 // license that can be found in the LICENSE file. |
4 | 4 |
5 package build | 5 package build |
6 | 6 |
7 import ( | 7 import ( |
8 "bytes" | 8 "bytes" |
9 "errors" | 9 "errors" |
10 "fmt" | 10 "fmt" |
(...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
203 } | 203 } |
204 } | 204 } |
205 return all | 205 return all |
206 } | 206 } |
207 | 207 |
208 // Default is the default Context for builds. | 208 // Default is the default Context for builds. |
209 // It uses the GOARCH, GOOS, GOROOT, and GOPATH environment variables | 209 // It uses the GOARCH, GOOS, GOROOT, and GOPATH environment variables |
210 // if set, or else the compiled code's GOARCH, GOOS, and GOROOT. | 210 // if set, or else the compiled code's GOARCH, GOOS, and GOROOT. |
211 var Default Context = defaultContext() | 211 var Default Context = defaultContext() |
212 | 212 |
| 213 // This list is also known to ../../../cmd/dist/build.c. |
213 var cgoEnabled = map[string]bool{ | 214 var cgoEnabled = map[string]bool{ |
214 "darwin/386": true, | 215 "darwin/386": true, |
215 "darwin/amd64": true, | 216 "darwin/amd64": true, |
216 "linux/386": true, | 217 "linux/386": true, |
217 "linux/amd64": true, | 218 "linux/amd64": true, |
218 "freebsd/386": true, | 219 "freebsd/386": true, |
219 "freebsd/amd64": true, | 220 "freebsd/amd64": true, |
220 "windows/386": true, | 221 "windows/386": true, |
221 "windows/amd64": true, | 222 "windows/amd64": true, |
222 } | 223 } |
(...skipping 736 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
959 switch goarch { | 960 switch goarch { |
960 case "386": | 961 case "386": |
961 return "8", nil | 962 return "8", nil |
962 case "amd64": | 963 case "amd64": |
963 return "6", nil | 964 return "6", nil |
964 case "arm": | 965 case "arm": |
965 return "5", nil | 966 return "5", nil |
966 } | 967 } |
967 return "", errors.New("unsupported GOARCH " + goarch) | 968 return "", errors.New("unsupported GOARCH " + goarch) |
968 } | 969 } |
LEFT | RIGHT |