Sha256: 3d6945de32d066250fa4e134053053894edfe608040c10662088335bc7800297
Contents?: true
Size: 514 Bytes
Versions: 52
Compression:
Stored size: 514 Bytes
Contents
require 'fileutils' extension_name = 'concurrent_ruby_ext' require 'mkmf' dir_config(extension_name) have_header "libkern/OSAtomic.h" compiler_is_gcc = (CONFIG["GCC"] && !CONFIG["GCC"].empty?) || # This could stand to be more generic... but I am afraid. CONFIG["CC"] =~ /\bgcc\b/ if compiler_is_gcc case CONFIG["arch"] when /mswin32|mingw|solaris/ $CFLAGS += " -march=native" when 'i686-linux' $CFLAGS += " -march=i686" end end create_makefile File.join('concurrent', extension_name)
Version data entries
52 entries across 52 versions & 3 rubygems