xmake-toolchains
Installation
SKILL.md
Xmake Toolchains
A toolchain bundles a compiler, linker, archiver, and related tools. You pick one per configure.
Listing and switching
xmake show -l toolchains # list available toolchains
xmake f --toolchain=clang
xmake f --toolchain=gcc-11
xmake f --toolchain=mingw --mingw=/opt/llvm-mingw
xmake f --toolchain=msvc --vs=2022
In xmake.lua:
set_toolchains("clang")