diff options
| author | Gerd Moellmann | 1999-10-28 11:20:17 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 1999-10-28 11:20:17 +0000 |
| commit | 40d63d1feee77cd064dba63ee9dd3b39f51bb2e0 (patch) | |
| tree | 0d3693b7fb423095a18e455afb6f03059680fa34 | |
| parent | eec3232e2940bf5f4b14c005d3e5b87c06c69dec (diff) | |
| download | emacs-40d63d1feee77cd064dba63ee9dd3b39f51bb2e0.tar.gz emacs-40d63d1feee77cd064dba63ee9dd3b39f51bb2e0.zip | |
(compilation-error-regexp-alist): Recognize
MIPS Pro 7.3 compiler error message syntax.
| -rw-r--r-- | lisp/progmodes/compile.el | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el index 3a3e2a631be..a8c592aaab6 100644 --- a/lisp/progmodes/compile.el +++ b/lisp/progmodes/compile.el | |||
| @@ -312,7 +312,12 @@ of[ \t]+\"?\\([a-zA-Z]?:?[^\":\n]+\\)\"?:" 3 2) | |||
| 312 | ;; cf90-113 f90comp: ERROR NSE, File = Hoved.f90, Line = 16, Column = 3 | 312 | ;; cf90-113 f90comp: ERROR NSE, File = Hoved.f90, Line = 16, Column = 3 |
| 313 | (".* ERROR [a-zA-Z0-9 ]+, File = \\(.+\\), Line = \\([0-9]+\\), Column = \\([0-9]+\\)" | 313 | (".* ERROR [a-zA-Z0-9 ]+, File = \\(.+\\), Line = \\([0-9]+\\), Column = \\([0-9]+\\)" |
| 314 | 1 2 3) | 314 | 1 2 3) |
| 315 | |||
| 316 | ;; MIPS Pro 7.3 compiler on SGI's | ||
| 317 | ;; cc-1020 CC: ERROR File = /home/deb/toolsopt/menv/src/bin/fizt/processPgp.cpp, Line = 12 | ||
| 318 | ("^.*File\\s-+=\\s-+\\(.*\\),\\s-+Line\\s-+=\\s-+\\([0-9]+\\)" 1 2) | ||
| 315 | ) | 319 | ) |
| 320 | |||
| 316 | "Alist that specifies how to match errors in compiler output. | 321 | "Alist that specifies how to match errors in compiler output. |
| 317 | Each elt has the form (REGEXP FILE-IDX LINE-IDX [COLUMN-IDX FILE-FORMAT...]) | 322 | Each elt has the form (REGEXP FILE-IDX LINE-IDX [COLUMN-IDX FILE-FORMAT...]) |
| 318 | If REGEXP matches, the FILE-IDX'th subexpression gives the file name, and | 323 | If REGEXP matches, the FILE-IDX'th subexpression gives the file name, and |