diff options
author | Sam Clegg <sbc@chromium.org> | 2021-02-25 15:57:26 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-25 15:57:26 -0800 |
commit | 2572bbcd975c3bb7f99112ced7fe437e7a88eec0 (patch) | |
tree | 93f8d8a222533d61fa74785084e9ba745bf883d9 /.gitignore | |
parent | 7977ad58a367f49555c70ea5f0f0f6ab06b28903 (diff) | |
download | binaryen-2572bbcd975c3bb7f99112ced7fe437e7a88eec0.tar.gz binaryen-2572bbcd975c3bb7f99112ced7fe437e7a88eec0.tar.bz2 binaryen-2572bbcd975c3bb7f99112ced7fe437e7a88eec0.zip |
Remove .o and .obj from gitignore (#3616)
Cmake puts all its object files inside CMakeFiles so they
are already handled by the CMakeFiles entry.
Having `*.o` in this file means that `git status` and `git clean`
don't help to find stray `.o` files that one might have made
inadvertently in the tree.
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/.gitignore b/.gitignore index d50e02df2..1d377d60d 100644 --- a/.gitignore +++ b/.gitignore @@ -22,8 +22,6 @@ CMakeFiles /bin/ /lib/ /config.h -*.o -*.obj compile_commands.json test/lit/lit.site.cfg.py |