diff options
author | Araq <rumpf_a@web.de> | 2012-12-09 23:20:48 +0100 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2012-12-09 23:20:48 +0100 |
commit | a840a4ce53c2344f77c6e07b4f8cbed0af2820dd (patch) | |
tree | e2f0853a3f85510744ea5e05514c6c6c5688b476 /config/nimrod.cfg | |
parent | b0dc877cc3cb45cce40f7cd9ad281823bf91cd72 (diff) | |
download | Nim-a840a4ce53c2344f77c6e07b4f8cbed0af2820dd.tar.gz |
improvements for --babelPath
Diffstat (limited to 'config/nimrod.cfg')
-rwxr-xr-x | config/nimrod.cfg | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/config/nimrod.cfg b/config/nimrod.cfg index 3ae38133d..9db13e836 100755 --- a/config/nimrod.cfg +++ b/config/nimrod.cfg @@ -13,11 +13,6 @@ cc = gcc arm.linux.gcc.exe = "arm-linux-gcc" arm.linux.gcc.linkerexe = "arm-linux-gcc" -@if nim: - # use the old fixed library for bootstrapping with Nim: - lib = "nimlib" -@end - path="$lib/core" path="$lib/pure" path="$lib/pure/collections" @@ -36,7 +31,10 @@ path="$lib/windows" path="$lib/posix" path="$lib/ecmas" path="$lib/pure/unidecode" -path="$home/.babel/libs/" + +@if nimbabel: + babelpath="$home/.babel/libs/" +@end @if release or quick: obj_checks:off |