|
Lines 180-186
Link Here
|
| 180 |
# Bottommost includer. |
180 |
# Bottommost includer. |
| 181 |
} elsif ($S=~/\A\s{3,}from (?:[.]\/)*([^:]+)/) { # From gcc-3.2. |
181 |
} elsif ($S=~/\A\s{3,}from (?:[.]\/)*([^:]+)/) { # From gcc-3.2. |
| 182 |
$included_from=$1; # Higher includer, we override the previous one, because we need the topmost one. |
182 |
$included_from=$1; # Higher includer, we override the previous one, because we need the topmost one. |
| 183 |
} elsif ($S=~/\A(?:[.]\/)*([^:]+):\d+:(\d+:)? warning: (?:#warning )?([A-Z][-A-Z]{2,}):(.*)\Z/) { |
183 |
} elsif ($S=~/\A(?:[.]\/)*([^:]+):\d+:(\d+:)? warning: (?:#warning )?([A-Z][-A-Z]{2,}): (.*) (?:\[-W#warnings\])?\Z/) { |
| 184 |
# ^^^ (\d+:)? added for gcc-3.1 |
184 |
# ^^^ (\d+:)? added for gcc-3.1 |
| 185 |
# ^^^ clang: appliers.cpp:554:6: warning: REQUIRES: out_gif.o [-W#warnings] |
185 |
# ^^^ clang: appliers.cpp:554:6: warning: REQUIRES: out_gif.o [-W#warnings] |
| 186 |
my($DS,$B,$features)=($1, $3, $4); # $B is e.g. 'PROVIDES'. |
186 |
my($DS,$B,$features)=($1, $3, $4); # $B is e.g. 'PROVIDES'. |