Sha256: a1ffc87e092a0c133cdf50e358158736033edaf10a7a9408c8fac34903d9976d
Contents?: true
Size: 504 Bytes
Versions: 130
Compression:
Stored size: 504 Bytes
Contents
require 'mkmf' dir_config("gcov") if ENV["USE_GCOV"] and Config::CONFIG['CC'] =~ /gcc/ and have_library("gcov", "__gcov_open") $CFLAGS << " -fprofile-arcs -ftest-coverage" if RUBY_VERSION =~ /1.9/ $CFLAGS << ' -DRUBY_19_COMPATIBILITY' create_makefile("rcovrt", "1.9/") else create_makefile("rcovrt", "1.8/") end else if RUBY_VERSION =~ /1.9/ $CFLAGS << ' -DRUBY_19_COMPATIBILITY' create_makefile("rcovrt", "1.9/") else create_makefile("rcovrt", "1.8/") end end
Version data entries
130 entries across 62 versions & 8 rubygems