Are there platform-specific considerations for building or running the plugin? #5
-
|
Are there platform-specific considerations for building or running the plugin? |
Beta Was this translation helpful? Give feedback.
Admin verified this answer by
andev0x
Jun 23, 2026
Replies: 1 comment
-
|
Go Binary Compilation: Use go build with cross-platform support. Ensure the Makefile supports multiple platforms: build:
GOOS=linux GOARCH=amd64 go build -o bin/capytrace-linux ./cmd/capytrace
GOOS=windows GOARCH=amd64 go build -o bin/capytrace-windows.exe ./cmd/capytrace
GOOS=darwin GOARCH=amd64 go build -o bin/capytrace-macos ./cmd/capytrace |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Go Binary Compilation: Use go build with cross-platform support. Ensure the Makefile supports multiple platforms: