Compiler selection doco (#6115)

* Slices indices explanation

as per https://forum.nim-lang.org/t/2870

* Remove duplicate in note

* Doco: Selecting a different compiler
This commit is contained in:
jlp765
2017-07-17 18:42:40 +10:00
committed by Varriount
parent 91eba77b96
commit ed5888ba30

View File

@@ -189,6 +189,22 @@ resides in its own directory so that the generated ``nimcache`` directory
is not shared between different projects.
Compiler Selection
==================
To change the compiler from the default compiler (at the command line)::
nim c --cc:llvm_gcc --compile_only myfile.nim
This uses the configuration defined in ``config\nim.cfg`` for ``lvm_gcc``.
If nimcache already contains compiled code from a different compiler for the same project,
add the ``-f`` flag to force all files to be recompiled.
The default compiler is defined at the top of ``config\nim.cfg``. Changing this setting
affects the compiler used by ``koch`` to (re)build Nim.
Cross compilation
=================