build-and-compile
Installation
SKILL.md
Build & Compile
Strategies for building code and resolving dependency issues.
Build System Detection
Check for build files in order:
Makefile→make(read it first to understand targets)CMakeLists.txt→cmake -B build && cmake --build buildpyproject.toml/setup.py→pip install -e .package.json→npm install && npm run buildCargo.toml→cargo build --releasego.mod→go build ./...- No build system → compile directly (
gcc,g++,rustc, etc.)