Skip to content

Commit 450848d

Browse files
committed
tools/cross_compile: faster build times
1 parent 3e4a071 commit 450848d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/cross_compile.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ func main() {
5757

5858
// build
5959
fmt.Printf("Building %s...", out)
60-
output, err := exec.Command("go", "build", "-o", out).CombinedOutput()
60+
output, err := exec.Command("go", "build", "-i", "-o", out).CombinedOutput()
6161
if err != nil {
6262
fmt.Printf("\n%s\n", output)
6363
} else {

0 commit comments

Comments
 (0)