Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | make the new --genDeps feature optional since it makes compilations slower | Andreas Rumpf | 2017-12-21 | 1 | -1/+2 |
| | |||||
* | Merge branch 'compile-deps' of https://github.com/pyokagan/Nim into ↵ | Andreas Rumpf | 2017-12-21 | 1 | -1/+5 |
|\ | | | | | | | pyokagan-compile-deps | ||||
| * | writeDepsFile: write included files as well | Paul Tan | 2017-08-25 | 1 | -1/+4 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | `writeDepsFile()` does not list files which were included with the `include` statement, e.g, with: import file1 include file2 `file1` will be written to the deps file, while `file2` would not. Fix this by modifying `writeDepsFile()` to write included files as well. Now, both `file1` and `file2` in the above example will be written to the deps file. | ||||
| * | Generate deps file during C compilation | Paul Tan | 2017-08-25 | 1 | -0/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | The "genDepend" command was previously taught how to generate a "deps" file in 4910a87c6 (gendepend improvements; refs #5144). Such a deps file is useful in integrating the Nim compiler with an external build system or watch daemon, such that it's possible to only run the Nim compiler when any of the source files are modified. It's also useful to generate the deps file in the nimcache directory during C compilation, without needing to re-run the compilation passes with "genDepend". This would thus reduce overall project build times. | ||||
* | | 'nim doc' is now using version 2 of the documentation generator | Andreas Rumpf | 2017-11-16 | 1 | -2/+2 |
| | | |||||
* | | WIP: Add a advanced compiler command 'ctags' (#6654) | Dmitry Atamanov | 2017-11-15 | 1 | -0/+7 |
| | | |||||
* | | added 'nim jsonscript' feature | Andreas Rumpf | 2017-09-23 | 1 | -0/+7 |
|/ | |||||
* | Fix typo | def | 2017-03-23 | 1 | -1/+1 |
| | |||||
* | removed compiler internal list implementation (#5371) | Arne Döring | 2017-02-22 | 1 | -4/+4 |
| | |||||
* | refactoring: explict config state instead of globals | Andreas Rumpf | 2017-02-01 | 1 | -2/+2 |
| | |||||
* | memory allocator hotfix: do not allocate tremendous amounts of memory | Andreas Rumpf | 2017-01-13 | 1 | -1/+5 |
| | |||||
* | gendepend improvements; refs #5144 | Araq | 2017-01-06 | 1 | -0/+8 |
| | |||||
* | make gendepend work again | Araq | 2016-12-29 | 1 | -1/+1 |
| | |||||
* | Merge branch 'devel' into sighashes | Araq | 2016-12-14 | 1 | -1/+3 |
|\ | |||||
| * | Nim compiler generates nimcache/proj.json for easier interop with external ↵ | Araq | 2016-12-14 | 1 | -1/+3 |
| | | | | | | | | build tools | ||||
* | | refactoring: C codegen with fewer global variables | Araq | 2016-12-05 | 1 | -1/+1 |
|/ | |||||
* | new dependency tracking for nimsuggest | Araq | 2016-11-05 | 1 | -153/+40 |
| | |||||
* | refactoring complete: explicit ident cache | Araq | 2016-10-31 | 1 | -46/+46 |
| | |||||
* | big refactoring: step 1 | Araq | 2016-10-31 | 1 | -11/+11 |
| | |||||
* | the Nim compiler supports the jsondoc2 command | Andreas Rumpf | 2016-07-13 | 1 | -4/+11 |
| | |||||
* | changed the compiler's path handling; fixes #546 | Andreas Rumpf | 2016-05-31 | 1 | -1/+1 |
| | |||||
* | Nim check defines 'nimcheck' conditional symbol | Andreas Rumpf | 2016-05-24 | 1 | -0/+1 |
| | |||||
* | first version of an PHP codegen | Andreas Rumpf | 2016-02-06 | 1 | -0/+4 |
| | |||||
* | msgs: One msgWriteln with optional flags | Adam Strzelecki | 2015-10-22 | 1 | -4/+5 |
| | | | | Instead of msgWriteln, outWriteln and stdoutWriteln doing essentially the same. | ||||
* | added getOrDefault; bootstrapping works again | Araq | 2015-10-13 | 1 | -1/+1 |
| | |||||
* | split os into os and ospaths parts; ospaths is available for NimScript; ↵ | Araq | 2015-09-04 | 1 | -1/+3 |
| | | | | better NimScript support | ||||
* | simplify nimscript.nim | Araq | 2015-08-21 | 1 | -1/+1 |
| | |||||
* | cleanup destructor building for arrays; still doesn't work | Araq | 2015-08-18 | 1 | -2/+1 |
| | |||||
* | implements experimental new config system based on NimScript | Araq | 2015-08-16 | 1 | -1/+2 |
| | |||||
* | Reset terminal colors before running compiled program | def | 2015-07-10 | 1 | -0/+1 |
| | |||||
* | Merge pull request #3020 from flaviut/rename-crc-to-hash | Andreas Rumpf | 2015-07-05 | 1 | -1/+1 |
|\ | | | | | CRC -> Hash | ||||
| * | CRC -> Hash | Flaviu Tamas | 2015-07-03 | 1 | -1/+1 |
| | | |||||
* | | Introduce NotesVerbosity defining verbosity levels | Adam Strzelecki | 2015-07-03 | 1 | -3/+2 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | This solves two issues: 1. Some notes were enabled explicitly for some verbosity levels, so --hintName:on has no effect if verbosity level was too low. 2. Verbosity level for notes is not longer scattered across the source code, instead if now lives in msgs.nim NotesVerbosity array 3. Individual note settings have stronger effect than verbosity setting, so --hintName:off will disable hint regardless of high verbosity setting, and vice-versa --hintName:on will enable hint even on low verbosity setting. | ||||
* | | fixes #2633 | Araq | 2015-07-03 | 1 | -1/+1 |
|/ | |||||
* | Clean up stdin file reading of compiler. | def | 2015-05-16 | 1 | -1/+1 |
| | | | | | Uses "stdinfile" as the module identifier now, which prevents problems with - colliding with the minus operator. This fixes #2422 and #2702. | ||||
* | Initialize c compiler variables later ... | def | 2015-03-28 | 1 | -0/+1 |
| | | | | | | ... so that symbols such as "cpp" are defined Fixes #1460 | ||||
* | fixes #1868 | Araq | 2015-03-12 | 1 | -2/+4 |
| | |||||
* | When compiling from stdin write binary to stdinfile | def | 2015-02-28 | 1 | -1/+1 |
| | |||||
* | fixes #1601 | Araq | 2015-02-05 | 1 | -1/+0 |
| | |||||
* | nimsuggest: sane dirty buffer handling | Araq | 2015-01-29 | 1 | -3/+3 |
| | |||||
* | nimsuggest: first version | Araq | 2015-01-27 | 1 | -12/+4 |
| | |||||
* | Merge pull request #1889 from ramnes/devel | Andreas Rumpf | 2015-01-07 | 1 | -1/+1 |
|\ | | | | | Happy new year! | ||||
| * | Happy new year! | Guillaume Gelin | 2015-01-06 | 1 | -1/+1 |
| | | |||||
* | | minor cleanups | Araq | 2015-01-07 | 1 | -20/+0 |
|/ | |||||
* | implemented mixed mode codegen | Araq | 2014-10-03 | 1 | -2/+0 |
| | |||||
* | Fix 'doc' command. | Dominik Picheta | 2014-09-13 | 1 | -0/+2 |
| | |||||
* | 'pretty' command does not exist anymore; improvements for nimfix | Araq | 2014-09-10 | 1 | -9/+1 |
| | |||||
* | some improvements for nimfix | Araq | 2014-09-09 | 1 | -3/+0 |
| | |||||
* | nimfix handles helloworld | Araq | 2014-09-06 | 1 | -36/+1 |
| | |||||
* | fixes #903, fixes #1513 | Araq | 2014-09-03 | 1 | -6/+0 |
| |