OLD | NEW |
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 main | 5 package main |
6 | 6 |
7 import ( | 7 import ( |
8 "go/build" | 8 "go/build" |
9 "os" | 9 "os" |
10 "path/filepath" | 10 "path/filepath" |
(...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
217 b = append(b, ' ') | 217 b = append(b, ' ') |
218 } | 218 } |
219 default: | 219 default: |
220 space = false | 220 space = false |
221 b = append(b, c) | 221 b = append(b, c) |
222 } | 222 } |
223 } | 223 } |
224 return string(b) | 224 return string(b) |
225 } | 225 } |
226 | 226 |
| 227 // isGoTool is the list of directories for Go programs that are installed in |
| 228 // $GOROOT/bin/go-tool. |
| 229 var isGoTool = map[string]bool{ |
| 230 "cmd/fix": true, |
| 231 "cmd/vet": true, |
| 232 "cmd/yacc": true, |
| 233 } |
| 234 |
227 func scanPackage(ctxt *build.Context, t *build.Tree, arg, importPath, dir string
, stk *importStack) *Package { | 235 func scanPackage(ctxt *build.Context, t *build.Tree, arg, importPath, dir string
, stk *importStack) *Package { |
228 // Read the files in the directory to learn the structure | 236 // Read the files in the directory to learn the structure |
229 // of the package. | 237 // of the package. |
230 p := &Package{ | 238 p := &Package{ |
231 ImportPath: importPath, | 239 ImportPath: importPath, |
232 Dir: dir, | 240 Dir: dir, |
233 Standard: t.Goroot && !strings.Contains(importPath, "."), | 241 Standard: t.Goroot && !strings.Contains(importPath, "."), |
234 t: t, | 242 t: t, |
235 } | 243 } |
236 packageCache[dir] = p | 244 packageCache[dir] = p |
(...skipping 18 matching lines...) Expand all Loading... |
255 p.XTestGoFiles = info.XTestGoFiles | 263 p.XTestGoFiles = info.XTestGoFiles |
256 p.CFiles = info.CFiles | 264 p.CFiles = info.CFiles |
257 p.HFiles = info.HFiles | 265 p.HFiles = info.HFiles |
258 p.SFiles = info.SFiles | 266 p.SFiles = info.SFiles |
259 p.CgoFiles = info.CgoFiles | 267 p.CgoFiles = info.CgoFiles |
260 p.CgoCFLAGS = info.CgoCFLAGS | 268 p.CgoCFLAGS = info.CgoCFLAGS |
261 p.CgoLDFLAGS = info.CgoLDFLAGS | 269 p.CgoLDFLAGS = info.CgoLDFLAGS |
262 | 270 |
263 if info.Package == "main" { | 271 if info.Package == "main" { |
264 _, elem := filepath.Split(importPath) | 272 _, elem := filepath.Split(importPath) |
265 » » p.target = filepath.Join(t.BinDir(), elem) | 273 » » if t.Goroot && isGoTool[p.ImportPath] { |
| 274 » » » p.target = filepath.Join(t.Path, "bin/go-tool", elem) |
| 275 » » } else { |
| 276 » » » p.target = filepath.Join(t.BinDir(), elem) |
| 277 » » } |
266 if ctxt.GOOS == "windows" { | 278 if ctxt.GOOS == "windows" { |
267 p.target += ".exe" | 279 p.target += ".exe" |
268 } | 280 } |
269 } else { | 281 } else { |
270 p.target = filepath.Join(t.PkgDir(), filepath.FromSlash(importPa
th)+".a") | 282 p.target = filepath.Join(t.PkgDir(), filepath.FromSlash(importPa
th)+".a") |
271 } | 283 } |
272 | 284 |
273 // For gccgo, rewrite p.target with the expected library name. We won't
do | 285 // For gccgo, rewrite p.target with the expected library name. We won't
do |
274 // that for the standard library for the moment. | 286 // that for the standard library for the moment. |
275 if !p.Standard { | 287 if !p.Standard { |
(...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
446 // Only print each once. | 458 // Only print each once. |
447 if !printed[err] { | 459 if !printed[err] { |
448 printed[err] = true | 460 printed[err] = true |
449 errorf("%s", err) | 461 errorf("%s", err) |
450 } | 462 } |
451 } | 463 } |
452 } | 464 } |
453 exitIfErrors() | 465 exitIfErrors() |
454 return pkgs | 466 return pkgs |
455 } | 467 } |
OLD | NEW |