No Description

Andreas Rumpf b3be4e965b make bootstrapping work with -d:nimImmutableStrings 6 years ago
bin 51488766e7 empty.txt files: Trim trailing whitespace 8 years ago
build 51488766e7 empty.txt files: Trim trailing whitespace 8 years ago
ci 96c571dd96 Removed fasm support. 7 years ago
compiler b3be4e965b make bootstrapping work with -d:nimImmutableStrings 6 years ago
config 20f92616d2 Add meta tag to ensure that media queries are activated on mobile devices. 7 years ago
doc bc738d63a7 no interval arithmetic anymore to construct implicit range types; breaking change 6 years ago
examples 5390c25b60 Modified #3472 to make its API more idiomatic. 8 years ago
icons 77ba8cb8bb Added icons support for Visual Studio compiler 7 years ago
lib b3be4e965b make bootstrapping work with -d:nimImmutableStrings 6 years ago
nimsuggest 1a29069ece attempt to make nimsuggest work with choosenim 7 years ago
tests 0c271f5420 fixes #5871 6 years ago
tinyc c5d7f6d2b3 Trim remaining .txt files trailing whitespace 8 years ago
tools 245a1fe8d7 Minor fixes for makefile.tmpl 6 years ago
web 8f67b90997 Merge branch 'araq2' into devel 7 years ago
.gitignore 9a68e1ad05 added dist/ to .gitignore 7 years ago
.gitlab-ci.yml e60868a785 CI: Store build/*.zip artifacts. 7 years ago
.travis.yml d93749b178 allow OSX tests to fail because of travis bugs 7 years ago
appveyor.yml 57f4abf6f4 make appveyor builds faster 6 years ago
compiler.nimble 7cd8b0b5e6 attempt to make the build green again 7 years ago
copying.txt 07562d6b99 website: http to https updates 7 years ago
install.txt ceb30d7a0e document the new way of doing things; refs #4934 7 years ago
install_nimble.nims 64cc026ced Fixes install_*.nims scripts on Linux. 7 years ago
install_tools.nims 64cc026ced Fixes install_*.nims scripts on Linux. 7 years ago
koch.nim 82effc581d added koch xtemp command for easier compiler development 7 years ago
koch.nim.cfg 39839fda8a Rename *.nimrod.cfg to *.nim.cfg 9 years ago
readme.md 3cef2129b9 Fixed nimsuggest in readme 7 years ago
readme.txt 2dfefc200b fixes some typos 8 years ago
todo.txt 846e51bb65 minor todo.txt update 7 years ago

readme.md

Nim Build Status

This repository contains the Nim compiler, Nim's stdlib, tools and documentation. For more information about Nim, including downloads and documentation for the latest release, check out Nim's website.

Community

Join the IRC chat Join the Gitter chat Get help View Nim posts on Stack Overflow

  • The forum - the best place to ask questions and to discuss Nim.
  • #nim IRC Channel (Freenode) - a place to discuss Nim in real-time. Also where most development decisions get made.
  • Gitter - an additional place to discuss Nim in real-time. There is a bridge between Gitter and the IRC channel.
  • Stack Overflow - a popular Q/A site for programming related topics that includes posts about Nim.

Compiling

The compiler currently officially supports the following platform and architecture combinations:

  • Windows (Windows XP or greater) - x86 and x86_64
  • Linux (most, if not all, distributions) - x86, x86_64, ppc64 and armv6l
  • Mac OS X (10.04 or greater) - x86, x86_64 and ppc64

More platforms are supported, however they are not tested regularly and they may not be as stable as the above-listed platforms.

Compiling the Nim compiler is quite straightforward if you follow these steps:

First, the C source of an older version of the Nim compiler is needed to bootstrap the latest version because the Nim compiler itself is written in the Nim programming language. Those C sources are available within the nim-lang/csources repository.

Next, to build from source you will need:

  • A C compiler such as gcc 3.x/later or an alternative such as clang, Visual C++ or Intel C++. It is recommended to use gcc 3.x or later.
  • Either git or wget to download the needed source repositories.
  • The build-essential package when using gcc on Ubuntu (and likely other distros as well).

Then, if you are on a *nix system or Windows, the following steps should compile Nim from source using gcc, git and the koch build tool (in the place of sh build.sh you should substitute build.bat on x86 Windows or build64.bat on x86_64 Windows):

$ git clone https://github.com/nim-lang/Nim.git
$ cd Nim
$ git clone --depth 1 https://github.com/nim-lang/csources.git
$ cd csources
$ sh build.sh
$ cd ../
$ bin/nim c koch
$ ./koch boot -d:release

Finally, once you have finished the build steps (on Windows, Mac or Linux) you should add the bin directory to your PATH.

Koch

koch is the build tool used to build various parts of Nim and to generate documentation and the website, among other things. The koch tool can also be used to run the Nim test suite.

Assuming that you added Nim's bin directory to your PATH, you may execute the tests using ./koch tests. The tests take a while to run, but you can run a subset of tests by specifying a category (for example ./koch tests cat async).

For more information on the koch build tool please see the documentation within the doc/koch.rst file.

Nimble

nimble is Nim's package manager and it can be acquired from the nim-lang/nimble repository. Assuming that you added Nim's bin directory to your PATH, you may install Nimble from source by running koch nimble within the root of the cloned repository.

Contributing

Contribute to Nim via Gratipay Setup a bounty via Bountysource Donate Bitcoins

We welcome everyone's contributions to Nim independent of how small or how large they are. Anything from small spelling fixes to large modules intended to be included in the standard library are welcome and appreciated. Before you get started contributing, you should familiarize yourself with the repository structure:

  • bin/, build/ - these directories are empty, but are used when Nim is built.
  • compiler/ - the compiler source code. Also includes nimfix, and plugins within compiler/nimfix and compiler/plugins respectively.
  • nimsuggest - the nimsuggest tool that previously lived in the nim-lang/nimsuggest repository.
  • config/ - the configuration for the compiler and documentation generator.
  • doc/ - the documentation files in reStructuredText format.
  • lib/ - the standard library, including:
    • pure/ - modules in the standard library written in pure Nim.
    • impure/ - modules in the standard library written in pure Nim with dependencies written in other languages.
    • wrappers/ - modules which wrap dependencies written in other languages.
  • tests/ - contains categorized tests for the compiler and standard library.
  • tools/ - the tools including niminst and nimweb (mostly invoked via koch).
  • web/ - the Nim website.
  • koch.nim - tool used to bootstrap Nim, generate C sources, build the website, and generate the documentation.

If you are not familiar with making a pull request using GitHub and/or git, please read this guide.

Ideally you should make sure that all tests pass before submitting a pull request. However, if you are short on time, you can just run the tests specific to your changes by only running the corresponding categories of tests. Travis CI verifies that all tests pass before allowing the pull request to be accepted, so only running specific tests should be harmless.

If you're looking for ways to contribute, please look at our issue tracker. There are always plenty of issues labelled Easy; these should be a good starting point for an initial contribution to Nim.

You can also help with the development of Nim by making donations. Donations can be made using:

If you have any questions feel free to submit a question on the Nim forum, or via IRC on the #nim channel.

License

The compiler and the standard library are licensed under the MIT license, except for some modules which explicitly state otherwise. As a result you may use any compatible license (essentially any license) for your own programs developed with Nim. You are explicitly permitted to develop commercial applications using Nim.

Please read the copying.txt file for more details.

Copyright © 2006-2017 Andreas Rumpf, all rights reserved.