- Untrack all .o and .a files under third_party/ (rnnoise, libspecbleach) - Add third_party/**/*.o and third_party/**/*.a to .gitignore - Fix FFTW configure cross-compilation: add $(strip ...) around fftw_host macro call and explicit --build flag so configure detects cross-compile correctly (GNU make backslash-continuation in define blocks inserts a leading space, causing --host= arm-... to be parsed as empty --host) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
21 lines
256 B
Plaintext
21 lines
256 B
Plaintext
# Build output
|
|
obj/
|
|
lib/
|
|
|
|
# Java build output
|
|
java/build/
|
|
|
|
# third_party — only fftw is downloaded manually, rnnoise and libspecbleach are tracked
|
|
third_party/fftw/
|
|
third_party/**/*.o
|
|
third_party/**/*.a
|
|
|
|
# macOS
|
|
.DS_Store
|
|
|
|
# Editor
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|