diff options
author | Araq <rumpf_a@web.de> | 2015-06-21 10:04:26 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2015-06-21 10:04:26 +0200 |
commit | aa8b470cf6101b1394711866b0ee4c4ad8363104 (patch) | |
tree | d39b042198ba3b4d94c9e3f71950ea2840dd8390 /koch.nim | |
parent | 87f65f5e72148d6b44e09cfd4834c9366bfacd4c (diff) | |
download | Nim-aa8b470cf6101b1394711866b0ee4c4ad8363104.tar.gz |
use linenoise instead of GNU readline
Diffstat (limited to 'koch.nim')
-rw-r--r-- | koch.nim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/koch.nim b/koch.nim index 83f363b1a..8992271bf 100644 --- a/koch.nim +++ b/koch.nim @@ -57,7 +57,7 @@ Possible Commands: Boot options: -d:release produce a release version of the compiler -d:tinyc include the Tiny C backend (not supported on Windows) - -d:useGnuReadline use the GNU readline library for interactive mode + -d:useLinenoise use the linenoise library for interactive mode (not needed on Windows) -d:nativeStacktrace use native stack traces (only for Mac OS X or Linux) -d:noCaas build Nim without CAAS support @@ -333,7 +333,7 @@ proc tests(args: string) = # we compile the tester with taintMode:on to have a basic # taint mode test :-) exec "nim cc --taintMode:on tests/testament/tester" - # Since tests take a long time (on my machine), and we want to defy Murhpys + # Since tests take a long time (on my machine), and we want to defy Murhpys # law - lets make sure the compiler really is freshly compiled! exec "nim c --lib:lib -d:release --opt:speed compiler/nim.nim" let tester = quoteShell(getCurrentDir() / "tests/testament/tester".exe) |