-
Notifications
You must be signed in to change notification settings - Fork 124
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
31c2de2
commit 5e8497c
Showing
1 changed file
with
7 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,11 @@ | ||
build: | ||
go build ./main.go | ||
build-arm64: | ||
GOARCH=arm64 GOOS=darwin go build -o zkproof_darwin_arm64 ./main.go | ||
|
||
build-amd64: | ||
GOARCH=amd64 GOOS=darwin go build -o zkproof_darwin_amd64 ./main.go | ||
|
||
build-linux: | ||
CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build ./main.go | ||
GOARCH=amd64 GOOS=linux go build -o zkproof_linux_amd64 ./main.go | ||
|
||
build-windows: | ||
CGO_ENABLED=0 GOOS=windows GOARCH=amd64 go build ./main.go | ||
GOARCH=amd64 GOOS=windows go build -o zkproof_windows_amd64.exe ./main.go |
1 comment
on commit 5e8497c
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This comment has been minimized.
Sorry, something went wrong.
LwkkyLDdubzAug 23, 2024