chore: update build system to clean core object files and add cross-compilation support for Windows

This commit is contained in:
Liam Kerr 2026-08-02 21:06:17 +01:00
parent 3a11f43fdc
commit 652e3b7f6a
3 changed files with 16 additions and 7 deletions

View file

@ -10,7 +10,6 @@ void Clipper::process(const float *in, float *out, uint32_t frames) {
void Clipper::processStereo(const float *inLeft, const float *inRight,
float *outLeft, float *outRight, uint32_t frames) {
for (uint32_t i = 0; i < frames; ++i) {
outLeft[i] = clip(inLeft[i]);
outRight[i] = clip(inRight[i]);
}