forked from teacat/chaturbate-dvr
-
Notifications
You must be signed in to change notification settings - Fork 0
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
a4b9de9
commit af35dca
Showing
2 changed files
with
13 additions
and
13 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
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,26 +1,26 @@ | ||
Compile All at once: | ||
|
||
``` | ||
GOOS=windows GOARCH=amd64 go build -o bin/windows/chatubrate-dvr.exe && | ||
GOOS=darwin GOARCH=amd64 go build -o bin/darwin/chatubrate-dvr && | ||
GOOS=linux GOARCH=amd64 go build -o bin/linux/chatubrate-dvr && | ||
GOOS=windows GOARCH=arm64 go build -o bin/arm64/windows/chatubrate-dvr.exe && | ||
GOOS=darwin GOARCH=arm64 go build -o bin/arm64/darwin/chatubrate-dvr && | ||
GOOS=linux GOARCH=arm64 go build -o bin/arm64/linux/chatubrate-dvr | ||
GOOS=windows GOARCH=amd64 go build -o bin/windows_chatubrate-dvr.exe && | ||
GOOS=darwin GOARCH=amd64 go build -o bin/macos_chatubrate-dvr && | ||
GOOS=linux GOARCH=amd64 go build -o bin/linux_chatubrate-dvr && | ||
GOOS=windows GOARCH=arm64 go build -o bin/arm64_windows_chatubrate-dvr.exe && | ||
GOOS=darwin GOARCH=arm64 go build -o bin/arm64_macos_chatubrate-dvr && | ||
GOOS=linux GOARCH=arm64 go build -o bin/arm64_linux_chatubrate-dvr | ||
``` | ||
|
||
or Compile for 64-bit Windows, macOS, Linux: | ||
|
||
``` | ||
GOOS=windows GOARCH=amd64 go build -o bin/windows/chatubrate-dvr.exe && | ||
GOOS=darwin GOARCH=amd64 go build -o bin/darwin/chatubrate-dvr && | ||
GOOS=linux GOARCH=amd64 go build -o bin/linux/chatubrate-dvr | ||
GOOS=windows GOARCH=amd64 go build -o bin/windows_chatubrate-dvr.exe && | ||
GOOS=darwin GOARCH=amd64 go build -o bin/macos_chatubrate-dvr && | ||
GOOS=linux GOARCH=amd64 go build -o bin/linux_chatubrate-dvr | ||
``` | ||
|
||
or for arm64 Windows, macOS, Linux: | ||
|
||
``` | ||
GOOS=windows GOARCH=arm64 go build -o bin/arm64/windows/chatubrate-dvr.exe && | ||
GOOS=darwin GOARCH=arm64 go build -o bin/arm64/darwin/chatubrate-dvr && | ||
GOOS=linux GOARCH=arm64 go build -o bin/arm64/linux/chatubrate-dvr | ||
GOOS=windows GOARCH=arm64 go build -o bin/arm64_windows_chatubrate-dvr.exe && | ||
GOOS=darwin GOARCH=arm64 go build -o bin/arm64_macos_chatubrate-dvr && | ||
GOOS=linux GOARCH=arm64 go build -o bin/arm64_linux_chatubrate-dvr | ||
``` |