Merge pull request #10 from hasty/bugfix/goarmv5

Force GOARM=5 on ARM builds
This commit is contained in:
Péter Szilágyi 2014-12-17 15:14:24 +02:00
commit 449770623a
1 changed files with 1 additions and 1 deletions

View File

@ -111,7 +111,7 @@ RUN \
echo >> $BUILD && \
echo 'echo Compiling for linux/arm...' >> $BUILD && \
echo 'CC=arm-linux-gnueabi-gcc \\' >> $BUILD && \
echo ' GOOS=linux GOARCH=arm CGO_ENABLED=1 go build $V -o $NAME-linux-arm' >> $BUILD && \
echo ' GOOS=linux GOARCH=arm CGO_ENABLED=1 GOARM=5 go build $V -o $NAME-linux-arm' >> $BUILD && \
echo >> $BUILD && \
echo 'echo Compiling for windows/amd64...' >> $BUILD && \
echo 'CC=x86_64-w64-mingw32-gcc \\' >> $BUILD && \