diff options
author | JF Bastien <jfb@chromium.org> | 2015-12-24 09:53:39 -0800 |
---|---|---|
committer | JF Bastien <jfb@chromium.org> | 2015-12-24 09:53:39 -0800 |
commit | 42039d1a5f2d53f64828a378bc5ce59b816ef8de (patch) | |
tree | 2c8b93fc94df63fa04a9bfe73b8a6f4d5a2954dc /.gitignore | |
parent | 35df36e4c18498c72bd8345d99e27856582d9054 (diff) | |
download | binaryen-42039d1a5f2d53f64828a378bc5ce59b816ef8de.tar.gz binaryen-42039d1a5f2d53f64828a378bc5ce59b816ef8de.tar.bz2 binaryen-42039d1a5f2d53f64828a378bc5ce59b816ef8de.zip |
Add a support static library
For now I've only moved the color check (and made it check the environment only once, note function local static initialization is thread-safe in C++11). This will make the builds slightly faster and allow us to move platform-specific code out of header files (reducing the amount of #include gunk). I'll eventually move other parts of the code to support, especially the command-line parsing (once it's reusable).
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore index cdbfefec7..8c58c38ee 100644 --- a/.gitignore +++ b/.gitignore @@ -3,6 +3,7 @@ bin/asm2wasm bin/wasm2asm bin/s2wasm bin/wasm.js +*.a *~ *.diff a.* |