summary refs log tree commit diff stats
path: root/compiler/options.nim
Commit message (Expand)AuthorAgeFilesLines
* WIP: Add a advanced compiler command 'ctags' (#6654)Dmitry Atamanov2017-11-151-0/+1
* Merge branch 'devel' into araqAndreas Rumpf2017-11-021-0/+1
|\
| * introduce --newruntime switch for the upcoming destructors and move semanticsAndreas Rumpf2017-10-131-1/+1
| * code cleanups for the upcoming reworked destructorsAndreas Rumpf2017-10-121-1/+1
| * initial version of the new untested destructor passAndreas Rumpf2017-10-121-0/+1
* | Merge branch 'devel' into araqAndreas Rumpf2017-10-021-1/+2
|\|
| * added 'nim jsonscript' featureAndreas Rumpf2017-09-231-1/+2
* | Merge branch 'devel' into araqAndreas Rumpf2017-09-151-3/+3
|\|
| * only replace the tilde when followed by a slash; refs #6176Araq2017-09-031-2/+2
| * WIP: --gc:regions instead of --gc:stackAraq2017-08-131-1/+1
* | Merge branch 'devel' into araqAndreas Rumpf2017-07-131-0/+3
|\|
| * review and merge zahary's work (#5849)zah2017-06-031-0/+3
* | precise stack scanning for Nim's GCs; work in progressAndreas Rumpf2017-04-191-1/+2
|/
* restore compilation and make all concepts tests greenZahary Karadjov2017-03-241-2/+2
* kill the reportConceptFailures options as it will be replaced by the .explain...Zahary Karadjov2017-03-241-1/+0
* nimsuggest: when invoked with a directory, detect the main nim file on its ownAndreas Rumpf2017-03-141-0/+17
* new debugging helper to replace and friendsZahary Karadjov2017-03-101-5/+0
* nimsuggest: structured error reporting; EPC mode still failsAndreas Rumpf2017-03-031-2/+4
* Merge branch 'devel' into faster-nimsuggestAndreas Rumpf2017-02-241-17/+11
|\
| * removed compiler internal list implementation (#5371)Arne Döring2017-02-221-17/+11
* | nimsuggest: added --refresh command line option; added 'known' command; fixes...Andreas Rumpf2017-02-221-1/+3
|/
* refactoring: explict config state instead of globalsAndreas Rumpf2017-02-011-1/+12
* Correct the spelling of the word 'overridden'. (#5212)mfxmfx2017-01-111-1/+1
* compiler API: introduce options.disableNmiblePathAraq2017-01-061-0/+6
* fixes the regressions introduced by fix for #5076Araq2016-11-301-1/+10
* Fixed dynlink with OpenSSL >1.1.0. Added loadLibPattern.Yuriy Glukhov2016-11-301-11/+0
* fixes #5076Araq2016-11-301-2/+1
* make tests green againAndreas Rumpf2016-11-241-2/+2
* first version of the new memory tracking featureAndreas Rumpf2016-11-211-1/+2
* some attempts to make symbolfiles work againAraq2016-08-131-0/+6
* expr and stmt are now deprecatedAndreas Rumpf2016-07-301-6/+6
* get rid of deprecated toLower/toUpperAndreas Rumpf2016-07-191-3/+3
* fixes #4485; package handling works better; docgen works with --project on Ni...Andreas Rumpf2016-07-191-48/+2
* findExe() now by default follows symlinks.Hans Raaf2016-07-171-3/+1
* Nimscript: added support for 'patchFile'Andreas Rumpf2016-07-091-0/+10
* adds --excessiveStackTrace:on|off flag for nimParashurama2016-06-111-0/+2
* changed the compiler's path handling; fixes #546Andreas Rumpf2016-05-311-0/+15
* beginnings of --gc:stackAndreas Rumpf2016-03-121-1/+2
* Added --noCppExceptions switchRuslan Mustakov2016-02-181-0/+1
* first version of an PHP codegenAndreas Rumpf2016-02-061-1/+3
* nimrod -> nimErik Johansson Andersson2016-02-051-2/+2
* Modified setDefaultLibpath to search using findExe"nim".Dominik Picheta2015-11-071-0/+11
* nimsuggest: added 'chk', 'outline' and 'highlight' featuresAraq2015-11-011-1/+10
* doc\advopt.txtAraq2015-10-221-1/+1
* added getOrDefault; bootstrapping works againAraq2015-10-131-1/+1
* nimsuggest: added 'dus' command that combines 'def' and 'use'Araq2015-10-121-1/+3
* improvements for NimScript supportAraq2015-09-031-0/+11
* first implementation of write tracking and escape analysis; still disabledAraq2015-08-311-0/+1
* implements experimental new config system based on NimScriptAraq2015-08-161-3/+3
* Added absolute path support to options.findFileAnatoly Galiulin2015-07-211-5/+8
ang/Nim/commit/tests/js/tjsffi.nim?h=devel&id=03770daba44fb9ac5c21729d0b32cda10f8767bd'>03770daba ^
7ad115f53 ^
03770daba ^

aadbdd6b0 ^
18e14f592 ^






70a1c4254 ^































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