Author: | Andreas Rumpf |
---|---|
Version: | 2.2.4 |
"Look at you, hacker. A pathetic creature of meat and bone, panting and sweating as you run through my corridors. How can you challenge a perfect, immortal machine?"
This document describes the usage of theNim compiler on the different supported platforms. It is not a definition of the Nim programming language (which is covered in themanual).
Nim is free software; it is licensed under theMIT License.
All options that take aPATH orDIR argument are subject to path substitution:
Basic command-line switches are:
Usage:
nim command [options] [projectfile] [arguments]
Command:
Arguments: arguments are passed to the program being run (if --run option is selected)
Options:
Note, single letter options that take an argument require a colon. E.g. -p:PATH.
Advanced command-line switches are:
Advanced commands:Runtime checks (see -x):
Advanced options:
Each warning can be activated individually with--warning:NAME:on|off or in apush pragma with{.warning[NAME]:on|off.}.
Name | Description |
---|---|
CannotOpenFile | Some file not essential for the compiler's working could not be opened. |
OctalEscape | The code contains an unsupported octal sequence. |
Deprecated | The code uses a deprecated symbol. |
ConfigDeprecated | The project makes use of a deprecated config file. |
SmallLshouldNotBeUsed | The letter 'l' should not be used as an identifier. |
EachIdentIsTuple | The code contains a confusingvar declaration. |
CStringConv | Warn about dangerous implicit conversions tocstring. |
EnumConv | Warn about conversions from enum to enum. |
AnyEnumConv | Warn about any conversions to an enum type. |
HoleEnumConv | Warn about conversion to an enum with holes. These conversions are unsafe. |
ResultUsed | Warn about the usage of the built-inresult variable. |
User | Some user-defined warning. |
Each hint can be activated individually with--hint:NAME:on|off or in apush pragma with{.hint[NAME]:on|off.}.
Name | Description |
---|---|
CC | Shows when the C compiler is called. |
CodeBegin | |
CodeEnd | |
CondTrue | |
Conf | A config file was loaded. |
ConvToBaseNotNeeded | |
ConvFromXtoItselfNotNeeded | |
Dependency | |
Exec | Program is executed. |
ExprAlwaysX | |
ExtendedContext | |
GCStats | Dumps statistics about the Garbage Collector. |
GlobalVar | Shows global variables declarations. |
Link | Linking phase. |
Name | |
Path | Search paths modifications. |
Pattern | |
Performance | |
Processing | Artifact being compiled. |
QuitCalled | |
Source | The source line that triggered a diagnostic message. |
StackTrace | |
Success, SuccessX | Successful compilation of a library or a binary. |
User | |
UserRaw | |
XDeclaredButNotUsed | Unused symbols in the code. |
Level | Description |
---|---|
0 | Minimal output level for the compiler. |
1 | Displays compilation of all the compiled files, including those imported by other modules or through thecompile pragma. This is the default level. |
2 | Displays compilation statistics, enumerates the dynamic libraries that will be loaded by the final binary, and dumps to standard output the result of applyinga filter to the source code if any filter was used during compilation. |
3 | In addition to the previous levels dumps a debug stack trace for compiler developers. |
Through the-d:x or--define:x switch you can define compile-time symbols for conditional compilation. The defined switches can be checked in source code with thewhen statement anddefined proc. The typical use of this switch is to enable builds in release mode (-d:release) where optimizations are enabled for better performance. Another common use is the-d:ssl switch to activate SSL sockets.
Additionally, you may pass a value along with the symbol:-d:x=y which may be used in conjunction with thecompile-time define pragmas to override symbols during build time.
Compile-time symbols are completelycase insensitive and underscores are ignored too.--define:FOO and--define:foo are identical.
Compile-time symbols starting with thenim prefix are reserved for the implementation and should not be used elsewhere.
Name | Description |
---|---|
nimStdSetjmp | Use the standardsetjmp()/longjmp() library functions for setjmp-based exceptions. This is the default on most platforms. |
nimSigSetjmp | Usesigsetjmp()/siglongjmp() for setjmp-based exceptions. |
nimRawSetjmp | Use_setjmp()/_longjmp() on POSIX and_setjmp()/longjmp() on Windows, for setjmp-based exceptions. It's the default on BSDs and BSD-like platforms, where it's significantly faster than the standard functions. |
nimBuiltinSetjmp | Use__builtin_setjmp()/__builtin_longjmp() for setjmp-based exceptions. This will not work if an exception is being thrown and caught inside the same procedure. Useful for benchmarking. |
Note: Theproject file name is the name of the.nim file that is passed as a command-line argument to the compiler.
Thenim executable processes configuration files in the following directories (in this order; later files overwrite previous settings):
Command-line settings have priority over configuration file settings.
The default build of a project is adebug build. To compile arelease build define therelease symbol:
nimc-d:releasemyproject.nim
To compile adangerous release build define thedanger symbol:
nimc-d:dangermyproject.nim
Nim has the concept of a global search path (PATH) that is queried to determine where to find imported modules or include files. If multiple files are found an ambiguity error is produced.
nimdump shows the contents of the PATH.
However before the PATH is used the current directory is checked for the file's existence. So if PATH contains$lib and$lib/bar and the directory structure looks like this:
$lib/x.nim$lib/bar/x.nimfoo/x.nimfoo/main.nimother.nim
Andmain importsx,foo/x is imported. Ifother importsx then both$lib/x.nim and$lib/bar/x.nim match but$lib/x.nim is used as it is the first match.
The generated files that Nim produces all go into a subdirectory callednimcache. Its full path is
The_r suffix is used for release builds,_d is for debug builds.
This makes it easy to delete all generated files.
The--nimcachecompiler switch can be used to to change thenimcache directory.
However, the generated C code is not platform-independent. C code generated for Linux does not compile on Windows, for instance. The comment on top of the C file lists the OS, CPU, and CC the file has been compiled for.
To change the compiler from the default compiler (at the command line):
nimc--cc:llvm_gcc--compile_onlymyfile.nim
This uses the configuration defined inconfig\nim.cfg forllvm_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 ofconfig\nim.cfg. Changing this setting affects the compiler used bykoch to (re)build Nim.
To use theCC environment variable, usenimc--cc:envmyfile.nim. To use theCXX environment variable, usenimcpp--cc:envmyfile.nim.--cc:env is available since Nim version 1.4.
To cross compile, use for example:
nimc--cpu:i386--os:linux--compileOnly--genScriptmyproject.nim
Then move the C code and the compile scriptcompile_myproject.sh to your Linux i386 machine and run the script.
Another way is to make Nim invoke a cross compiler toolchain:
nimc--cpu:arm--os:linuxmyproject.nim
For cross compilation, the compiler invokes a C compiler named like$cpu.$os.$cc (for examplearm.linux.gcc) with options defined in$cpu.$os.$cc.options.always. The configuration system is used to provide meaningful defaults. For example, for Linux on a 32-bit ARM CPU, your configuration file should contain something like:
arm.linux.gcc.path = "/usr/bin"arm.linux.gcc.exe = "arm-linux-gcc"arm.linux.gcc.linkerexe = "arm-linux-gcc"arm.linux.gcc.options.always = "-w -fmax-errors=3"
To cross-compile for Windows from Linux or macOS using the MinGW-w64 toolchain:
nimc-d:mingwmyproject.nim# `nim r` also works, running the binary via `wine` or `wine64`:nimr-d:mingw--eval:'import os; echo "a" / "b"'
Use--cpu:i386 or--cpu:amd64 to switch the CPU architecture.
The MinGW-w64 toolchain can be installed as follows:
aptinstallmingw-w64# Ubuntuyuminstallmingw32-gccyuminstallmingw64-gcc# CentOS - requires EPELbrewinstallmingw-w64# OSX
There are two ways to compile for Android: terminal programs (Termux) and with the NDK (Android Native Development Kit).
The first one is to treat Android as a simple Linux and useTermux to connect and run the Nim compiler directly on android as if it was Linux. These programs are console-only programs that can't be distributed in the Play Store.
Use regularnimc inside termux to make Android terminal programs.
Normal Android apps are written in Java, to use Nim inside an Android app you need a small Java stub that calls out to a native library written in Nim using theNDK. You can also usenative-activity to have the Java stub be auto-generated for you.
Usenimc-c--cpu:arm--os:android-d:androidNDK--noMain:on to generate the C source files you need to include in your Android Studio project. Add the generated C files to CMake build script in your Android project. Then do the final compile with Android Studio which uses Gradle to call CMake to compile the project.
Because Nim is part of a library it can't have its own C-stylemain() so you would need to define your ownandroid_main and init the Java environment, or use a library like SDL2 or GLFM to do it. After the Android stuff is done, it's very important to callNimMain() in order to initialize Nim's garbage collector and to run the top level statements of your program.
procNimMain(){.importc.}procglfmMain*(display:ptrGLFMDisplay){.exportc.}=NimMain()# initialize garbage collector memory, types and stack
The nameNimMain can be influenced via the--nimMainPrefix:prefix switch. Use--nimMainPrefix:MyLib and the function to call is namedMyLibNimMain.
To cross-compile for iOS you need to be on a macOS computer and use XCode. Normal languages for iOS development are Swift and Objective C. Both of these use LLVM and can be compiled into object files linked together with C, C++ or Objective C code produced by Nim.
Usenimc-c--os:ios--noMain:on to generate C files and include them in your XCode project. Then you can use XCode to compile, link, package and sign everything.
Because Nim is part of a library it can't have its own C-stylemain() so you would need to definemain that callsautoreleasepool andUIApplicationMain to do it, or use a library like SDL2 or GLFM. After the iOS setup is done, it's very important to callNimMain() to initialize Nim's garbage collector and to run the top-level statements of your program.
procNimMain(){.importc.}procglfmMain*(display:ptrGLFMDisplay){.exportc.}=NimMain()# initialize garbage collector memory, types and stack
Note: XCode's "make clean" gets confused about the generated nim.c files, so you need to clean those files manually to do a clean build.
The nameNimMain can be influenced via the--nimMainPrefix:prefix switch. Use--nimMainPrefix:MyLib and the function to call is namedMyLibNimMain.
Simply add--os:nintendoswitch to your usualnimc ornimcpp command and set thepassC andpassL command line switches to something like:
nimc...--d:nimAllocPagesViaMalloc--mm:orc--passC="-I$DEVKITPRO/libnx/include"...--passL="-specs=$DEVKITPRO/libnx/switch.specs -L$DEVKITPRO/libnx/lib -lnx"
or setup anim.cfg file like so:
#nim.cfg--mm:orc--d:nimAllocPagesViaMalloc--define:nimInheritHandles--passC="-I$DEVKITPRO/libnx/include"--passL="-specs=$DEVKITPRO/libnx/switch.specs -L$DEVKITPRO/libnx/lib -lnx"
The devkitPro setup must be the same as the default with their new installerhere for Mac/Linux orhere for Windows.
For example, with the above-mentioned config:
nimc--os:nintendoswitchswitchhomebrew.nim
This will generate a file calledswitchhomebrew.elf which can then be turned into an nro file with theelf2nro tool in the devkitPro release. Examples can be found atthe nim-libnx github repo.
There are a few things that don't work because the devkitPro libraries don't support them. They are:
Compiling for GPU computation can be achieved with--cc:nvcc for CUDA with nvcc, or with--cc:hipcc for AMD GPUs with HIP. Both compilers require building for C++ withnimcpp.
Here's a very simple CUDA kernel example using emit, which can be compiled withnimcpp--cc:nvcc--define:"useMalloc"hello_kernel.nim assuming you have the CUDA toolkit installed.
{.emit:"""__global__ void add(int a, int b) { int c; c = a + b;}""".}procmain()={.emit:""" add<<<1,1>>>(2,7); """.}main()
Note: The same rules apply tolib*.so shared object files on UNIX. For better readability only the DLL version is described here.
Nim supports the generation of DLLs. However, there must be only one instance of the GC per process/address space. This instance is contained innimrtl.dll. This means that every generated Nim DLL depends onnimrtl.dll. To generate the "nimrtl.dll" file, use the command:
nimc-d:releaselib/nimrtl.nim
To link againstnimrtl.dll use the command:
nimc-d:useNimRtlmyprog.nim
The standard library supports a growing number ofuseX conditional defines affecting how some features are implemented. This section tries to give a complete list.
Define | Effect |
---|---|
release | Turns on the optimizer. More aggressive optimizations are possible, e.g.:--passC:-ffast-math (but see issue #10305) |
danger | Turns off all runtime checks and turns on the optimizer. |
useFork | Makesosproc usefork instead ofposix_spawn. |
useNimRtl | Compile and link againstnimrtl.dll. |
useMalloc | Makes Nim use C'smalloc instead of Nim's own memory manager, albeit prefixing each allocation with its size to support clearing memory on reallocation. This only works with--mm:none,--mm:arc and--mm:orc. |
useRealtimeGC | Enables support of Nim's GC forsoft realtime systems. See the documentation of therefc for further information. |
logGC | Enable GC logging to stdout. |
nodejs | The JS target is actuallynode.js. |
ssl | Enables OpenSSL support for the sockets module. |
memProfiler | Enables memory profiling for the native GC. |
uClibc | Use uClibc instead of libc. (Relevant for Unix-like OSes) |
checkAbi | When using types from C headers, add checks that compare what's in the Nim file with what's in the C header. This may become enabled by default in the future. |
tempDir | This symbol takes a string as its value, like--define:tempDir:/some/temp/path to override the temporary directory returned byos.getTempDir(). The valueshould end with a directory separator character. (Relevant for the Android platform) |
useShPath | This symbol takes a string as its value, like--define:useShPath:/opt/sh/bin/sh to override the path for thesh binary, in cases where it is not located in the default location/bin/sh. |
noSignalHandler | Disable the crash handler fromsystem.nim. |
globalSymbols | Load all{.dynlib.} libraries with theRTLD_GLOBAL flag on Posix systems to resolve symbols in subsequently loaded libraries. |
lto | Enable link-time optimization in the backend compiler and linker. |
lto_incremental | Enable link-time optimization and additionally enable incremental linking for compilers that support it. Currently only clang and vcc. |
strip | Strip debug symbols added by the backend compiler from the executable. |
This section describes Nim's additional features that are not listed in the Nim manual. Some of the features here only make sense for the C code generator and are subject to change.
The--lineDir option can be turned on or off. If turned on the generated C code contains#line directives. This may be helpful for debugging with GDB.
If the--stackTrace option is turned on, the generated C contains code to ensure that proper stack traces are given if the program crashes or some uncaught exception is raised.
The--lineTrace option implies thestackTrace option. If turned on, the generated C contains code to ensure that proper stack traces with line number information are given if the program crashes or an uncaught exception is raised.
By default Nim'sdynlib pragma causes the compiler to generateGetProcAddress (or their Unix counterparts) calls to bind to a DLL. With thedynlibOverride command line switch this can be prevented and then via--passL the static library can be linked against. For instance, to link statically against Lua this command might work on Linux:
nimc--dynlibOverride:lua--passL:liblua.libprogram.nim
The typical compiler usage involves using thecompile orc command to transform a.nim file into one or more.c files which are then compiled with the platform's C compiler into a static binary. However, there are other commands to compile to C++, Objective-C, or JavaScript. More details can be read in theNim Backend Integration document.
Nim provides thedoc command to generate HTML documentation from.nim source files. Only exported symbols will appear in the output. For more details seethe docgen documentation.
Nim provides language integration with external IDEs through the idetools command. See the documentation ofidetools for further information.
While the default Nim configuration is targeted for optimal performance on modern PC hardware and operating systems with ample memory, it is very well possible to run Nim code and a good part of the Nim standard libraries on small embedded microprocessors with only a few kilobytes of memory.
A good start is to use theany operating target together with themalloc memory allocator and thearc garbage collector. For example:
nimc--os:any--mm:arc-d:useMalloc[...]x.nim
If your platform does not provide these functions it should be trivial to provide an implementation for them and link these to your program.
For targets with very restricted memory, it might be beneficial to pass some additional flags to both the Nim compiler and the C compiler and/or linker to optimize the build for size. For example, the following flags can be used when targeting a gcc compiler:
--opt:size -d:lto -d:strip
The--opt:size flag instructs Nim to optimize code generation for small size (with the help of the C compiler), the-d:lto flags enable link-time optimization in the compiler and linker, the-d:strip strips debug symbols.
Check theCross-compilation section for instructions on how to compile the program for your target.
Nim's default allocator is based on TLSF, this algorithm was designed for embedded devices. This allocator gets blocks/pages of memory via a currently undocumentedosalloc API which usually uses POSIX'smmap call. On many environmentsmmap is not available but C'smalloc is. You can use thenimAllocPagesViaMalloc define to usemalloc instead ofmmap.nimAllocPagesViaMalloc is currently only supported with--mm:arc or--mm:orc. (Since version 1.6)
Adjust the page size for Nim's GC allocator. This enables usingnimAllocPagesViaMalloc on devices with less RAM. The default page size requires too much RAM to work.
Recommended settings:
Initial testing hasn't shown much difference between 512B or 1kB page sizes in terms of performance or latency. UsingnimPages256 will limit the total amount of allocatable RAM.
SetsMemAlign to4 bytes which reduces the memory alignment to better match some embedded devices.
Nim's thread API provides a simple wrapper around more advanced RTOS task features. Customizing the stack size and stack guard size can be done by setting-d:nimThreadStackSize=16384 or-d:nimThreadStackGuard=32.
Currently only Zephyr, NuttX and FreeRTOS support these configurations.
See the--mm:arc or--mm:orc memory management settings inMM for further information.
The Nim programming language has no concept of Posix's signal handling mechanisms. However, the standard library offers some rudimentary support for signal handling, in particular, segmentation faults are turned into fatal errors that produce a stack trace. This can be disabled with the-d:noSignalHandler switch.
Nim has no separate optimizer, but the C code that is produced is very efficient. Most C compilers have excellent optimizers, so usually it is not needed to optimize one's code. Nim has been designed to encourage efficient code: The most readable code in Nim is often the most efficient too.
However, sometimes one has to optimize. Do it in the following order:
This section can only help you with the last item.
String assignments are sometimes expensive in Nim: They are required to copy the whole string. However, the compiler is often smart enough to not copy strings. Due to the argument passing semantics, strings are never copied when passed to subroutines. The compiler does not copy strings that are a result of a procedure call, because the callee returns a new string anyway. Thus it is efficient to do:
vars=procA()# assignment will not copy the string; procA allocates a new# string already
However, it is not efficient to do:
vars=varA# assignment has to copy the whole string into a new buffer!
Forlet symbols a copy is not always necessary:
lets=varA# may only copy a pointer if it safe to do so
The compiler optimizes string case statements: A hashing scheme is used for them if several different string constants are used. So code like this is reasonably efficient:
casenormalize(k.key)of"name":c.name=vof"displayname":c.displayName=vof"version":c.version=vof"os":c.oses=split(v,{';'})of"cpu":c.cpus=split(v,{';'})of"authors":c.authors=split(v,{';'})of"description":c.description=vof"app":casenormalize(v)of"console":c.app=appConsoleof"gui":c.app=appGUIelse:quit(errorStr(p,"expected: console or gui"))of"license":c.license=UnixToNativePath(k.value)else:quit(errorStr(p,"unknown variable: "&k.key))