Mercurial > emacs
annotate etc/compilation.txt @ 88054:eae3aec0f807
2008-01-29 John Wiegley <johnw@newartisans.com>
* url-auth.el (url-digest-auth): If the 'opaque' argument is not
being used, don't add it to the response text. Also, changed an
if so that the interaction between the PROMPT and OVERWRITE
arguments can no longer result in the user being queried twice for
the same login and password information.
author | John Wiegley <johnw@newartisans.com> |
---|---|
date | Tue, 29 Jan 2008 03:52:05 +0000 |
parents | 107ccd98fa12 |
children | 606f2d163a64 16e08abf25d2 |
rev | line source |
---|---|
71189
3681678d3d86
Add copyright notice and copying permissions.
Eli Zaretskii <eliz@gnu.org>
parents:
64945
diff
changeset
|
1 * Introduction -*-compilation-*- (Copyright information at end of file) |
54365 | 2 |
3 This shows the different kinds of messages compile recognizes by default and | |
4 how they are rendered. It is intended both to help you decide which matchers | |
5 you need and as a test of the matchers. Move the mouse over a colored part or | |
6 use `compilation-message-face', to see how much text was actually matched. | |
7 | |
71681
7f64dacbf7f1
Add an example "Compilation started ..." line.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
71189
diff
changeset
|
8 Note that the following example line should NOT be highlighted: |
7f64dacbf7f1
Add an example "Compilation started ..." line.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
71189
diff
changeset
|
9 Compilation started at Sat Jul 8 15:19:25 |
7f64dacbf7f1
Add an example "Compilation started ..." line.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
71189
diff
changeset
|
10 |
54365 | 11 The important part is the symbol(s) line at the beginning of each entry. |
12 These are the symbols you can customize `compilation-error-regexp-alist' for, | |
13 to match the messages shown in that entry. A few complex cases have more than | |
14 one symbol, which should be selected together. | |
15 | |
16 | |
17 * Absoft FORTRAN 77 Compiler 3.1.3 | |
18 | |
19 symbol: absoft | |
20 | |
21 Error on line 3 of t.f: Execution error unclassifiable statement | |
22 Line 45 of "foo.c": bloofle undefined | |
23 error on line 19 of fplot.f: spelling error? | |
24 warning on line 17 of fplot.f: data type is undefined for variable d | |
25 | |
26 | |
27 * Ada & Mpatrol (memory leak debugger) | |
28 | |
29 symbol: ada | |
30 | |
31 This matches only the end of line, the beginning is covered by GNU style. | |
32 | |
33 foo.adb:61:11: [...] in call to size declared at foo.ads:11 | |
34 0x8008621 main+16 at error.c:17 | |
35 | |
36 | |
37 * IBM AIX PS/2 C version 1.1 | |
38 | |
39 symbol: aix | |
40 | |
41 ****** Error number 140 in line 8 of file errors.c ****** | |
42 | |
43 | |
44 * Ant Java: works at least for jikes and javac | |
45 | |
46 symbol: ant | |
47 | |
48 The regexps found on http://ant.apache.org/faq.html, and since integrated in | |
49 both Emacsen, were hairy. Why so many numbers for jikes -- is one a column | |
50 number? | |
51 | |
52 [javac] /src/DataBaseTestCase.java:27: unreported exception ... | |
53 [javac] /src/DataBaseTestCase.java:49: warning: finally clause cannot complete normally | |
54 [jikes] foo.java:3:5:7:9: blah blah | |
55 | |
56 | |
57 * Bash v2 | |
58 | |
59 symbol: bash | |
60 | |
61 a.sh: line 1: ls-l: command not found | |
62 | |
63 | |
64 * Borland C++, C++Builder | |
65 | |
66 symbol: borland | |
67 | |
68 Error ping.c 15: Unable to open include file 'sys/types.h' | |
69 Warning ping.c 68: Call to function 'func' with no prototype | |
70 Error E2010 ping.c 15: Unable to open include file 'sys/types.h' | |
71 Warning W1022 ping.c 68: Call to function 'func' with no prototype | |
72 | |
73 | |
74 * Caml & Python | |
75 | |
76 symbol: caml | |
77 | |
78 File "foobar.ml", lines 5-8, characters 20-155: blah blah | |
79 File "F:\ocaml\sorting.ml", line 65, characters 2-145: | |
80 Warning: this expression should have type unit. | |
81 File "/usr/share/gdesklets/display/TargetGauge.py", line 41, in add_children | |
54744
a88e6b97afe3
Fix caml (Python) & irix (Info)
Daniel Pfeiffer <occitan@esperanto.org>
parents:
54365
diff
changeset
|
82 File \lib\python\Products\PythonScripts\PythonScript.py, line 302, in _exec |
a88e6b97afe3
Fix caml (Python) & irix (Info)
Daniel Pfeiffer <occitan@esperanto.org>
parents:
54365
diff
changeset
|
83 File "/tmp/foo.py", line 10 |
54365 | 84 |
85 | |
86 * Apollo cc, 4.3BSD fc & IBM RS6000/AIX xlc compiler & Microtec mcc68k & GNAT (July 94) | |
87 | |
88 symbol: comma | |
89 | |
90 "foo.f", line 3: Error: syntax error near end of statement | |
91 "vvouch.c", line 19.5: 1506-046 (S) Syntax error. | |
92 "foo.c", line 32 pos 1; (E) syntax error; unexpected symbol: "lossage" | |
93 "foo.adb", line 2(11): warning: file name does not match ... | |
94 "src/swapping.c", line 30.34: 1506-342 (W) "/*" detected in comment. | |
95 | |
96 | |
55516
d43c6081f39c
Add edg examples and remove redundant ultrix examples.
Daniel Pfeiffer <occitan@esperanto.org>
parents:
55133
diff
changeset
|
97 * EDG C/C++ |
d43c6081f39c
Add edg examples and remove redundant ultrix examples.
Daniel Pfeiffer <occitan@esperanto.org>
parents:
55133
diff
changeset
|
98 |
d43c6081f39c
Add edg examples and remove redundant ultrix examples.
Daniel Pfeiffer <occitan@esperanto.org>
parents:
55133
diff
changeset
|
99 symbol: edg-1 edg-2 |
d43c6081f39c
Add edg examples and remove redundant ultrix examples.
Daniel Pfeiffer <occitan@esperanto.org>
parents:
55133
diff
changeset
|
100 |
d43c6081f39c
Add edg examples and remove redundant ultrix examples.
Daniel Pfeiffer <occitan@esperanto.org>
parents:
55133
diff
changeset
|
101 build/intel/debug/../../../struct.cpp(42): error: identifier "foo" is undefined |
d43c6081f39c
Add edg examples and remove redundant ultrix examples.
Daniel Pfeiffer <occitan@esperanto.org>
parents:
55133
diff
changeset
|
102 build/intel/debug/../../../struct.cpp(44): warning #1011: missing return statement at end of ... |
d43c6081f39c
Add edg examples and remove redundant ultrix examples.
Daniel Pfeiffer <occitan@esperanto.org>
parents:
55133
diff
changeset
|
103 build/intel/debug/../../../iptr.h(302): remark #981: operands are evaluated in unspecified order |
d43c6081f39c
Add edg examples and remove redundant ultrix examples.
Daniel Pfeiffer <occitan@esperanto.org>
parents:
55133
diff
changeset
|
104 detected during ... at line 62 of "build/intel/debug/../../../trace.h" |
d43c6081f39c
Add edg examples and remove redundant ultrix examples.
Daniel Pfeiffer <occitan@esperanto.org>
parents:
55133
diff
changeset
|
105 |
d43c6081f39c
Add edg examples and remove redundant ultrix examples.
Daniel Pfeiffer <occitan@esperanto.org>
parents:
55133
diff
changeset
|
106 |
54365 | 107 * EPC F90 compiler |
108 | |
109 symbol: epc | |
110 | |
111 Error 24 at (2:progran.f90) : syntax error | |
112 | |
113 | |
57730
c173d0dac457
extend irix for NAG Fortran and add ftnchek-*
Daniel Pfeiffer <occitan@esperanto.org>
parents:
55991
diff
changeset
|
114 * Fortran checker |
c173d0dac457
extend irix for NAG Fortran and add ftnchek-*
Daniel Pfeiffer <occitan@esperanto.org>
parents:
55991
diff
changeset
|
115 |
58437
f81ffb9e961b
ftnchek only current style messages
Daniel Pfeiffer <occitan@esperanto.org>
parents:
57732
diff
changeset
|
116 symbols: ftnchek |
57730
c173d0dac457
extend irix for NAG Fortran and add ftnchek-*
Daniel Pfeiffer <occitan@esperanto.org>
parents:
55991
diff
changeset
|
117 |
c173d0dac457
extend irix for NAG Fortran and add ftnchek-*
Daniel Pfeiffer <occitan@esperanto.org>
parents:
55991
diff
changeset
|
118 Dummy arg W in module SUBA line 8 file arrayclash.f is array |
c173d0dac457
extend irix for NAG Fortran and add ftnchek-*
Daniel Pfeiffer <occitan@esperanto.org>
parents:
55991
diff
changeset
|
119 L4 used at line 55 file test/assign.f; never set |
c173d0dac457
extend irix for NAG Fortran and add ftnchek-*
Daniel Pfeiffer <occitan@esperanto.org>
parents:
55991
diff
changeset
|
120 Warning near line 10 file arrayclash.f: Module contains no executable |
c173d0dac457
extend irix for NAG Fortran and add ftnchek-*
Daniel Pfeiffer <occitan@esperanto.org>
parents:
55991
diff
changeset
|
121 Nonportable usage near line 31 col 9 file assign.f: mixed default and explicit |
c173d0dac457
extend irix for NAG Fortran and add ftnchek-*
Daniel Pfeiffer <occitan@esperanto.org>
parents:
55991
diff
changeset
|
122 |
c173d0dac457
extend irix for NAG Fortran and add ftnchek-*
Daniel Pfeiffer <occitan@esperanto.org>
parents:
55991
diff
changeset
|
123 |
54365 | 124 * IAR Systems C Compiler |
125 | |
126 symbol: iar | |
127 | |
128 "foo.c",3 Error[32]: Error message | |
129 "foo.c",3 Warning[32]: Error message | |
130 | |
131 | |
132 * IBM C/C++ Tools 2.01 | |
133 | |
134 symbol: ibm | |
135 | |
136 foo.c(2:0) : informational EDC0804: Function foo is not referenced. | |
137 foo.c(3:8) : warning EDC0833: Implicit return statement encountered. | |
138 foo.c(5:5) : error EDC0350: Syntax error. | |
139 | |
140 | |
57730
c173d0dac457
extend irix for NAG Fortran and add ftnchek-*
Daniel Pfeiffer <occitan@esperanto.org>
parents:
55991
diff
changeset
|
141 * Ultrix MIPS RISC CC, DEC AXP OSF/1 cc, IRIX 5.2 & NAG Fortran |
54365 | 142 |
143 symbol: irix | |
144 | |
145 ccom: Error: foo.c, line 2: syntax error | |
55133
77a1309e787d
added irix/Compaq C severe example
Daniel Pfeiffer <occitan@esperanto.org>
parents:
54744
diff
changeset
|
146 cc: Severe: /src/Python-2.3.3/Modules/_curses_panel.c, line 17: Cannot find file <panel.h> ... |
54744
a88e6b97afe3
Fix caml (Python) & irix (Info)
Daniel Pfeiffer <occitan@esperanto.org>
parents:
54365
diff
changeset
|
147 cc: Info: foo.c, line 27: ... |
54365 | 148 cfe: Warning 712: foo.c, line 2: illegal combination of pointer and ... |
149 cfe: Warning 600: xfe.c: 170: Not in a conditional directive while ... | |
150 /usr/lib/cmplrs/cc/cfe: Error: foo.c: 1: blah blah | |
151 /usr/lib/cmplrs/cc/cfe: warning: foo.c: 1: blah blah | |
57732
828726b6503b
*** empty log message ***
Daniel Pfeiffer <occitan@esperanto.org>
parents:
57730
diff
changeset
|
152 foo bar: baz.f, line 27: ... |
54365 | 153 |
154 | |
155 * Java Exception & Valgrind (memory debugger for x86 GNU/Linux) | |
156 | |
157 symbol: java | |
158 | |
159 Register 6 contains wrong type | |
160 at org.foo.ComponentGateway.doGet(ComponentGateway.java:172) | |
161 at javax.servlet.http.HttpServlet.service(HttpServlet.java:740) | |
162 ==1332== Invalid write of size 1 | |
163 ==1332== at 0x4040743C: System::getErrorString() (../src/Lib/System.cpp:217) | |
164 ==1332== by 0x8008621: main (vtest.c:180) | |
165 | |
166 | |
167 * IBM jikes | |
168 | |
169 symbols: jikes-file jikes-line | |
170 | |
171 Jikes separates file names from the actual error messages. For visual | |
172 feedback the underline and the word "Error" on the 3rd line is fontified like | |
173 a file name would be. | |
174 | |
175 Found 2 semantic errors compiling "../javax/swing/BorderFactory.java": | |
176 | |
177 150. case '{': | |
178 <-> | |
179 *** Error: The type of this expression, "char", is not ... | |
180 | |
181 312. return new CompoundBorder(outside, inside); | |
182 <---------------------------------> | |
183 *** Error: No match was found for constructor ... | |
184 | |
185 Issued 1 semantic warning compiling "java/awt/Toolkit.java": | |
186 | |
187 504. void imgProduceImage( ImageNativeProducer prod, Ptr imgData); | |
188 <-----------------> | |
189 *** Warning: The type "ImageNativeProducer" is defined ... | |
190 | |
191 | |
192 * GCC include message | |
193 | |
194 symbol: gcc-include | |
195 | |
196 The last file, i.e. the one you are compiling, is the interesting one. | |
197 | |
198 In file included from /usr/include/c++/3.3/backward/warn.h:4, | |
199 from /usr/include/c++/3.3/backward/iostream.h:31, | |
200 from test_clt.cc:1: | |
201 | |
202 | |
203 * GNU style | |
204 | |
205 symbol: gnu | |
206 | |
207 foo.c:8: message | |
208 ../foo.c:8: W: message | |
209 /tmp/foo.c:8:warning message | |
210 foo/bar.py:8: FutureWarning message | |
211 foo.py:8: RuntimeWarning message | |
212 foo.c:8:I: message | |
213 foo.c:8.23: info: message | |
214 foo.c:8:23:information: message | |
215 foo.c:8.23-45: Informational: message | |
216 foo.c:8-23: message | |
217 foo.c:8-45.3: message | |
218 foo.c:8.23-9.1: message | |
219 jade:dbcommon.dsl:133:17:E: missing argument for function call | |
220 G:/cygwin/dev/build-myproj.xml:54: Compiler Adapter 'javac' can't be found. | |
221 file:G:/cygwin/dev/build-myproj.xml:54: Compiler Adapter 'javac' can't be found. | |
55991
60906ddcbf22
show example of GNU {standard input} (gcc --pipe) and various Oracle messages
Daniel Pfeiffer <occitan@esperanto.org>
parents:
55516
diff
changeset
|
222 {standard input}:27041: Warning: end of file not at end of a line; newline inserted |
54365 | 223 |
224 | |
225 * Lucid Compiler, lcc 3.x | |
226 | |
227 symbol: lcc | |
228 | |
229 E, file.cc(35,52) Illegal operation on pointers | |
230 W, file.cc(36,52) blah blah | |
231 | |
232 | |
233 * makepp 1.20 | |
234 | |
235 symbol: makepp | |
236 | |
237 makepp: Scanning `/foo/bar.c' | |
238 makepp: warning: bla bla `/foo/bar.c' and `/foo/bar.h' | |
239 makepp: bla bla `/foo/Makeppfile:12' bla | |
240 makepp: bla bla `/foo/bar.c' and `/foo/bar.h' | |
241 | |
242 | |
243 * MIPS lint; looks good for SunPro lint also | |
244 | |
245 symbols: mips-1 mips-2 | |
246 | |
247 This can match multiple times on a line. | |
248 | |
249 TrimMask (255) in solomon.c may be indistinguishable from TrimMasks (93) in solomon.c due to truncation | |
250 name defined but never used: LinInt in cmap_calc.c(199) | |
251 | |
252 | |
253 * Microsoft C/C++ | |
254 | |
255 symbol: msft | |
256 | |
257 This used to be less selective and allowed characters other than parens around | |
258 the line number, but that caused confusion for GNU-style error messages. This | |
259 used to reject spaces and dashes in file names, but they are valid now; so I | |
260 made it more strict about the error message that follows. | |
261 | |
262 keyboard handler.c(537) : warning C4005: 'min' : macro redefinition | |
263 d:\tmp\test.c(23) : error C2143: syntax error : missing ';' before 'if' | |
264 | |
265 | |
266 * Oracle pro*c | |
267 | |
268 symbol: oracle | |
269 | |
55991
60906ddcbf22
show example of GNU {standard input} (gcc --pipe) and various Oracle messages
Daniel Pfeiffer <occitan@esperanto.org>
parents:
55516
diff
changeset
|
270 This stupid precompiler wraps lines at column 80 in the middle of a file name. |
60906ddcbf22
show example of GNU {standard input} (gcc --pipe) and various Oracle messages
Daniel Pfeiffer <occitan@esperanto.org>
parents:
55516
diff
changeset
|
271 There is no obvious way of detecting this or turning it off. But if you |
58437
f81ffb9e961b
ftnchek only current style messages
Daniel Pfeiffer <occitan@esperanto.org>
parents:
57732
diff
changeset
|
272 delete the newline (probably needs M-x toggle-read-only), the file name will |
f81ffb9e961b
ftnchek only current style messages
Daniel Pfeiffer <occitan@esperanto.org>
parents:
57732
diff
changeset
|
273 automatically be reparsed, so that you can then go there. |
55991
60906ddcbf22
show example of GNU {standard input} (gcc --pipe) and various Oracle messages
Daniel Pfeiffer <occitan@esperanto.org>
parents:
55516
diff
changeset
|
274 |
54365 | 275 Semantic error at line 528, column 5, file erosacqdb.pc: |
55991
60906ddcbf22
show example of GNU {standard input} (gcc --pipe) and various Oracle messages
Daniel Pfeiffer <occitan@esperanto.org>
parents:
55516
diff
changeset
|
276 Error at line 41, column 10 in file /usr/src/sb/ODBI_BHP.hpp |
60906ddcbf22
show example of GNU {standard input} (gcc --pipe) and various Oracle messages
Daniel Pfeiffer <occitan@esperanto.org>
parents:
55516
diff
changeset
|
277 PCC-02150: error at line 49, column 27 in file /usr/src/sb/ODBI_dxfgh.pc |
60906ddcbf22
show example of GNU {standard input} (gcc --pipe) and various Oracle messages
Daniel Pfeiffer <occitan@esperanto.org>
parents:
55516
diff
changeset
|
278 PCC-00003: invalid SQL Identifier at column name in line 12 of file /usr/src/sb/ODBI_BHP.hpp |
60906ddcbf22
show example of GNU {standard input} (gcc --pipe) and various Oracle messages
Daniel Pfeiffer <occitan@esperanto.org>
parents:
55516
diff
changeset
|
279 PCC-00004: mismatched IF/ELSE/ENDIF block at line 27 in file /usr/src/sb/ODBI_BHP.hpp |
60906ddcbf22
show example of GNU {standard input} (gcc --pipe) and various Oracle messages
Daniel Pfeiffer <occitan@esperanto.org>
parents:
55516
diff
changeset
|
280 PCC-02151: line 21 column 40 file /usr/src/sb/ODBI_BHP.hpp: |
54365 | 281 |
282 | |
283 * Perl | |
284 | |
285 symbol: perl | |
286 | |
287 syntax error at automake line 922, near "':'" | |
288 Died at test.pl line 27. | |
289 store::odrecall('File_A', 'x2') called at store.pm line 90 | |
79788
7bdf18d42b12
Kevin Ryde <user42 at zip.com.au>:
Glenn Morris <rgm@gnu.org>
parents:
79776
diff
changeset
|
290 (in cleanup) something bad at foo.pl line 3 during global destruction. |
54365 | 291 |
79789 | 292 |
54365 | 293 * RXP |
294 | |
295 symbol: rxp | |
296 | |
297 GPL XML validator at http://www.cogsci.ed.ac.uk/~richard/rxp.html | |
298 | |
299 Error: Mismatched end tag: expected </geroup>, got </group> | |
300 in unnamed entity at line 71 char 8 of file:///home/reto/test/group.xml | |
301 Warning: Start tag for undeclared element geroup | |
302 in unnamed entity at line 4 char 8 of file:///home/reto/test/group.xml | |
303 | |
304 | |
305 * Sparc Pascal | |
306 | |
307 symbols: sparc-pascal-file sparc-pascal-line sparc-pascal-example | |
308 | |
309 These messages don't contain a file name. Instead the compiler gives a | |
310 message whenever the file being compiled is changed. For visual feedback the | |
311 error code is fontified like a file name would be. | |
312 | |
313 Thu May 14 10:46:12 1992 mom3.p: | |
314 20 linjer : array[1..4] of linje; | |
315 w 18480-----------^--- Inserted ';' | |
316 20 linjer : array[1..4] of linje; | |
317 e 18480-----------^--- Inserted ';' | |
318 w 18520 line 61 - 0 is undefined | |
319 E 18520 line 61 - 0 is undefined | |
320 | |
321 | |
322 * SGI IRIX MipsPro 7.3 & Sun F90 & Cray C | |
323 | |
324 symbol: sun | |
325 | |
326 cc-1020 CC: REMARK File = CUI_App.h, Line = 735 | |
327 cc-1070 cc: WARNING File = linkl.c, Line = 38 | |
328 cf90-113 f90comp: ERROR NSE, File = Hoved.f90, Line = 16, Column = 3 | |
329 | |
330 | |
331 * Sun Ada (VADS, Solaris) | |
332 | |
333 symbol: sun-ada | |
334 | |
335 /home3/xdhar/rcds_rc/main.a, line 361, char 6:syntax error: "," inserted | |
336 | |
337 | |
338 * 4.3BSD grep, cc, lint | |
339 | |
340 symbol: 4bsd | |
341 | |
342 /usr/src/foo/foo.c(8): warning: w may be used before set | |
343 /usr/src/foo/foo.c(9): error: w is used before set | |
344 strcmp: variable # of args. llib-lc(359) :: /usr/src/foo/foo.c(8) | |
345 bloofle defined( /users/wolfgang/foo.c(4) ), but never used | |
346 | |
347 | |
61425
6dfecf2a19ab
* compilation.txt (symbol): Added gcov-file
Masatake YAMATO <jet@gyve.org>
parents:
58437
diff
changeset
|
348 * GCOV (test coverage program) |
6dfecf2a19ab
* compilation.txt (symbol): Added gcov-file
Masatake YAMATO <jet@gyve.org>
parents:
58437
diff
changeset
|
349 |
6dfecf2a19ab
* compilation.txt (symbol): Added gcov-file
Masatake YAMATO <jet@gyve.org>
parents:
58437
diff
changeset
|
350 symbol: gcov-file gcov-bb-file gcov-never-called-line gcov-called-line |
6dfecf2a19ab
* compilation.txt (symbol): Added gcov-file
Masatake YAMATO <jet@gyve.org>
parents:
58437
diff
changeset
|
351 |
6dfecf2a19ab
* compilation.txt (symbol): Added gcov-file
Masatake YAMATO <jet@gyve.org>
parents:
58437
diff
changeset
|
352 -: 0:Source:foo.c |
6dfecf2a19ab
* compilation.txt (symbol): Added gcov-file
Masatake YAMATO <jet@gyve.org>
parents:
58437
diff
changeset
|
353 -: 0:Object:foo.bb |
6dfecf2a19ab
* compilation.txt (symbol): Added gcov-file
Masatake YAMATO <jet@gyve.org>
parents:
58437
diff
changeset
|
354 -: 1:/* $ gcc -fprofile-arcs -ftest-coverage foo.c |
6dfecf2a19ab
* compilation.txt (symbol): Added gcov-file
Masatake YAMATO <jet@gyve.org>
parents:
58437
diff
changeset
|
355 -: 2: $ ./a.out |
6dfecf2a19ab
* compilation.txt (symbol): Added gcov-file
Masatake YAMATO <jet@gyve.org>
parents:
58437
diff
changeset
|
356 -: 3: $ gcov foo.c |
6dfecf2a19ab
* compilation.txt (symbol): Added gcov-file
Masatake YAMATO <jet@gyve.org>
parents:
58437
diff
changeset
|
357 -: 4: LANG=C gcov foo.c |
6dfecf2a19ab
* compilation.txt (symbol): Added gcov-file
Masatake YAMATO <jet@gyve.org>
parents:
58437
diff
changeset
|
358 -: 5: 62.50% of 8 lines executed in file foo.c |
6dfecf2a19ab
* compilation.txt (symbol): Added gcov-file
Masatake YAMATO <jet@gyve.org>
parents:
58437
diff
changeset
|
359 -: 6: Creating foo.c.gcov.*/ |
6dfecf2a19ab
* compilation.txt (symbol): Added gcov-file
Masatake YAMATO <jet@gyve.org>
parents:
58437
diff
changeset
|
360 -: 7:int |
6dfecf2a19ab
* compilation.txt (symbol): Added gcov-file
Masatake YAMATO <jet@gyve.org>
parents:
58437
diff
changeset
|
361 -: 8:main(int argc, char ** argv) |
6dfecf2a19ab
* compilation.txt (symbol): Added gcov-file
Masatake YAMATO <jet@gyve.org>
parents:
58437
diff
changeset
|
362 1: 9:{ |
6dfecf2a19ab
* compilation.txt (symbol): Added gcov-file
Masatake YAMATO <jet@gyve.org>
parents:
58437
diff
changeset
|
363 1: 10: int r; |
6dfecf2a19ab
* compilation.txt (symbol): Added gcov-file
Masatake YAMATO <jet@gyve.org>
parents:
58437
diff
changeset
|
364 1: 11: if (argc == 1) |
6dfecf2a19ab
* compilation.txt (symbol): Added gcov-file
Masatake YAMATO <jet@gyve.org>
parents:
58437
diff
changeset
|
365 1: 12: r = 1; |
6dfecf2a19ab
* compilation.txt (symbol): Added gcov-file
Masatake YAMATO <jet@gyve.org>
parents:
58437
diff
changeset
|
366 #####: 13: else if (argc == 2) |
6dfecf2a19ab
* compilation.txt (symbol): Added gcov-file
Masatake YAMATO <jet@gyve.org>
parents:
58437
diff
changeset
|
367 #####: 14: r = 2; |
6dfecf2a19ab
* compilation.txt (symbol): Added gcov-file
Masatake YAMATO <jet@gyve.org>
parents:
58437
diff
changeset
|
368 -: 15: else |
6dfecf2a19ab
* compilation.txt (symbol): Added gcov-file
Masatake YAMATO <jet@gyve.org>
parents:
58437
diff
changeset
|
369 #####: 16: r = 0; |
6dfecf2a19ab
* compilation.txt (symbol): Added gcov-file
Masatake YAMATO <jet@gyve.org>
parents:
58437
diff
changeset
|
370 1: 17: return r; |
6dfecf2a19ab
* compilation.txt (symbol): Added gcov-file
Masatake YAMATO <jet@gyve.org>
parents:
58437
diff
changeset
|
371 -: 18:} |
6dfecf2a19ab
* compilation.txt (symbol): Added gcov-file
Masatake YAMATO <jet@gyve.org>
parents:
58437
diff
changeset
|
372 |
6dfecf2a19ab
* compilation.txt (symbol): Added gcov-file
Masatake YAMATO <jet@gyve.org>
parents:
58437
diff
changeset
|
373 |
86045
1fa61031bef4
Add new entries.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
82140
diff
changeset
|
374 * Podchecker error messages, per Pod::Checker |
1fa61031bef4
Add new entries.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
82140
diff
changeset
|
375 |
1fa61031bef4
Add new entries.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
82140
diff
changeset
|
376 symbol: compilation-perl--Pod::Checker |
1fa61031bef4
Add new entries.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
82140
diff
changeset
|
377 |
1fa61031bef4
Add new entries.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
82140
diff
changeset
|
378 *** ERROR: Spurious text after =cut at line 193 in file foo.pm |
1fa61031bef4
Add new entries.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
82140
diff
changeset
|
379 *** ERROR: =over on line 37 without closing =back at line EOF in file bar.pm |
1fa61031bef4
Add new entries.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
82140
diff
changeset
|
380 *** ERROR: =over on line 1 without closing =back (at head1) at line 3 in file x.pod |
1fa61031bef4
Add new entries.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
82140
diff
changeset
|
381 |
1fa61031bef4
Add new entries.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
82140
diff
changeset
|
382 |
1fa61031bef4
Add new entries.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
82140
diff
changeset
|
383 * Perl Test module error messages |
1fa61031bef4
Add new entries.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
82140
diff
changeset
|
384 |
1fa61031bef4
Add new entries.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
82140
diff
changeset
|
385 symbol: compilation-perl--Test |
1fa61031bef4
Add new entries.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
82140
diff
changeset
|
386 |
1fa61031bef4
Add new entries.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
82140
diff
changeset
|
387 # Failed test 1 in foo.t at line 6 |
1fa61031bef4
Add new entries.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
82140
diff
changeset
|
388 |
1fa61031bef4
Add new entries.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
82140
diff
changeset
|
389 |
1fa61031bef4
Add new entries.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
82140
diff
changeset
|
390 * Perl Test::Harness output |
1fa61031bef4
Add new entries.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
82140
diff
changeset
|
391 |
1fa61031bef4
Add new entries.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
82140
diff
changeset
|
392 symbol: compilation-perl--Test::Harness |
1fa61031bef4
Add new entries.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
82140
diff
changeset
|
393 |
1fa61031bef4
Add new entries.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
82140
diff
changeset
|
394 NOK 1# Test 1 got: "1234" (t/foo.t at line 46) |
1fa61031bef4
Add new entries.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
82140
diff
changeset
|
395 |
1fa61031bef4
Add new entries.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
82140
diff
changeset
|
396 |
1fa61031bef4
Add new entries.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
82140
diff
changeset
|
397 * Perl HTML::Lint::Error::as_string() |
1fa61031bef4
Add new entries.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
82140
diff
changeset
|
398 |
1fa61031bef4
Add new entries.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
82140
diff
changeset
|
399 symbol: compilation-weblint |
1fa61031bef4
Add new entries.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
82140
diff
changeset
|
400 |
1fa61031bef4
Add new entries.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
82140
diff
changeset
|
401 index.html (13:1) Unknown element <fdjsk> |
1fa61031bef4
Add new entries.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
82140
diff
changeset
|
402 |
1fa61031bef4
Add new entries.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
82140
diff
changeset
|
403 |
54365 | 404 * Directory tracking |
405 | |
406 Directories are matched via `compilation-directory-matcher'. Files which are | |
407 not shown as full paths are searched for relative to the directory where the | |
408 message was issued. | |
409 | |
410 Entering directory `/a/b/c' | |
411 Leaving directory `/a/b/c' | |
412 gmake[2]: Entering directory `/a/b/c' | |
413 makepp: Leaving directory `/a/b/c' | |
414 | |
415 | |
416 * Miscellaneous | |
417 | |
418 These are not messages that can be gone to. They are only highlighted via | |
419 `compilation-mode-font-lock-keywords' to recognize some useful information at | |
420 a glance. | |
421 | |
422 checking dynamic linker characteristics... GNU/Linux ld.so | |
423 checking if libtool supports shared libraries... yes | |
424 checking whether to build shared libraries... yes | |
425 checking whether -lc should be explicitly linked in... (cached) no | |
426 checking For GLIB - version >= 2.0.0... yes (version 2.1.0) | |
427 checking FONTCONFIG_CFLAGS... | |
428 g++ -o foo.o foo.cc | |
429 tool1 -output=foo foo.x | |
430 tool2 --outfile foo foo.y | |
64738
b8929a75abe8
Add examples of finished compilation.
Juri Linkov <juri@jurta.org>
parents:
61425
diff
changeset
|
431 |
64945
7a6aa8277fe1
Add examples of starting and finishing messages.
Juri Linkov <juri@jurta.org>
parents:
64738
diff
changeset
|
432 Compilation started at Wed Jul 20 12:20:10 |
7a6aa8277fe1
Add examples of starting and finishing messages.
Juri Linkov <juri@jurta.org>
parents:
64738
diff
changeset
|
433 Compilation interrupt at Wed Jul 20 12:20:10 |
7a6aa8277fe1
Add examples of starting and finishing messages.
Juri Linkov <juri@jurta.org>
parents:
64738
diff
changeset
|
434 Compilation killed at Wed Jul 20 12:20:10 |
7a6aa8277fe1
Add examples of starting and finishing messages.
Juri Linkov <juri@jurta.org>
parents:
64738
diff
changeset
|
435 Compilation terminated at Wed Jul 20 12:20:10 |
64738
b8929a75abe8
Add examples of finished compilation.
Juri Linkov <juri@jurta.org>
parents:
61425
diff
changeset
|
436 Compilation exited abnormally with code 1 at Wed Jul 20 12:21:12 |
b8929a75abe8
Add examples of finished compilation.
Juri Linkov <juri@jurta.org>
parents:
61425
diff
changeset
|
437 Compilation finished at Thu Jul 21 15:02:15 |
81052
23923b3cada1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
75343
diff
changeset
|
438 Compilation segmentation fault at Thu Jul 13 10:55:49 |
71189
3681678d3d86
Add copyright notice and copying permissions.
Eli Zaretskii <eliz@gnu.org>
parents:
64945
diff
changeset
|
439 |
3681678d3d86
Add copyright notice and copying permissions.
Eli Zaretskii <eliz@gnu.org>
parents:
64945
diff
changeset
|
440 |
79776 | 441 Copyright (C) 2004, 2005, 2006, 2007, 2008 |
75343
0259a1711394
Update copyright for years from Emacs 21 to present (mainly adding
Glenn Morris <rgm@gnu.org>
parents:
71681
diff
changeset
|
442 Free Software Foundation, Inc. |
71189
3681678d3d86
Add copyright notice and copying permissions.
Eli Zaretskii <eliz@gnu.org>
parents:
64945
diff
changeset
|
443 |
3681678d3d86
Add copyright notice and copying permissions.
Eli Zaretskii <eliz@gnu.org>
parents:
64945
diff
changeset
|
444 COPYING PERMISSIONS: |
3681678d3d86
Add copyright notice and copying permissions.
Eli Zaretskii <eliz@gnu.org>
parents:
64945
diff
changeset
|
445 |
3681678d3d86
Add copyright notice and copying permissions.
Eli Zaretskii <eliz@gnu.org>
parents:
64945
diff
changeset
|
446 This document is free software; you can redistribute it and/or modify |
3681678d3d86
Add copyright notice and copying permissions.
Eli Zaretskii <eliz@gnu.org>
parents:
64945
diff
changeset
|
447 it under the terms of the GNU General Public License as published by |
78271
713172dcf518
Switch license to GPLv3 or later.
Glenn Morris <rgm@gnu.org>
parents:
75343
diff
changeset
|
448 the Free Software Foundation; either version 3, or (at your option) |
713172dcf518
Switch license to GPLv3 or later.
Glenn Morris <rgm@gnu.org>
parents:
75343
diff
changeset
|
449 any later version. |
71189
3681678d3d86
Add copyright notice and copying permissions.
Eli Zaretskii <eliz@gnu.org>
parents:
64945
diff
changeset
|
450 |
3681678d3d86
Add copyright notice and copying permissions.
Eli Zaretskii <eliz@gnu.org>
parents:
64945
diff
changeset
|
451 This program is distributed in the hope that it will be useful, |
3681678d3d86
Add copyright notice and copying permissions.
Eli Zaretskii <eliz@gnu.org>
parents:
64945
diff
changeset
|
452 but WITHOUT ANY WARRANTY; without even the implied warranty of |
3681678d3d86
Add copyright notice and copying permissions.
Eli Zaretskii <eliz@gnu.org>
parents:
64945
diff
changeset
|
453 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
3681678d3d86
Add copyright notice and copying permissions.
Eli Zaretskii <eliz@gnu.org>
parents:
64945
diff
changeset
|
454 GNU General Public License for more details. |
3681678d3d86
Add copyright notice and copying permissions.
Eli Zaretskii <eliz@gnu.org>
parents:
64945
diff
changeset
|
455 |
3681678d3d86
Add copyright notice and copying permissions.
Eli Zaretskii <eliz@gnu.org>
parents:
64945
diff
changeset
|
456 You should have received a copy of the GNU General Public License |
78271
713172dcf518
Switch license to GPLv3 or later.
Glenn Morris <rgm@gnu.org>
parents:
75343
diff
changeset
|
457 along with this program; see the file COPYING. If not, write to |
713172dcf518
Switch license to GPLv3 or later.
Glenn Morris <rgm@gnu.org>
parents:
75343
diff
changeset
|
458 the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, |
713172dcf518
Switch license to GPLv3 or later.
Glenn Morris <rgm@gnu.org>
parents:
75343
diff
changeset
|
459 Boston, MA 02110-1301 USA. |