Skip to content

Commit

Permalink
Fix setup
Browse files Browse the repository at this point in the history
  • Loading branch information
edoardottt committed Sep 28, 2020
1 parent 0962025 commit 68d4079
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2,784,148 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ windows:
@for GOARCH in ${ARCHS}; do \
echo "Building for windows $${GOARCH} ..." ; \
mkdir -p ${TARGET}/scilla-windows-$${GOARCH} ; \
mv lists/ ${TARGET}; \
mv lists/ ${GOPATH}/bin; \
GOOS=windows GOARCH=$${GOARCH} GO111MODULE=on CGO_ENABLED=0 go build -ldflags=${LDFLAGS} -gcflags=${GCFLAGS} -asmflags=${ASMFLAGS} -o ${TARGET}/scilla-windows-$${GOARCH}/scilla.exe ; \
done; \
echo "Done."
Expand All @@ -35,7 +35,7 @@ linux:
@for GOARCH in ${ARCHS}; do \
echo "Building for linux $${GOARCH} ..." ; \
mkdir -p ${TARGET}/scilla-linux-$${GOARCH} ; \
mv lists/ ${TARGET}; \
mv lists/ ${GOPATH}/bin; \
GOOS=linux GOARCH=$${GOARCH} GO111MODULE=on CGO_ENABLED=0 go build -ldflags=${LDFLAGS} -gcflags=${GCFLAGS} -asmflags=${ASMFLAGS} -o ${TARGET}/scilla-linux-$${GOARCH}/scilla ; \
done; \
echo "Done."
Expand Down
Loading

0 comments on commit 68d4079

Please sign in to comment.