summary refs log tree commit diff stats
path: root/doc
diff options
context:
space:
mode:
authorAndreas Rumpf <andreas@andreas-laptop>2010-07-21 20:59:06 +0200
committerAndreas Rumpf <andreas@andreas-laptop>2010-07-21 20:59:06 +0200
commitcdf03b06b93d8bf5023d7c4b38a761675a20d514 (patch)
treef41ea10b1d54502600e841605d8fb0767558e5d3 /doc
parentde27098546773b9af5d1a1c06f68f06fadbf3008 (diff)
downloadNim-cdf03b06b93d8bf5023d7c4b38a761675a20d514.tar.gz
added system.appType magic
Diffstat (limited to 'doc')
-rwxr-xr-xdoc/apis.txt1
-rwxr-xr-xdoc/nimrodc.txt11
2 files changed, 11 insertions, 1 deletions
diff --git a/doc/apis.txt b/doc/apis.txt
index 93484b8b7..2932c05a9 100755
--- a/doc/apis.txt
+++ b/doc/apis.txt
@@ -56,6 +56,7 @@ extension               ext
 separator               sep
 column                  col, column    col is preferred, inconsistent right
                                        now
+application             app
 configuration           cfg
 message                 msg
 argument                arg
diff --git a/doc/nimrodc.txt b/doc/nimrodc.txt
index cdad6efa8..b4960c5e4 100755
--- a/doc/nimrodc.txt
+++ b/doc/nimrodc.txt
@@ -66,9 +66,18 @@ The generated files that Nimrod produces all go into a subdirectory called
 ``nimcache`` in your project directory. This makes it easy to delete all

 generated files.

 

-However, the generated C code is not platform independant. C code generated for

+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.

+
+..
+  DLL generation
+  ==============
+
+  Nimrod supports the generation of DLLs. However, there must be only one 
+  instance of the GC per address space. This instance is contained in
+  ``nimrtl.dll``. This means that every generated Nimrod DLL depends
+  on ``nimrtl.dll``. 
 

 

 Additional Features