Sha256: 6ab7c164847742b47f86279b2a2af87cef9b8564579b9e8d8f06ed8693a7f810

Contents?: true

Size: 630 Bytes

Versions: 48

Compression:

Stored size: 630 Bytes

Contents

require_relative 'error_parser'

module Bake
  class TaskingLinkerErrorParser < ErrorParser

    def initialize()
      @error_expression = /.* (.+): (.*)/
    end

    def scan_lines(consoleOutput, proj_dir)
      res = []
      consoleOutput[0].each_line do |l|
        l.rstrip!
        d = ErrorDesc.new
        scan_res = l.scan(@error_expression)
        if scan_res.length > 0
          d.file_name = proj_dir
          d.line_number = 0
          d.message = scan_res[0][1]
          d.severity = get_tasking_severity(scan_res[0][0])
        end
        res << d
      end
      [res, consoleOutput[0]]
    end

  end
end

Version data entries

48 entries across 48 versions & 1 rubygems

Version Path
bake-toolkit-2.72.0 lib/bake/toolchain/errorparser/tasking_linker_error_parser.rb
bake-toolkit-2.71.0 lib/bake/toolchain/errorparser/tasking_linker_error_parser.rb
bake-toolkit-2.70.1 lib/bake/toolchain/errorparser/tasking_linker_error_parser.rb
bake-toolkit-2.70.0 lib/bake/toolchain/errorparser/tasking_linker_error_parser.rb
bake-toolkit-2.69.0 lib/bake/toolchain/errorparser/tasking_linker_error_parser.rb
bake-toolkit-2.68.1 lib/bake/toolchain/errorparser/tasking_linker_error_parser.rb
bake-toolkit-2.68.0 lib/bake/toolchain/errorparser/tasking_linker_error_parser.rb
bake-toolkit-2.67.0 lib/bake/toolchain/errorparser/tasking_linker_error_parser.rb
bake-toolkit-2.66.0 lib/bake/toolchain/errorparser/tasking_linker_error_parser.rb
bake-toolkit-2.65.2 lib/bake/toolchain/errorparser/tasking_linker_error_parser.rb
bake-toolkit-2.65.1 lib/bake/toolchain/errorparser/tasking_linker_error_parser.rb
bake-toolkit-2.65.0 lib/bake/toolchain/errorparser/tasking_linker_error_parser.rb
bake-toolkit-2.64.4 lib/bake/toolchain/errorparser/tasking_linker_error_parser.rb
bake-toolkit-2.64.3 lib/bake/toolchain/errorparser/tasking_linker_error_parser.rb
bake-toolkit-2.64.2 lib/bake/toolchain/errorparser/tasking_linker_error_parser.rb
bake-toolkit-2.64.1 lib/bake/toolchain/errorparser/tasking_linker_error_parser.rb
bake-toolkit-2.64.0 lib/bake/toolchain/errorparser/tasking_linker_error_parser.rb
bake-toolkit-2.63.2 lib/bake/toolchain/errorparser/tasking_linker_error_parser.rb
bake-toolkit-2.63.1 lib/bake/toolchain/errorparser/tasking_linker_error_parser.rb
bake-toolkit-2.63.0 lib/bake/toolchain/errorparser/tasking_linker_error_parser.rb