Sha256: 25e0dd88748278316027c4905a6f729527b0bf1ebf02b5f104b003af23e4c530

Contents?: true

Size: 648 Bytes

Versions: 55

Compression:

Stored size: 648 Bytes

Contents

require 'bake/toolchain/errorparser/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

55 entries across 55 versions & 1 rubygems

Version Path
bake-toolkit-2.46.0 lib/bake/toolchain/errorparser/tasking_linker_error_parser.rb
bake-toolkit-2.45.0 lib/bake/toolchain/errorparser/tasking_linker_error_parser.rb
bake-toolkit-2.44.1 lib/bake/toolchain/errorparser/tasking_linker_error_parser.rb
bake-toolkit-2.44.0 lib/bake/toolchain/errorparser/tasking_linker_error_parser.rb
bake-toolkit-2.43.2 lib/bake/toolchain/errorparser/tasking_linker_error_parser.rb
bake-toolkit-2.43.1 lib/bake/toolchain/errorparser/tasking_linker_error_parser.rb
bake-toolkit-2.43.0 lib/bake/toolchain/errorparser/tasking_linker_error_parser.rb
bake-toolkit-2.42.3 lib/bake/toolchain/errorparser/tasking_linker_error_parser.rb
bake-toolkit-2.42.2 lib/bake/toolchain/errorparser/tasking_linker_error_parser.rb
bake-toolkit-2.42.1 lib/bake/toolchain/errorparser/tasking_linker_error_parser.rb
bake-toolkit-2.42.0 lib/bake/toolchain/errorparser/tasking_linker_error_parser.rb
bake-toolkit-2.41.4 lib/bake/toolchain/errorparser/tasking_linker_error_parser.rb
bake-toolkit-2.41.3 lib/bake/toolchain/errorparser/tasking_linker_error_parser.rb
bake-toolkit-2.41.2 lib/bake/toolchain/errorparser/tasking_linker_error_parser.rb
bake-toolkit-2.41.1 lib/bake/toolchain/errorparser/tasking_linker_error_parser.rb
bake-toolkit-2.41.0 lib/bake/toolchain/errorparser/tasking_linker_error_parser.rb
bake-toolkit-2.40.1 lib/bake/toolchain/errorparser/tasking_linker_error_parser.rb
bake-toolkit-2.40.0 lib/bake/toolchain/errorparser/tasking_linker_error_parser.rb
bake-toolkit-2.39.1 lib/bake/toolchain/errorparser/tasking_linker_error_parser.rb
bake-toolkit-2.39.0 lib/bake/toolchain/errorparser/tasking_linker_error_parser.rb