Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 8474f5dff9c76c99b869bf4a2abc04394130fd5a (plain) (blame)
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
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.2"?>
<plugin>
	<extension id="XlcErrorParser" name="%CDTXLCErrorParser.name" point="org.eclipse.cdt.core.ErrorParser">
		<errorparser
			class="org.eclipse.cdt.core.errorparsers.RegexErrorParser"
			id="org.eclipse.cdt.errorparsers.xlc.XlcErrorParser"
			name="%CDTXLCErrorParser.name">
			<pattern
				regex="%CDTXLCErrorParser.pattern.error"
				severity="Error"
				file-expr="$1"
				line-expr="$2"
				description-expr="$4"
				eat-processed-line="true">
			</pattern>
			<pattern
				regex="%CDTXLCErrorParser.pattern.warning"
				severity="Warning"
				file-expr="$1"
				line-expr="$2"
				description-expr="$4"
				eat-processed-line="true">
			</pattern>
			<pattern
				regex="%CDTXLCErrorParser.pattern.macro"
				severity="Warning"
				file-expr="$6"
				line-expr="$5"
				description-expr="%CDTXLCErrorParser.pattern.macro.replacement"
				eat-processed-line="true">
			</pattern>
			<pattern
				regex="%CDTXLCErrorParser.pattern.info"
				severity="Info"
				description-expr="$4"
				file-expr="$1"
				line-expr="$2"
				eat-processed-line="true">
			</pattern>
			<pattern
				regex="%CDTXLCErrorParser.pattern.ld.error"
				severity="Error"
				file-expr=""
				line-expr=""
				description-expr="$2"
				eat-processed-line="true">
			</pattern>
			<pattern
				regex="%CDTXLCErrorParser.pattern.ld.error2"
				severity="Error"
				file-expr=""
				line-expr=""
				description-expr="$2"
				eat-processed-line="true">
			</pattern>
			<pattern
				regex="%CDTXLCErrorParser.pattern.ld.warning"
				severity="Warning"
				file-expr=""
				line-expr=""
				description-expr="$2"
				eat-processed-line="true">
			</pattern>
			<pattern
				regex="%CDTXLCErrorParser.pattern.ld.info"
				severity="Info"
				file-expr=""
				line-expr=""
				description-expr="$2"
				eat-processed-line="true">
			</pattern>
		</errorparser>
	</extension>
</plugin>

Back to the top