diff --git a/lib/system.nim b/lib/system.nim index 1e284f68ae..c372313324 100644 --- a/lib/system.nim +++ b/lib/system.nim @@ -837,7 +837,7 @@ const hostOS* {.magic: "HostOS"}: string = "" ## a string that describes the host operating system. Possible values: ## "windows", "macosx", "linux", "netbsd", "freebsd", "openbsd", "solaris", - ## "aix". + ## "aix", "standalone". hostCPU* {.magic: "HostCPU"}: string = "" ## a string that describes the host CPU. Possible values: diff --git a/web/question.txt b/web/question.txt index cccc784b6d..09e97bbcff 100644 --- a/web/question.txt +++ b/web/question.txt @@ -79,6 +79,15 @@ A JVM backend is almost impossible. The JVM is not expressive enough. It has never been designed as a general purpose VM anyway. A CLR backend is possible but would require much work. +What about editor support? +------------------------------- + +- Nimrod IDE: https://github.com/nimrod-code/Aporia +- Emacs: https://github.com/Tass/nimrod-mode +- Vim: https://github.com/zah/nimrod.vim/ +- Scite: Included +- Gedit: The `Aporia .lang file `_ +- jEdit: https://github.com/exhu/nimrod-misc/tree/master/jedit Compilation =========== @@ -95,23 +104,6 @@ Which option to use for the smallest executable? For the standard configuration file, ``-d:quick --opt:size`` does the trick. -Execution of GCC fails (Windows) --------------------------------- - -On Windows the configuration file ``config\nimrod.cfg`` assumes that GCC is in -``$nimrod\dist\mingw\bin``: This is where the Windows installer puts GCC. -If you delete the line ``gcc.path = r"$nimrod\dist\mingw\bin"``, Nimrod uses -the GCC from your ``PATH`` environment variable. - -If you cannot modify ``$nimrod\config\nimrod.cfg``, copy -``$nimrod\config\nimrod.cfg`` to ``%APPDATA%\nimrod.cfg`` and modify -``%APPDATA%\nimrod.cfg`` instead. To determine what ``%APPDATA%`` means for -your Windows account, use the shell command:: - - echo %APPDATA% - - - How do I use a different C compiler than the default one? ---------------------------------------------------------