- Move asyncify from Docker to host to avoid memory issues - Auto-download Binaryen v121 (v125 has regression bug) - Use -O1 for debug builds (V8 local count limit) - Remove asyncify flags from linker (handled by wasm-opt) - Document two-phase build in build.md 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
55 lines
830 B
Text
55 lines
830 B
Text
# Build directories
|
|
build/
|
|
build-*/
|
|
cmake-build-*/
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# Compiled objects
|
|
*.o
|
|
*.obj
|
|
*.a
|
|
*.so
|
|
*.dylib
|
|
*.dll
|
|
|
|
# WebAssembly output (but not Makefiles that end in .wasm)
|
|
*.wasm
|
|
!Makefile.wasm
|
|
*.js.map
|
|
*.wasm.map
|
|
|
|
# macOS
|
|
.DS_Store
|
|
|
|
# Emscripten cache
|
|
.emscripten_cache/
|
|
|
|
# Clean clone for reproducible builds (generated by build-wxwidgets-wasm-clean.sh)
|
|
wxwidgets-clean/
|
|
|
|
# Test artifacts
|
|
/tests/node_modules/
|
|
/tests/playwright-report/
|
|
/tests/test-results/
|
|
/tests/.test-port
|
|
/test-results/
|
|
/tests/wasm-app/*.js
|
|
/tests/wasm-app/*.html
|
|
/tests/wasm-app/minimal_test.wasm
|
|
/tests/wasm-app/standalone/*/*.js
|
|
/tests/wasm-app/standalone/*/*.html
|
|
/tests/wasm-app/standalone/*/*.wasm
|
|
/tests/wasm-app/kicad/*.js
|
|
/tests/wasm-app/kicad/*.wasm
|
|
!tests/wasm-app/kicad/pcbnew.html
|
|
/temp/
|
|
*.log
|
|
*.tmp
|
|
output/
|
|
tools/
|