# module to create Makefile for extension modules # invoke like: ruby -r mkmf extconf.rb require 'rbconfig' require 'find' require 'shellwords' CONFIG = Config::MAKEFILE_CONFIG ORIG_LIBPATH = ENV['LIB'] SRC_EXT = ["c", "cc", "m", "cxx", "cpp", "C"] unless defined? $configure_args $configure_args = {} args = CONFIG["configure_args"] if /mswin32|bccwin32|mingw/ =~ RUBY_PLATFORM and ENV["CONFIGURE_ARGS"] args << " " << ENV["CONFIGURE_ARGS"] end for arg in Shellwords::shellwords(args) arg, val = arg.split('=', 2) if arg.sub!(/^(?!--)/, '--') val or next arg.downcase! end next if /^--(?:top|topsrc|src|cur)dir$/ =~ arg $configure_args[arg] = val || true end for arg in ARGV arg, val = arg.split('=', 2) if arg.sub!(/^(?!--)/, '--') val or next arg.downcase! end $configure_args[arg] = val || true end end $srcdir = CONFIG["srcdir"] $libdir = CONFIG["libdir"] $rubylibdir = CONFIG["rubylibdir"] $archdir = CONFIG["archdir"] $sitedir = CONFIG["sitedir"] $sitelibdir = CONFIG["sitelibdir"] $sitearchdir = CONFIG["sitearchdir"] def dir_re(dir) Regexp.new('\$(?:\('+dir+'\)|\{'+dir+'\})(?:\$\(target_prefix\)|\{target_prefix\})?') end commondir = dir_re('commondir') INSTALL_DIRS = [ [commondir, "$(rubylibdir)"], [dir_re('sitelibdir'), "$(rubylibdir)$(target_prefix)"], [dir_re('sitearchdir'), "$(archdir)$(target_prefix)"] ] SITEINSTALL_DIRS = [ [commondir, "$(sitedir)$(target_prefix)"], [dir_re('rubylibdir'), "$(sitelibdir)$(target_prefix)"], [dir_re('archdir'), "$(sitearchdir)$(target_prefix)"] ] if File.exist? Config::CONFIG["archdir"] + "/ruby.h" $hdrdir = $archdir elsif File.exist? $srcdir + "/ruby.h" $hdrdir = $srcdir else STDERR.print "can't find header files for ruby.\n" exit 1 end $topdir = $top_srcdir = $hdrdir # $hdrdir.gsub!('/', '\\') if RUBY_PLATFORM =~ /mswin32|bccwin32/ CFLAGS = CONFIG["CFLAGS"] if RUBY_PLATFORM == "m68k-human" CFLAGS.gsub!(/-c..-stack=[0-9]+ */, '') elsif RUBY_PLATFORM =~ /-nextstep|-rhapsody|-darwin/ CFLAGS.gsub!( /-arch\s\w*/, '' ) end if /mswin32/ =~ RUBY_PLATFORM OUTFLAG = '-Fe' CPPOUTFILE = '-P' elsif /bccwin32/ =~ RUBY_PLATFORM OUTFLAG = '-o' CPPOUTFILE = '-oconftest.i' else OUTFLAG = '-o ' CPPOUTFILE = '-o conftest.i' end $LINK = "#{CONFIG['CC']} #{OUTFLAG}conftest -I#{$hdrdir} -I#{$top_srcdir} #{CFLAGS} %s %s #{CONFIG['LDFLAGS']} %s conftest.c %s %s #{CONFIG['LIBS']}" $CC = "#{CONFIG['CC']} -c #{CONFIG['CPPFLAGS']} %s -I#{$hdrdir} -I#{$top_srcdir} #{CFLAGS} %s %s conftest.c" $CPP = "#{CONFIG['CPP']} #{CONFIG['CPPFLAGS']} %s -I#{$hdrdir} -I#{$top_srcdir} #{CFLAGS} %s %s %s conftest.c" def rm_f(*files) targets = [] for file in files targets.concat Dir[file] end if not targets.empty? File::chmod(0777, *targets) File::unlink(*targets) end end def older(file1, file2) if !File.exist?(file1) then return true end if !File.exist?(file2) then return false end if File.mtime(file1) < File.mtime(file2) return true end return false end module Logging @log = nil @logfile = 'mkmf.log' @orgerr = $stderr.dup @orgout = $stdout.dup def self::open @log ||= File::open(@logfile, 'w') $stderr.reopen(@log) $stdout.reopen(@log) yield ensure $stderr.reopen(@orgerr) $stdout.reopen(@orgout) end def self::logfile file @logfile = file if @log and not @log.closed? @log.close @log = nil end end end def xsystem command Config.expand(command) Logging::open do puts command system(command) end end def xpopen command, *mode, &block Config.expand(command) Logging::open do case mode[0] when nil, /^r/ puts "#{command} |" else puts "| #{command}" end IO.popen(command, *mode, &block) end end def try_link0(src, opt="") cfile = open("conftest.c", "w") cfile.print src cfile.close ldflags = $LDFLAGS if /mswin32|bccwin32/ =~ RUBY_PLATFORM and !$LIBPATH.empty? ENV['LIB'] = ($LIBPATH + [ORIG_LIBPATH]).compact.join(';') else $LDFLAGS = ldflags.dup $LIBPATH.each {|d| $LDFLAGS << " -L" + d} end begin xsystem(format($LINK, $CFLAGS, $CPPFLAGS, $LDFLAGS, opt, $LOCAL_LIBS)) ensure $LDFLAGS = ldflags ENV['LIB'] = ORIG_LIBPATH if /mswin32|bccwin32/ =~ RUBY_PLATFORM end end def try_link(src, opt="") begin try_link0(src, opt) ensure rm_f "conftest*" if /bccwin32/ =~ RUBY_PLATFORM rm_f "c0x32*" end end end def try_compile(src, opt="") cfile = open("conftest.c", "w") cfile.print src cfile.close begin xsystem(format($CC, $CPPFLAGS, $CFLAGS, opt)) ensure rm_f "conftest*" end end def try_cpp(src, opt="") cfile = open("conftest.c", "w") cfile.print src cfile.close begin xsystem(format($CPP, $CPPFLAGS, $CFLAGS, CPPOUTFILE, opt)) ensure rm_f "conftest*" end end def egrep_cpp(pat, src, opt="") cfile = open("conftest.c", "w") cfile.print src cfile.close begin xpopen(format($CPP, $CFLAGS, $CPPFLAGS, '', opt)) do |f| if Regexp === pat puts(" ruby -ne 'print if /#{pat.source}/'") f.grep(pat) {|l| puts "#{f.lineno}: #{l}" return true } false else puts(" egrep '#{pat}'") begin stdin = $stdin.dup $stdin.reopen(f) system("egrep", pat) ensure $stdin.reopen(stdin) end end end ensure rm_f "conftest*" end end def macro_defined?(macro, src, opt="") try_cpp(src + < #include int main() { return 0; } int t() { #{func}(); return 0; } SRC unless r r = try_link(<<"SRC", libs) #include #include int main() { return 0; } int t() { void ((*p)()); p = (void ((*)()))#{func}; return 0; } SRC end else r = try_link(<<"SRC", libs) int main() { return 0; } int t() { #{func}(); return 0; } SRC end unless r message "no\n" return false end else libs = append_library($libs, lib) end $libs = libs message "yes\n" return true end def find_library(lib, func, *paths) message "checking for #{func}() in -l#{lib}... " libpath = $LIBPATH libs = append_library($libs, lib) until try_link(<<"SRC", libs) int main() { return 0; } int t() { #{func}(); return 0; } SRC if paths.size == 0 $LIBPATH = libpath message "no\n" return false end $LIBPATH = libpath | [paths.shift] end $libs = libs message "yes\n" return true end def have_func(func, header=nil) message "checking for #{func}()... " libs = $libs src = if /mswin32|bccwin32|mingw/ =~ RUBY_PLATFORM r = <<"SRC" #include #include SRC else "" end unless header.nil? src << <<"SRC" #include <#{header}> SRC end r = try_link(src + <<"SRC", libs) int main() { return 0; } int t() { #{func}(); return 0; } SRC unless r r = try_link(src + <<"SRC", libs) int main() { return 0; } int t() { void ((*volatile p)()); p = (void ((*)()))#{func}; return 0; } SRC end unless r message "no\n" return false end $defs.push(format("-DHAVE_%s", func.upcase)) message "yes\n" return true end def have_header(header) message "checking for #{header}... " unless try_cpp(<<"SRC") #include <#{header}> SRC message "no\n" return false end $defs.push(format("-DHAVE_%s", header.tr("a-z./\055", "A-Z___"))) message "yes\n" return true end def have_struct_member(type, member, header=nil) message "checking for #{type}.#{member}... " src = if /mswin32|bccwin32|mingw/ =~ RUBY_PLATFORM r = <<"SRC" #include #include SRC else "" end unless header.nil? header = [header] unless header.kind_of? Array header.each {|h| src << <<"SRC" #include <#{h}> SRC } end src << <<"SRC" int main() { return 0; } int s = (char *)&((#{type}*)0)->#{member} - (char *)0; SRC r = try_compile(src) unless r message "no\n" return false end $defs.push(format("-DHAVE_ST_%s", member.upcase)) message "yes\n" return true end def find_executable(bin, path = nil) message "checking for #{bin}... " if path.nil? path = ENV['PATH'].split(Config::CONFIG['PATH_SEPARATOR']) else path = path.split(Config::CONFIG['PATH_SEPARATOR']) end bin += Config::CONFIG['EXEEXT'] for dir in path file = File.join(dir, bin) if FileTest.executable?(file) message "yes\n" return file else next end end message "no\n" return nil end def arg_config(config, default=nil) $configure_args.fetch(config, default) end def with_config(config, default=nil) unless /^--with-/ =~ config config = '--with-' + config end arg_config(config, default) end def enable_config(config, default=nil) if arg_config("--enable-"+config) true elsif arg_config("--disable-"+config) false else default end end def create_header() message "creating extconf.h\n" if $defs.length > 0 open("extconf.h", "w") do |hfile| for line in $defs line =~ /^-D(.*)/ hfile.printf "#define %s 1\n", $1 end end end end def dir_config(target, idefault=nil, ldefault=nil) if dir = with_config(target + "-dir", (idefault unless ldefault)) idefault = dir + "/include" ldefault = dir + "/lib" end idir = with_config(target + "-include", idefault) ldir = with_config(target + "-lib", ldefault) if idir idircflag = "-I" + idir $CPPFLAGS += " " + idircflag unless $CPPFLAGS.split.include?(idircflag) end if ldir $LIBPATH << ldir unless $LIBPATH.include?(ldir) end [idir, ldir] end def with_destdir(dir) /^\$[\(\{]/ =~ dir ? dir : "$(DESTDIR)"+dir end def winsep(s) s.tr('/', '\\') end def create_makefile(target, srcprefix = nil) save_libs = $libs.dup save_libpath = $LIBPATH.dup message "creating Makefile\n" rm_f "conftest*" if target.include?('/') target_prefix, target = File.split(target) target_prefix[0,0] = '/' else target_prefix = "" end if CONFIG["DLEXT"] == $OBJEXT libs = $libs.split for lib in libs lib.sub!(/-l(.*)/, '"lib\1.a"') end $defs.push(format("-DEXTLIB='%s'", libs.join(","))) end $DLDFLAGS = CONFIG["DLDFLAGS"] $libs = CONFIG["LIBRUBYARG"] + " " + $libs + " " + CONFIG["LIBS"] $configure_args['--enable-shared'] or $LIBPATH |= [$topdir] $LIBPATH |= [CONFIG["libdir"]] srcprefix ||= '$(srcdir)' Config::expand(srcdir = srcprefix.dup) defflag = '' if RUBY_PLATFORM =~ /bccwin32/ deffile = target + '.def' if not File.exist? deffile open(deffile, 'wb') do |f| f.print "EXPORTS\n", "_Init_", target, "\n" end end elsif RUBY_PLATFORM =~ /cygwin|mingw/ deffile = target + '.def' if not File.exist? deffile if File.exist? File.join(srcdir, deffile) deffile = File.join srcdir, deffile else open(deffile, 'wb') do |f| f.print "EXPORTS\n", "Init_", target, "\n" end end end defflag = deffile end if RUBY_PLATFORM =~ /mswin32|bccwin32/ libpath = $LIBPATH.join(';') else $LIBPATH.each {|d| $DLDFLAGS << " -L" << d} if /netbsdelf/ =~ RUBY_PLATFORM $LIBPATH.each {|d| $DLDFLAGS << " -Wl,-R" + d} end end drive = File::PATH_SEPARATOR == ';' ? /\A\w:/ : /\A/ unless $objs then $objs = [] for f in Dir[File.join(srcdir, "*.{#{SRC_EXT.join(%q{,})}}")] f = File.basename(f) f.sub!(/(#{SRC_EXT.join(%q{|})})$/, $OBJEXT) $objs.push f end else for i in $objs i.sub!(/\.o\z/, ".#{$OBJEXT}") end end $objs = $objs.join(" ") mfile = open("Makefile", "w") mfile.binmode if /mingw/ =~ RUBY_PLATFORM mfile.print <