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

Unified 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
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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/cmd/go/build.go ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/cmd/go/pkg.go
===================================================================
--- a/src/cmd/go/pkg.go
+++ b/src/cmd/go/pkg.go
@@ -680,28 +680,13 @@
return false
}
- srcs := stringList(p.GoFiles, p.CFiles, p.CXXFiles, p.HFiles, p.SFiles, p.CgoFiles, p.SysoFiles)
+ srcs := stringList(p.GoFiles, p.CFiles, p.CXXFiles, p.HFiles, p.SFiles, p.CgoFiles, p.SysoFiles, p.SwigFiles, p.SwigCXXFiles)
for _, src := range srcs {
if olderThan(filepath.Join(p.Dir, src)) {
return true
}
}
- for _, src := range stringList(p.SwigFiles, p.SwigCXXFiles) {
- if olderThan(filepath.Join(p.Dir, src)) {
- return true
- }
- soname := p.swigSoname(src)
- fi, err := os.Stat(soname)
- if err != nil {
- return true
- }
- fiSrc, err := os.Stat(src)
- if err != nil || fiSrc.ModTime().After(fi.ModTime()) {
- return true
- }
- }
-
return false
}
« 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