summary refs log tree commit diff stats
path: root/compiler/commands.nim
Commit message (Expand)AuthorAgeFilesLines
* don't use stdout for nimsuggest server modeAraq2015-02-271-1/+1
* improved --debugger switch; updated release planAraq2015-02-271-5/+15
* fixes #2102Araq2015-02-131-9/+9
* configuration system supports %= to access environment variablesAraq2015-02-071-1/+1
* nimsuggest: sane dirty buffer handlingAraq2015-01-291-4/+5
* nimsuggest: first versionAraq2015-01-271-11/+9
* Happy new year!Guillaume Gelin2015-01-061-1/+1
* implemented 'experimental' switchAraq2014-12-051-0/+4
* Merge branch 'devel' into bigbreakAraq2014-10-201-1/+3
|\
| * default to warnGcUnsafe for threads:onAraq2014-10-191-1/+3
* | nimfix now in its own directory; single file mode now the defaultAraq2014-10-051-1/+3
* | Merge branch 'devel' of https://github.com/Araq/Nimrod into bigbreakAraq2014-10-041-2/+2
|\|
| * Disable git hashing in the version commandVarriount2014-09-281-2/+2
* | nimfix handles helloworldAraq2014-09-061-2/+1
* | fixes #903, fixes #1513Araq2014-09-031-2/+32
* | renamed babelcmd to nimblecmd; config files are now nim.cfg; other renamingsAraq2014-08-291-6/+7
* | Nimrod renamed to NimAraq2014-08-281-2/+2
* | renamefestAraq2014-08-231-1/+1
|/
* distinguish between 'defined' and 'declared'Araq2014-08-111-0/+3
* Update commands.nimVarriount2014-08-021-2/+0
* Clean up moreClay Sweetser2014-07-291-2/+2
* Clean up a bit.Clay Sweetser2014-07-291-5/+5
* Fix #813Clay Sweetser2014-07-291-3/+9
* fixed build configuration detectionAraq2014-07-011-19/+24
* Adds git hash to compiler's version switch. Refs #1119.Grzegorz Adam Hankiewicz2014-04-221-0/+5
* Version switch displays options used during `koch boot`Grzegorz Adam Hankiewicz2014-04-201-0/+22
* merged better html links #850Araq2014-04-081-0/+3
* it's the year 2014Araq2014-01-191-1/+1
* resolved conflicts with masterAraq2014-01-181-3/+6
|\
| * Added --noBabelPath override.Dominik Picheta2013-12-251-1/+4
* | case consistency: cs:partial bootstraps on windowsAraq2013-12-291-9/+9
* | case consistency: next stepsAraq2013-12-291-8/+8
* | case consistency part 4Araq2013-12-271-46/+46
* | case consistency part 1Araq2013-12-271-41/+41
* | next steps for FFI supportAraq2013-11-251-3/+3
|/
* support for --cs:partialAraq2013-09-241-1/+8
* --os and --cpu work in configuration filesAraq2013-05-191-2/+2
* support suggest after compile in caas modeZahary Karadjov2013-05-051-0/+19
* experimental support for answering idetools --def requests fromZahary Karadjov2013-05-041-1/+2
* fixes #394Araq2013-04-231-2/+5
* added manyloc test suite; --path now relative to project dir if not absoluteAraq2013-04-131-5/+7
* implemented --dynlibOverride option for static linking of 'dynlib'Araq2013-04-081-0/+7
* Removes executable bit for text files.Grzegorz Adam Hankiewicz2013-03-161-0/+0
* Merge pull request #280 from keitahaga/better-error-messageAraq2013-02-211-3/+8
|\
| * Better CLI error message when options are invalidKeita Haga2012-12-161-3/+8
* | preparations for a generational GCAraq2013-02-161-0/+4
* | first version of a simple mark&sweep GC; activate with --gc:markAndSweepAraq2013-02-071-4/+8
* | cleaner GC switchingAraq2013-01-311-14/+14
* | the `mainmodule` option has effect only when no explicit module is givenZahary Karadjov2013-01-281-2/+1
* | merged upstream masterZahary Karadjov2013-01-271-21/+15
|\ \
s='alt'>
9ec914e3 ^

f027adc0 ^
9ec914e3 ^
9dc6fe07 ^
9dc6fe07 ^
54c8375a ^
165bde56 ^

9ec914e3 ^
54c8375a ^
51d9c72e ^

2e74a4d0 ^
51d9c72e ^











eaaeed3d ^



51d9c72e ^
a2853ab6 ^
51d9c72e ^
a4570538 ^

51d9c72e ^



a4570538 ^
51d9c72e ^
a4570538 ^
51d9c72e ^
df031abc ^
51d9c72e ^



2e74a4d0 ^




51d9c72e ^
df031abc ^
51d9c72e ^

df031abc ^
51d9c72e ^









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