module FFI::Clang
Constants
- VERSION
Public Class Methods
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