Sha256: 8a96bf99e176965f1013aa3ee59f650516410ad9aba6a07edd6b7f6204431fc9
Contents?: true
Size: 1.04 KB
Versions: 38
Compression:
Stored size: 1.04 KB
Contents
require 'bake/toolchain/errorparser/error_parser' module Bake class GCCCompilerErrorParser < ErrorParser def initialize() @error_expression = /([^:]+):([0-9]+)[:0-9]* (catastrophic |fatal )*([A-Za-z\._]+): (.+)/ end def scan_lines(consoleOutput, proj_dir) res = [] consoleOutputFullnames = "" consoleOutput[0].each_line do |l| d = ErrorDesc.new scan_res = l.gsub(/\r\n?/, "").scan(@error_expression) if scan_res.length > 0 d.file_name = File.expand_path(scan_res[0][0]) d.line_number = scan_res[0][1].to_i d.message = scan_res[0][4] if (scan_res[0][3].include?".") d.severity = SEVERITY_ERROR d.message = scan_res[0][3] + ": " + d.message else d.severity = get_severity(scan_res[0][3]) end l.gsub!(scan_res[0][0],d.file_name) end res << d consoleOutputFullnames << l end [res, consoleOutputFullnames] end end end
Version data entries
38 entries across 38 versions & 1 rubygems