logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Go Build - Compile Go Sources | Online Free DevTools by Hexmos

Compile Go sources effortlessly with Go Build. Create binaries, specify output filenames, and enable race detection. Free online tool, no registration required.

go-build

Compile Go sources. More information: https://pkg.go.dev/cmd/go#hdr-Compile_packages_and_dependencies.

  • Compile a ‘package main’ file (output will be the filename without extension):

go build {{path/to/main.go}}

  • Compile, specifying the output filename:

go build -o {{path/to/binary}} {{path/to/source.go}}

  • Compile a package:

go build -o {{path/to/binary}} {{path/to/package}}

  • Compile a main package into an executable, enabling data race detection:

go build -race -o {{path/to/executable}} {{path/to/main/package}}

See Also