module RLTK::CG::Support

Support functionality for LLVM code generation.

Public Class Methods

load_library(lib) click to toggle source

Load a shared library into memory and make its exported symbols available to execution engines.

@param [String] lib Path to the shared library to load

# File lib/rcgtk/support.rb, line 25
def self.load_library(lib)
        Bindings.load_library_permanently(lib).to_bool
end