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 "bytes" | 8 "bytes" |
9 "errors" | 9 "errors" |
10 "fmt" | 10 "fmt" |
(...skipping 662 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 Loading... |
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 } |
OLD | NEW |