2002-12-26 17:59:35 +03:00
|
|
|
#! /usr/local/bin/ruby
|
2012-11-26 23:12:55 +04:00
|
|
|
# -*- mode: ruby; coding: us-ascii -*-
|
2002-09-08 13:08:15 +04:00
|
|
|
|
2013-05-20 16:42:02 +04:00
|
|
|
# :stopdoc:
|
2006-09-08 23:48:22 +04:00
|
|
|
$extension = nil
|
|
|
|
$extstatic = nil
|
2002-09-08 13:08:15 +04:00
|
|
|
$force_static = nil
|
|
|
|
$install = nil
|
|
|
|
$destdir = nil
|
2006-09-08 23:48:22 +04:00
|
|
|
$dryrun = false
|
2002-09-08 13:08:15 +04:00
|
|
|
$clean = nil
|
|
|
|
$nodynamic = nil
|
|
|
|
$extinit = nil
|
2012-05-16 09:39:06 +04:00
|
|
|
$extobjs = []
|
2006-09-08 23:48:22 +04:00
|
|
|
$extflags = ""
|
|
|
|
$extlibs = nil
|
|
|
|
$extpath = nil
|
2002-12-31 15:31:12 +03:00
|
|
|
$ignore = nil
|
|
|
|
$message = nil
|
2009-02-24 13:01:08 +03:00
|
|
|
$command_output = nil
|
2011-03-08 03:33:05 +03:00
|
|
|
$configure_only = false
|
2002-09-08 13:08:15 +04:00
|
|
|
|
2003-01-05 23:11:20 +03:00
|
|
|
$progname = $0
|
|
|
|
alias $PROGRAM_NAME $0
|
|
|
|
alias $0 $progname
|
|
|
|
|
2002-09-08 13:08:15 +04:00
|
|
|
$extlist = []
|
2005-02-06 17:51:44 +03:00
|
|
|
$compiled = {}
|
2002-09-08 13:08:15 +04:00
|
|
|
|
2012-05-16 09:39:06 +04:00
|
|
|
DUMMY_SIGNATURE = "***DUMMY MAKEFILE***"
|
|
|
|
|
2005-05-13 18:44:59 +04:00
|
|
|
srcdir = File.dirname(File.dirname(__FILE__))
|
2008-02-26 21:56:00 +03:00
|
|
|
unless defined?(CROSS_COMPILING) and CROSS_COMPILING
|
|
|
|
$:.replace([File.expand_path("lib", srcdir), Dir.pwd])
|
|
|
|
end
|
|
|
|
$:.unshift(srcdir)
|
|
|
|
require 'rbconfig'
|
2002-09-08 13:08:15 +04:00
|
|
|
|
2004-02-21 08:33:24 +03:00
|
|
|
$topdir = "."
|
2002-09-08 16:59:08 +04:00
|
|
|
$top_srcdir = srcdir
|
2004-03-18 12:50:14 +03:00
|
|
|
|
2008-02-26 21:56:00 +03:00
|
|
|
$" << "mkmf.rb"
|
|
|
|
load File.expand_path("lib/mkmf.rb", srcdir)
|
2004-03-18 12:50:14 +03:00
|
|
|
require 'optparse/shellwords'
|
2002-09-08 13:08:15 +04:00
|
|
|
|
2012-11-26 23:12:55 +04:00
|
|
|
if defined?(File::NULL)
|
|
|
|
@null = File::NULL
|
|
|
|
elsif !File.chardev?(@null = "/dev/null")
|
|
|
|
@null = "nul"
|
|
|
|
end
|
|
|
|
|
2002-12-31 15:31:12 +03:00
|
|
|
def sysquote(x)
|
2008-10-04 17:42:00 +04:00
|
|
|
@quote ||= /os2/ =~ (CROSS_COMPILING || RUBY_PLATFORM)
|
2003-01-05 10:04:10 +03:00
|
|
|
@quote ? x.quote : x
|
2002-12-31 15:31:12 +03:00
|
|
|
end
|
|
|
|
|
2011-07-03 18:44:59 +04:00
|
|
|
def verbose?
|
2012-05-16 09:39:06 +04:00
|
|
|
$mflags.defined?("V") == "1"
|
|
|
|
end
|
|
|
|
|
|
|
|
def system(*args)
|
|
|
|
if verbose?
|
|
|
|
if args.size == 1
|
|
|
|
puts args
|
|
|
|
else
|
2012-05-20 18:00:13 +04:00
|
|
|
puts Shellwords.join(args)
|
2012-05-16 09:39:06 +04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
super
|
2011-07-03 18:44:59 +04:00
|
|
|
end
|
|
|
|
|
2014-04-15 14:29:01 +04:00
|
|
|
def atomic_write_open(filename)
|
|
|
|
filename_new = filename + ".new.#$$"
|
|
|
|
open(filename_new, "wb") do |f|
|
|
|
|
yield f
|
|
|
|
end
|
|
|
|
if File.binread(filename_new) != (File.binread(filename) rescue nil)
|
|
|
|
File.rename(filename_new, filename)
|
|
|
|
else
|
|
|
|
File.unlink(filename_new)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2005-02-10 06:09:27 +03:00
|
|
|
def extract_makefile(makefile, keep = true)
|
2005-02-06 17:51:44 +03:00
|
|
|
m = File.read(makefile)
|
2015-01-21 07:22:07 +03:00
|
|
|
s = m[/^CLEANFILES[ \t]*=[ \t](.*)/, 1] and $cleanfiles = s.split
|
|
|
|
s = m[/^DISTCLEANFILES[ \t]*=[ \t](.*)/, 1] and $distcleanfiles = s.split
|
2005-02-06 17:51:44 +03:00
|
|
|
if !(target = m[/^TARGET[ \t]*=[ \t]*(\S*)/, 1])
|
2005-02-10 06:09:27 +03:00
|
|
|
return keep
|
2005-02-06 17:51:44 +03:00
|
|
|
end
|
|
|
|
installrb = {}
|
2010-08-07 12:18:42 +04:00
|
|
|
m.scan(/^install-rb-default:.*[ \t](\S+)(?:[ \t].*)?\n\1:[ \t]*(\S+)/) {installrb[$2] = $1}
|
2005-02-06 17:51:44 +03:00
|
|
|
oldrb = installrb.keys.sort
|
|
|
|
newrb = install_rb(nil, "").collect {|d, *f| f}.flatten.sort
|
|
|
|
if target_prefix = m[/^target_prefix[ \t]*=[ \t]*\/(.*)/, 1]
|
|
|
|
target = "#{target_prefix}/#{target}"
|
2005-02-19 04:43:58 +03:00
|
|
|
end
|
|
|
|
unless oldrb == newrb
|
|
|
|
if $extout
|
|
|
|
newrb.each {|f| installrb.delete(f)}
|
2005-03-28 15:53:52 +04:00
|
|
|
unless installrb.empty?
|
|
|
|
config = CONFIG.dup
|
|
|
|
install_dirs(target_prefix).each {|var, val| config[var] = val}
|
2010-11-17 13:13:25 +03:00
|
|
|
FileUtils.rm_f(installrb.values.collect {|f| RbConfig.expand(f, config)},
|
2011-07-03 18:44:59 +04:00
|
|
|
:verbose => verbose?)
|
2005-03-28 15:53:52 +04:00
|
|
|
end
|
2005-02-10 06:09:27 +03:00
|
|
|
end
|
2005-02-19 04:43:58 +03:00
|
|
|
return false
|
2005-02-06 17:51:44 +03:00
|
|
|
end
|
2011-12-08 18:28:28 +04:00
|
|
|
srcs = Dir[File.join($srcdir, "*.{#{SRC_EXT.join(%q{,})}}")].map {|fn| File.basename(fn)}.sort
|
2011-11-20 18:22:44 +04:00
|
|
|
if !srcs.empty?
|
|
|
|
old_srcs = m[/^ORIG_SRCS[ \t]*=[ \t](.*)/, 1] or return false
|
|
|
|
old_srcs.split.sort == srcs or return false
|
|
|
|
end
|
2005-02-06 17:51:44 +03:00
|
|
|
$target = target
|
2006-05-26 03:44:08 +04:00
|
|
|
$extconf_h = m[/^RUBY_EXTCONF_H[ \t]*=[ \t]*(\S+)/, 1]
|
2009-12-30 19:58:51 +03:00
|
|
|
if $static.nil?
|
|
|
|
$static ||= m[/^EXTSTATIC[ \t]*=[ \t]*(\S+)/, 1] || false
|
|
|
|
/^STATIC_LIB[ \t]*=[ \t]*\S+/ =~ m or $static = false
|
|
|
|
end
|
2005-02-06 17:51:44 +03:00
|
|
|
$preload = Shellwords.shellwords(m[/^preload[ \t]*=[ \t]*(.*)/, 1] || "")
|
2013-05-23 19:18:05 +04:00
|
|
|
if dldflags = m[/^dldflags[ \t]*=[ \t]*(.*)/, 1] and !$DLDFLAGS.include?(dldflags)
|
|
|
|
$DLDFLAGS += " " + dldflags
|
|
|
|
end
|
2005-02-06 17:51:44 +03:00
|
|
|
if s = m[/^LIBS[ \t]*=[ \t]*(.*)/, 1]
|
|
|
|
s.sub!(/^#{Regexp.quote($LIBRUBYARG)} */, "")
|
|
|
|
s.sub!(/ *#{Regexp.quote($LIBS)}$/, "")
|
|
|
|
$libs = s
|
|
|
|
end
|
2006-09-08 23:48:22 +04:00
|
|
|
$objs = (m[/^OBJS[ \t]*=[ \t](.*)/, 1] || "").split
|
|
|
|
$srcs = (m[/^SRCS[ \t]*=[ \t](.*)/, 1] || "").split
|
2005-02-06 17:51:44 +03:00
|
|
|
$LOCAL_LIBS = m[/^LOCAL_LIBS[ \t]*=[ \t]*(.*)/, 1] || ""
|
|
|
|
$LIBPATH = Shellwords.shellwords(m[/^libpath[ \t]*=[ \t]*(.*)/, 1] || "") - %w[$(libdir) $(topdir)]
|
|
|
|
true
|
|
|
|
end
|
|
|
|
|
2002-09-08 13:08:15 +04:00
|
|
|
def extmake(target)
|
2012-05-16 09:39:06 +04:00
|
|
|
unless $configure_only || verbose?
|
2011-03-08 03:33:05 +03:00
|
|
|
print "#{$message} #{target}\n"
|
|
|
|
$stdout.flush
|
|
|
|
end
|
2002-09-08 13:08:15 +04:00
|
|
|
|
2004-02-17 13:34:31 +03:00
|
|
|
FileUtils.mkpath target unless File.directory?(target)
|
2004-02-21 08:33:24 +03:00
|
|
|
begin
|
2014-05-09 09:52:59 +04:00
|
|
|
# don't build if parent library isn't build
|
|
|
|
parent = true
|
|
|
|
d = target
|
|
|
|
until (d = File.dirname(d)) == '.'
|
|
|
|
if File.exist?("#{$top_srcdir}/ext/#{d}/extconf.rb")
|
|
|
|
parent = (/^all:\s*install/ =~ IO.read("#{d}/Makefile") rescue false)
|
|
|
|
break
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2004-02-21 08:33:24 +03:00
|
|
|
dir = Dir.pwd
|
|
|
|
FileUtils.mkpath target unless File.directory?(target)
|
|
|
|
Dir.chdir target
|
|
|
|
top_srcdir = $top_srcdir
|
|
|
|
topdir = $topdir
|
2007-06-10 07:06:15 +04:00
|
|
|
hdrdir = $hdrdir
|
2004-02-21 08:33:24 +03:00
|
|
|
prefix = "../" * (target.count("/")+1)
|
2007-06-10 07:06:15 +04:00
|
|
|
$top_srcdir = relative_from(top_srcdir, prefix)
|
|
|
|
$hdrdir = relative_from(hdrdir, prefix)
|
2004-02-21 08:33:24 +03:00
|
|
|
$topdir = prefix + $topdir
|
2002-09-08 13:08:15 +04:00
|
|
|
$target = target
|
|
|
|
$mdir = target
|
* configure.in (XCFLAGS): CFLAGS to comile ruby itself.
* configure.in (LIBEXT): suffix for static libraries.
* configure.in (LIBPATHFLAG): switch template to specify library
path.
* configure.in (LINK_SO): command to link shared objects.
* configure.in (DEFFILE, ARCHFILE): miscellaneous system dependent
files.
* configure.in (EXPORT_PREFIX): prefix to exported symbols on
Windows.
* configure.in (COMMON_LIBS, COMMON_MACROS, COMMON_HEADERS):
libraries, macros and headers used in common.
* configure.in (RUBYW_INSTALL_NAME, rubyw_install_name): GUI mode
excutable name.
* Makefile.in (CFLAGS): append XCFLAGS.
* Makefile.in (PREP): miscellaneous system dependent files.
* Makefile.in (ruby.imp, ext/extinit.o): moved from ext/extmk.rb.
* Makefile.in (fake.rb): CROSS_COMPILING keeps building platform.
* Makefile.in (MAKEFILES): depend on *.in and config.status.
* Makefile.in (parse.c): replace "y.tab.c" with actual name for
byacc.
* ext/extmk.rb, lib/mkmf.rb: integrated.
* ext/extmk.rb: propagate MFLAGS.
* ext/extmk.rb (extmake): make dummy Makefile to clean even if no
Makefile is made.
* lib/mkmf.rb (older): accept multiple file names and Time
objects.
* lib/mkmf.rb (xsystem): split and qoute.
* lib/mkmf.rb (cpp_include): make include directives.
* lib/mkmf.rb (try_func): try wheather specified function is
available.
* lib/mkmf.rb (install_files): default to site-install.
* lib/mkmf.rb (checking_for): added.
* lib/mkmf.rb (find_executable0): just find executable file with
no message.
* lib/mkmf.rb (create_header): output header file is variable.
* lib/mkmf.rb (create_makefile): separate sections.
* lib/mkmf.rb (init_mkmf): initialize global variables.
* win32/Makefile.sub, bcc32/Makefile.sub (CPP, AR): added.
* bcc32/Makefile.sub (ARCH): fixed to i386.
* win32/Makefile.sub, bcc32/Makefile.sub (miniruby): should not
link EXTOBJS.
* ext/dl/extconf.rb: use try_cpp to cross compile.
* ext/dl/extconf.rb: not modify files in source directory.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2974 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2002-10-21 18:03:46 +04:00
|
|
|
$srcdir = File.join($top_srcdir, "ext", $mdir)
|
2003-08-12 06:12:48 +04:00
|
|
|
$preload = nil
|
2009-03-03 10:25:50 +03:00
|
|
|
$objs = []
|
|
|
|
$srcs = []
|
2005-02-06 17:51:44 +03:00
|
|
|
$compiled[target] = false
|
2003-08-16 18:58:34 +04:00
|
|
|
makefile = "./Makefile"
|
2013-05-01 11:17:53 +04:00
|
|
|
static = $static
|
|
|
|
$static = nil if noinstall = File.fnmatch?("-*", target)
|
2014-05-09 09:52:59 +04:00
|
|
|
ok = parent && File.exist?(makefile)
|
|
|
|
if parent && !$ignore
|
2007-08-03 06:05:57 +04:00
|
|
|
rbconfig0 = RbConfig::CONFIG
|
|
|
|
mkconfig0 = CONFIG
|
|
|
|
rbconfig = {
|
|
|
|
"hdrdir" => $hdrdir,
|
|
|
|
"srcdir" => $srcdir,
|
|
|
|
"topdir" => $topdir,
|
|
|
|
}
|
|
|
|
mkconfig = {
|
|
|
|
"hdrdir" => ($hdrdir == top_srcdir) ? top_srcdir : "$(top_srcdir)/include",
|
|
|
|
"srcdir" => "$(top_srcdir)/ext/#{$mdir}",
|
|
|
|
"topdir" => $topdir,
|
|
|
|
}
|
|
|
|
rbconfig0.each_pair {|key, val| rbconfig[key] ||= val.dup}
|
|
|
|
mkconfig0.each_pair {|key, val| mkconfig[key] ||= val.dup}
|
|
|
|
RbConfig.module_eval {
|
|
|
|
remove_const(:CONFIG)
|
|
|
|
const_set(:CONFIG, rbconfig)
|
|
|
|
remove_const(:MAKEFILE_CONFIG)
|
|
|
|
const_set(:MAKEFILE_CONFIG, mkconfig)
|
|
|
|
}
|
2011-11-30 04:57:24 +04:00
|
|
|
MakeMakefile.class_eval {
|
2007-08-03 06:05:57 +04:00
|
|
|
remove_const(:CONFIG)
|
|
|
|
const_set(:CONFIG, mkconfig)
|
|
|
|
}
|
2005-02-06 17:51:44 +03:00
|
|
|
begin
|
2006-05-26 03:44:08 +04:00
|
|
|
$extconf_h = nil
|
|
|
|
ok &&= extract_makefile(makefile)
|
2009-03-03 10:25:50 +03:00
|
|
|
old_objs = $objs
|
2015-01-21 07:22:07 +03:00
|
|
|
old_cleanfiles = $distcleanfiles | $cleanfiles
|
2009-01-04 05:11:33 +03:00
|
|
|
conf = ["#{$srcdir}/makefile.rb", "#{$srcdir}/extconf.rb"].find {|f| File.exist?(f)}
|
2011-11-20 18:22:44 +04:00
|
|
|
if (!ok || ($extconf_h && !File.exist?($extconf_h)) ||
|
2005-02-06 17:51:44 +03:00
|
|
|
!(t = modified?(makefile, MTIMES)) ||
|
2009-01-04 05:11:33 +03:00
|
|
|
[conf, "#{$srcdir}/depend"].any? {|f| modified?(f, [t])})
|
2005-02-06 17:51:44 +03:00
|
|
|
then
|
2005-02-10 06:09:27 +03:00
|
|
|
ok = false
|
2011-03-08 03:33:05 +03:00
|
|
|
if $configure_only
|
2012-05-16 09:39:06 +04:00
|
|
|
if verbose?
|
|
|
|
print "#{conf}\n" if conf
|
|
|
|
else
|
|
|
|
print "#{$message} #{target}\n"
|
|
|
|
end
|
2011-03-08 03:33:05 +03:00
|
|
|
$stdout.flush
|
|
|
|
end
|
2005-02-06 17:51:44 +03:00
|
|
|
init_mkmf
|
|
|
|
Logging::logfile 'mkmf.log'
|
|
|
|
rm_f makefile
|
2009-01-04 05:11:33 +03:00
|
|
|
if conf
|
2013-04-03 14:00:49 +04:00
|
|
|
Logging.open do
|
|
|
|
unless verbose?
|
|
|
|
$stderr.reopen($stdout.reopen(@null))
|
|
|
|
end
|
2011-07-03 18:44:59 +04:00
|
|
|
load $0 = conf
|
|
|
|
end
|
2003-01-05 11:50:21 +03:00
|
|
|
else
|
|
|
|
create_makefile(target)
|
|
|
|
end
|
2006-05-24 20:43:45 +04:00
|
|
|
$defs << "-DRUBY_EXPORT" if $static
|
2005-02-06 17:51:44 +03:00
|
|
|
ok = File.exist?(makefile)
|
2004-04-02 13:00:12 +04:00
|
|
|
end
|
2005-02-06 17:51:44 +03:00
|
|
|
rescue SystemExit
|
|
|
|
# ignore
|
2012-05-18 10:19:25 +04:00
|
|
|
rescue => error
|
|
|
|
ok = false
|
2005-02-06 17:51:44 +03:00
|
|
|
ensure
|
|
|
|
rm_f "conftest*"
|
|
|
|
$0 = $PROGRAM_NAME
|
|
|
|
end
|
|
|
|
end
|
2014-05-18 10:08:54 +04:00
|
|
|
ok &&= File.open(makefile){|f| s = f.gets and !s[DUMMY_SIGNATURE]}
|
2005-02-06 17:51:44 +03:00
|
|
|
ok = yield(ok) if block_given?
|
2013-05-01 11:17:53 +04:00
|
|
|
if ok
|
2013-05-28 06:30:13 +04:00
|
|
|
open(makefile, "r+b") do |f|
|
|
|
|
s = f.read.sub!(/^(static:)\s(?!all\b).*/, '\1 all') or break
|
2013-05-01 11:17:53 +04:00
|
|
|
f.rewind
|
|
|
|
f.print(s)
|
|
|
|
f.truncate(f.pos)
|
2013-07-28 15:10:52 +04:00
|
|
|
end unless $static
|
2013-05-01 11:17:53 +04:00
|
|
|
else
|
2014-04-15 14:29:01 +04:00
|
|
|
atomic_write_open(makefile) do |f|
|
2012-05-16 09:39:06 +04:00
|
|
|
f.puts "# " + DUMMY_SIGNATURE
|
2006-09-08 23:48:22 +04:00
|
|
|
f.print(*dummy_makefile(CONFIG["srcdir"]))
|
2002-09-08 13:08:15 +04:00
|
|
|
end
|
2012-05-18 10:19:25 +04:00
|
|
|
|
|
|
|
mess = "Failed to configure #{target}. It will not be installed.\n"
|
|
|
|
if error
|
2012-11-26 23:12:55 +04:00
|
|
|
mess = "#{error}\n#{mess}"
|
2012-05-18 10:19:25 +04:00
|
|
|
end
|
|
|
|
|
2013-04-03 14:00:49 +04:00
|
|
|
Logging::message(mess) if Logging.log_opened?
|
2012-05-18 10:19:25 +04:00
|
|
|
print(mess)
|
|
|
|
$stdout.flush
|
2003-08-16 18:58:34 +04:00
|
|
|
return true
|
2002-09-08 13:08:15 +04:00
|
|
|
end
|
2004-02-17 13:34:31 +03:00
|
|
|
args = sysquote($mflags)
|
2011-03-08 03:33:05 +03:00
|
|
|
unless $destdir.to_s.empty? or $mflags.defined?("DESTDIR")
|
2005-08-04 19:20:10 +04:00
|
|
|
args += [sysquote("DESTDIR=" + relative_from($destdir, "../"+prefix))]
|
2005-04-17 17:57:52 +04:00
|
|
|
end
|
2013-05-01 11:17:53 +04:00
|
|
|
if $static and ok and !$objs.empty? and !noinstall
|
2004-04-22 13:25:16 +04:00
|
|
|
args += ["static"] unless $clean
|
2012-05-16 09:39:06 +04:00
|
|
|
$extlist.push [$static, target, $target, $preload]
|
2003-08-16 18:58:34 +04:00
|
|
|
end
|
2015-01-21 07:22:07 +03:00
|
|
|
FileUtils.rm_f(old_cleanfiles - $distcleanfiles - $cleanfiles)
|
2009-03-03 11:10:10 +03:00
|
|
|
FileUtils.rm_f(old_objs - $objs)
|
2011-03-08 03:33:05 +03:00
|
|
|
unless $configure_only or system($make, *args)
|
2003-08-16 18:58:34 +04:00
|
|
|
$ignore or $continue or return false
|
2002-09-08 13:08:15 +04:00
|
|
|
end
|
2005-02-06 17:51:44 +03:00
|
|
|
$compiled[target] = true
|
2007-08-03 06:05:57 +04:00
|
|
|
if $clean
|
|
|
|
FileUtils.rm_f("mkmf.log")
|
|
|
|
if $clean != true
|
|
|
|
FileUtils.rm_f([makefile, $extconf_h || "extconf.h"])
|
|
|
|
end
|
2004-03-23 08:32:01 +03:00
|
|
|
end
|
2002-09-08 13:08:15 +04:00
|
|
|
if $static
|
* configure.in (XCFLAGS): CFLAGS to comile ruby itself.
* configure.in (LIBEXT): suffix for static libraries.
* configure.in (LIBPATHFLAG): switch template to specify library
path.
* configure.in (LINK_SO): command to link shared objects.
* configure.in (DEFFILE, ARCHFILE): miscellaneous system dependent
files.
* configure.in (EXPORT_PREFIX): prefix to exported symbols on
Windows.
* configure.in (COMMON_LIBS, COMMON_MACROS, COMMON_HEADERS):
libraries, macros and headers used in common.
* configure.in (RUBYW_INSTALL_NAME, rubyw_install_name): GUI mode
excutable name.
* Makefile.in (CFLAGS): append XCFLAGS.
* Makefile.in (PREP): miscellaneous system dependent files.
* Makefile.in (ruby.imp, ext/extinit.o): moved from ext/extmk.rb.
* Makefile.in (fake.rb): CROSS_COMPILING keeps building platform.
* Makefile.in (MAKEFILES): depend on *.in and config.status.
* Makefile.in (parse.c): replace "y.tab.c" with actual name for
byacc.
* ext/extmk.rb, lib/mkmf.rb: integrated.
* ext/extmk.rb: propagate MFLAGS.
* ext/extmk.rb (extmake): make dummy Makefile to clean even if no
Makefile is made.
* lib/mkmf.rb (older): accept multiple file names and Time
objects.
* lib/mkmf.rb (xsystem): split and qoute.
* lib/mkmf.rb (cpp_include): make include directives.
* lib/mkmf.rb (try_func): try wheather specified function is
available.
* lib/mkmf.rb (install_files): default to site-install.
* lib/mkmf.rb (checking_for): added.
* lib/mkmf.rb (find_executable0): just find executable file with
no message.
* lib/mkmf.rb (create_header): output header file is variable.
* lib/mkmf.rb (create_makefile): separate sections.
* lib/mkmf.rb (init_mkmf): initialize global variables.
* win32/Makefile.sub, bcc32/Makefile.sub (CPP, AR): added.
* bcc32/Makefile.sub (ARCH): fixed to i386.
* win32/Makefile.sub, bcc32/Makefile.sub (miniruby): should not
link EXTOBJS.
* ext/dl/extconf.rb: use try_cpp to cross compile.
* ext/dl/extconf.rb: not modify files in source directory.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2974 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2002-10-21 18:03:46 +04:00
|
|
|
$extflags ||= ""
|
2003-08-12 11:55:14 +04:00
|
|
|
$extlibs ||= []
|
2003-08-06 07:11:14 +04:00
|
|
|
$extpath ||= []
|
2004-01-19 07:10:53 +03:00
|
|
|
unless $mswin
|
2012-09-06 20:21:57 +04:00
|
|
|
$extflags = split_libs($extflags, $DLDFLAGS, $LDFLAGS).uniq.join(" ")
|
2004-01-19 07:10:53 +03:00
|
|
|
end
|
2014-12-23 16:05:47 +03:00
|
|
|
$extlibs = merge_libs($extlibs, split_libs($libs, $LOCAL_LIBS).map {|lib| lib.sub(/\A\.\//, "ext/#{target}/")})
|
2003-08-06 07:11:14 +04:00
|
|
|
$extpath |= $LIBPATH
|
2002-09-08 13:08:15 +04:00
|
|
|
end
|
2004-02-21 08:33:24 +03:00
|
|
|
ensure
|
2013-04-03 15:28:10 +04:00
|
|
|
Logging::log_close
|
2014-05-09 09:52:59 +04:00
|
|
|
if rbconfig0
|
2007-08-03 06:05:57 +04:00
|
|
|
RbConfig.module_eval {
|
|
|
|
remove_const(:CONFIG)
|
|
|
|
const_set(:CONFIG, rbconfig0)
|
|
|
|
remove_const(:MAKEFILE_CONFIG)
|
|
|
|
const_set(:MAKEFILE_CONFIG, mkconfig0)
|
|
|
|
}
|
2014-05-09 09:52:59 +04:00
|
|
|
end
|
|
|
|
if mkconfig0
|
2011-11-30 04:57:24 +04:00
|
|
|
MakeMakefile.class_eval {
|
2007-08-03 06:05:57 +04:00
|
|
|
remove_const(:CONFIG)
|
|
|
|
const_set(:CONFIG, mkconfig0)
|
|
|
|
}
|
|
|
|
end
|
2007-06-10 07:06:15 +04:00
|
|
|
$top_srcdir = top_srcdir
|
2004-02-21 08:33:24 +03:00
|
|
|
$topdir = topdir
|
2007-06-10 07:06:15 +04:00
|
|
|
$hdrdir = hdrdir
|
2013-05-01 11:17:53 +04:00
|
|
|
$static = static
|
2004-02-21 08:33:24 +03:00
|
|
|
Dir.chdir dir
|
2002-09-08 13:08:15 +04:00
|
|
|
end
|
2004-02-17 13:34:31 +03:00
|
|
|
begin
|
|
|
|
Dir.rmdir target
|
|
|
|
target = File.dirname(target)
|
|
|
|
rescue SystemCallError
|
|
|
|
break
|
|
|
|
end while true
|
2002-11-13 10:30:24 +03:00
|
|
|
true
|
2002-09-08 13:08:15 +04:00
|
|
|
end
|
|
|
|
|
2005-02-06 17:51:44 +03:00
|
|
|
def compiled?(target)
|
|
|
|
$compiled[target]
|
|
|
|
end
|
|
|
|
|
2003-01-25 21:59:34 +03:00
|
|
|
def parse_args()
|
2004-02-22 06:58:44 +03:00
|
|
|
$mflags = []
|
2010-12-02 04:46:42 +03:00
|
|
|
$makeflags = [] # for make command to build ruby, so quoted
|
2004-02-22 06:58:44 +03:00
|
|
|
|
2005-02-06 17:51:44 +03:00
|
|
|
$optparser ||= OptionParser.new do |opts|
|
2004-02-22 06:58:44 +03:00
|
|
|
opts.on('-n') {$dryrun = true}
|
2006-06-21 12:08:36 +04:00
|
|
|
opts.on('--[no-]extension [EXTS]', Array) do |v|
|
2004-02-22 06:58:44 +03:00
|
|
|
$extension = (v == false ? [] : v)
|
2004-02-09 11:48:55 +03:00
|
|
|
end
|
2006-06-21 12:08:36 +04:00
|
|
|
opts.on('--[no-]extstatic [STATIC]', Array) do |v|
|
2004-02-22 06:58:44 +03:00
|
|
|
if ($extstatic = v) == false
|
|
|
|
$extstatic = []
|
|
|
|
elsif v
|
2005-11-16 17:25:53 +03:00
|
|
|
$force_static = true if $extstatic.delete("static")
|
2004-02-22 06:58:44 +03:00
|
|
|
$extstatic = nil if $extstatic.empty?
|
|
|
|
end
|
2004-02-09 11:48:55 +03:00
|
|
|
end
|
2004-02-22 06:58:44 +03:00
|
|
|
opts.on('--dest-dir=DIR') do |v|
|
|
|
|
$destdir = v
|
|
|
|
end
|
|
|
|
opts.on('--extout=DIR') do |v|
|
|
|
|
$extout = (v unless v.empty?)
|
|
|
|
end
|
|
|
|
opts.on('--make=MAKE') do |v|
|
|
|
|
$make = v || 'make'
|
|
|
|
end
|
2006-06-21 12:08:36 +04:00
|
|
|
opts.on('--make-flags=FLAGS', '--mflags', Shellwords) do |v|
|
2005-11-16 17:25:53 +03:00
|
|
|
v.grep(/\A([-\w]+)=(.*)/) {$configure_args["--#{$1}"] = $2}
|
2004-02-22 06:58:44 +03:00
|
|
|
if arg = v.first
|
|
|
|
arg.insert(0, '-') if /\A[^-][^=]*\Z/ =~ arg
|
|
|
|
end
|
2010-01-26 15:34:51 +03:00
|
|
|
$makeflags.concat(v.reject {|arg2| /\AMINIRUBY=/ =~ arg2}.quote)
|
2004-02-22 06:58:44 +03:00
|
|
|
$mflags.concat(v)
|
|
|
|
end
|
|
|
|
opts.on('--message [MESSAGE]', String) do |v|
|
|
|
|
$message = v
|
|
|
|
end
|
2009-02-24 13:01:08 +03:00
|
|
|
opts.on('--command-output=FILE', String) do |v|
|
|
|
|
$command_output = v
|
|
|
|
end
|
2014-07-03 07:38:13 +04:00
|
|
|
opts.on('--gnumake=yes|no', true) do |v|
|
|
|
|
$gnumake = v
|
|
|
|
end
|
2005-02-06 17:51:44 +03:00
|
|
|
end
|
|
|
|
begin
|
|
|
|
$optparser.parse!(ARGV)
|
|
|
|
rescue OptionParser::InvalidOption => e
|
|
|
|
retry if /^--/ =~ e.args[0]
|
|
|
|
$optparser.warn(e)
|
2006-10-09 18:41:24 +04:00
|
|
|
abort $optparser.to_s
|
2005-02-06 17:51:44 +03:00
|
|
|
end
|
2002-11-04 00:42:14 +03:00
|
|
|
|
2004-02-22 06:58:44 +03:00
|
|
|
$destdir ||= ''
|
2003-01-27 22:48:02 +03:00
|
|
|
|
2003-01-25 21:59:34 +03:00
|
|
|
$make, *rest = Shellwords.shellwords($make)
|
|
|
|
$mflags.unshift(*rest) unless rest.empty?
|
2002-11-04 00:42:14 +03:00
|
|
|
|
2003-01-26 11:56:01 +03:00
|
|
|
def $mflags.set?(flag)
|
2008-02-26 21:56:00 +03:00
|
|
|
grep(/\A-(?!-).*#{flag.chr}/i) { return true }
|
2003-01-27 22:48:02 +03:00
|
|
|
false
|
2003-01-26 11:56:01 +03:00
|
|
|
end
|
2004-02-09 11:48:55 +03:00
|
|
|
def $mflags.defined?(var)
|
|
|
|
grep(/\A#{var}=(.*)/) {return $1}
|
2005-03-02 13:53:53 +03:00
|
|
|
false
|
2004-02-09 11:48:55 +03:00
|
|
|
end
|
2003-01-26 11:56:01 +03:00
|
|
|
|
|
|
|
if $mflags.set?(?n)
|
|
|
|
$dryrun = true
|
|
|
|
else
|
2003-02-10 14:59:26 +03:00
|
|
|
$mflags.unshift '-n' if $dryrun
|
2003-01-26 11:56:01 +03:00
|
|
|
end
|
* configure.in (XCFLAGS): CFLAGS to comile ruby itself.
* configure.in (LIBEXT): suffix for static libraries.
* configure.in (LIBPATHFLAG): switch template to specify library
path.
* configure.in (LINK_SO): command to link shared objects.
* configure.in (DEFFILE, ARCHFILE): miscellaneous system dependent
files.
* configure.in (EXPORT_PREFIX): prefix to exported symbols on
Windows.
* configure.in (COMMON_LIBS, COMMON_MACROS, COMMON_HEADERS):
libraries, macros and headers used in common.
* configure.in (RUBYW_INSTALL_NAME, rubyw_install_name): GUI mode
excutable name.
* Makefile.in (CFLAGS): append XCFLAGS.
* Makefile.in (PREP): miscellaneous system dependent files.
* Makefile.in (ruby.imp, ext/extinit.o): moved from ext/extmk.rb.
* Makefile.in (fake.rb): CROSS_COMPILING keeps building platform.
* Makefile.in (MAKEFILES): depend on *.in and config.status.
* Makefile.in (parse.c): replace "y.tab.c" with actual name for
byacc.
* ext/extmk.rb, lib/mkmf.rb: integrated.
* ext/extmk.rb: propagate MFLAGS.
* ext/extmk.rb (extmake): make dummy Makefile to clean even if no
Makefile is made.
* lib/mkmf.rb (older): accept multiple file names and Time
objects.
* lib/mkmf.rb (xsystem): split and qoute.
* lib/mkmf.rb (cpp_include): make include directives.
* lib/mkmf.rb (try_func): try wheather specified function is
available.
* lib/mkmf.rb (install_files): default to site-install.
* lib/mkmf.rb (checking_for): added.
* lib/mkmf.rb (find_executable0): just find executable file with
no message.
* lib/mkmf.rb (create_header): output header file is variable.
* lib/mkmf.rb (create_makefile): separate sections.
* lib/mkmf.rb (init_mkmf): initialize global variables.
* win32/Makefile.sub, bcc32/Makefile.sub (CPP, AR): added.
* bcc32/Makefile.sub (ARCH): fixed to i386.
* win32/Makefile.sub, bcc32/Makefile.sub (miniruby): should not
link EXTOBJS.
* ext/dl/extconf.rb: use try_cpp to cross compile.
* ext/dl/extconf.rb: not modify files in source directory.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2974 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2002-10-21 18:03:46 +04:00
|
|
|
|
2003-01-26 11:56:01 +03:00
|
|
|
$continue = $mflags.set?(?k)
|
2004-02-09 12:20:52 +03:00
|
|
|
if $extout
|
2004-02-17 06:12:53 +03:00
|
|
|
$extout = '$(topdir)/'+$extout
|
2007-06-10 07:06:15 +04:00
|
|
|
RbConfig::CONFIG["extout"] = CONFIG["extout"] = $extout
|
2004-02-17 13:34:31 +03:00
|
|
|
$extout_prefix = $extout ? "$(extout)$(target_prefix)/" : ""
|
2007-06-10 10:09:40 +04:00
|
|
|
$mflags << "extout=#$extout" << "extout_prefix=#$extout_prefix"
|
2004-02-09 11:48:55 +03:00
|
|
|
end
|
2003-01-25 21:59:34 +03:00
|
|
|
end
|
|
|
|
|
|
|
|
parse_args()
|
* configure.in (XCFLAGS): CFLAGS to comile ruby itself.
* configure.in (LIBEXT): suffix for static libraries.
* configure.in (LIBPATHFLAG): switch template to specify library
path.
* configure.in (LINK_SO): command to link shared objects.
* configure.in (DEFFILE, ARCHFILE): miscellaneous system dependent
files.
* configure.in (EXPORT_PREFIX): prefix to exported symbols on
Windows.
* configure.in (COMMON_LIBS, COMMON_MACROS, COMMON_HEADERS):
libraries, macros and headers used in common.
* configure.in (RUBYW_INSTALL_NAME, rubyw_install_name): GUI mode
excutable name.
* Makefile.in (CFLAGS): append XCFLAGS.
* Makefile.in (PREP): miscellaneous system dependent files.
* Makefile.in (ruby.imp, ext/extinit.o): moved from ext/extmk.rb.
* Makefile.in (fake.rb): CROSS_COMPILING keeps building platform.
* Makefile.in (MAKEFILES): depend on *.in and config.status.
* Makefile.in (parse.c): replace "y.tab.c" with actual name for
byacc.
* ext/extmk.rb, lib/mkmf.rb: integrated.
* ext/extmk.rb: propagate MFLAGS.
* ext/extmk.rb (extmake): make dummy Makefile to clean even if no
Makefile is made.
* lib/mkmf.rb (older): accept multiple file names and Time
objects.
* lib/mkmf.rb (xsystem): split and qoute.
* lib/mkmf.rb (cpp_include): make include directives.
* lib/mkmf.rb (try_func): try wheather specified function is
available.
* lib/mkmf.rb (install_files): default to site-install.
* lib/mkmf.rb (checking_for): added.
* lib/mkmf.rb (find_executable0): just find executable file with
no message.
* lib/mkmf.rb (create_header): output header file is variable.
* lib/mkmf.rb (create_makefile): separate sections.
* lib/mkmf.rb (init_mkmf): initialize global variables.
* win32/Makefile.sub, bcc32/Makefile.sub (CPP, AR): added.
* bcc32/Makefile.sub (ARCH): fixed to i386.
* win32/Makefile.sub, bcc32/Makefile.sub (miniruby): should not
link EXTOBJS.
* ext/dl/extconf.rb: use try_cpp to cross compile.
* ext/dl/extconf.rb: not modify files in source directory.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2974 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2002-10-21 18:03:46 +04:00
|
|
|
|
2004-02-09 11:48:55 +03:00
|
|
|
if target = ARGV.shift and /^[a-z-]+$/ =~ target
|
|
|
|
$mflags.push(target)
|
|
|
|
case target
|
2007-06-15 17:31:54 +04:00
|
|
|
when /^(dist|real)?(clean)$/
|
|
|
|
target = $2
|
2004-02-09 11:48:55 +03:00
|
|
|
$ignore ||= true
|
2004-03-23 08:32:01 +03:00
|
|
|
$clean = $1 ? $1[0] : true
|
2004-02-09 11:48:55 +03:00
|
|
|
when /^install\b/
|
|
|
|
$install = true
|
|
|
|
$ignore ||= true
|
|
|
|
$mflags.unshift("INSTALL_PROG=install -c -p -m 0755",
|
|
|
|
"INSTALL_DATA=install -c -p -m 0644",
|
|
|
|
"MAKEDIRS=mkdir -p") if $dryrun
|
2011-03-08 03:33:05 +03:00
|
|
|
when /configure/
|
|
|
|
$configure_only = true
|
2004-02-09 11:48:55 +03:00
|
|
|
end
|
|
|
|
end
|
* configure.in (XCFLAGS): CFLAGS to comile ruby itself.
* configure.in (LIBEXT): suffix for static libraries.
* configure.in (LIBPATHFLAG): switch template to specify library
path.
* configure.in (LINK_SO): command to link shared objects.
* configure.in (DEFFILE, ARCHFILE): miscellaneous system dependent
files.
* configure.in (EXPORT_PREFIX): prefix to exported symbols on
Windows.
* configure.in (COMMON_LIBS, COMMON_MACROS, COMMON_HEADERS):
libraries, macros and headers used in common.
* configure.in (RUBYW_INSTALL_NAME, rubyw_install_name): GUI mode
excutable name.
* Makefile.in (CFLAGS): append XCFLAGS.
* Makefile.in (PREP): miscellaneous system dependent files.
* Makefile.in (ruby.imp, ext/extinit.o): moved from ext/extmk.rb.
* Makefile.in (fake.rb): CROSS_COMPILING keeps building platform.
* Makefile.in (MAKEFILES): depend on *.in and config.status.
* Makefile.in (parse.c): replace "y.tab.c" with actual name for
byacc.
* ext/extmk.rb, lib/mkmf.rb: integrated.
* ext/extmk.rb: propagate MFLAGS.
* ext/extmk.rb (extmake): make dummy Makefile to clean even if no
Makefile is made.
* lib/mkmf.rb (older): accept multiple file names and Time
objects.
* lib/mkmf.rb (xsystem): split and qoute.
* lib/mkmf.rb (cpp_include): make include directives.
* lib/mkmf.rb (try_func): try wheather specified function is
available.
* lib/mkmf.rb (install_files): default to site-install.
* lib/mkmf.rb (checking_for): added.
* lib/mkmf.rb (find_executable0): just find executable file with
no message.
* lib/mkmf.rb (create_header): output header file is variable.
* lib/mkmf.rb (create_makefile): separate sections.
* lib/mkmf.rb (init_mkmf): initialize global variables.
* win32/Makefile.sub, bcc32/Makefile.sub (CPP, AR): added.
* bcc32/Makefile.sub (ARCH): fixed to i386.
* win32/Makefile.sub, bcc32/Makefile.sub (miniruby): should not
link EXTOBJS.
* ext/dl/extconf.rb: use try_cpp to cross compile.
* ext/dl/extconf.rb: not modify files in source directory.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2974 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2002-10-21 18:03:46 +04:00
|
|
|
unless $message
|
2004-02-09 11:48:55 +03:00
|
|
|
if target
|
2011-03-08 03:33:05 +03:00
|
|
|
$message = target.sub(/^(\w+?)e?\b/, '\1ing').tr('-', ' ')
|
* configure.in (XCFLAGS): CFLAGS to comile ruby itself.
* configure.in (LIBEXT): suffix for static libraries.
* configure.in (LIBPATHFLAG): switch template to specify library
path.
* configure.in (LINK_SO): command to link shared objects.
* configure.in (DEFFILE, ARCHFILE): miscellaneous system dependent
files.
* configure.in (EXPORT_PREFIX): prefix to exported symbols on
Windows.
* configure.in (COMMON_LIBS, COMMON_MACROS, COMMON_HEADERS):
libraries, macros and headers used in common.
* configure.in (RUBYW_INSTALL_NAME, rubyw_install_name): GUI mode
excutable name.
* Makefile.in (CFLAGS): append XCFLAGS.
* Makefile.in (PREP): miscellaneous system dependent files.
* Makefile.in (ruby.imp, ext/extinit.o): moved from ext/extmk.rb.
* Makefile.in (fake.rb): CROSS_COMPILING keeps building platform.
* Makefile.in (MAKEFILES): depend on *.in and config.status.
* Makefile.in (parse.c): replace "y.tab.c" with actual name for
byacc.
* ext/extmk.rb, lib/mkmf.rb: integrated.
* ext/extmk.rb: propagate MFLAGS.
* ext/extmk.rb (extmake): make dummy Makefile to clean even if no
Makefile is made.
* lib/mkmf.rb (older): accept multiple file names and Time
objects.
* lib/mkmf.rb (xsystem): split and qoute.
* lib/mkmf.rb (cpp_include): make include directives.
* lib/mkmf.rb (try_func): try wheather specified function is
available.
* lib/mkmf.rb (install_files): default to site-install.
* lib/mkmf.rb (checking_for): added.
* lib/mkmf.rb (find_executable0): just find executable file with
no message.
* lib/mkmf.rb (create_header): output header file is variable.
* lib/mkmf.rb (create_makefile): separate sections.
* lib/mkmf.rb (init_mkmf): initialize global variables.
* win32/Makefile.sub, bcc32/Makefile.sub (CPP, AR): added.
* bcc32/Makefile.sub (ARCH): fixed to i386.
* win32/Makefile.sub, bcc32/Makefile.sub (miniruby): should not
link EXTOBJS.
* ext/dl/extconf.rb: use try_cpp to cross compile.
* ext/dl/extconf.rb: not modify files in source directory.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2974 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2002-10-21 18:03:46 +04:00
|
|
|
else
|
|
|
|
$message = "compiling"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
EXEEXT = CONFIG['EXEEXT']
|
2002-12-31 15:31:12 +03:00
|
|
|
if CROSS_COMPILING
|
2008-02-26 21:56:00 +03:00
|
|
|
$ruby = $mflags.defined?("MINIRUBY") || CONFIG['MINIRUBY']
|
2006-05-17 19:42:21 +04:00
|
|
|
elsif sep = config_string('BUILD_FILE_SEPARATOR')
|
|
|
|
$ruby = "$(topdir:/=#{sep})#{sep}miniruby" + EXEEXT
|
* configure.in (XCFLAGS): CFLAGS to comile ruby itself.
* configure.in (LIBEXT): suffix for static libraries.
* configure.in (LIBPATHFLAG): switch template to specify library
path.
* configure.in (LINK_SO): command to link shared objects.
* configure.in (DEFFILE, ARCHFILE): miscellaneous system dependent
files.
* configure.in (EXPORT_PREFIX): prefix to exported symbols on
Windows.
* configure.in (COMMON_LIBS, COMMON_MACROS, COMMON_HEADERS):
libraries, macros and headers used in common.
* configure.in (RUBYW_INSTALL_NAME, rubyw_install_name): GUI mode
excutable name.
* Makefile.in (CFLAGS): append XCFLAGS.
* Makefile.in (PREP): miscellaneous system dependent files.
* Makefile.in (ruby.imp, ext/extinit.o): moved from ext/extmk.rb.
* Makefile.in (fake.rb): CROSS_COMPILING keeps building platform.
* Makefile.in (MAKEFILES): depend on *.in and config.status.
* Makefile.in (parse.c): replace "y.tab.c" with actual name for
byacc.
* ext/extmk.rb, lib/mkmf.rb: integrated.
* ext/extmk.rb: propagate MFLAGS.
* ext/extmk.rb (extmake): make dummy Makefile to clean even if no
Makefile is made.
* lib/mkmf.rb (older): accept multiple file names and Time
objects.
* lib/mkmf.rb (xsystem): split and qoute.
* lib/mkmf.rb (cpp_include): make include directives.
* lib/mkmf.rb (try_func): try wheather specified function is
available.
* lib/mkmf.rb (install_files): default to site-install.
* lib/mkmf.rb (checking_for): added.
* lib/mkmf.rb (find_executable0): just find executable file with
no message.
* lib/mkmf.rb (create_header): output header file is variable.
* lib/mkmf.rb (create_makefile): separate sections.
* lib/mkmf.rb (init_mkmf): initialize global variables.
* win32/Makefile.sub, bcc32/Makefile.sub (CPP, AR): added.
* bcc32/Makefile.sub (ARCH): fixed to i386.
* win32/Makefile.sub, bcc32/Makefile.sub (miniruby): should not
link EXTOBJS.
* ext/dl/extconf.rb: use try_cpp to cross compile.
* ext/dl/extconf.rb: not modify files in source directory.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2974 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2002-10-21 18:03:46 +04:00
|
|
|
else
|
|
|
|
$ruby = '$(topdir)/miniruby' + EXEEXT
|
|
|
|
end
|
2008-02-26 21:56:00 +03:00
|
|
|
$ruby << " -I'$(topdir)'"
|
|
|
|
unless CROSS_COMPILING
|
|
|
|
$ruby << " -I'$(top_srcdir)/lib'"
|
|
|
|
$ruby << " -I'$(extout)/$(arch)' -I'$(extout)/common'" if $extout
|
|
|
|
ENV["RUBYLIB"] = "-"
|
|
|
|
end
|
|
|
|
$mflags << "ruby=#$ruby"
|
2002-09-08 13:08:15 +04:00
|
|
|
|
2004-01-26 05:35:30 +03:00
|
|
|
MTIMES = [__FILE__, 'rbconfig.rb', srcdir+'/lib/mkmf.rb'].collect {|f| File.mtime(f)}
|
2002-09-08 13:08:15 +04:00
|
|
|
|
|
|
|
# get static-link modules
|
|
|
|
$static_ext = {}
|
2004-02-09 11:48:55 +03:00
|
|
|
if $extstatic
|
2006-10-09 18:41:24 +04:00
|
|
|
$extstatic.each do |t|
|
|
|
|
target = t
|
2009-02-02 02:12:52 +03:00
|
|
|
target = target.downcase if File::FNM_SYSCASE.nonzero?
|
2004-02-09 11:48:55 +03:00
|
|
|
$static_ext[target] = $static_ext.size
|
|
|
|
end
|
|
|
|
end
|
* configure.in (XCFLAGS): CFLAGS to comile ruby itself.
* configure.in (LIBEXT): suffix for static libraries.
* configure.in (LIBPATHFLAG): switch template to specify library
path.
* configure.in (LINK_SO): command to link shared objects.
* configure.in (DEFFILE, ARCHFILE): miscellaneous system dependent
files.
* configure.in (EXPORT_PREFIX): prefix to exported symbols on
Windows.
* configure.in (COMMON_LIBS, COMMON_MACROS, COMMON_HEADERS):
libraries, macros and headers used in common.
* configure.in (RUBYW_INSTALL_NAME, rubyw_install_name): GUI mode
excutable name.
* Makefile.in (CFLAGS): append XCFLAGS.
* Makefile.in (PREP): miscellaneous system dependent files.
* Makefile.in (ruby.imp, ext/extinit.o): moved from ext/extmk.rb.
* Makefile.in (fake.rb): CROSS_COMPILING keeps building platform.
* Makefile.in (MAKEFILES): depend on *.in and config.status.
* Makefile.in (parse.c): replace "y.tab.c" with actual name for
byacc.
* ext/extmk.rb, lib/mkmf.rb: integrated.
* ext/extmk.rb: propagate MFLAGS.
* ext/extmk.rb (extmake): make dummy Makefile to clean even if no
Makefile is made.
* lib/mkmf.rb (older): accept multiple file names and Time
objects.
* lib/mkmf.rb (xsystem): split and qoute.
* lib/mkmf.rb (cpp_include): make include directives.
* lib/mkmf.rb (try_func): try wheather specified function is
available.
* lib/mkmf.rb (install_files): default to site-install.
* lib/mkmf.rb (checking_for): added.
* lib/mkmf.rb (find_executable0): just find executable file with
no message.
* lib/mkmf.rb (create_header): output header file is variable.
* lib/mkmf.rb (create_makefile): separate sections.
* lib/mkmf.rb (init_mkmf): initialize global variables.
* win32/Makefile.sub, bcc32/Makefile.sub (CPP, AR): added.
* bcc32/Makefile.sub (ARCH): fixed to i386.
* win32/Makefile.sub, bcc32/Makefile.sub (miniruby): should not
link EXTOBJS.
* ext/dl/extconf.rb: use try_cpp to cross compile.
* ext/dl/extconf.rb: not modify files in source directory.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2974 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2002-10-21 18:03:46 +04:00
|
|
|
for dir in ["ext", File::join($top_srcdir, "ext")]
|
|
|
|
setup = File::join(dir, CONFIG['setup'])
|
2002-09-08 13:08:15 +04:00
|
|
|
if File.file? setup
|
2005-11-16 17:25:53 +03:00
|
|
|
f = open(setup)
|
2002-09-08 13:08:15 +04:00
|
|
|
while line = f.gets()
|
|
|
|
line.chomp!
|
|
|
|
line.sub!(/#.*$/, '')
|
|
|
|
next if /^\s*$/ =~ line
|
* configure.in (XCFLAGS): CFLAGS to comile ruby itself.
* configure.in (LIBEXT): suffix for static libraries.
* configure.in (LIBPATHFLAG): switch template to specify library
path.
* configure.in (LINK_SO): command to link shared objects.
* configure.in (DEFFILE, ARCHFILE): miscellaneous system dependent
files.
* configure.in (EXPORT_PREFIX): prefix to exported symbols on
Windows.
* configure.in (COMMON_LIBS, COMMON_MACROS, COMMON_HEADERS):
libraries, macros and headers used in common.
* configure.in (RUBYW_INSTALL_NAME, rubyw_install_name): GUI mode
excutable name.
* Makefile.in (CFLAGS): append XCFLAGS.
* Makefile.in (PREP): miscellaneous system dependent files.
* Makefile.in (ruby.imp, ext/extinit.o): moved from ext/extmk.rb.
* Makefile.in (fake.rb): CROSS_COMPILING keeps building platform.
* Makefile.in (MAKEFILES): depend on *.in and config.status.
* Makefile.in (parse.c): replace "y.tab.c" with actual name for
byacc.
* ext/extmk.rb, lib/mkmf.rb: integrated.
* ext/extmk.rb: propagate MFLAGS.
* ext/extmk.rb (extmake): make dummy Makefile to clean even if no
Makefile is made.
* lib/mkmf.rb (older): accept multiple file names and Time
objects.
* lib/mkmf.rb (xsystem): split and qoute.
* lib/mkmf.rb (cpp_include): make include directives.
* lib/mkmf.rb (try_func): try wheather specified function is
available.
* lib/mkmf.rb (install_files): default to site-install.
* lib/mkmf.rb (checking_for): added.
* lib/mkmf.rb (find_executable0): just find executable file with
no message.
* lib/mkmf.rb (create_header): output header file is variable.
* lib/mkmf.rb (create_makefile): separate sections.
* lib/mkmf.rb (init_mkmf): initialize global variables.
* win32/Makefile.sub, bcc32/Makefile.sub (CPP, AR): added.
* bcc32/Makefile.sub (ARCH): fixed to i386.
* win32/Makefile.sub, bcc32/Makefile.sub (miniruby): should not
link EXTOBJS.
* ext/dl/extconf.rb: use try_cpp to cross compile.
* ext/dl/extconf.rb: not modify files in source directory.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2974 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2002-10-21 18:03:46 +04:00
|
|
|
target, opt = line.split(nil, 3)
|
|
|
|
if target == 'option'
|
|
|
|
case opt
|
|
|
|
when 'nodynamic'
|
|
|
|
$nodynamic = true
|
|
|
|
end
|
2002-09-08 13:08:15 +04:00
|
|
|
next
|
|
|
|
end
|
2009-02-02 02:12:52 +03:00
|
|
|
target = target.downcase if File::FNM_SYSCASE.nonzero?
|
2004-01-08 01:06:38 +03:00
|
|
|
$static_ext[target] = $static_ext.size
|
2002-09-08 13:08:15 +04:00
|
|
|
end
|
* configure.in (XCFLAGS): CFLAGS to comile ruby itself.
* configure.in (LIBEXT): suffix for static libraries.
* configure.in (LIBPATHFLAG): switch template to specify library
path.
* configure.in (LINK_SO): command to link shared objects.
* configure.in (DEFFILE, ARCHFILE): miscellaneous system dependent
files.
* configure.in (EXPORT_PREFIX): prefix to exported symbols on
Windows.
* configure.in (COMMON_LIBS, COMMON_MACROS, COMMON_HEADERS):
libraries, macros and headers used in common.
* configure.in (RUBYW_INSTALL_NAME, rubyw_install_name): GUI mode
excutable name.
* Makefile.in (CFLAGS): append XCFLAGS.
* Makefile.in (PREP): miscellaneous system dependent files.
* Makefile.in (ruby.imp, ext/extinit.o): moved from ext/extmk.rb.
* Makefile.in (fake.rb): CROSS_COMPILING keeps building platform.
* Makefile.in (MAKEFILES): depend on *.in and config.status.
* Makefile.in (parse.c): replace "y.tab.c" with actual name for
byacc.
* ext/extmk.rb, lib/mkmf.rb: integrated.
* ext/extmk.rb: propagate MFLAGS.
* ext/extmk.rb (extmake): make dummy Makefile to clean even if no
Makefile is made.
* lib/mkmf.rb (older): accept multiple file names and Time
objects.
* lib/mkmf.rb (xsystem): split and qoute.
* lib/mkmf.rb (cpp_include): make include directives.
* lib/mkmf.rb (try_func): try wheather specified function is
available.
* lib/mkmf.rb (install_files): default to site-install.
* lib/mkmf.rb (checking_for): added.
* lib/mkmf.rb (find_executable0): just find executable file with
no message.
* lib/mkmf.rb (create_header): output header file is variable.
* lib/mkmf.rb (create_makefile): separate sections.
* lib/mkmf.rb (init_mkmf): initialize global variables.
* win32/Makefile.sub, bcc32/Makefile.sub (CPP, AR): added.
* bcc32/Makefile.sub (ARCH): fixed to i386.
* win32/Makefile.sub, bcc32/Makefile.sub (miniruby): should not
link EXTOBJS.
* ext/dl/extconf.rb: use try_cpp to cross compile.
* ext/dl/extconf.rb: not modify files in source directory.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2974 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2002-10-21 18:03:46 +04:00
|
|
|
MTIMES << f.mtime
|
2002-09-08 13:08:15 +04:00
|
|
|
$setup = setup
|
|
|
|
f.close
|
|
|
|
break
|
|
|
|
end
|
2004-02-09 11:48:55 +03:00
|
|
|
end unless $extstatic
|
|
|
|
|
|
|
|
ext_prefix = "#{$top_srcdir}/ext"
|
|
|
|
exts = $static_ext.sort_by {|t, i| i}.collect {|t, i| t}
|
2015-01-11 07:44:09 +03:00
|
|
|
default_exclude_exts =
|
|
|
|
if $mswin or $mingw
|
2015-01-11 10:35:13 +03:00
|
|
|
%w'pty syslog'
|
2015-01-11 07:44:09 +03:00
|
|
|
else
|
|
|
|
%w'*win32*'
|
|
|
|
end
|
|
|
|
withes, withouts = [["--with", nil], ["--without", default_exclude_exts]].collect {|w, d|
|
2012-02-25 11:08:47 +04:00
|
|
|
if !(w = %w[-extensions -ext].collect {|o|arg_config(w+o)}).any?
|
2015-06-19 01:58:14 +03:00
|
|
|
d ? proc {|c1| d.any?(&c1)} : proc {true}
|
2010-01-19 08:29:18 +03:00
|
|
|
elsif (w = w.grep(String)).empty?
|
|
|
|
proc {true}
|
2008-06-10 15:13:58 +04:00
|
|
|
else
|
2015-01-11 07:44:09 +03:00
|
|
|
w = w.collect {|o| o.split(/,/)}.flatten
|
|
|
|
w.collect! {|o| o == '+' ? d : o}.flatten! if d
|
|
|
|
proc {|c1| w.any?(&c1)}
|
2008-06-10 15:13:58 +04:00
|
|
|
end
|
2010-01-19 08:29:18 +03:00
|
|
|
}
|
|
|
|
cond = proc {|ext, *|
|
|
|
|
cond1 = proc {|n| File.fnmatch(n, ext)}
|
2015-06-18 17:25:54 +03:00
|
|
|
withes.call(cond1) and !withouts.call(cond1)
|
2010-01-19 08:29:18 +03:00
|
|
|
}
|
|
|
|
($extension || %w[*]).each do |e|
|
2010-12-29 14:37:47 +03:00
|
|
|
e = e.sub(/\A(?:\.\/)+/, '')
|
2010-01-19 08:29:18 +03:00
|
|
|
exts |= Dir.glob("#{ext_prefix}/#{e}/**/extconf.rb").collect {|d|
|
2005-10-16 17:17:43 +04:00
|
|
|
d = File.dirname(d)
|
|
|
|
d.slice!(0, ext_prefix.length + 1)
|
|
|
|
d
|
2005-10-22 18:55:07 +04:00
|
|
|
}.find_all {|ext|
|
|
|
|
with_config(ext, &cond)
|
2005-10-16 17:17:43 +04:00
|
|
|
}.sort
|
2014-05-22 18:34:56 +04:00
|
|
|
if $LIBRUBYARG_SHARED.empty? and CONFIG["EXTSTATIC"] == "static"
|
2014-05-21 08:46:00 +04:00
|
|
|
exts.delete_if {|d| File.fnmatch?("-*", d)}
|
|
|
|
end
|
2005-10-16 17:17:43 +04:00
|
|
|
end
|
2004-02-09 11:48:55 +03:00
|
|
|
|
2004-02-09 12:20:52 +03:00
|
|
|
if $extout
|
2006-09-29 04:37:20 +04:00
|
|
|
extout = RbConfig.expand("#{$extout}", RbConfig::CONFIG.merge("topdir"=>$topdir))
|
2004-02-09 11:48:55 +03:00
|
|
|
unless $ignore
|
2004-02-21 08:33:24 +03:00
|
|
|
FileUtils.mkpath(extout)
|
2004-02-09 11:48:55 +03:00
|
|
|
end
|
2002-09-08 13:08:15 +04:00
|
|
|
end
|
|
|
|
|
2004-02-21 08:33:24 +03:00
|
|
|
dir = Dir.pwd
|
2003-08-17 06:32:07 +04:00
|
|
|
FileUtils::makedirs('ext')
|
* configure.in (XCFLAGS): CFLAGS to comile ruby itself.
* configure.in (LIBEXT): suffix for static libraries.
* configure.in (LIBPATHFLAG): switch template to specify library
path.
* configure.in (LINK_SO): command to link shared objects.
* configure.in (DEFFILE, ARCHFILE): miscellaneous system dependent
files.
* configure.in (EXPORT_PREFIX): prefix to exported symbols on
Windows.
* configure.in (COMMON_LIBS, COMMON_MACROS, COMMON_HEADERS):
libraries, macros and headers used in common.
* configure.in (RUBYW_INSTALL_NAME, rubyw_install_name): GUI mode
excutable name.
* Makefile.in (CFLAGS): append XCFLAGS.
* Makefile.in (PREP): miscellaneous system dependent files.
* Makefile.in (ruby.imp, ext/extinit.o): moved from ext/extmk.rb.
* Makefile.in (fake.rb): CROSS_COMPILING keeps building platform.
* Makefile.in (MAKEFILES): depend on *.in and config.status.
* Makefile.in (parse.c): replace "y.tab.c" with actual name for
byacc.
* ext/extmk.rb, lib/mkmf.rb: integrated.
* ext/extmk.rb: propagate MFLAGS.
* ext/extmk.rb (extmake): make dummy Makefile to clean even if no
Makefile is made.
* lib/mkmf.rb (older): accept multiple file names and Time
objects.
* lib/mkmf.rb (xsystem): split and qoute.
* lib/mkmf.rb (cpp_include): make include directives.
* lib/mkmf.rb (try_func): try wheather specified function is
available.
* lib/mkmf.rb (install_files): default to site-install.
* lib/mkmf.rb (checking_for): added.
* lib/mkmf.rb (find_executable0): just find executable file with
no message.
* lib/mkmf.rb (create_header): output header file is variable.
* lib/mkmf.rb (create_makefile): separate sections.
* lib/mkmf.rb (init_mkmf): initialize global variables.
* win32/Makefile.sub, bcc32/Makefile.sub (CPP, AR): added.
* bcc32/Makefile.sub (ARCH): fixed to i386.
* win32/Makefile.sub, bcc32/Makefile.sub (miniruby): should not
link EXTOBJS.
* ext/dl/extconf.rb: use try_cpp to cross compile.
* ext/dl/extconf.rb: not modify files in source directory.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2974 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2002-10-21 18:03:46 +04:00
|
|
|
Dir::chdir('ext')
|
|
|
|
|
2007-06-10 07:06:15 +04:00
|
|
|
hdrdir = $hdrdir
|
|
|
|
$hdrdir = ($top_srcdir = relative_from(srcdir, $topdir = "..")) + "/include"
|
2004-02-09 11:48:55 +03:00
|
|
|
exts.each do |d|
|
2014-05-09 09:52:57 +04:00
|
|
|
$static = $force_static ? true : $static_ext[d]
|
2008-06-19 16:43:57 +04:00
|
|
|
|
|
|
|
if $ignore or !$nodynamic or $static
|
|
|
|
extmake(d) or abort
|
|
|
|
end
|
2002-09-08 13:08:15 +04:00
|
|
|
end
|
2011-03-08 03:33:05 +03:00
|
|
|
|
2007-06-10 07:06:15 +04:00
|
|
|
$top_srcdir = srcdir
|
2004-02-21 08:33:24 +03:00
|
|
|
$topdir = "."
|
2007-06-10 07:06:15 +04:00
|
|
|
$hdrdir = hdrdir
|
2002-09-08 13:08:15 +04:00
|
|
|
|
2006-05-27 06:30:10 +04:00
|
|
|
extinit = Struct.new(:c, :o) {
|
|
|
|
def initialize(src)
|
|
|
|
super("#{src}.c", "#{src}.#{$OBJEXT}")
|
|
|
|
end
|
|
|
|
}.new("extinit")
|
* configure.in (XCFLAGS): CFLAGS to comile ruby itself.
* configure.in (LIBEXT): suffix for static libraries.
* configure.in (LIBPATHFLAG): switch template to specify library
path.
* configure.in (LINK_SO): command to link shared objects.
* configure.in (DEFFILE, ARCHFILE): miscellaneous system dependent
files.
* configure.in (EXPORT_PREFIX): prefix to exported symbols on
Windows.
* configure.in (COMMON_LIBS, COMMON_MACROS, COMMON_HEADERS):
libraries, macros and headers used in common.
* configure.in (RUBYW_INSTALL_NAME, rubyw_install_name): GUI mode
excutable name.
* Makefile.in (CFLAGS): append XCFLAGS.
* Makefile.in (PREP): miscellaneous system dependent files.
* Makefile.in (ruby.imp, ext/extinit.o): moved from ext/extmk.rb.
* Makefile.in (fake.rb): CROSS_COMPILING keeps building platform.
* Makefile.in (MAKEFILES): depend on *.in and config.status.
* Makefile.in (parse.c): replace "y.tab.c" with actual name for
byacc.
* ext/extmk.rb, lib/mkmf.rb: integrated.
* ext/extmk.rb: propagate MFLAGS.
* ext/extmk.rb (extmake): make dummy Makefile to clean even if no
Makefile is made.
* lib/mkmf.rb (older): accept multiple file names and Time
objects.
* lib/mkmf.rb (xsystem): split and qoute.
* lib/mkmf.rb (cpp_include): make include directives.
* lib/mkmf.rb (try_func): try wheather specified function is
available.
* lib/mkmf.rb (install_files): default to site-install.
* lib/mkmf.rb (checking_for): added.
* lib/mkmf.rb (find_executable0): just find executable file with
no message.
* lib/mkmf.rb (create_header): output header file is variable.
* lib/mkmf.rb (create_makefile): separate sections.
* lib/mkmf.rb (init_mkmf): initialize global variables.
* win32/Makefile.sub, bcc32/Makefile.sub (CPP, AR): added.
* bcc32/Makefile.sub (ARCH): fixed to i386.
* win32/Makefile.sub, bcc32/Makefile.sub (miniruby): should not
link EXTOBJS.
* ext/dl/extconf.rb: use try_cpp to cross compile.
* ext/dl/extconf.rb: not modify files in source directory.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2974 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2002-10-21 18:03:46 +04:00
|
|
|
if $ignore
|
2006-05-27 06:30:10 +04:00
|
|
|
FileUtils.rm_f(extinit.to_a) if $clean
|
2002-09-08 13:08:15 +04:00
|
|
|
Dir.chdir ".."
|
2004-02-17 13:34:31 +03:00
|
|
|
if $clean
|
|
|
|
Dir.rmdir('ext') rescue nil
|
2007-06-15 17:31:54 +04:00
|
|
|
if $extout
|
2007-08-03 06:05:57 +04:00
|
|
|
FileUtils.rm_rf([extout+"/common", extout+"/include/ruby", extout+"/rdoc"])
|
2007-06-15 17:31:54 +04:00
|
|
|
FileUtils.rm_rf(extout+"/"+CONFIG["arch"])
|
|
|
|
if $clean != true
|
|
|
|
FileUtils.rm_rf(extout+"/include/"+CONFIG["arch"])
|
2007-08-03 06:05:57 +04:00
|
|
|
FileUtils.rm_f($mflags.defined?("INSTALLED_LIST")||ENV["INSTALLED_LIST"]||".installed.list")
|
2007-06-15 17:31:54 +04:00
|
|
|
Dir.rmdir(extout+"/include") rescue nil
|
|
|
|
Dir.rmdir(extout) rescue nil
|
|
|
|
end
|
|
|
|
end
|
2004-02-17 13:34:31 +03:00
|
|
|
end
|
2002-09-08 13:08:15 +04:00
|
|
|
exit
|
|
|
|
end
|
|
|
|
|
2006-09-08 23:48:22 +04:00
|
|
|
$extinit ||= ""
|
2012-05-16 09:39:06 +04:00
|
|
|
$extobjs ||= []
|
2006-09-08 23:48:22 +04:00
|
|
|
$extpath ||= []
|
|
|
|
$extflags ||= ""
|
|
|
|
$extlibs ||= []
|
|
|
|
unless $extlist.empty?
|
|
|
|
$extinit << "\n" unless $extinit.empty?
|
2003-08-12 06:12:48 +04:00
|
|
|
list = $extlist.dup
|
2004-09-02 20:54:35 +04:00
|
|
|
built = []
|
2004-01-08 01:06:38 +03:00
|
|
|
while e = list.shift
|
2013-02-20 16:06:10 +04:00
|
|
|
_, target, feature, required = e
|
|
|
|
if required and !(required -= built).empty?
|
2004-01-08 01:06:38 +03:00
|
|
|
l = list.size
|
2013-02-20 16:06:10 +04:00
|
|
|
if (while l > 0; break true if required.include?(list[l-=1][1]) end)
|
2004-01-08 01:06:38 +03:00
|
|
|
list.insert(l + 1, e)
|
|
|
|
end
|
2004-04-16 03:27:12 +04:00
|
|
|
next
|
2003-08-12 06:12:48 +04:00
|
|
|
end
|
2013-02-20 16:06:10 +04:00
|
|
|
base = File.basename(feature)
|
|
|
|
$extinit << " init(Init_#{base}, \"#{feature}.so\");\n"
|
|
|
|
$extobjs << format("ext/%s/%s.%s", target, base, $LIBEXT)
|
|
|
|
built << target
|
2002-09-08 13:08:15 +04:00
|
|
|
end
|
|
|
|
|
2006-05-27 06:30:10 +04:00
|
|
|
src = %{\
|
2012-05-16 09:39:06 +04:00
|
|
|
#include "ruby/ruby.h"
|
2006-09-08 23:48:22 +04:00
|
|
|
|
2007-05-03 17:19:11 +04:00
|
|
|
#define init(func, name) { \\
|
2012-05-16 09:39:06 +04:00
|
|
|
extern void func(void); \\
|
2007-05-03 17:19:11 +04:00
|
|
|
ruby_init_ext(name, func); \\
|
2006-09-08 23:48:22 +04:00
|
|
|
}
|
|
|
|
|
2012-05-16 09:39:06 +04:00
|
|
|
void ruby_init_ext(const char *name, void (*init)(void));
|
2007-05-03 17:19:11 +04:00
|
|
|
|
2012-05-16 09:39:06 +04:00
|
|
|
void Init_ext(void)\n{\n#$extinit}
|
2006-05-27 06:30:10 +04:00
|
|
|
}
|
|
|
|
if !modified?(extinit.c, MTIMES) || IO.read(extinit.c) != src
|
2006-10-09 18:41:24 +04:00
|
|
|
open(extinit.c, "w") {|fe| fe.print src}
|
2002-09-08 13:08:15 +04:00
|
|
|
end
|
|
|
|
|
2008-10-04 17:12:13 +04:00
|
|
|
if RUBY_PLATFORM =~ /beos/
|
2003-08-12 11:55:14 +04:00
|
|
|
$extflags.delete("-L/usr/local/lib")
|
2002-09-08 13:08:15 +04:00
|
|
|
end
|
2003-08-06 07:11:14 +04:00
|
|
|
$extpath.delete("$(topdir)")
|
|
|
|
$extflags = libpathflag($extpath) << " " << $extflags.strip
|
2002-10-22 08:19:26 +04:00
|
|
|
conf = [
|
2006-10-01 19:00:45 +04:00
|
|
|
['LIBRUBY_SO_UPDATE', '$(LIBRUBY_EXTS)'],
|
2005-08-04 19:20:10 +04:00
|
|
|
['SETUP', $setup],
|
2003-08-12 11:55:14 +04:00
|
|
|
['EXTLIBS', $extlibs.join(' ')], ['EXTLDFLAGS', $extflags]
|
2002-10-22 08:19:26 +04:00
|
|
|
].map {|n, v|
|
|
|
|
"#{n}=#{v}" if v and !(v = v.strip).empty?
|
|
|
|
}.compact
|
2006-09-08 23:48:22 +04:00
|
|
|
puts(*conf)
|
2002-10-27 12:04:55 +03:00
|
|
|
$stdout.flush
|
2002-11-04 00:42:14 +03:00
|
|
|
$mflags.concat(conf)
|
2009-02-24 13:01:08 +03:00
|
|
|
$makeflags.concat(conf)
|
2006-05-27 06:30:10 +04:00
|
|
|
else
|
|
|
|
FileUtils.rm_f(extinit.to_a)
|
2002-09-08 13:08:15 +04:00
|
|
|
end
|
* configure.in (XCFLAGS): CFLAGS to comile ruby itself.
* configure.in (LIBEXT): suffix for static libraries.
* configure.in (LIBPATHFLAG): switch template to specify library
path.
* configure.in (LINK_SO): command to link shared objects.
* configure.in (DEFFILE, ARCHFILE): miscellaneous system dependent
files.
* configure.in (EXPORT_PREFIX): prefix to exported symbols on
Windows.
* configure.in (COMMON_LIBS, COMMON_MACROS, COMMON_HEADERS):
libraries, macros and headers used in common.
* configure.in (RUBYW_INSTALL_NAME, rubyw_install_name): GUI mode
excutable name.
* Makefile.in (CFLAGS): append XCFLAGS.
* Makefile.in (PREP): miscellaneous system dependent files.
* Makefile.in (ruby.imp, ext/extinit.o): moved from ext/extmk.rb.
* Makefile.in (fake.rb): CROSS_COMPILING keeps building platform.
* Makefile.in (MAKEFILES): depend on *.in and config.status.
* Makefile.in (parse.c): replace "y.tab.c" with actual name for
byacc.
* ext/extmk.rb, lib/mkmf.rb: integrated.
* ext/extmk.rb: propagate MFLAGS.
* ext/extmk.rb (extmake): make dummy Makefile to clean even if no
Makefile is made.
* lib/mkmf.rb (older): accept multiple file names and Time
objects.
* lib/mkmf.rb (xsystem): split and qoute.
* lib/mkmf.rb (cpp_include): make include directives.
* lib/mkmf.rb (try_func): try wheather specified function is
available.
* lib/mkmf.rb (install_files): default to site-install.
* lib/mkmf.rb (checking_for): added.
* lib/mkmf.rb (find_executable0): just find executable file with
no message.
* lib/mkmf.rb (create_header): output header file is variable.
* lib/mkmf.rb (create_makefile): separate sections.
* lib/mkmf.rb (init_mkmf): initialize global variables.
* win32/Makefile.sub, bcc32/Makefile.sub (CPP, AR): added.
* bcc32/Makefile.sub (ARCH): fixed to i386.
* win32/Makefile.sub, bcc32/Makefile.sub (miniruby): should not
link EXTOBJS.
* ext/dl/extconf.rb: use try_cpp to cross compile.
* ext/dl/extconf.rb: not modify files in source directory.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2974 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2002-10-21 18:03:46 +04:00
|
|
|
rubies = []
|
2006-10-09 18:41:24 +04:00
|
|
|
%w[RUBY RUBYW STATIC_RUBY].each {|n|
|
|
|
|
r = n
|
2004-04-02 13:00:12 +04:00
|
|
|
if r = arg_config("--"+r.downcase) || config_string(r+"_INSTALL_NAME")
|
2009-04-30 20:34:01 +04:00
|
|
|
rubies << RbConfig.expand(r+=EXEEXT)
|
2005-11-16 17:25:53 +03:00
|
|
|
$mflags << "#{n}=#{r}"
|
2004-04-02 13:00:12 +04:00
|
|
|
end
|
* configure.in (XCFLAGS): CFLAGS to comile ruby itself.
* configure.in (LIBEXT): suffix for static libraries.
* configure.in (LIBPATHFLAG): switch template to specify library
path.
* configure.in (LINK_SO): command to link shared objects.
* configure.in (DEFFILE, ARCHFILE): miscellaneous system dependent
files.
* configure.in (EXPORT_PREFIX): prefix to exported symbols on
Windows.
* configure.in (COMMON_LIBS, COMMON_MACROS, COMMON_HEADERS):
libraries, macros and headers used in common.
* configure.in (RUBYW_INSTALL_NAME, rubyw_install_name): GUI mode
excutable name.
* Makefile.in (CFLAGS): append XCFLAGS.
* Makefile.in (PREP): miscellaneous system dependent files.
* Makefile.in (ruby.imp, ext/extinit.o): moved from ext/extmk.rb.
* Makefile.in (fake.rb): CROSS_COMPILING keeps building platform.
* Makefile.in (MAKEFILES): depend on *.in and config.status.
* Makefile.in (parse.c): replace "y.tab.c" with actual name for
byacc.
* ext/extmk.rb, lib/mkmf.rb: integrated.
* ext/extmk.rb: propagate MFLAGS.
* ext/extmk.rb (extmake): make dummy Makefile to clean even if no
Makefile is made.
* lib/mkmf.rb (older): accept multiple file names and Time
objects.
* lib/mkmf.rb (xsystem): split and qoute.
* lib/mkmf.rb (cpp_include): make include directives.
* lib/mkmf.rb (try_func): try wheather specified function is
available.
* lib/mkmf.rb (install_files): default to site-install.
* lib/mkmf.rb (checking_for): added.
* lib/mkmf.rb (find_executable0): just find executable file with
no message.
* lib/mkmf.rb (create_header): output header file is variable.
* lib/mkmf.rb (create_makefile): separate sections.
* lib/mkmf.rb (init_mkmf): initialize global variables.
* win32/Makefile.sub, bcc32/Makefile.sub (CPP, AR): added.
* bcc32/Makefile.sub (ARCH): fixed to i386.
* win32/Makefile.sub, bcc32/Makefile.sub (miniruby): should not
link EXTOBJS.
* ext/dl/extconf.rb: use try_cpp to cross compile.
* ext/dl/extconf.rb: not modify files in source directory.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2974 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2002-10-21 18:03:46 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
Dir.chdir ".."
|
2005-04-17 17:57:52 +04:00
|
|
|
unless $destdir.to_s.empty?
|
|
|
|
$mflags.defined?("DESTDIR") or $mflags << "DESTDIR=#{$destdir}"
|
|
|
|
end
|
2009-02-24 13:01:08 +03:00
|
|
|
$makeflags.uniq!
|
2002-12-31 15:31:12 +03:00
|
|
|
|
2005-08-04 03:04:16 +04:00
|
|
|
if $nmake == ?b
|
2006-10-19 19:38:31 +04:00
|
|
|
unless (vars = $mflags.grep(/\A\w+=/n)).empty?
|
2006-10-19 20:03:45 +04:00
|
|
|
open(mkf = "libruby.mk", "wb") do |tmf|
|
|
|
|
tmf.puts("!include Makefile")
|
|
|
|
tmf.puts
|
2011-03-08 03:33:05 +03:00
|
|
|
tmf.puts(*vars.map {|v| v.sub(/\=/, " = ")})
|
2006-10-19 20:03:45 +04:00
|
|
|
tmf.puts("PRE_LIBRUBY_UPDATE = del #{mkf}")
|
2006-10-19 19:38:31 +04:00
|
|
|
end
|
2006-10-19 20:03:45 +04:00
|
|
|
$mflags.unshift("-f#{mkf}")
|
|
|
|
vars.each {|flag| flag.sub!(/\A/, "-D")}
|
2006-10-19 19:38:31 +04:00
|
|
|
end
|
2005-08-04 03:04:16 +04:00
|
|
|
end
|
2007-06-10 10:09:40 +04:00
|
|
|
$mflags.unshift("topdir=#$topdir")
|
2008-05-08 12:44:15 +04:00
|
|
|
ENV.delete("RUBYOPT")
|
2011-03-08 03:33:05 +03:00
|
|
|
if $configure_only and $command_output
|
2011-03-08 18:45:33 +03:00
|
|
|
exts.map! {|d| "ext/#{d}/."}
|
2014-04-15 14:29:01 +04:00
|
|
|
atomic_write_open($command_output) do |mf|
|
2011-03-08 03:33:05 +03:00
|
|
|
mf.puts "V = 0"
|
|
|
|
mf.puts "Q1 = $(V:1=)"
|
|
|
|
mf.puts "Q = $(Q1:0=@)"
|
|
|
|
mf.puts "ECHO1 = $(V:1=@:)"
|
|
|
|
mf.puts "ECHO = $(ECHO1:0=@echo)"
|
2011-03-28 06:08:18 +04:00
|
|
|
mf.puts "MFLAGS = -$(MAKEFLAGS)" if $nmake
|
2011-03-08 03:33:05 +03:00
|
|
|
mf.puts
|
|
|
|
|
2012-05-19 06:36:25 +04:00
|
|
|
def mf.macro(name, values, max = 70)
|
|
|
|
print name, " ="
|
|
|
|
w = w0 = name.size + 2
|
|
|
|
h = " \\\n" + "\t" * (w / 8) + " " * (w % 8)
|
|
|
|
values.each do |s|
|
|
|
|
if s.size + w > max
|
|
|
|
print h
|
|
|
|
w = w0
|
|
|
|
end
|
|
|
|
print " ", s
|
|
|
|
w += s.size + 1
|
2011-03-08 03:33:05 +03:00
|
|
|
end
|
2012-05-19 06:36:25 +04:00
|
|
|
puts
|
2011-03-08 03:33:05 +03:00
|
|
|
end
|
2012-05-19 06:36:25 +04:00
|
|
|
|
|
|
|
mf.macro "extensions", exts
|
2012-05-19 09:57:32 +04:00
|
|
|
mf.macro "EXTOBJS", $extlist.empty? ? ["dmyext.#{$OBJEXT}"] : ["ext/extinit.#{$OBJEXT}", *$extobjs]
|
2012-05-19 06:36:25 +04:00
|
|
|
mf.macro "EXTLIBS", $extlibs
|
|
|
|
mf.macro "EXTLDFLAGS", $extflags.split
|
2013-02-20 16:06:13 +04:00
|
|
|
submakeopts = []
|
|
|
|
if enable_config("shared", $enable_shared)
|
|
|
|
submakeopts << 'DLDOBJS="$(EXTOBJS) $(ENCOBJS)"'
|
2014-12-04 20:27:49 +03:00
|
|
|
submakeopts << 'EXTOBJS='
|
2013-02-20 16:06:13 +04:00
|
|
|
submakeopts << 'EXTSOLIBS="$(EXTLIBS)"'
|
|
|
|
submakeopts << 'LIBRUBY_SO_UPDATE=$(LIBRUBY_EXTS)'
|
|
|
|
else
|
|
|
|
submakeopts << 'EXTOBJS="$(EXTOBJS) $(ENCOBJS)"'
|
|
|
|
submakeopts << 'EXTLIBS="$(EXTLIBS)"'
|
|
|
|
end
|
|
|
|
submakeopts << 'EXTLDFLAGS="$(EXTLDFLAGS)"'
|
2014-10-31 06:49:43 +03:00
|
|
|
submakeopts << 'UPDATE_LIBRARIES="$(UPDATE_LIBRARIES)"'
|
2013-02-20 16:06:13 +04:00
|
|
|
mf.macro "SUBMAKEOPTS", submakeopts
|
2012-05-16 09:39:06 +04:00
|
|
|
mf.puts
|
2011-03-08 03:33:05 +03:00
|
|
|
targets = %w[all install static install-so install-rb clean distclean realclean]
|
2012-02-25 11:08:47 +04:00
|
|
|
targets.each do |tgt|
|
|
|
|
mf.puts "#{tgt}: $(extensions:/.=/#{tgt})"
|
2011-03-08 03:33:05 +03:00
|
|
|
end
|
|
|
|
mf.puts
|
2012-05-16 09:39:06 +04:00
|
|
|
mf.puts "clean:\n\t-$(Q)$(RM) ext/extinit.#{$OBJEXT}"
|
|
|
|
mf.puts "distclean:\n\t-$(Q)$(RM) ext/extinit.c"
|
|
|
|
mf.puts
|
|
|
|
mf.puts "#{rubies.join(' ')}: $(extensions:/.=/#{$force_static ? 'static' : 'all'})"
|
2013-02-20 16:06:13 +04:00
|
|
|
submake = "$(Q)$(MAKE) $(MFLAGS) $(SUBMAKEOPTS)"
|
2014-07-03 07:40:24 +04:00
|
|
|
mf.puts "all static: $(EXTOBJS)\n\t#{submake} #{rubies.join(' ')}\n"
|
|
|
|
$extobjs.each do |tgt|
|
|
|
|
mf.puts "#{tgt}: #{File.dirname(tgt)}/static"
|
|
|
|
end
|
|
|
|
mf.puts "#{rubies.join(' ')}: $(EXTOBJS)"
|
2013-02-20 16:06:13 +04:00
|
|
|
rubies.each do |tgt|
|
|
|
|
mf.puts "#{tgt}:\n\t#{submake} $@"
|
2011-03-08 03:33:05 +03:00
|
|
|
end
|
2014-10-11 17:33:19 +04:00
|
|
|
mf.puts "ext/extinit.#{$OBJEXT}:\n\t$(Q)$(MAKE) $(MFLAGS) V=$(V) $@" if $static
|
2011-03-08 03:33:05 +03:00
|
|
|
mf.puts
|
2014-07-03 07:38:13 +04:00
|
|
|
if $gnumake == "yes"
|
|
|
|
submake = "$(MAKE) -C $(@D)"
|
|
|
|
else
|
|
|
|
submake = "cd $(@D) && "
|
|
|
|
config_string("exec") {|str| submake << str << " "}
|
|
|
|
submake << "$(MAKE)"
|
|
|
|
end
|
2012-02-25 11:08:47 +04:00
|
|
|
targets.each do |tgt|
|
2011-03-08 03:33:05 +03:00
|
|
|
exts.each do |d|
|
2014-07-03 07:38:13 +04:00
|
|
|
mf.puts "#{d[0..-2]}#{tgt}:\n\t$(Q)#{submake} $(MFLAGS) V=$(V) $(@F)"
|
2011-03-08 03:33:05 +03:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
elsif $command_output
|
|
|
|
message = "making #{rubies.join(', ')}"
|
2009-02-24 13:01:08 +03:00
|
|
|
message = "echo #{message}"
|
2011-03-08 03:33:05 +03:00
|
|
|
$mflags.concat(rubies)
|
|
|
|
$makeflags.concat(rubies)
|
2010-01-26 15:34:51 +03:00
|
|
|
cmd = $makeflags.map {|ss|ss.sub(/.*[$(){};\s].*/, %q['\&'])}.join(' ')
|
|
|
|
open($command_output, 'wb') do |ff|
|
2009-02-24 13:01:08 +03:00
|
|
|
case $command_output
|
|
|
|
when /\.sh\z/
|
2011-03-08 03:33:05 +03:00
|
|
|
ff.puts message, "rm -f \"$0\"; exec \"$@\" #{cmd}"
|
2009-02-24 13:01:08 +03:00
|
|
|
when /\.bat\z/
|
2010-01-26 15:34:51 +03:00
|
|
|
["@echo off", message, "%* #{cmd}", "del %0 & exit %ERRORLEVEL%"].each do |ss|
|
|
|
|
ff.print ss, "\r\n"
|
2009-02-24 13:01:08 +03:00
|
|
|
end
|
|
|
|
else
|
2010-01-26 15:34:51 +03:00
|
|
|
ff.puts cmd
|
2009-02-24 13:01:08 +03:00
|
|
|
end
|
2010-01-26 15:34:51 +03:00
|
|
|
ff.chmod(0755)
|
2009-02-24 13:01:08 +03:00
|
|
|
end
|
2011-03-08 03:33:05 +03:00
|
|
|
elsif !$configure_only
|
|
|
|
message = "making #{rubies.join(', ')}"
|
2009-02-24 13:01:08 +03:00
|
|
|
puts message
|
|
|
|
$stdout.flush
|
2011-03-08 03:33:05 +03:00
|
|
|
$mflags.concat(rubies)
|
2009-02-24 13:01:08 +03:00
|
|
|
system($make, *sysquote($mflags)) or exit($?.exitstatus)
|
|
|
|
end
|
2013-05-20 16:42:02 +04:00
|
|
|
# :startdoc:
|
2002-09-08 13:08:15 +04:00
|
|
|
|
|
|
|
#Local variables:
|
|
|
|
# mode: ruby
|
|
|
|
#end:
|