summary refs log tree commit diff stats
path: root/tools/niminst/buildbat.tmpl
Commit message (Collapse)AuthorAgeFilesLines
* Fixed gcc batch issueapense2015-06-171-2/+2
| | | See #18 on csources. Basically, some Windows system have gcc as a gcc.bat file. This isn't an issue unless you're calling from another batch file (like here). The call chain will follow to gcc.bat and end there, meaning only one command is processed. Using "CALL" before the other batch command will keep the calls in the main batch file after completion, meaning the compilation will actually succeed this way [see technet](https://technet.microsoft.com/en-us/library/bb490873.aspx). Otherwise you have to hope there is a gcc.exe somewhere instead
* Cleaned up T/P names.Hans Raaf2015-02-191-1/+1
|
* Update buildbat.tmplVarriount2014-11-031-1/+12
| | | Batch scripts generated by `koch csources` now return proper error codes, and stop when there is an error.
* resolved conflicts with masterAraq2014-01-181-2/+2
|\
| * Rename C sources dir to c_code.Dominik Picheta2014-01-121-2/+2
| |
* | case consistency part 5Araq2013-12-281-1/+1
|/
* niminst: slashify was a stupid ideaAraq2013-10-061-4/+4
|
* fixes #582Araq2013-09-011-4/+4
|
* Modified the behaviour of the build scripts to accommodate new C sourcesDominik Picheta2013-08-041-4/+9
| | | | repo.
* Moved linker flags to the end of cmd line in build.sh and bat templatesYury Benesh2013-07-061-2/+2
|
* Removes executable bit for text files.Grzegorz Adam Hankiewicz2013-03-161-0/+0
|
* win64 is a supported target; bugfix: nimrod c -r on windows; stdlib uses ↵Araq2012-03-041-27/+2
| | | | wide char versions of the WinAPI
* prepared niminst for win64 targetAraq2012-02-281-5/+33
|
* version 0.8.14Araq2012-02-091-1/+2
|
* niminst: bugfixes; documentation changesAraq2012-01-151-2/+2
|
* niminst: diverse improvements; fixes #80Araq2012-01-131-0/+21
methods need to be explicitly enabled (#10856)' href='/ahoang/Nim/commit/changelog.md?h=devel&id=afeca3d9feb31326c87543a1cce401ecaab0b24a'>afeca3d9f ^
f7d2f9c5f ^
e3e17009f ^

6206ba8f3 ^
83c89197f ^
139497834 ^


afeca3d9f ^

87232a38e ^

0a749f1a3 ^
ae2923e5d ^
afeca3d9f ^


1d7e3a84f ^
ae2923e5d ^





afeca3d9f ^


ac8f6c57a ^
c0a47f7e2 ^


















8fbe3b3b7 ^

afeca3d9f ^



15773c455 ^
f7d2f9c5f ^


0a2f711b9 ^


3a5a0f6d4 ^

f7d2f9c5f ^
737fff590 ^
e3e17009f ^

331d1a6ca ^












ff950725f ^
737fff590 ^
5ba22c931 ^


ff950725f ^
e3e17009f ^

84ca9d290 ^
765692514 ^
e2094bc6f ^
84ca9d290 ^


8960efa34 ^

77a8c6ffd ^
f9bc4d014 ^

963292f72 ^


6206ba8f3 ^
086676782 ^

a38f35359 ^
f7d2f9c5f ^
ac8274c60 ^
070bcf4ce ^

9cc4a5776 ^
f7d2f9c5f ^
3ba8f158f ^
f7d2f9c5f ^
c4e3c4ca2 ^
f7d2f9c5f ^
c4e3c4ca2 ^
ce5e8b93e ^

695206a00 ^

b2a5195e9 ^

7d7cd6907 ^
9cc4a5776 ^
142a2d355 ^
695206a00 ^
3647c03ca ^


afeca3d9f ^
e3e17009f ^
212457f5e ^
f8cef575b ^


06122ff71 ^
ca4b971bc ^


cc5b8c6ad ^



80843373b ^
8d850f7a6 ^



c0fc2f572 ^



ce9815bcf ^


f7d2f9c5f ^
737fff590 ^
0e57b4cf6 ^
f7d2f9c5f ^
c0fc2f572 ^
e3e17009f ^

f7d2f9c5f ^
413580bc0 ^

e4850b7f1 ^
9becb41e0 ^
044cef152 ^
9becb41e0 ^
044cef152 ^
988412905 ^
212fdc594 ^
f7d2f9c5f ^
e3e17009f ^

b5448bf25 ^




737fff590 ^
044cef152 ^
05b8085a8 ^

044cef152 ^
05b8085a8 ^

737fff590 ^


b3a80dd2e ^
e3e17009f ^
737fff590 ^
db95fad6f ^


821920aa3 ^

e3e17009f ^
f7d2f9c5f ^
e3e17009f ^
737fff590 ^
d80e58543 ^
ca4b971bc ^





f7d2f9c5f ^
737fff590 ^
e3037a2f3 ^
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