-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from p1ratrulezzz/develop
Develop
- Loading branch information
Showing
20 changed files
with
1,152 additions
and
156 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
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,27 +1,32 @@ | ||
SET CGO_ENABLED=0 | ||
SET BINARY_NAME=jetbrainser | ||
SET OUTDIR=bin | ||
SET SRCPATH=jetbrainser/src/app | ||
|
||
SET GOARCH=amd64 | ||
SET GOOS=linux | ||
REM SET CC=x86_64-linux-musl-gcc | ||
REM SET CXX=x86_64-linux-musl-g++ | ||
go build -o "%OUTDIR%/%BINARY_NAME%-linux-x64" "%SRCPATH%" | ||
|
||
SET GOARCH=amd64 | ||
SET GOOS=windows | ||
go build -o "%OUTDIR%/%BINARY_NAME%-win-x64.exe" "%SRCPATH%" | ||
SET CC=x86_64-pc-cygwin-gcc | ||
SET CXX=x86_64-pc-cygwin-g++ | ||
go build -tags console -o "%OUTDIR%/%BINARY_NAME%-win-x64.exe" "%SRCPATH%" | ||
|
||
SET GOARCH=arm64 | ||
SET GOOS=linux | ||
go build -o "%OUTDIR%/%BINARY_NAME%-linux-arm64" "%SRCPATH%" | ||
go build -tags console -o "%OUTDIR%/%BINARY_NAME%-linux-arm64" "%SRCPATH%" | ||
|
||
SET GOARCH=arm64 | ||
SET GOOS=windows | ||
go build -o "%OUTDIR%/%BINARY_NAME%-win-arm64.exe" "%SRCPATH%" | ||
go build -tags console -o "%OUTDIR%/%BINARY_NAME%-win-arm64.exe" "%SRCPATH%" | ||
|
||
SET GOARCH=arm64 | ||
SET GOOS=darwin | ||
go build -o "%OUTDIR%/%BINARY_NAME%-osx-arm64" "%SRCPATH%" | ||
go build -tags console -o "%OUTDIR%/%BINARY_NAME%-osx-arm64" "%SRCPATH%" | ||
|
||
SET GOARCH=amd64 | ||
SET GOOS=darwin | ||
go build -o "%OUTDIR%/%BINARY_NAME%-osx-amd64" "%SRCPATH%" | ||
go build -tags console -o "%OUTDIR%/%BINARY_NAME%-osx-amd64" "%SRCPATH%" |
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
Oops, something went wrong.