summary refs log tree commit diff stats
path: root/compiler/extccomp.nim
Commit message (Expand)AuthorAgeFilesLines
* stdlib and compiler don't use .immediate anymoreAndreas Rumpf2016-07-291-1/+1
* --listCmd also needs to affect linking stepAndreas Rumpf2016-07-131-1/+1
* better debugging support for native debuggers; changed name mangling; fixes #...Araq2016-05-101-0/+4
* Fixes #3871Yuriy Glukhov2016-02-161-0/+2
* remove echo() from compilerAman Gupta2015-10-011-2/+2
* remove "rerun with --parallelBuild:1" message and show error inlineAman Gupta2015-09-301-12/+13
* Improved "Execution of an external program failed" message.Dominik Picheta2015-09-271-4/+6
* update Visual Studio command line flagsAraq2015-08-271-1/+1
* cValidAssemblers -> const setrku2015-08-101-1/+5
* Added fasm (external assembler) support.rku2015-07-311-2/+43
* Merge pull request #3020 from flaviut/rename-crc-to-hashAndreas Rumpf2015-07-051-8/+8
|\
| * CRC -> HashFlaviu Tamas2015-07-031-8/+8
* | Turn execExternalProgram msgs into hintExecutingAdam Strzelecki2015-07-031-12/+6
|/
* Fix #3018Flaviu Tamas2015-06-291-1/+1
* renamed writeln to writeLine in compilerpatrick dw2015-06-191-1/+1
* securehash: Keep module name consistentAdam Strzelecki2015-06-091-1/+2
* Use sha1 instead of crcFlaviu Tamas2015-05-261-4/+2
* Rename crc module to "secure_hash"Flaviu Tamas2015-05-231-1/+1
* Clean up crc moduleFlaviu Tamas2015-05-231-7/+7
* Merge pull request #2657 from def-/noreturnAndreas Rumpf2015-05-081-4/+4
|\
| * Implicitly assume compilers to know naked and noreturn attributesdef2015-05-071-4/+2
| * Distinguish only between __declspec and __attribute__def2015-05-051-6/+6
| * Pass noReturn pragma to C code.def2015-05-051-3/+5
* | Improve code style a bitdef2015-05-071-1/+1
* | Fix the lib path used with --app:staticlibdef2015-05-071-1/+2
|/
* fixes #2569Araq2015-04-231-49/+49
* Get rid of deprecation warningsdef2015-04-071-20/+20
* Add compiler-specific configuration options for all compilers.Philip Wernersbach2015-03-151-1/+10
* Fix #2247Flaviu Tamas2015-03-041-0/+3
* Fix a few more warningsdef2015-02-171-3/+3
* 'passL' is not smart anymore about already known switches; -ldl is now proper...Araq2015-02-131-10/+12
* stop after first failing C compilation for --parallelBuild:1Araq2015-02-091-1/+3
* list CC executions properly again for --parallelBuild:1Araq2015-02-051-3/+7
* Fixes #1955Varriount2015-01-171-2/+2
* quote filenames in when invoking compiler from C backendMichał Zieliński2015-01-141-2/+1
* Merge pull request #1569 from idlewan/prettyCCAndreas Rumpf2014-11-031-12/+27
|\
| * Tidy up the prettification of the default verbosity c compilation outputErwan Ameil2014-10-131-6/+9
| * Prettify compiler output for verbosity=1Erwan Ameil2014-10-121-12/+24
* | Fix #1599Clay Sweetser2014-10-291-10/+28
|/
* implemented mixed mode codegenAraq2014-10-031-22/+19
* Nimrod renamed to NimAraq2014-08-281-1/+1
* renamefestAraq2014-08-231-1/+1
* Fix compilation error when using packed pragma with vcc.Audun Wilhelmsen2014-03-181-1/+1
* Added support for {.packed.} pragma on objectsAudun Wilhelmsen2014-03-181-0/+20
* use g++ and clang++ automatically when compiling to C++Zahary Karadjov2014-03-161-22/+30
* resolved conflicts with masterAraq2014-01-181-1/+1
|\
| * Fixes #594Dominik Picheta2013-12-281-1/+1
* | case consistency: cs:partial bootstraps on windowsAraq2013-12-291-6/+6
* | case consistency part 4Araq2013-12-271-49/+49
* | case consistency part 1Araq2013-12-271-9/+9
|/
mp;id=204dae921abff0c70e017215bb3c91fa6ca11aff'>204dae92 ^
cdf28227 ^



204dae92 ^
b301e0c0 ^
204dae92 ^

805d58c6 ^
204dae92 ^





805d58c6 ^



204dae92 ^
cdf28227 ^



204dae92 ^
b301e0c0 ^
204dae92 ^
b301e0c0 ^
204dae92 ^


805d58c6 ^

204dae92 ^

8e7b4429 ^



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