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

Side by Side Diff: src/cmd/go/pkg.go

Issue 13352046: code review 13352046: cmd/go: build SWIG shared libraries in work directory (Closed)
Patch Set: diff -r 2d673b7f9c9e https://code.google.com/p/go Created 11 years, 6 months 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:
View unified diff | Download patch
« no previous file with comments | « src/cmd/go/build.go ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 "bytes" 8 "bytes"
9 "errors" 9 "errors"
10 "fmt" 10 "fmt"
(...skipping 662 matching lines...) Expand 10 before | Expand all | Expand 10 after
673 // package named on the command-line, assume it is up-to-date 673 // package named on the command-line, assume it is up-to-date
674 // no matter what the modification times on the source files indicate. 674 // no matter what the modification times on the source files indicate.
675 // This avoids rebuilding $GOROOT packages when people are 675 // This avoids rebuilding $GOROOT packages when people are
676 // working outside the Go root, and it effectively makes each tree 676 // working outside the Go root, and it effectively makes each tree
677 // listed in $GOPATH a separate compilation world. 677 // listed in $GOPATH a separate compilation world.
678 // See issue 3149. 678 // See issue 3149.
679 if p.Root != "" && !topRoot[p.Root] { 679 if p.Root != "" && !topRoot[p.Root] {
680 return false 680 return false
681 } 681 }
682 682
683 » srcs := stringList(p.GoFiles, p.CFiles, p.CXXFiles, p.HFiles, p.SFiles, p.CgoFiles, p.SysoFiles) 683 » srcs := stringList(p.GoFiles, p.CFiles, p.CXXFiles, p.HFiles, p.SFiles, p.CgoFiles, p.SysoFiles, p.SwigFiles, p.SwigCXXFiles)
684 for _, src := range srcs { 684 for _, src := range srcs {
685 if olderThan(filepath.Join(p.Dir, src)) { 685 if olderThan(filepath.Join(p.Dir, src)) {
686 return true 686 return true
687 } 687 }
688 } 688 }
689 689
690 for _, src := range stringList(p.SwigFiles, p.SwigCXXFiles) {
691 if olderThan(filepath.Join(p.Dir, src)) {
692 return true
693 }
694 soname := p.swigSoname(src)
695 fi, err := os.Stat(soname)
696 if err != nil {
697 return true
698 }
699 fiSrc, err := os.Stat(src)
700 if err != nil || fiSrc.ModTime().After(fi.ModTime()) {
701 return true
702 }
703 }
704
705 return false 690 return false
706 } 691 }
707 692
708 var cwd, _ = os.Getwd() 693 var cwd, _ = os.Getwd()
709 694
710 var cmdCache = map[string]*Package{} 695 var cmdCache = map[string]*Package{}
711 696
712 // loadPackage is like loadImport but is used for command-line arguments, 697 // loadPackage is like loadImport but is used for command-line arguments,
713 // not for paths found in import statements. In addition to ordinary import pat hs, 698 // not for paths found in import statements. In addition to ordinary import pat hs,
714 // loadPackage accepts pseudo-paths beginning with cmd/ to denote commands 699 // loadPackage accepts pseudo-paths beginning with cmd/ to denote commands
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after
865 root = filepath.Clean(root) 850 root = filepath.Clean(root)
866 if !strings.HasSuffix(root, sep) { 851 if !strings.HasSuffix(root, sep) {
867 root += sep 852 root += sep
868 } 853 }
869 dir = filepath.Clean(dir) 854 dir = filepath.Clean(dir)
870 if !strings.HasPrefix(dir, root) { 855 if !strings.HasPrefix(dir, root) {
871 return "", false 856 return "", false
872 } 857 }
873 return filepath.ToSlash(dir[len(root):]), true 858 return filepath.ToSlash(dir[len(root):]), true
874 } 859 }
OLDNEW
« no previous file with comments | « src/cmd/go/build.go ('k') | no next file » | no next file with comments »

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