conf.gcc
944 Bytes
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
#
regexp=\bgcc\b
colours=yellow
count=more
.........
#
regexp=^[^:\s]*?:\d+:
colours=bold magenta
.........
regexp=^[^:\s]*?:
colours=cyan
count=once
.........
#
regexp=\`[A-Za-z0-9_():&*]+( const)?\'
colours=magenta
.........
# -O
regexp=\-O\d
colours=green
.........
# -o
regexp=\-o\s.+\b
colours=yellow
.........
# warning and error won't work, unless you redirect also
# stderr to grcat
#
# warning
regexp=attention:.*
colours=yellow on_blue
.........
regexp=.*attention.*
colours=bold yellow on_blue
count=more
.........
# warning
regexp=warning:.*
colours=yellow on_blue
.........
regexp=.*warning.*
colours=bold yellow on_blue
count=more
.........
# error
regexp=erreur:.*
colours=bold white
.........
regexp=.*erreur.*
colours=bold white on_red
count=once
.........
# error
regexp=error:.*
colours=bold white
.........
regexp=.*error.*
colours=bold white on_red
count=once
.........
#note
regexp=note:
colours=bold cyan
count=once