We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db11df2 commit 4ab2deaCopy full SHA for 4ab2dea
Makefile
@@ -54,7 +54,8 @@ $(BUILDLOC)/linux/$(GIN): $(SOURCES)
54
GOOS=linux GOARCH=amd64 go build -o $(BUILDLOC)/linux/$(GIN) $(LDFLAGS)
55
56
$(BUILDLOC)/windows/$(GIN).exe: $(SOURCES)
57
- GOOS=windows GOARCH=386 go build -o $(BUILDLOC)/windows/$(GIN).exe $(LDFLAGS)
+ GOOS=windows GOARCH=386 go build -o $(BUILDLOC)/windows32/$(GIN).exe $(LDFLAGS)
58
+ GOOS=windows GOARCH=amd64 go build -o $(BUILDLOC)/windows64/$(GIN).exe $(LDFLAGS)
59
60
$(BUILDLOC)/darwin/$(GIN): $(SOURCES)
61
GOOS=darwin GOARCH=amd64 go build -o $(BUILDLOC)/darwin/$(GIN) $(LDFLAGS)
0 commit comments