Squashed commit of the following:
commit d87230e5a2396530e93e9b20f312e08069c590ad
Author: Dominik Picheta <dominikpicheta@gmail.com>
Date: Sun Aug 28 22:46:41 2016 +0200
Fix tests on win
commit 25c90666fbde6c6c09352fba0cc7ed7ee2ce553c
Author: Dominik Picheta <dominikpicheta@gmail.com>
Date: Sun Aug 28 22:27:00 2016 +0200
Fix tests.
commit b46e00c86005d24fd210f8041031a4d7b6d73e3f
Author: Dominik Picheta <dominikpicheta@gmail.com>
Date: Sun Aug 28 21:58:12 2016 +0200
Fix deps probs.
commit 9c5db9eb9a41d8baab0124c28706ab2afb3c7f5f
Author: Dominik Picheta <dominikpicheta@gmail.com>
Date: Sun Aug 28 21:14:14 2016 +0200
Fixes yaml sytax
commit 292571a81b9b53b15b864aa2f86cb445f4e07307
Author: Dominik Picheta <dominikpicheta@gmail.com>
Date: Sun Aug 28 21:13:06 2016 +0200
Separates tests.
commit 3cc46c712b86bcab8fc79acf390487fe2061efa1
Author: Dominik Picheta <dominikpicheta@gmail.com>
Date: Sun Aug 28 20:31:40 2016 +0200
Fix batch script.
commit 6b93be904dd3064e2a651d012acf9978c33a4b43
Author: Dominik Picheta <dominikpicheta@gmail.com>
Date: Sun Aug 28 20:22:24 2016 +0200
Windows fixes?
commit 76dcda9d698682147025e7af5a563e2844c8ed84
Author: Dominik Picheta <dominikpicheta@gmail.com>
Date: Sun Aug 28 20:16:35 2016 +0200
Refactored ci yml file.
commit abd49689440e9159e6008f7ef12d3006f53d76fa
Author: Dominik Picheta <dominikpicheta@gmail.com>
Date: Sun Aug 28 17:17:44 2016 +0200
Add runner info to script.
commit 62d7c3fa6a0eb5a074aa8d2c151481973b305d12
Author: Dominik Picheta <dominikpicheta@gmail.com>
Date: Sun Aug 28 17:11:29 2016 +0200
Run on all runners.
commit d6132fdd7cd48d47f03baa8a2752323160a83f99
Author: Dominik Picheta <dominikpicheta@gmail.com>
Date: Sun Aug 28 16:50:35 2016 +0200
Remove tags.
commit 19fddf60fbec60586900702c36763c5b090cc88e
Author: Dominik Picheta <dominikpicheta@gmail.com>
Date: Sun Aug 28 16:39:06 2016 +0200
Added linux/windows.
commit f91745e2a35f079ddb71676783ef34504a1d6c43
Author: Dominik Picheta <dominikpicheta@gmail.com>
Date: Sun Aug 28 16:24:02 2016 +0200
More changes.
commit d5a4cc49adbb6741db3b9af6ccb7011916c2ebd3
Author: Dominik Picheta <dominikpicheta@gmail.com>
Date: Sun Aug 28 15:55:21 2016 +0200
More changes.
commit 12f59e529324af5c67520b6dd255f0082fa1dc37
Merge: c77244a 7aa6494
Author: Dominik Picheta <dominikpicheta@gmail.com>
Date: Sun Aug 28 14:52:41 2016 +0200
Merge branch 'devel' into gitlab-ci
commit c77244af513606b1245ebcb44ab68ca3108fd77b
Author: Dominik Picheta <dominikpicheta@gmail.com>
Date: Sun Aug 28 14:48:25 2016 +0200
More changes.
commit 4c56422f980fd16d251112b5d3ce696264b3170b
Author: Dominik Picheta <dominikpicheta@gmail.com>
Date: Sun Aug 28 14:32:04 2016 +0200
More change.
commit f709ea003f1649234a723ba9d8092edbde3ef6a9
Author: Dominik Picheta <dominikpicheta@gmail.com>
Date: Sun Aug 28 14:17:58 2016 +0200
Another try at CI.
commit ae79bb95bc639856f2637f93fc9a59b178a18b0f
Author: Dominik Picheta <dominikpicheta@gmail.com>
Date: Sun Aug 28 14:03:58 2016 +0200
Fixes .gitlab-ci.yml
commit 9b832dde4abb9e168d1c549e12ed20a8c5185d7b
Author: Dominik Picheta <dominikpicheta@gmail.com>
Date: Sun Aug 28 14:00:48 2016 +0200
Some changes to .gitlab-ci.yml.
commit c113a09b6f1dd1b87c1f34f2ea54364d701033e2
Author: Dominik Picheta <dominikpicheta@gmail.com>
Date: Sun Aug 28 13:53:46 2016 +0200
Adds .gitlab-ci.yml.
Nim 
This repo 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.
Compiling
Compiling the Nim compiler is quite straightforward. Because the Nim compiler itself is written in the Nim programming language the C source of an older version of the compiler are needed to bootstrap the latest version. The C sources are available in a separate repo here.
The compiler currently 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 higher - x86, x86_64 and ppc64
In reality a lot more are supported, however they are not tested regularly.
To build from source you will need:
- gcc 3.x or later recommended. Other alternatives which may work are: clang, Visual C++, Intel's C++ compiler
- git or wget
Note: When installing gcc on Ubuntu (and likely other distros) ensure that the build-essentials package is installed also.
If you are on a fairly modern *nix system, the following steps should work:
$ git clone https://github.com/nim-lang/Nim.git
$ cd Nim
$ git clone --depth 1 https://github.com/nim-lang/csources
$ cd csources && sh build.sh
$ cd ..
$ bin/nim c koch
$ ./koch boot -d:release
You should then add the bin directory to your PATH, to make it easily
executable on your system.
The above steps can be performed on Windows in a similar fashion, the
build.bat and build64.bat (for x86_64 systems) are provided to be used
instead of build.sh.
The koch tool is the Nim build tool, more koch related options are
documented in doc/koch.rst.
Nimble
Nimble is Nim's package manager. For the
source based installations where you added Nim's bin directory to your PATH
the easiest way of installing Nimble is via:
$ nim e install_nimble.nims
Warning: If you install Nimble this way, you will not be able to use binary Nimble packages or update Nimble easily. The Nimble readme provides thorough instructions on how to install Nimble, so that this isn't a problem.
Community
- The forum - the best place to ask questions and to discuss Nim.
- IRC (Freenode#nim) - the best place to discuss Nim in real-time, this is also where most development decision get made!
- Stackoverflow
Contributing
We welcome everyone's contributions to Nim. No matter how small or large the contribution is, anything from small spelling fixes to large modules intended to be included in the standard library are accepted. Before you get started, you should know the following about this repositories structure:
bin/,build/- these directories are empty, but are used when Nim is built.compiler/- the compiler source code, all the Nim source code files in this directory implement the compiler. This also includes nimfix, and plugins which live incompiler/nimfixandcompiler/pluginsrespectively. Nimsuggest used to live in thecompilerdirectory also, but was moved to https://github.com/nim-lang/nimsuggest.config/- the configuration for the compiler and documentation generator.doc/- the documentation files in reStructuredText format.lib/- where the standard library lives.pure/- modules in the standard library written in pure Nim.impure/- modules in the standard library written in pure Nim which depend on libraries written in other languages.wrappers/- modules which wrap libraries written in other languages.
tests/- contains tests for the compiler and standard library, organised by category.tools/- the tools includingniminstandnimweb, most of these are invoked viakoch.web/- the Nim website (http://nim-lang.org).koch.nim- tool used to bootstrap Nim, generate C sources, build the website, documentation and more.
Most importantly, the koch tool can be used to run the test suite. To do so compile it first
by executing nim c koch, then execute ./koch tests. The test suite takes a while to run,
but you can run specific tests by specifying a category to run, for example ./koch tests cat async.
Make sure that the tests all pass before submitting your pull request. If you're short on time, you can just run the tests specific to your change. Just run the category which corresponds to the change you've made. When you create your pull request, Travis CI will verify that all the tests pass anyway.
If you're looking for things to do, take a look at our
issue tracker. There is always plenty of issues
labelled Easy, these should be a good
starting point if this is your first contribution to Nim.
You can also help with the development of Nim by making donations. You can do so in many ways:
- Gratipay
- Bountysource
- Bitcoin - 1BXfuKM2uvoD6mbx4g5xM3eQhLzkCK77tJ
Finally, if you have any questions feel free to submit a question on the issue tracker, on the Nim forum, or on IRC.
License
The compiler and the standard library are licensed under the MIT license, except for some modules where the documentation suggests otherwise. This means that you can use any license for your own programs developed with Nim, allowing you to create commercial applications.
Read copying.txt for more details.
Copyright (c) 2006-2016 Andreas Rumpf. All rights reserved.
Build Status
| Linux | Windows | Mac | |
|---|---|---|---|
| x86 | |||
| x86_64 | |||
| arm |