Hello, I have multi-line compiler output that I would like some help in setting errorformat so that I can scan in the error. A sample compiler output is shown below (without the line numbers):
1 static string ClassNames[*]; 2 | 3 compiler *E,QAANIY (/user/clive/base_class_lib/mytest.sv,55|25): Using *'s as an index for associative arrays is not implemented yet [SystemVerilog]. I am having difficulty handling the "|" character (line 2) in the multi-line output. Most compilers us the "^" character. I tried escaping it i.e. %p\| but that did not work. Thanks in advance, Clive...