Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(4460)

Delta Between Two Patch Sets: src/pkg/go/build/build.go

Issue 5731048: code review 5731048: misc/cgo: re-enable some tests (Closed)
Left Patch Set: diff -r 99a66fff2af2 https://code.google.com/p/go/ Created 13 years, 1 month ago
Right Patch Set: diff -r 61a5159136af https://code.google.com/p/go/ Created 13 years, 1 month ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
Right: Side by side diff | Download
« no previous file with change/comment | « src/cmd/dist/build.c ('k') | src/run.bash » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
(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
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
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 }
LEFTRIGHT

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b