xmake-go

Installation
SKILL.md

Building Go with Xmake

Xmake builds Go via the Go toolchain (go build under the hood, wrapped in xmake's target model). Useful if your project mixes Go with C/C++/Rust and you want a single build tool.

1. Minimal project

xmake create -l go -t console hello
cd hello
xmake run
add_rules("mode.debug", "mode.release")

target("hello")
    set_kind("binary")
    add_files("src/*.go")
Installs
3
GitHub Stars
16
First Seen
May 8, 2026
xmake-go — xmake-io/xmake-skills