Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Change default ARM compiler name | Michał Zieliński | 2018-01-21 | 1 | -3/+8 |
| | | | In most distros (Ubuntu, Debian, Arch Linux) the only available Linux ARM toolchain uses arm-linux-gnueabihf- prefix. That's also the correct compiler for cross-compiling code for Raspberry Pi, which is what most people will probably want. | ||||
* | don't make optNilCheck default to on for now (#7058) | jcosborn | 2018-01-17 | 1 | -0/+3 |
| | | | | | | * don't make optNilCheck default to on for now * add conditional symbol nimHasNilChecks | ||||
* | Fix path for sh on Android (#6661) | Fredrik Høisæther Rasch | 2017-11-03 | 1 | -1/+0 |
| | |||||
* | VCC always creates debug symbols when not in release (#6397) | Fredrik Høisæther Rasch | 2017-11-01 | 1 | -2/+7 |
| | | | Use the `/Z7` option instead of `/Zi /FS` to store all debug info in the `.obj` file instead of a shared `.pdb` file | ||||
* | android target: use clang | Andreas Rumpf | 2017-08-30 | 1 | -7/+9 |
| | |||||
* | Android support: put Termux specific dependencies behind a -d:termux switch | Andreas Rumpf | 2017-08-30 | 1 | -1/+1 |
| | |||||
* | Nim Configuration cleanup for VCC (#6261) | Fredrik Høisæther Rasch | 2017-08-21 | 1 | -20/+19 |
| | |||||
* | Added missing C++ options for VCC (#6195) | Fredrik Høisæther Rasch | 2017-08-08 | 1 | -13/+26 |
| | |||||
* | Introduce first class support for Android (#5772) | Fredrik Høisæther Rasch | 2017-08-06 | 1 | -0/+10 |
| | |||||
* | fixes #4763 | Araq | 2017-07-17 | 1 | -0/+3 |
| | |||||
* | nim.cfg: happy new year | Araq | 2017-02-07 | 1 | -1/+1 |
| | |||||
* | revert nim.cfg to version before b26e6e3 (#5306) | Axel Pahl | 2017-01-31 | 1 | -8/+2 |
| | | | ... to enable building of koch on Linux again | ||||
* | fixes #5301 | Araq | 2017-01-30 | 1 | -2/+8 |
| | |||||
* | nim.cfg: update comments about the stack size to match reality (#5206) | mfxmfx | 2017-01-11 | 1 | -4/+4 |
| | |||||
* | use dwarf-3 debug information on Windows/GCC for compat with older GDBs | Araq | 2016-12-16 | 1 | -2/+5 |
| | |||||
* | Prevent concurrency issues on the PDB file by using /FS option | Fredrik Høisæther Rasch | 2016-10-25 | 1 | -1/+1 |
| | |||||
* | options.linker made platform specific | Fredrik Høisæther Rasch | 2016-10-25 | 1 | -6/+5 |
| | | | | | previous options.linker.always is not supported in nim.cfg Removed /Fd\"$projectName.pdb\" (Implied by /Zi) | ||||
* | corrected --platform arg for amd64 (VCC) | Fredrik Høisæther Rasch | 2016-10-25 | 1 | -1/+1 |
| | |||||
* | vccwrapper with nim-like command line args | Fredrik Høisæther Rasch | 2016-10-25 | 1 | -6/+6 |
| | |||||
* | config: corrected vcc wrapper arguments to right syntax | Fredrik Høisæther Rasch | 2016-10-25 | 1 | -12/+15 |
| | |||||
* | Nim.cfg: Arch option dependent on target platform | Fredrik Høisæther Rasch | 2016-10-25 | 1 | -0/+6 |
| | |||||
* | VCC wrappers with vcvars args. | Fredrik Høisæther Rasch | 2016-10-25 | 1 | -2/+10 |
| | | | | | VCC wrappers no longer wrap for compile-time specific target VCC wrappers now peek into the command line args and evaluate vcvars prefixed arguments | ||||
* | Haiku supporting code in nim.cfg. We don't have -ldl. | Zoltán Mizsei | 2016-09-25 | 1 | -1/+9 |
| | |||||
* | RPATH locations for OpenBSD,NetBSD and FreeBSD. | cheatfate | 2016-09-21 | 1 | -0/+11 |
| | |||||
* | make tests green again | Andreas Rumpf | 2016-07-10 | 1 | -9/+0 |
| | |||||
* | Niminst now bundles the `compiler` dir when packaging. | Dominik Picheta | 2016-06-06 | 1 | -0/+5 |
| | |||||
* | Move deprecated modules into lib/deprecated/ | Adam Strzelecki | 2015-09-30 | 1 | -0/+2 |
| | | | | | This gives clear indication what modules are now deprecated and reduce clutter in non-deprecated module directories. | ||||
* | config cleanup | Araq | 2015-09-10 | 1 | -12/+2 |
| | |||||
* | Merge pull request #3160 from r-ku/coroutines | Andreas Rumpf | 2015-08-25 | 1 | -0/+1 |
|\ | | | | | Coroutines | ||||
| * | Coroutine support for i386/amd64 platforms unix/windows OSes ↵ | rku | 2015-07-31 | 1 | -0/+1 |
| | | | | | | | | markAndSweep/refCounting GCs. | ||||
* | | preparations for Nimble NimScript integrations; minor cleanups | Araq | 2015-08-18 | 1 | -1/+0 |
|/ | |||||
* | use linenoise instead of GNU readline | Araq | 2015-06-21 | 1 | -1/+1 |
| | |||||
* | Add -ldl with clang cpp compilation | def | 2015-05-10 | 1 | -0/+1 |
| | | | | This fixes compilation with --cc:clang and cpp. | ||||
* | Corrected gcc path on windows | Abhishek Pandey | 2015-05-05 | 1 | -1/+1 |
| | | | | | | | | | When gcc path is set to r"$nimrod\dist\mingw\bin", the compiler gives an error: Error : unhandled exception : invalid format string [Value Error], but works correctly with gcc.path set to r"$nim\dist\mingw\bin". I think this issue was caused due to the name change from nimrod to nim , but the name change was not replicated in the config file. | ||||
* | Add linker flags for the Objective-C compilation mode. | Philip Wernersbach | 2015-03-15 | 1 | -0/+16 |
| | | | | Fixes Araq/Nim#2153. | ||||
* | fixed the tester; more tests green | Araq | 2015-03-10 | 1 | -2/+2 |
| | |||||
* | Removing -fasmblocks default for OS X | Hans Raaf | 2015-02-16 | 1 | -2/+2 |
| | | | | | Considering that alternatives to the Apple compiler versions of xcode like GCC 4.9 (as installed by Homebrew) error out because it is an unknown parameter. Modern Xcode's clang + gcc do not seem to need this anymore. I think it is ok to remove because developer with old xcode are rare and can easily add this to their systems if needed. | ||||
* | fixes #2103 | Araq | 2015-02-13 | 1 | -6/+6 |
| | |||||
* | merged #2083 manually | Araq | 2015-02-08 | 1 | -0/+14 |
| | |||||
* | configuration system supports %= to access environment variables | Araq | 2015-02-07 | 1 | -1/+3 |
| | |||||
* | make FreeBSD's compiler clang | Mikhail Sobolev | 2015-01-12 | 1 | -1/+1 |
| | | | | | * there's not much documentation about what's in nim.cfg file * the build.sh template was updated based on darwin | ||||
* | Happy new year! | Guillaume Gelin | 2015-01-06 | 1 | -1/+1 |
| | |||||
* | Added generic OpenWrt compilers for --cpu:mips | Elie Zedeck | 2014-11-16 | 1 | -0/+3 |
| | |||||
* | Fix #1599 | Clay Sweetser | 2014-10-29 | 1 | -7/+7 |
| | | | | | Compiler-specific options are now read with the '{compiler}.cpp' prefix in C++ mode. GCC C++ mode is fixed. | ||||
* | Add nimblepath so Nim can find Nimble-installed packages out-of-the-box | Nick Greenfield | 2014-10-23 | 1 | -0/+1 |
| | |||||
* | added nimfix tool | Araq | 2014-09-05 | 1 | -1/+3 |
| | |||||
* | renamed babelcmd to nimblecmd; config files are now nim.cfg; other renamings | Araq | 2014-08-29 | 1 | -0/+141 |