673 B
673 B
Agent Build Policy
This repository uses build.sh as the single supported top-level build entrypoint.
Rules
- Always build with:
bash ./build.sh
- Do not use raw
gccormakedirectly for top-level project builds unless the user explicitly asks for it. - If
WITH_WHISPER,WHISPER_CUDA, orBUILD_GUIbehavior is needed, pass them as environment variables tobuild.sh, for example:WITH_WHISPER=1 bash ./build.shWHISPER_CUDA=1 bash ./build.shBUILD_GUI=0 bash ./build.sh
- For any user-facing build instructions, prefer referencing
build.shover direct compiler or make commands.