summary refs log blame commit diff stats
path: root/readme.md
blob: fbaa5fd32028d2e1f7466cf63bed1d7a613c5aea (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                                                                                                                                                                                                                   
 
                                                            


                                                                  

            

                                                                  
                                                                            

                                                         
 
                                                                       
             
 


                                                                           
 





                                                                           



                                                                           
   
                                               
        
                                                          



                            

   

                                                                         
 


                                                                              
 

                                                                          









                                                                               









































































                                                                                                                                                               

          


                                                                              
                                               


                                  
                                      
                    

              

                                

                                  


                                                                                                                                                                      
 
                                                                             
                                                                                             
                                                                             
                                                                                             
                                                                              
                                                                                              
                                                                              
                                                                                              
                                                                              

                                                                                              
                                                                               
                                                                                               
                                                                               

                                                                                               
                                                                           


                                                                                           
# <img src="https://raw.githubusercontent.com/nim-lang/assets/master/Art/logo-crown.png" width="36"> Nim [![Build Status](https://travis-ci.org/nim-lang/Nim.svg?branch=devel)](https://travis-ci.org/nim-lang/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](http://nim-lang.org).

## 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](http://github.com/nim-lang/csources).

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

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.txt](doc/koch.txt).

## Nimble
[Nimble](https://github.com/nim-lang/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](https://github.com/nim-lang/nimble#installation)
provides thorough instructions on how to install Nimble, so that this isn't a
problem.

## Community
[![Join the Chat at irc.freenode.net#nim](https://img.shields.io/badge/IRC-join_chat_in_%23nim-blue.svg)](https://webchat.freenode.net/?channels=nim)
[![Get help](https://img.shields.io/badge/Forum-get%20help-4eb899.svg)](http://forum.nim-lang.org)
[![Stackoverflow](https://img.shields.io/badge/stackoverflow-use_%23nim_tag-yellow.svg)](http://stackoverflow.com/questions/tagged/nim?sort=newest&pageSize=15)
[![Follow @nim_lang!](https://img.shields.io/twitter/follow/nim_lang.svg?style=social)](https://twitter.com/nim_lang)

* The [forum](http://forum.nim-lang.org/) - the best place to ask questions and to discuss Nim.
* [IRC (Freenode#nim)](https://webchat.freenode.net/?channels=nim) - the best place to discuss
  Nim in real-time, this is also where most development decision get made!
* [Stackoverflow](http://stackoverflow.com/questions/tagged/nim)

## Contributing

[![Contribute to Nim via Gratipay!](https://img.shields.io/gratipay/team/nim.svg)](https://gratipay.com/nim/)
[![Bountysource](https://img.shields.io/bountysource/team/nim/activity.svg)](https://www.bountysource.com/teams/nim)

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 in ``compiler/nimfix`` and ``compiler/plugins``
  respectively. Nimsuggest used to live in the ``compiler`` directory 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 including ``niminst`` and ``nimweb``, most of these are invoked
    via ``koch``.
* ``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](https://help.github.com/articles/using-pull-requests/).
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](https://github.com/nim-lang/Nim/issues). There is always plenty of issues
labelled [``Easy``](https://github.com/nim-lang/Nim/labels/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](https://gratipay.com/nim/)
* [Bountysource](https://www.bountysource.com/teams/nim)
* Bitcoin - 1BXfuKM2uvoD6mbx4g5xM3eQhLzkCK77tJ

Finally, if you have any questions feel free to submit a question on the issue tracker,
on the [Nim forum](http://forum.nim-lang.org), 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
[**Build Waterfall**][waterfall]

|        | Linux | Windows | Mac |
| ------ | ----- | ------- | --- |
| x86    | [![linux-x86][linux-x86-img]][linux-x86] | [![windows-x86][windows-x86-img]][windows-x86] |
| x86_64 | [![linux-x86_64][linux-x86_64-img]][linux-x86_64] | [![windows-x86_64][windows-x86_64-img]][windows-x86_64] | [![mac-x86_64][mac-x86_64-img]][mac-x86_64] |
| arm    | [![linux-armv5][linux-arm5-img]][linux-arm5]<br/> [![linux-armv6][linux-arm6-img]][linux-arm6]<br/> [![linux-armv7][linux-arm7-img]][linux-arm7]

[linux-x86]:          http://buildbot.nim-lang.org/builders/linux-x32-builder
[linux-x86-img]:      http://buildbot.nim-lang.org/buildstatusimage?builder=linux-x32-builder
[linux-x86_64]:       http://buildbot.nim-lang.org/builders/linux-x64-builder
[linux-x86_64-img]:   http://buildbot.nim-lang.org/buildstatusimage?builder=linux-x64-builder
[linux-arm5]:         http://buildbot.nim-lang.org/builders/linux-arm5-builder
[linux-arm5-img]:     http://buildbot.nim-lang.org/buildstatusimage?builder=linux-arm5-builder
[linux-arm6]:         http://buildbot.nim-lang.org/builders/linux-arm6-builder
[linux-arm6-img]:     http://buildbot.nim-lang.org/buildstatusimage?builder=linux-arm6-builder
[linux-arm7]:         http://buildbot.nim-lang.org/builders/linux-arm7-builder
[linux-arm7-img]:     http://buildbot.nim-lang.org/buildstatusimage?builder=linux-arm7-builder

[windows-x86]:        http://buildbot.nim-lang.org/builders/windows-x32-builder
[windows-x86-img]:    http://buildbot.nim-lang.org/buildstatusimage?builder=windows-x32-builder
[windows-x86_64]:     http://buildbot.nim-lang.org/builders/windows-x64-builder
[windows-x86_64-img]: http://buildbot.nim-lang.org/buildstatusimage?builder=windows-x64-builder

[mac-x86_64]:         http://buildbot.nim-lang.org/builders/mac-x64-builder
[mac-x86_64-img]:     http://buildbot.nim-lang.org/buildstatusimage?builder=mac-x64-builder

[waterfall]: http://buildbot.nim-lang.org/waterfall
b.de> 2012-03-31 01:03:14 +0200 implemented support for the AVR CPU and standalone OS' href='/ahoang/Nim/commit/koch.nim?h=devel&id=142e849b91cb39976ec2ca78e0c7a998288a367a'>142e849b9 ^
90119066a ^





76235348f ^
ae6dac6b6 ^
90119066a ^

0f4567d59 ^
90119066a ^

3b00d9cc7 ^
90119066a ^









3b00d9cc7 ^
90119066a ^

346443d1b ^
73c355176 ^
346443d1b ^
90119066a ^
3b00d9cc7 ^

90119066a ^


3b00d9cc7 ^
9c3751a37 ^
90119066a ^


6ff8752be ^
3b00d9cc7 ^
4d5c3ebd4 ^
9c3751a37 ^
6ff8752be ^
740527813 ^

202972dea ^
740527813 ^
202972dea ^





















c73d9fdd4 ^
202972dea ^
740527813 ^
202972dea ^


c95f6f117 ^
202972dea ^




c95f6f117 ^
3b00d9cc7 ^
740527813 ^
202972dea ^



1b7d7ae1c ^
202972dea ^









3b00d9cc7 ^
202972dea ^


740527813 ^
8b93e4132 ^


8a5373291 ^
8b93e4132 ^














813a4f1d8 ^






8b93e4132 ^
8b93e4132 ^

740527813 ^

37229df7f ^

6ff8752be ^
0b4d5e45b ^

1e5926458 ^

aa8b470cf ^
071ccf3d0 ^
1e5926458 ^
d29aa4c5a ^
411e602d1 ^
6457e8f56 ^

411e602d1 ^

90119066a ^
b4e25a637 ^
0f4567d59 ^

1a88e2a18 ^


b4e25a637 ^


3b00d9cc7 ^

99b36cb71 ^
90119066a ^





17ce01c3e ^
90119066a ^


e6dcceae6 ^
a195388c3 ^


76c3b314d ^
5aa8278f6 ^
90119066a ^
ba2aa474a ^
dc8d8ebb7 ^
6655537c6 ^
90119066a ^
6ff8752be ^
17ce01c3e ^
202972dea ^



b4e25a637 ^
8b93e4132 ^
90119066a ^

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393