1
0
Эх сурвалжийг харах

Correctly set GOARM on ARM builds

Jakob Borg 11 жил өмнө
parent
commit
dda0390156
1 өөрчлөгдсөн 2 нэмэгдсэн , 0 устгасан
  1. 2 0
      build.go

+ 2 - 0
build.go

@@ -158,6 +158,7 @@ func test(pkg string) {
 
 func install(pkg string) {
 	os.Setenv("GOBIN", "./bin")
+	setBuildEnv()
 	runPrint("godep", "go", "install", "-ldflags", ldflags(), pkg)
 }
 
@@ -212,6 +213,7 @@ func setBuildEnv() {
 	os.Setenv("GOOS", goos)
 	if strings.HasPrefix(goarch, "arm") {
 		os.Setenv("GOARCH", "arm")
+		os.Setenv("GOARM", goarch[4:])
 	} else {
 		os.Setenv("GOARCH", goarch)
 	}