mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-10 21:50:37 -08:00
(compilation-error-regexp-alist): Recognize
MIPS Pro 7.3 compiler error message syntax.
This commit is contained in:
parent
eec3232e29
commit
40d63d1fee
1 changed files with 5 additions and 0 deletions
|
|
@ -312,7 +312,12 @@ of[ \t]+\"?\\([a-zA-Z]?:?[^\":\n]+\\)\"?:" 3 2)
|
|||
;; cf90-113 f90comp: ERROR NSE, File = Hoved.f90, Line = 16, Column = 3
|
||||
(".* ERROR [a-zA-Z0-9 ]+, File = \\(.+\\), Line = \\([0-9]+\\), Column = \\([0-9]+\\)"
|
||||
1 2 3)
|
||||
|
||||
;; MIPS Pro 7.3 compiler on SGI's
|
||||
;; cc-1020 CC: ERROR File = /home/deb/toolsopt/menv/src/bin/fizt/processPgp.cpp, Line = 12
|
||||
("^.*File\\s-+=\\s-+\\(.*\\),\\s-+Line\\s-+=\\s-+\\([0-9]+\\)" 1 2)
|
||||
)
|
||||
|
||||
"Alist that specifies how to match errors in compiler output.
|
||||
Each elt has the form (REGEXP FILE-IDX LINE-IDX [COLUMN-IDX FILE-FORMAT...])
|
||||
If REGEXP matches, the FILE-IDX'th subexpression gives the file name, and
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue