Module: DyCI::Compiler

Defined in:
lib/dyci-compiler.rb,
lib/dyci-compiler/version.rb

Constant Summary collapse

VERSION =
"0.1.3"

Class Method Summary collapse

Class Method Details

.compile(args) ⇒ Object



7
8
9
10
11
12
# File 'lib/dyci-compiler.rb', line 7

def self.compile args
  storage = ClangStorage.new
  storage.save_arguments args
  runner = ClangRunner.new
  runner.compile args
end

.recompile(args) ⇒ Object



14
15
16
17
# File 'lib/dyci-compiler.rb', line 14

def self.recompile args
  runner = ClangRunner.new
  runner.recompile args[1]
end