diff options
author | Sam Clegg <sbc@chromium.org> | 2019-05-16 11:01:05 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-16 11:01:05 -0700 |
commit | 64e6807dc2c5fbb642518f8262d8ffc91b674fa3 (patch) | |
tree | 515c2d6ae0746ac05ceba96adbeea42de7399a29 /.gitignore | |
parent | f86375ac2121db5fec236f4e35f73adde9318a8c (diff) | |
download | binaryen-64e6807dc2c5fbb642518f8262d8ffc91b674fa3.tar.gz binaryen-64e6807dc2c5fbb642518f8262d8ffc91b674fa3.tar.bz2 binaryen-64e6807dc2c5fbb642518f8262d8ffc91b674fa3.zip |
First stage of cleeanup in source tree pollution (#2105)
Update build-js.sh to output to `out` directory. This is district
from the `bin` directory which is used by the cmake build and may or
may not live in the source tree. The `out` directory currently always
lives in the source tree.
As a followup change I hope to additionally move all test outout into
this tree.
See #2104
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 59 |
1 files changed, 22 insertions, 37 deletions
diff --git a/.gitignore b/.gitignore index 4bb4e054b..c02064bae 100644 --- a/.gitignore +++ b/.gitignore @@ -3,14 +3,10 @@ *.diff # autogenerated during the build -src/passes/WasmIntrinsics.cpp +/src/passes/WasmIntrinsics.cpp -# files generated by build-js.sh -WebIDLGrammar.pkl -glue.cpp -glue.js -parser.out -shared.bc +# File generated by build-js.sh +/out/ # autogenerated files by check.py a.* @@ -28,39 +24,28 @@ test/validator/*.wasm *.map # files related to building in-tree -CMakeFiles/ -CMakeCache.txt -Makefile -cmake_install.cmake -*.ninja -.ninja_deps -.ninja_log -bin/wasm-shell -bin/wasm-opt -bin/asm2wasm -bin/wasm2asm -bin/wasm-as -bin/wasm-dis -bin/wasm-ctor-eval -bin/wasm-emscripten-finalize -bin/wasm-merge -bin/wasm-metadce -bin/wasm-reduce -bin/wasm2js -lib/ +/CMakeFiles/ +/CMakeCache.txt +/Makefile +/cmake_install.cmake +/*.ninja +/.ninja_deps +/.ninja_log +/bin/ +/lib/ -# files related to windows build -.vs/ -*.vcxproj* -*.dir/ -*.sln -*.sdf -*.VC.opendb -Win32/ +# files related to bulding in-tree on windows +/.vs/ +/*.vcxproj* +/*.dir/ +/*.sln +/*.sdf +/*.VC.opendb +/Win32/ # macOS .DS_Store # files related to VS Code -.history -.vscode +/.history +/.vscode |