module FFI::Clang
Constants
- VERSION
Public Class Methods
clang_version_string()
click to toggle source
# File lib/ffi/clang/clang_version.rb, line 25 def self.clang_version_string Lib.extract_string Lib.get_clang_version end
platform()
click to toggle source
# File lib/ffi/clang.rb, line 29 def self.platform os = RbConfig::CONFIG["host_os"] case os when /darwin/ :darwin when /linux/ :linux when /mswin|msys|mingw|cygwin|bccwin|wince|emc/ :windows else os end end