changeset 18619:5d7968727c67

(compilation-error-regexp-alist): Support for IAR Systems C compiler added.
author Richard M. Stallman <rms@gnu.org>
date Fri, 04 Jul 1997 21:05:11 +0000
parents c7a1c26b934f
children ea924276b44b
files lisp/progmodes/compile.el
diffstat 1 files changed, 5 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/progmodes/compile.el	Fri Jul 04 21:03:05 1997 +0000
+++ b/lisp/progmodes/compile.el	Fri Jul 04 21:05:11 1997 +0000
@@ -259,6 +259,11 @@
     ;;  foo.c(5:5) : error EDC0350: Syntax error.
     ("\\([^( \n\t]+\\)(\\([0-9]+\\):\\([0-9]+\\)) : " 1 2 3)
 
+    ;; IAR Systems C Compiler:
+    ;;  "foo.c",3  Error[32]: Error message
+    ;;  "foo.c",3  Warning[32]: Error message
+    ("\"\\(.*\\)\",\\([0-9]+\\)\\s-+\\(Error\\|Warning\\)\\[[0-9]+\\]:" 1 2)
+
     ;; Sun ada (VADS, Solaris):
     ;;  /home3/xdhar/rcds_rc/main.a, line 361, char 6:syntax error: "," inserted
     ("\\([^, \n\t]+\\), line \\([0-9]+\\), char \\([0-9]+\\)[:., \(-]" 1 2 3)