Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix nimsuggest/#117 (#15602) | Clyybber | 2020-11-15 | 1 | -4/+1 |
| | |||||
* | new: `nim -e:cmd` to run a command directly; also fixes #15731 (#15687) | Timothee Cour | 2020-11-09 | 1 | -0/+11 |
| | | | | | | | | | | | | | | | * new: `nim -i cmd` * rename -i to -e (for eval); consistent with majority of other programing languages * `nim e -e:cmd` now works; bugfix: `echo cmd | nim e -` now works * honor --betterRun * address comments * --eval alias for -e (replaces undocumented --eval which was a noop) * --eval now defaults to e (nimscript) instead of r * address comment: remove -e, only keep --eval * address comment * fixup * Update compiler/nimconf.nim Co-authored-by: Andreas Rumpf <rumpf_a@web.de> | ||||
* | implements https://github.com/nim-lang/RFCs/issues/260 (#15505) | Andreas Rumpf | 2020-10-07 | 1 | -0/+4 |
| | | | | | * implements https://github.com/nim-lang/RFCs/issues/260 * added a test case | ||||
* | Big compiler Cleanup (#14777) | Clyybber | 2020-08-28 | 1 | -2/+2 |
| | |||||
* | fixes #14194 (#15023) | Andreas Rumpf | 2020-07-20 | 1 | -1/+2 |
| | |||||
* | Fix #12745 (#14879) | Tomohiro | 2020-07-02 | 1 | -11/+1 |
| | |||||
* | bug fixes with sfMainModule, hints, mainPackageNotes, mainPackageId, ↵ | Timothee Cour | 2020-06-04 | 1 | -2/+19 |
| | | | | | | | hintSuccessX (#14555) * SuccessX `out` now works with --compileOnly and jsonscript; fix bugs in jsonscript * several bug fixes; eg: `nim doc lib/system/io` now is sane * dummy edit to force docs CI | ||||
* | Fix a problem with extra build commands. (#14528) | Khronos | 2020-06-01 | 1 | -11/+11 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | When --compileOnly is on, extraCmds are not added to JsonBuildInstructions. ``` $ echo 'echo 123'>test.nim $ nim c --debuginfo --nimcache:cache test $ ls cache test test.dSYM test.nim $ tail -n3 cache/test.json "extraCmds": ["dsymutil /Users/khronos31/src/tmp/test"], "stdinInput": false } ``` ``` $ echo 'echo 123'>test.nim $ nim c --debuginfo --nimcache:cache --compileOnly test $ nim jsonscript --nimcache:cache test $ ls cache test test.nim $ tail -n3 cache/test.json "extraCmds": [], "stdinInput": false } ``` | ||||
* | fix some issues with --backend (#14363) | Timothee Cour | 2020-05-16 | 1 | -7/+8 |
| | | | | | * fix some issues with --backend * fix https://github.com/timotheecour/Nim/issues/175; improve upon #14306 | ||||
* | `nim doc --backend:js`, `nim doc --doccmd:-d:foo`, `nim r --backend:js`, ↵ | Timothee Cour | 2020-05-11 | 1 | -12/+12 |
| | | | | | | | | | | `--doccmd:skip` + other improvements (#14278) * `nim doc --backend:js|cpp...` `nim doc --doccmd:'-d:foo --threads:on'` `nim r --backend:cpp...` (implies --run --usenimcache) * --usenimcache works with all targets * --docCmd:skip now skips compiling snippets; 50X speedup for doc/manual.rst | ||||
* | added a new feature: --cc:env so that you can use any C compiler as long as ↵ | Andreas Rumpf | 2020-05-06 | 1 | -12/+26 |
| | | | | it works like GCC | ||||
* | cleanup the CC setting, only leave in there what is at least semi-officially ↵ | Andreas Rumpf | 2020-05-06 | 1 | -120/+0 |
| | | | | supported | ||||
* | fixes #14209 [backport:1.2] (#14213) | Andreas Rumpf | 2020-05-05 | 1 | -0/+28 |
| | | | | * fixes #14209 [backport:1.2] * improve stability | ||||
* | vcc fix (#14222) | cooldome | 2020-05-04 | 1 | -1/+1 |
| | | | Co-authored-by: cooldome <ariabushenko@bk.ru> | ||||
* | fix #14132 dsymutil should not be called on static libraries (#14133) ↵ | Timothee Cour | 2020-04-27 | 1 | -6/+6 |
| | | | | [backport:1.2] | ||||
* | Add LTO support for most compilers and do some VCC fixes (#14013) | Keithcat1 | 2020-04-22 | 1 | -3/+4 |
| | | | | | | | | | * Added LTO in nim.cfg, added /link in extccomp.nim and other fixes * Fix line endings * Fix line endings, for real this time. Almost certainly. Like, 95% certain. * Removed /MD from extccom.nim VCC comiler | ||||
* | Add support for `zig cc` as C compiler. (#13757) | Hessam Mehr | 2020-04-08 | 1 | -0/+11 |
| | |||||
* | fix #13910 (#13917) | cooldome | 2020-04-07 | 1 | -2/+2 |
| | | | Co-authored-by: cooldome <ariabushenko@bk.ru> | ||||
* | fix some codegen bugs: NIM_BOOL, NIM_STATIC_ASSERT, --passc:-std=... (etc) ↵ | Timothee Cour | 2020-04-07 | 1 | -3/+5 |
| | | | | | | | | (#13798) * fix cgen bool D20200328T203812 * --passc:std=c++17 (etc) now works instead of silently ignored * document caveats for NIM_NIL | ||||
* | Attempt to finish off araq cpp exceptions (#13695) | cooldome | 2020-03-19 | 1 | -5/+23 |
| | | | | | | | | | | | | | | | * config update * disable a questionable test * remove c++ exception handling IDs, new impl doesn't require it anymore * C++ based exceptions finally work * fixes bootstrapping problem in C++ mode * teach GCC it's 2020 now * more bugfixes for C++ based exception handling * apply cooldome's patch * another attempt to enable C++11 * bug fix Co-authored-by: Araq <rumpf_a@web.de> Co-authored-by: cooldome <ariabushenko@bk.ru> | ||||
* | fix #13412 nim now recompiles for stdin input; SuccessX now configurable; ↵ | Timothee Cour | 2020-03-19 | 1 | -0/+10 |
| | | | | | | can show whether it recompiled (#13506) * fix #13412 nim now recompiles for stdin input; SuccessX now indicates whether it recompiled | ||||
* | fix #13633 fix koch boot crashing regression (#13635) | Timothee Cour | 2020-03-12 | 1 | -1/+1 |
| | |||||
* | Amend fix for #13633 (#13636) | Clyybber | 2020-03-12 | 1 | -1/+1 |
| | |||||
* | Fix #13633 | Clyybber | 2020-03-12 | 1 | -1/+2 |
| | |||||
* | Make listCmd honor hint:cc:off (#13606) | Clyybber | 2020-03-11 | 1 | -50/+35 |
| | | | | | | | | | | | | | | | | | * Make listCmd honor hint:cc:off * Tiny cleanup * Tiny tiny cleanup * VERY IMPORTANT: --hint:cc:on will overwrite --verbosity:0 :p * Tiny cleanup * Stupid * Move displayProgressCC to where its required * Tiny cleanup | ||||
* | `koch --nim:pathto/nim boot` and `koch boot --hint:cc:off` now work (#13516) | Timothee Cour | 2020-03-11 | 1 | -14/+19 |
| | | | | | * `koch boot --hint:cc:off` now works * `koch --nim:pathto/nim boot` now works; code cleanup | ||||
* | Revert "Support cross compiling from host to host (#12859)" (#13591) | genotrance | 2020-03-10 | 1 | -1/+2 |
| | | | This reverts commit e4f7656772657069cd3e27704d687b292d8d24ab. | ||||
* | Only print the link command when listCmd is active; fix docs (#13603) | Clyybber | 2020-03-07 | 1 | -1/+1 |
| | |||||
* | make it possible to pass linker options for vcc (#13535) [backport] | cooldome | 2020-02-29 | 1 | -1/+1 |
| | |||||
* | fix #8312 --hints:off and --warnings:off now honored everywhere (#13489) | Timothee Cour | 2020-02-26 | 1 | -1/+1 |
| | |||||
* | Fix #8648 - use parent streams to avoid hang (#13445) | genotrance | 2020-02-20 | 1 | -6/+5 |
| | |||||
* | fixes #13144 (#13145) | Timothee Cour | 2020-01-18 | 1 | -9/+4 |
| | | | | * fixup: genscript now does not copy nimbase.h but uses -I$nim/lib | ||||
* | pass platform argument only if vccexe is used (#13078) | cooldome | 2020-01-14 | 1 | -10/+9 |
| | | | | | * pass platform only if vccexe is used * fixes #12297 | ||||
* | [easy] --hint:link:on now shows link cmd instead of nothing (#13056) | Timothee Cour | 2020-01-07 | 1 | -2/+1 |
| | | | | | | * --hint:link:on now shows link cmd instead of nothing * update doc for --listCmd | ||||
* | fix #12988 (#13022) | rockcavera | 2020-01-03 | 1 | -3/+3 |
| | | | fix #12988 | ||||
* | fixes #12735 on osx, call dsymutil for debug builds (#12931) | Timothee Cour | 2019-12-21 | 1 | -0/+21 |
| | | | | | | * fix #12735 osx: dsymutil needs to be called for debug builds * also write dsymutil command to extraCmds in json build file | ||||
* | Support cross compiling from host to host (#12859) | Neelesh Chandola | 2019-12-09 | 1 | -2/+1 |
| | |||||
* | Fix external file recompilation (#12802) | cooldome | 2019-12-03 | 1 | -1/+1 |
| | |||||
* | Cosmetic compiler cleanup (#12718) | Clyybber | 2019-11-28 | 1 | -39/+39 |
| | | | | | | | | | | | | | | | | | | * Cleanup compiler code base * Unify add calls * Unify len invocations * Unify range operators * Fix oversight * Remove {.procvar.} pragma * initCandidate -> newCandidate where reasonable * Unify safeLen calls | ||||
* | fixes #12663 staticRead now creates a dependency for rebuilds (#12731) ↵ | Timothee Cour | 2019-11-25 | 1 | -12/+13 |
| | | | | | | | [backport] * fix #12663 staticRead * address comments | ||||
* | implemented a new localPassc pragma (#12706) | Andreas Rumpf | 2019-11-22 | 1 | -4/+15 |
| | |||||
* | added the --asm command line option for inspection of the produced assember ↵ | Andreas Rumpf | 2019-11-21 | 1 | -6/+32 |
| | | | | code (#12699) | ||||
* | Fix Nim specify wrong option to vccexe when vcc.options.always is set ↵ | Tomohiro | 2019-10-24 | 1 | -1/+1 |
| | | | | (#12490) [backport] | ||||
* | Add no-ident for GCC when -d:release (#12454) | Juan Carlos | 2019-10-18 | 1 | -3/+3 |
| | |||||
* | External file compilation improvement (#12380) | cooldome | 2019-10-08 | 1 | -0/+4 |
| | |||||
* | Fix spellings (#12277) [backport] | Federico Ceratto | 2019-09-27 | 1 | -2/+2 |
| | |||||
* | changed name mangling for generated C files | Araq | 2019-09-13 | 1 | -1/+1 |
| | |||||
* | fixes #11758 [nobackport] | Andreas Rumpf | 2019-07-17 | 1 | -1/+7 |
| | |||||
* | better run also considers the command line; fixes #11719 [feature] | Araq | 2019-07-12 | 1 | -1/+8 |
| | |||||
* | koch/nim: completion of the 'better run' feature | Araq | 2019-07-12 | 1 | -1/+1 |
| |