Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | | Move file input / output to support. | JF Bastien | 2016-01-04 | 2 | -0/+102 | |
|/ | ||||||
* | Fix off-by-one in option parsing with '='. | JF Bastien | 2016-01-04 | 1 | -1/+1 | |
| | ||||||
* | Add curlies. | JF Bastien | 2016-01-04 | 1 | -2/+4 | |
| | ||||||
* | Generalize command-line parsing more. | JF Bastien | 2016-01-02 | 2 | -48/+148 | |
| | | | | This should allow other programs to use the same command-line support. | |||||
* | Merge pull request #55 from WebAssembly/support-command-line | Alon Zakai | 2015-12-30 | 2 | -0/+108 | |
|\ | | | | | Start moving command-line processing to libsupport.a | |||||
| * | Add a help to avoid out-of-bounds. | JF Bastien | 2015-12-29 | 1 | -1/+4 | |
| | | ||||||
| * | Fix include guards. | JF Bastien | 2015-12-29 | 1 | -3/+3 | |
| | | ||||||
| * | Start moving command-line processing to libsupport.a | JF Bastien | 2015-12-29 | 2 | -0/+105 | |
| | | | | | | | | This only moves things, no functional change yet. | |||||
* | | Fix include guards | JF Bastien | 2015-12-29 | 1 | -3/+3 | |
|/ | ||||||
* | Add a support static library | JF Bastien | 2015-12-24 | 2 | -0/+72 | |
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). |