Top Level Namespace

Defined Under Namespace

Classes: Atomic

Instance Method Summary collapse

Instance Method Details

#compiler_is_gccObject



19
20
21
22
23
24
25
26
27
28
# File 'ext/extconf.rb', line 19

def compiler_is_gcc
  if CONFIG["GCC"] && CONFIG["GCC"] != ""
    return true
  elsif ( # This could stand to be more generic...  but I am afraid.
    CONFIG["CC"] =~ /\bgcc\b/
  )
    return true
  end
  return false
end