Skip to content

Commit

Permalink
dist-build avoids 386 targets due to cross-build issues
Browse files Browse the repository at this point in the history
  • Loading branch information
steveyen committed Sep 18, 2015
1 parent c185acf commit 7b0e02e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -72,13 +72,13 @@ dist-meta:

dist-build:
$(MAKE) build GOOS=darwin GOARCH=amd64 CBFT_OUT=./dist/out/cbft.macos.amd64
$(MAKE) build GOOS=linux GOARCH=386 CBFT_OUT=./dist/out/cbft.linux.386
# $(MAKE) build GOOS=linux GOARCH=386 CBFT_OUT=./dist/out/cbft.linux.386
$(MAKE) build GOOS=linux GOARCH=arm CBFT_OUT=./dist/out/cbft.linux.arm
$(MAKE) build GOOS=linux GOARCH=arm GOARM=5 CBFT_OUT=./dist/out/cbft.linux.arm5
$(MAKE) build GOOS=linux GOARCH=amd64 CBFT_OUT=./dist/out/cbft.linux.amd64
$(MAKE) build-static GOOS=linux GOARCH=amd64 CBFT_OUT=./dist/out/cbft-full.linux.amd64
$(MAKE) build GOOS=freebsd GOARCH=amd64 CBFT_OUT=./dist/out/cbft.freebsd.amd64
$(MAKE) build GOOS=windows GOARCH=386 CBFT_OUT=./dist/out/cbft.windows.386.exe
# $(MAKE) build GOOS=windows GOARCH=386 CBFT_OUT=./dist/out/cbft.windows.386.exe
$(MAKE) build GOOS=windows GOARCH=amd64 CBFT_OUT=./dist/out/cbft.windows.amd64.exe

dist-clean: clean
Expand Down

0 comments on commit 7b0e02e

Please sign in to comment.