Sha256: b1ab24c7404e873c22a9a1b78b1677c4ed7065b820f620b27d8463e3dd5463f5
Contents?: true
Size: 530 Bytes
Versions: 5
Compression:
Stored size: 530 Bytes
Contents
# coding=utf-8 # Ruby to C (and then, to machine executable) compiler, originally written by # Urabe Shyouhei <shyouhei@ruby-lang.org> during 2010. See the COPYING for # legal info. require 'mkmf' require 'rbconfig' extend RbConfig $defs.push '-DCABI_OPERANDS' if enable_config 'cabi-operands', true $defs.push '-DCABI_PASS_CFP' if enable_config 'cabi-pass-cfp', true $INCFLAGS << ' -I$(srcdir)/ruby_source' $objs = %w'$(srcdir)/cast_off.o' $srcs = %w'$(srcdir)/cast_off.c.rb' create_header create_makefile 'cast_off'
Version data entries
5 entries across 5 versions & 1 rubygems