-
Notifications
You must be signed in to change notification settings - Fork 1
Cross Compile GoAuth2Users
Ken Williamson edited this page Jan 19, 2020
·
1 revision
Command: env GOOS=target-OS GOARCH=target-architecture go build -o main *.go
Example 1: env GOOS=windows GOARCH=amd64 go build -o main.exe *.go
Example 2: env GOOS=linux GOARCH=amd64 go build -o main *.go
GOOS - Target Operating System | GOARCH - Target Platform |
---|---|
android | arm |
darwin | 386 |
darwin | amd64 |
darwin | arm |
darwin | arm64 |
dragonfly | amd64 |
freebsd | 386 |
freebsd | amd64 |
freebsd | arm |
linux | 386 |
linux | amd64 |
linux | arm |
linux | arm64 |
linux | ppc64 |
linux | ppc64le |
linux | mips |
linux | mipsle |
linux | mips64 |
linux | mips64le |
netbsd | 386 |
netbsd | amd64 |
netbsd | arm |
openbsd | 386 |
openbsd | amd64 |
openbsd | arm |
plan9 | 386 |
plan9 | amd64 |
solaris | amd64 |
windows | 386 |
windows | amd64 |
GoAuth2Users is maintained by Ulbora Labs LLC and others.