2012-11-23 18:44:45 +04:00
|
|
|
# -*- coding: us-ascii -*-
|
2015-12-10 03:32:53 +03:00
|
|
|
# frozen-string-literal: false
|
1999-01-20 07:59:39 +03:00
|
|
|
# module to create Makefile for extension modules
|
1998-01-16 15:19:09 +03:00
|
|
|
# invoke like: ruby -r mkmf extconf.rb
|
|
|
|
|
|
|
|
require 'rbconfig'
|
2003-07-18 12:34:45 +04:00
|
|
|
require 'fileutils'
|
2002-03-29 10:42:20 +03:00
|
|
|
require 'shellwords'
|
1998-01-16 15:19:09 +03:00
|
|
|
|
2008-03-07 13:56:13 +03:00
|
|
|
# :stopdoc:
|
* 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
|
|
|
class String
|
2008-03-07 13:56:13 +03:00
|
|
|
# Wraps a string in escaped quotes if it contains whitespace.
|
* 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
|
|
|
def quote
|
2007-06-10 07:06:15 +04:00
|
|
|
/\s/ =~ self ? "\"#{self}\"" : "#{self}"
|
* 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
|
|
|
end
|
2008-03-07 13:56:13 +03:00
|
|
|
|
2012-09-23 16:52:01 +04:00
|
|
|
# Escape whitespaces for Makefile.
|
|
|
|
def unspace
|
|
|
|
gsub(/\s/, '\\\\\\&')
|
|
|
|
end
|
|
|
|
|
2008-03-07 13:56:13 +03:00
|
|
|
# Generates a string used as cpp macro name.
|
2007-11-18 03:09:50 +03:00
|
|
|
def tr_cpp
|
2010-12-04 01:46:53 +03:00
|
|
|
strip.upcase.tr_s("^A-Z0-9_*", "_").tr_s("*", "P")
|
2007-11-18 03:09:50 +03:00
|
|
|
end
|
2011-11-11 12:21:17 +04:00
|
|
|
|
|
|
|
def funcall_style
|
|
|
|
/\)\z/ =~ self ? dup : "#{self}()"
|
|
|
|
end
|
|
|
|
|
|
|
|
def sans_arguments
|
|
|
|
self[/\A[^()]+/]
|
|
|
|
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
|
|
|
end
|
2011-11-30 04:57:24 +04:00
|
|
|
|
* 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
|
|
|
class Array
|
2008-03-07 13:56:13 +03:00
|
|
|
# Wraps all strings in escaped quotes if they contain whitespace.
|
* 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
|
|
|
def quote
|
|
|
|
map {|s| s.quote}
|
|
|
|
end
|
|
|
|
end
|
2011-11-30 04:57:24 +04:00
|
|
|
# :startdoc:
|
2000-05-29 06:10:22 +04:00
|
|
|
|
2011-11-30 04:57:24 +04:00
|
|
|
##
|
2013-07-18 17:50:32 +04:00
|
|
|
# mkmf.rb is used by Ruby C extensions to generate a Makefile which will
|
|
|
|
# correctly compile and link the C extension to Ruby and a third-party
|
2011-11-30 04:57:24 +04:00
|
|
|
# library.
|
|
|
|
module MakeMakefile
|
2013-03-11 06:53:47 +04:00
|
|
|
#### defer until this module become global-state free.
|
|
|
|
# def self.extended(obj)
|
|
|
|
# obj.init_mkmf
|
|
|
|
# super
|
|
|
|
# end
|
|
|
|
#
|
|
|
|
# def initialize(*args, rbconfig: RbConfig, **rest)
|
|
|
|
# init_mkmf(rbconfig::MAKEFILE_CONFIG, rbconfig::CONFIG)
|
|
|
|
# super(*args, **rest)
|
|
|
|
# end
|
2011-11-30 04:57:24 +04:00
|
|
|
|
2013-01-25 05:37:06 +04:00
|
|
|
##
|
2013-07-18 17:50:32 +04:00
|
|
|
# The makefile configuration using the defaults from when Ruby was built.
|
2013-01-25 05:37:06 +04:00
|
|
|
|
2011-11-30 04:57:24 +04:00
|
|
|
CONFIG = RbConfig::MAKEFILE_CONFIG
|
|
|
|
ORIG_LIBPATH = ENV['LIB']
|
|
|
|
|
2013-01-25 05:37:06 +04:00
|
|
|
##
|
|
|
|
# Extensions for files compiled with a C compiler
|
|
|
|
|
2011-11-30 04:57:24 +04:00
|
|
|
C_EXT = %w[c m]
|
2013-01-25 05:37:06 +04:00
|
|
|
|
|
|
|
##
|
|
|
|
# Extensions for files complied with a C++ compiler
|
|
|
|
|
2011-11-30 04:57:24 +04:00
|
|
|
CXX_EXT = %w[cc mm cxx cpp]
|
2014-02-04 12:20:05 +04:00
|
|
|
unless File.exist?(File.join(*File.split(__FILE__).tap {|d, b| b.swapcase}))
|
2011-11-30 04:57:24 +04:00
|
|
|
CXX_EXT.concat(%w[C])
|
|
|
|
end
|
2013-01-25 05:37:06 +04:00
|
|
|
|
|
|
|
##
|
|
|
|
# Extensions for source files
|
|
|
|
|
2011-11-30 04:57:24 +04:00
|
|
|
SRC_EXT = C_EXT + CXX_EXT
|
2013-01-25 05:37:06 +04:00
|
|
|
|
|
|
|
##
|
|
|
|
# Extensions for header files
|
|
|
|
|
2012-08-23 11:15:27 +04:00
|
|
|
HDR_EXT = %w[h hpp]
|
2011-11-30 04:57:24 +04:00
|
|
|
$static = nil
|
|
|
|
$config_h = '$(arch_hdrdir)/ruby/config.h'
|
|
|
|
$default_static = $static
|
|
|
|
|
|
|
|
unless defined? $configure_args
|
|
|
|
$configure_args = {}
|
|
|
|
args = CONFIG["configure_args"]
|
|
|
|
if ENV["CONFIGURE_ARGS"]
|
|
|
|
args << " " << ENV["CONFIGURE_ARGS"]
|
|
|
|
end
|
|
|
|
for arg in Shellwords::shellwords(args)
|
|
|
|
arg, val = arg.split('=', 2)
|
|
|
|
next unless arg
|
|
|
|
arg.tr!('_', '-')
|
2015-06-10 16:37:03 +03:00
|
|
|
if arg.sub!(/^(?!--)/, '--')
|
|
|
|
val or next
|
|
|
|
arg.downcase!
|
|
|
|
end
|
|
|
|
next if /^--(?:top|topsrc|src|cur)dir$/ =~ arg
|
2011-11-30 04:57:24 +04:00
|
|
|
$configure_args[arg] = val || true
|
|
|
|
end
|
|
|
|
for arg in ARGV
|
|
|
|
arg, val = arg.split('=', 2)
|
|
|
|
next unless arg
|
|
|
|
arg.tr!('_', '-')
|
2015-06-10 16:37:03 +03:00
|
|
|
if arg.sub!(/^(?!--)/, '--')
|
|
|
|
val or next
|
|
|
|
arg.downcase!
|
|
|
|
end
|
2011-11-30 04:57:24 +04:00
|
|
|
$configure_args[arg] = val || true
|
|
|
|
end
|
|
|
|
end
|
2011-11-29 05:08:16 +04:00
|
|
|
|
2011-11-30 04:57:24 +04:00
|
|
|
$libdir = CONFIG["libdir"]
|
|
|
|
$rubylibdir = CONFIG["rubylibdir"]
|
|
|
|
$archdir = CONFIG["archdir"]
|
|
|
|
$sitedir = CONFIG["sitedir"]
|
|
|
|
$sitelibdir = CONFIG["sitelibdir"]
|
|
|
|
$sitearchdir = CONFIG["sitearchdir"]
|
|
|
|
$vendordir = CONFIG["vendordir"]
|
|
|
|
$vendorlibdir = CONFIG["vendorlibdir"]
|
|
|
|
$vendorarchdir = CONFIG["vendorarchdir"]
|
2011-11-29 05:08:16 +04:00
|
|
|
|
2011-11-30 04:57:24 +04:00
|
|
|
$mswin = /mswin/ =~ RUBY_PLATFORM
|
|
|
|
$bccwin = /bccwin/ =~ RUBY_PLATFORM
|
|
|
|
$mingw = /mingw/ =~ RUBY_PLATFORM
|
|
|
|
$cygwin = /cygwin/ =~ RUBY_PLATFORM
|
|
|
|
$netbsd = /netbsd/ =~ RUBY_PLATFORM
|
|
|
|
$haiku = /haiku/ =~ RUBY_PLATFORM
|
|
|
|
$solaris = /solaris/ =~ RUBY_PLATFORM
|
|
|
|
$universal = /universal/ =~ RUBY_PLATFORM
|
|
|
|
$dest_prefix_pattern = (File::PATH_SEPARATOR == ';' ? /\A([[:alpha:]]:)?/ : /\A/)
|
2002-09-03 12:40:47 +04:00
|
|
|
|
2011-11-30 04:57:24 +04:00
|
|
|
# :stopdoc:
|
|
|
|
|
|
|
|
def config_string(key, config = CONFIG)
|
|
|
|
s = config[key] and !s.empty? and block_given? ? yield(s) : s
|
|
|
|
end
|
|
|
|
module_function :config_string
|
|
|
|
|
|
|
|
def dir_re(dir)
|
|
|
|
Regexp.new('\$(?:\('+dir+'\)|\{'+dir+'\})(?:\$(?:\(target_prefix\)|\{target_prefix\}))?')
|
|
|
|
end
|
|
|
|
module_function :dir_re
|
|
|
|
|
|
|
|
def relative_from(path, base)
|
|
|
|
dir = File.join(path, "")
|
|
|
|
if File.expand_path(dir) == File.expand_path(dir, base)
|
|
|
|
path
|
|
|
|
else
|
|
|
|
File.join(base, path)
|
2011-11-29 01:54:33 +04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-11-30 04:57:24 +04:00
|
|
|
INSTALL_DIRS = [
|
|
|
|
[dir_re('commondir'), "$(RUBYCOMMONDIR)"],
|
|
|
|
[dir_re('sitedir'), "$(RUBYCOMMONDIR)"],
|
|
|
|
[dir_re('vendordir'), "$(RUBYCOMMONDIR)"],
|
|
|
|
[dir_re('rubylibdir'), "$(RUBYLIBDIR)"],
|
|
|
|
[dir_re('archdir'), "$(RUBYARCHDIR)"],
|
|
|
|
[dir_re('sitelibdir'), "$(RUBYLIBDIR)"],
|
|
|
|
[dir_re('vendorlibdir'), "$(RUBYLIBDIR)"],
|
|
|
|
[dir_re('sitearchdir'), "$(RUBYARCHDIR)"],
|
|
|
|
[dir_re('vendorarchdir'), "$(RUBYARCHDIR)"],
|
|
|
|
[dir_re('rubyhdrdir'), "$(RUBYHDRDIR)"],
|
|
|
|
[dir_re('sitehdrdir'), "$(SITEHDRDIR)"],
|
|
|
|
[dir_re('vendorhdrdir'), "$(VENDORHDRDIR)"],
|
|
|
|
[dir_re('bindir'), "$(BINDIR)"],
|
|
|
|
]
|
|
|
|
|
|
|
|
def install_dirs(target_prefix = nil)
|
|
|
|
if $extout
|
|
|
|
dirs = [
|
|
|
|
['BINDIR', '$(extout)/bin'],
|
|
|
|
['RUBYCOMMONDIR', '$(extout)/common'],
|
|
|
|
['RUBYLIBDIR', '$(RUBYCOMMONDIR)$(target_prefix)'],
|
|
|
|
['RUBYARCHDIR', '$(extout)/$(arch)$(target_prefix)'],
|
|
|
|
['HDRDIR', '$(extout)/include/ruby$(target_prefix)'],
|
|
|
|
['ARCHHDRDIR', '$(extout)/include/$(arch)/ruby$(target_prefix)'],
|
|
|
|
['extout', "#$extout"],
|
|
|
|
['extout_prefix', "#$extout_prefix"],
|
|
|
|
]
|
|
|
|
elsif $extmk
|
|
|
|
dirs = [
|
|
|
|
['BINDIR', '$(bindir)'],
|
|
|
|
['RUBYCOMMONDIR', '$(rubylibdir)'],
|
|
|
|
['RUBYLIBDIR', '$(rubylibdir)$(target_prefix)'],
|
|
|
|
['RUBYARCHDIR', '$(archdir)$(target_prefix)'],
|
|
|
|
['HDRDIR', '$(rubyhdrdir)/ruby$(target_prefix)'],
|
|
|
|
['ARCHHDRDIR', '$(rubyhdrdir)/$(arch)/ruby$(target_prefix)'],
|
|
|
|
]
|
|
|
|
elsif $configure_args.has_key?('--vendor')
|
|
|
|
dirs = [
|
2013-07-03 13:12:59 +04:00
|
|
|
['BINDIR', '$(bindir)'],
|
|
|
|
['RUBYCOMMONDIR', '$(vendordir)$(target_prefix)'],
|
|
|
|
['RUBYLIBDIR', '$(vendorlibdir)$(target_prefix)'],
|
|
|
|
['RUBYARCHDIR', '$(vendorarchdir)$(target_prefix)'],
|
|
|
|
['HDRDIR', '$(rubyhdrdir)/ruby$(target_prefix)'],
|
|
|
|
['ARCHHDRDIR', '$(rubyhdrdir)/$(arch)/ruby$(target_prefix)'],
|
2011-11-30 04:57:24 +04:00
|
|
|
]
|
|
|
|
else
|
|
|
|
dirs = [
|
2013-07-03 13:12:59 +04:00
|
|
|
['BINDIR', '$(bindir)'],
|
|
|
|
['RUBYCOMMONDIR', '$(sitedir)$(target_prefix)'],
|
|
|
|
['RUBYLIBDIR', '$(sitelibdir)$(target_prefix)'],
|
|
|
|
['RUBYARCHDIR', '$(sitearchdir)$(target_prefix)'],
|
|
|
|
['HDRDIR', '$(rubyhdrdir)/ruby$(target_prefix)'],
|
|
|
|
['ARCHHDRDIR', '$(rubyhdrdir)/$(arch)/ruby$(target_prefix)'],
|
2011-11-30 04:57:24 +04:00
|
|
|
]
|
|
|
|
end
|
|
|
|
dirs << ['target_prefix', (target_prefix ? "/#{target_prefix}" : "")]
|
|
|
|
dirs
|
|
|
|
end
|
|
|
|
|
|
|
|
def map_dir(dir, map = nil)
|
|
|
|
map ||= INSTALL_DIRS
|
|
|
|
map.inject(dir) {|d, (orig, new)| d.gsub(orig, new)}
|
|
|
|
end
|
|
|
|
|
|
|
|
topdir = File.dirname(File.dirname(__FILE__))
|
|
|
|
path = File.expand_path($0)
|
2013-01-21 08:51:24 +04:00
|
|
|
until (dir = File.dirname(path)) == path
|
|
|
|
if File.identical?(dir, topdir)
|
|
|
|
$extmk = true if %r"\A(?:ext|enc|tool|test)\z" =~ File.basename(path)
|
|
|
|
break
|
|
|
|
end
|
|
|
|
path = dir
|
|
|
|
end
|
|
|
|
$extmk ||= false
|
2013-06-26 11:42:13 +04:00
|
|
|
if not $extmk and File.exist?(($hdrdir = RbConfig::CONFIG["rubyhdrdir"]) + "/ruby/ruby.h")
|
2011-11-30 04:57:24 +04:00
|
|
|
$topdir = $hdrdir
|
|
|
|
$top_srcdir = $hdrdir
|
2013-06-26 11:42:13 +04:00
|
|
|
$arch_hdrdir = RbConfig::CONFIG["rubyarchhdrdir"]
|
2011-11-30 04:57:24 +04:00
|
|
|
elsif File.exist?(($hdrdir = ($top_srcdir ||= topdir) + "/include") + "/ruby.h")
|
|
|
|
$topdir ||= RbConfig::CONFIG["topdir"]
|
|
|
|
$arch_hdrdir = "$(extout)/include/$(arch)"
|
|
|
|
else
|
|
|
|
abort "mkmf.rb can't find header files for ruby at #{$hdrdir}/ruby.h"
|
2011-11-29 01:54:33 +04:00
|
|
|
end
|
|
|
|
|
2013-07-04 11:03:01 +04:00
|
|
|
CONFTEST = "conftest".freeze
|
|
|
|
CONFTEST_C = "#{CONFTEST}.c"
|
|
|
|
|
2011-11-30 04:57:24 +04:00
|
|
|
OUTFLAG = CONFIG['OUTFLAG']
|
|
|
|
COUTFLAG = CONFIG['COUTFLAG']
|
2013-07-05 05:53:38 +04:00
|
|
|
CPPOUTFILE = config_string('CPPOUTFILE') {|str| str.sub(/\bconftest\b/, CONFTEST)}
|
2011-11-30 04:57:24 +04:00
|
|
|
|
|
|
|
def rm_f(*files)
|
|
|
|
opt = (Hash === files.last ? [files.pop] : [])
|
|
|
|
FileUtils.rm_f(Dir[*files.flatten], *opt)
|
2011-11-29 01:54:33 +04:00
|
|
|
end
|
2011-11-30 04:57:24 +04:00
|
|
|
module_function :rm_f
|
2011-11-29 01:54:33 +04:00
|
|
|
|
2011-11-30 04:57:24 +04:00
|
|
|
def rm_rf(*files)
|
|
|
|
opt = (Hash === files.last ? [files.pop] : [])
|
|
|
|
FileUtils.rm_rf(Dir[*files.flatten], *opt)
|
2011-11-29 01:54:33 +04:00
|
|
|
end
|
2011-11-30 04:57:24 +04:00
|
|
|
module_function :rm_rf
|
2011-11-29 01:54:33 +04:00
|
|
|
|
2011-11-30 04:57:24 +04:00
|
|
|
# Returns time stamp of the +target+ file if it exists and is newer than or
|
|
|
|
# equal to all of +times+.
|
|
|
|
def modified?(target, times)
|
|
|
|
(t = File.mtime(target)) rescue return nil
|
|
|
|
Array === times or times = [times]
|
|
|
|
t if times.all? {|n| n <= t}
|
2011-11-29 01:54:33 +04:00
|
|
|
end
|
|
|
|
|
2012-09-06 20:21:57 +04:00
|
|
|
def split_libs(*strs)
|
|
|
|
strs.map {|s| s.split(/\s+(?=-|\z)/)}.flatten
|
|
|
|
end
|
|
|
|
|
2011-11-30 04:57:24 +04:00
|
|
|
def merge_libs(*libs)
|
|
|
|
libs.inject([]) do |x, y|
|
|
|
|
y = y.inject([]) {|ary, e| ary.last == e ? ary : ary << e}
|
|
|
|
y.each_with_index do |v, yi|
|
2013-02-07 10:33:22 +04:00
|
|
|
if xi = x.rindex(v)
|
|
|
|
x[(xi+1)..-1] = merge_libs(y[(yi+1)..-1], x[(xi+1)..-1])
|
|
|
|
x[xi, 0] = y[0...yi]
|
|
|
|
break
|
2011-11-30 04:57:24 +04:00
|
|
|
end
|
2013-02-07 10:33:22 +04:00
|
|
|
end and x.concat(y)
|
|
|
|
x
|
2004-01-09 05:20:28 +03:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-11-30 04:57:24 +04:00
|
|
|
# This is a custom logging module. It generates an mkmf.log file when you
|
|
|
|
# run your extconf.rb script. This can be useful for debugging unexpected
|
|
|
|
# failures.
|
|
|
|
#
|
|
|
|
# This module and its associated methods are meant for internal use only.
|
|
|
|
#
|
|
|
|
module Logging
|
|
|
|
@log = nil
|
|
|
|
@logfile = 'mkmf.log'
|
|
|
|
@orgerr = $stderr.dup
|
|
|
|
@orgout = $stdout.dup
|
|
|
|
@postpone = 0
|
|
|
|
@quiet = $extmk
|
|
|
|
|
|
|
|
def self::log_open
|
|
|
|
@log ||= File::open(@logfile, 'wb')
|
|
|
|
@log.sync = true
|
|
|
|
end
|
|
|
|
|
2013-04-03 14:00:49 +04:00
|
|
|
def self::log_opened?
|
|
|
|
@log and not @log.closed?
|
|
|
|
end
|
|
|
|
|
2011-11-30 04:57:24 +04:00
|
|
|
def self::open
|
|
|
|
log_open
|
|
|
|
$stderr.reopen(@log)
|
|
|
|
$stdout.reopen(@log)
|
|
|
|
yield
|
|
|
|
ensure
|
|
|
|
$stderr.reopen(@orgerr)
|
|
|
|
$stdout.reopen(@orgout)
|
|
|
|
end
|
|
|
|
|
|
|
|
def self::message(*s)
|
|
|
|
log_open
|
|
|
|
@log.printf(*s)
|
|
|
|
end
|
|
|
|
|
|
|
|
def self::logfile file
|
|
|
|
@logfile = file
|
|
|
|
log_close
|
|
|
|
end
|
|
|
|
|
|
|
|
def self::log_close
|
|
|
|
if @log and not @log.closed?
|
|
|
|
@log.flush
|
|
|
|
@log.close
|
|
|
|
@log = nil
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def self::postpone
|
|
|
|
tmplog = "mkmftmp#{@postpone += 1}.log"
|
|
|
|
open do
|
|
|
|
log, *save = @log, @logfile, @orgout, @orgerr
|
|
|
|
@log, @logfile, @orgout, @orgerr = nil, tmplog, log, log
|
|
|
|
begin
|
|
|
|
log.print(open {yield @log})
|
|
|
|
ensure
|
|
|
|
@log.close if @log and not @log.closed?
|
|
|
|
File::open(tmplog) {|t| FileUtils.copy_stream(t, log)} if File.exist?(tmplog)
|
|
|
|
@log, @logfile, @orgout, @orgerr = log, *save
|
|
|
|
@postpone -= 1
|
|
|
|
MakeMakefile.rm_f tmplog
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
class << self
|
|
|
|
attr_accessor :quiet
|
|
|
|
end
|
2007-06-12 09:52:19 +04:00
|
|
|
end
|
1998-01-16 15:19:09 +03:00
|
|
|
|
2013-03-03 07:35:11 +04:00
|
|
|
def libpath_env
|
2013-03-03 08:15:02 +04:00
|
|
|
# used only if native compiling
|
|
|
|
if libpathenv = config_string("LIBPATHENV")
|
2013-03-03 07:35:11 +04:00
|
|
|
pathenv = ENV[libpathenv]
|
|
|
|
libpath = RbConfig.expand($DEFLIBPATH.join(File::PATH_SEPARATOR))
|
|
|
|
{libpathenv => [libpath, pathenv].compact.join(File::PATH_SEPARATOR)}
|
|
|
|
else
|
|
|
|
{}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-11-30 04:57:24 +04:00
|
|
|
def xsystem command, opts = nil
|
|
|
|
varpat = /\$\((\w+)\)|\$\{(\w+)\}/
|
|
|
|
if varpat =~ command
|
2013-07-29 09:52:53 +04:00
|
|
|
vars = Hash.new {|h, k| h[k] = ENV[k]}
|
2011-11-30 04:57:24 +04:00
|
|
|
command = command.dup
|
|
|
|
nil while command.gsub!(varpat) {vars[$1||$2]}
|
|
|
|
end
|
|
|
|
Logging::open do
|
2015-11-04 04:31:09 +03:00
|
|
|
puts command.quote
|
2011-11-30 04:57:24 +04:00
|
|
|
if opts and opts[:werror]
|
|
|
|
result = nil
|
|
|
|
Logging.postpone do |log|
|
2015-04-11 16:49:02 +03:00
|
|
|
output = IO.popen(libpath_env, command, &:read)
|
|
|
|
result = ($?.success? and File.zero?(log.path))
|
|
|
|
output
|
2011-11-30 04:57:24 +04:00
|
|
|
end
|
|
|
|
result
|
|
|
|
else
|
2013-03-03 07:35:11 +04:00
|
|
|
system(libpath_env, command)
|
2010-12-07 02:00:47 +03:00
|
|
|
end
|
|
|
|
end
|
2002-09-06 15:23:14 +04:00
|
|
|
end
|
|
|
|
|
2011-11-30 04:57:24 +04:00
|
|
|
def xpopen command, *mode, &block
|
|
|
|
Logging::open do
|
2015-11-04 04:31:09 +03:00
|
|
|
case mode[0]
|
2011-11-30 04:57:24 +04:00
|
|
|
when nil, /^r/
|
2015-11-04 04:31:09 +03:00
|
|
|
puts "#{command} |"
|
2011-11-30 04:57:24 +04:00
|
|
|
else
|
2015-11-04 04:31:09 +03:00
|
|
|
puts "| #{command}"
|
2011-11-30 04:57:24 +04:00
|
|
|
end
|
2013-03-03 07:35:11 +04:00
|
|
|
IO.popen(libpath_env, command, *mode, &block)
|
2002-09-06 15:23:14 +04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-02-17 04:56:25 +04:00
|
|
|
def log_src(src, heading="checked program was")
|
2011-11-30 04:57:24 +04:00
|
|
|
src = src.split(/^/)
|
|
|
|
fmt = "%#{src.size.to_s.size}d: %s"
|
|
|
|
Logging::message <<"EOM"
|
2012-02-17 04:56:25 +04:00
|
|
|
#{heading}:
|
2002-09-23 15:01:49 +04:00
|
|
|
/* begin */
|
2011-05-19 01:31:13 +04:00
|
|
|
EOM
|
2011-11-30 04:57:24 +04:00
|
|
|
src.each_with_index {|line, no| Logging::message fmt, no+1, line}
|
|
|
|
Logging::message <<"EOM"
|
2006-07-09 13:05:47 +04:00
|
|
|
/* end */
|
2002-09-23 15:01:49 +04:00
|
|
|
|
2011-05-19 01:31:13 +04:00
|
|
|
EOM
|
2011-11-30 04:57:24 +04:00
|
|
|
end
|
2002-09-23 15:01:49 +04:00
|
|
|
|
2011-11-30 04:57:24 +04:00
|
|
|
def create_tmpsrc(src)
|
|
|
|
src = "#{COMMON_HEADERS}\n#{src}"
|
|
|
|
src = yield(src) if block_given?
|
|
|
|
src.gsub!(/[ \t]+$/, '')
|
|
|
|
src.gsub!(/\A\n+|^\n+$/, '')
|
|
|
|
src.sub!(/[^\n]\z/, "\\&\n")
|
|
|
|
count = 0
|
|
|
|
begin
|
|
|
|
open(CONFTEST_C, "wb") do |cfile|
|
|
|
|
cfile.print src
|
|
|
|
end
|
|
|
|
rescue Errno::EACCES
|
|
|
|
if (count += 1) < 5
|
|
|
|
sleep 0.2
|
|
|
|
retry
|
|
|
|
end
|
2007-12-26 20:32:22 +03:00
|
|
|
end
|
2011-11-30 04:57:24 +04:00
|
|
|
src
|
2000-12-22 06:22:25 +03:00
|
|
|
end
|
1998-01-16 15:19:09 +03:00
|
|
|
|
2011-11-30 04:57:24 +04:00
|
|
|
def have_devel?
|
|
|
|
unless defined? $have_devel
|
|
|
|
$have_devel = true
|
|
|
|
$have_devel = try_link(MAIN_DOES_NOTHING)
|
|
|
|
end
|
|
|
|
$have_devel
|
2008-08-31 13:22:06 +04:00
|
|
|
end
|
|
|
|
|
2011-11-30 04:57:24 +04:00
|
|
|
def try_do(src, command, *opts, &b)
|
|
|
|
unless have_devel?
|
|
|
|
raise <<MSG
|
2010-09-13 13:11:58 +04:00
|
|
|
The compiler failed to generate an executable file.
|
2008-08-31 13:22:06 +04:00
|
|
|
You have to install development tools first.
|
|
|
|
MSG
|
2011-11-30 04:57:24 +04:00
|
|
|
end
|
|
|
|
begin
|
|
|
|
src = create_tmpsrc(src, &b)
|
|
|
|
xsystem(command, *opts)
|
|
|
|
ensure
|
|
|
|
log_src(src)
|
2013-07-04 11:03:01 +04:00
|
|
|
MakeMakefile.rm_rf "#{CONFTEST}.dSYM"
|
2011-11-30 04:57:24 +04:00
|
|
|
end
|
2008-08-31 13:22:06 +04:00
|
|
|
end
|
2011-11-29 12:42:13 +04:00
|
|
|
|
2015-10-24 15:10:48 +03:00
|
|
|
def link_command(ldflags, opt="", libpath=$DEFLIBPATH|$LIBPATH)
|
2011-11-30 04:57:24 +04:00
|
|
|
librubyarg = $extmk ? $LIBRUBYARG_STATIC : "$(LIBRUBYARG)"
|
|
|
|
conf = RbConfig::CONFIG.merge('hdrdir' => $hdrdir.quote,
|
|
|
|
'src' => "#{CONFTEST_C}",
|
|
|
|
'arch_hdrdir' => $arch_hdrdir.quote,
|
|
|
|
'top_srcdir' => $top_srcdir.quote,
|
|
|
|
'INCFLAGS' => "#$INCFLAGS",
|
|
|
|
'CPPFLAGS' => "#$CPPFLAGS",
|
|
|
|
'CFLAGS' => "#$CFLAGS",
|
|
|
|
'ARCH_FLAG' => "#$ARCH_FLAG",
|
|
|
|
'LDFLAGS' => "#$LDFLAGS #{ldflags}",
|
|
|
|
'LOCAL_LIBS' => "#$LOCAL_LIBS #$libs",
|
|
|
|
'LIBS' => "#{librubyarg} #{opt} #$LIBS")
|
|
|
|
conf['LIBPATH'] = libpathflag(libpath.map {|s| RbConfig::expand(s.dup, conf)})
|
|
|
|
RbConfig::expand(TRY_LINK.dup, conf)
|
|
|
|
end
|
|
|
|
|
|
|
|
def cc_command(opt="")
|
|
|
|
conf = RbConfig::CONFIG.merge('hdrdir' => $hdrdir.quote, 'srcdir' => $srcdir.quote,
|
|
|
|
'arch_hdrdir' => $arch_hdrdir.quote,
|
|
|
|
'top_srcdir' => $top_srcdir.quote)
|
|
|
|
RbConfig::expand("$(CC) #$INCFLAGS #$CPPFLAGS #$CFLAGS #$ARCH_FLAG #{opt} -c #{CONFTEST_C}",
|
|
|
|
conf)
|
|
|
|
end
|
|
|
|
|
|
|
|
def cpp_command(outfile, opt="")
|
|
|
|
conf = RbConfig::CONFIG.merge('hdrdir' => $hdrdir.quote, 'srcdir' => $srcdir.quote,
|
|
|
|
'arch_hdrdir' => $arch_hdrdir.quote,
|
|
|
|
'top_srcdir' => $top_srcdir.quote)
|
|
|
|
if $universal and (arch_flag = conf['ARCH_FLAG']) and !arch_flag.empty?
|
|
|
|
conf['ARCH_FLAG'] = arch_flag.gsub(/(?:\G|\s)-arch\s+\S+/, '')
|
|
|
|
end
|
|
|
|
RbConfig::expand("$(CPP) #$INCFLAGS #$CPPFLAGS #$CFLAGS #{opt} #{CONFTEST_C} #{outfile}",
|
|
|
|
conf)
|
|
|
|
end
|
2011-11-29 12:42:13 +04:00
|
|
|
|
2015-10-24 15:10:48 +03:00
|
|
|
def libpathflag(libpath=$DEFLIBPATH|$LIBPATH)
|
2011-11-30 04:57:24 +04:00
|
|
|
libpath.map{|x|
|
|
|
|
case x
|
|
|
|
when "$(topdir)", /\A\./
|
|
|
|
LIBPATHFLAG
|
|
|
|
else
|
|
|
|
LIBPATHFLAG+RPATHFLAG
|
|
|
|
end % x.quote
|
|
|
|
}.join
|
2011-11-08 12:30:53 +04:00
|
|
|
end
|
2002-09-23 15:01:49 +04:00
|
|
|
|
2011-11-30 04:57:24 +04:00
|
|
|
def with_werror(opt, opts = nil)
|
|
|
|
if opts
|
|
|
|
if opts[:werror] and config_string("WERRORFLAG") {|flag| opt = opt ? "#{opt} #{flag}" : flag}
|
|
|
|
(opts = opts.dup).delete(:werror)
|
|
|
|
end
|
|
|
|
yield(opt, opts)
|
2007-04-23 17:08:29 +04:00
|
|
|
else
|
2011-11-30 04:57:24 +04:00
|
|
|
yield(opt)
|
2010-12-07 02:00:47 +03:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-11-30 04:57:24 +04:00
|
|
|
def try_link0(src, opt="", *opts, &b) # :nodoc:
|
|
|
|
cmd = link_command("", opt)
|
|
|
|
if $universal
|
|
|
|
require 'tmpdir'
|
|
|
|
Dir.mktmpdir("mkmf_", oldtmpdir = ENV["TMPDIR"]) do |tmpdir|
|
|
|
|
begin
|
|
|
|
ENV["TMPDIR"] = tmpdir
|
|
|
|
try_do(src, cmd, *opts, &b)
|
|
|
|
ensure
|
|
|
|
ENV["TMPDIR"] = oldtmpdir
|
|
|
|
end
|
2009-05-08 14:38:55 +04:00
|
|
|
end
|
2011-11-30 04:57:24 +04:00
|
|
|
else
|
|
|
|
try_do(src, cmd, *opts, &b)
|
2013-07-04 11:03:01 +04:00
|
|
|
end and File.executable?(CONFTEST+$EXEEXT)
|
2009-05-08 14:38:55 +04:00
|
|
|
end
|
2011-11-29 12:42:13 +04:00
|
|
|
|
2011-11-30 04:57:24 +04:00
|
|
|
# Returns whether or not the +src+ can be compiled as a C source and linked
|
|
|
|
# with its depending libraries successfully. +opt+ is passed to the linker
|
|
|
|
# as options. Note that +$CFLAGS+ and +$LDFLAGS+ are also passed to the
|
|
|
|
# linker.
|
|
|
|
#
|
|
|
|
# If a block given, it is called with the source before compilation. You can
|
|
|
|
# modify the source in the block.
|
|
|
|
#
|
|
|
|
# [+src+] a String which contains a C source
|
|
|
|
# [+opt+] a String which contains linker options
|
|
|
|
def try_link(src, opt="", *opts, &b)
|
|
|
|
try_link0(src, opt, *opts, &b)
|
|
|
|
ensure
|
2013-07-04 11:03:01 +04:00
|
|
|
MakeMakefile.rm_f "#{CONFTEST}*", "c0x32*"
|
2011-11-30 04:57:24 +04:00
|
|
|
end
|
|
|
|
|
|
|
|
# Returns whether or not the +src+ can be compiled as a C source. +opt+ is
|
|
|
|
# passed to the C compiler as options. Note that +$CFLAGS+ is also passed to
|
|
|
|
# the compiler.
|
|
|
|
#
|
|
|
|
# If a block given, it is called with the source before compilation. You can
|
|
|
|
# modify the source in the block.
|
|
|
|
#
|
|
|
|
# [+src+] a String which contains a C source
|
|
|
|
# [+opt+] a String which contains compiler options
|
|
|
|
def try_compile(src, opt="", *opts, &b)
|
2015-04-10 16:29:23 +03:00
|
|
|
with_werror(opt, *opts) {|_opt, *| try_do(src, cc_command(_opt), *opts, &b)} and
|
2013-07-04 11:03:01 +04:00
|
|
|
File.file?("#{CONFTEST}.#{$OBJEXT}")
|
2011-11-30 04:57:24 +04:00
|
|
|
ensure
|
2013-07-04 11:03:01 +04:00
|
|
|
MakeMakefile.rm_f "#{CONFTEST}*"
|
2011-11-30 04:57:24 +04:00
|
|
|
end
|
|
|
|
|
|
|
|
# Returns whether or not the +src+ can be preprocessed with the C
|
|
|
|
# preprocessor. +opt+ is passed to the preprocessor as options. Note that
|
|
|
|
# +$CFLAGS+ is also passed to the preprocessor.
|
|
|
|
#
|
|
|
|
# If a block given, it is called with the source before preprocessing. You
|
|
|
|
# can modify the source in the block.
|
|
|
|
#
|
|
|
|
# [+src+] a String which contains a C source
|
|
|
|
# [+opt+] a String which contains preprocessor options
|
|
|
|
def try_cpp(src, opt="", *opts, &b)
|
2012-03-22 06:17:30 +04:00
|
|
|
try_do(src, cpp_command(CPPOUTFILE, opt), *opts, &b) and
|
2013-07-04 11:03:01 +04:00
|
|
|
File.file?("#{CONFTEST}.i")
|
2011-11-30 04:57:24 +04:00
|
|
|
ensure
|
2013-07-04 11:03:01 +04:00
|
|
|
MakeMakefile.rm_f "#{CONFTEST}*"
|
2011-11-30 04:57:24 +04:00
|
|
|
end
|
2011-11-29 12:42:13 +04:00
|
|
|
|
2009-01-27 05:09:47 +03:00
|
|
|
alias_method :try_header, (config_string('try_header') || :try_cpp)
|
|
|
|
|
2011-11-30 04:57:24 +04:00
|
|
|
def cpp_include(header)
|
|
|
|
if header
|
|
|
|
header = [header] unless header.kind_of? Array
|
|
|
|
header.map {|h| String === h ? "#include <#{h}>\n" : h}.join
|
|
|
|
else
|
|
|
|
""
|
|
|
|
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
|
|
|
end
|
|
|
|
|
2011-11-30 04:57:24 +04:00
|
|
|
def with_cppflags(flags)
|
|
|
|
cppflags = $CPPFLAGS
|
|
|
|
$CPPFLAGS = flags
|
|
|
|
ret = yield
|
|
|
|
ensure
|
|
|
|
$CPPFLAGS = cppflags unless ret
|
|
|
|
end
|
2005-02-06 17:51:44 +03:00
|
|
|
|
2015-04-10 16:36:59 +03:00
|
|
|
def try_cppflags(flags, opts = {})
|
|
|
|
try_header(MAIN_DOES_NOTHING, flags, {:werror => true}.update(opts))
|
2012-02-27 05:54:23 +04:00
|
|
|
end
|
|
|
|
|
2015-04-11 05:00:02 +03:00
|
|
|
def append_cppflags(flags, *opts)
|
|
|
|
Array(flags).each do |flag|
|
2015-04-11 05:01:57 +03:00
|
|
|
if checking_for("whether #{flag} is accepted as CPPFLAGS") {
|
2015-04-11 05:00:02 +03:00
|
|
|
try_cppflags(flag, *opts)
|
|
|
|
}
|
|
|
|
$CPPFLAGS << " " << flag
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-11-30 04:57:24 +04:00
|
|
|
def with_cflags(flags)
|
|
|
|
cflags = $CFLAGS
|
|
|
|
$CFLAGS = flags
|
|
|
|
ret = yield
|
|
|
|
ensure
|
|
|
|
$CFLAGS = cflags unless ret
|
|
|
|
end
|
2005-02-06 17:51:44 +03:00
|
|
|
|
2015-04-10 16:29:23 +03:00
|
|
|
def try_cflags(flags, opts = {})
|
|
|
|
try_compile(MAIN_DOES_NOTHING, flags, {:werror => true}.update(opts))
|
2012-02-27 05:54:23 +04:00
|
|
|
end
|
|
|
|
|
2015-04-11 05:00:02 +03:00
|
|
|
def append_cflags(flags, *opts)
|
|
|
|
Array(flags).each do |flag|
|
2015-04-11 05:01:57 +03:00
|
|
|
if checking_for("whether #{flag} is accepted as CFLAGS") {
|
2015-04-11 05:00:02 +03:00
|
|
|
try_cflags(flag, *opts)
|
|
|
|
}
|
|
|
|
$CFLAGS << " " << flag
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-11-30 04:57:24 +04:00
|
|
|
def with_ldflags(flags)
|
|
|
|
ldflags = $LDFLAGS
|
|
|
|
$LDFLAGS = flags
|
|
|
|
ret = yield
|
|
|
|
ensure
|
|
|
|
$LDFLAGS = ldflags unless ret
|
|
|
|
end
|
2005-02-06 17:51:44 +03:00
|
|
|
|
2015-04-10 16:29:23 +03:00
|
|
|
def try_ldflags(flags, opts = {})
|
|
|
|
try_link(MAIN_DOES_NOTHING, flags, {:werror => true}.update(opts))
|
2012-02-27 05:54:23 +04:00
|
|
|
end
|
|
|
|
|
2015-04-11 05:00:02 +03:00
|
|
|
def append_ldflags(flags, *opts)
|
|
|
|
Array(flags).each do |flag|
|
2015-04-11 05:01:57 +03:00
|
|
|
if checking_for("whether #{flag} is accepted as LDFLAGS") {
|
2015-04-11 05:00:02 +03:00
|
|
|
try_ldflags(flag, *opts)
|
|
|
|
}
|
|
|
|
$LDFLAGS << " " << flag
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-11-30 04:57:24 +04:00
|
|
|
def try_static_assert(expr, headers = nil, opt = "", &b)
|
|
|
|
headers = cpp_include(headers)
|
|
|
|
try_compile(<<SRC, opt, &b)
|
2011-05-19 04:07:25 +04:00
|
|
|
#{headers}
|
2003-08-26 15:03:53 +04:00
|
|
|
/*top*/
|
2005-02-06 17:51:44 +03:00
|
|
|
int conftest_const[(#{expr}) ? 1 : -1];
|
2003-07-24 11:41:36 +04:00
|
|
|
SRC
|
2011-11-30 04:57:24 +04:00
|
|
|
end
|
2003-07-24 11:41:36 +04:00
|
|
|
|
2011-11-30 04:57:24 +04:00
|
|
|
def try_constant(const, headers = nil, opt = "", &b)
|
|
|
|
includes = cpp_include(headers)
|
2013-01-23 11:18:06 +04:00
|
|
|
neg = try_static_assert("#{const} < 0", headers, opt)
|
2011-11-30 04:57:24 +04:00
|
|
|
if CROSS_COMPILING
|
2013-01-23 11:18:06 +04:00
|
|
|
if neg
|
2011-11-30 04:57:24 +04:00
|
|
|
const = "-(#{const})"
|
2013-01-23 11:18:06 +04:00
|
|
|
elsif try_static_assert("#{const} > 0", headers, opt)
|
|
|
|
# positive constant
|
2011-11-30 04:57:24 +04:00
|
|
|
elsif try_static_assert("#{const} == 0", headers, opt)
|
|
|
|
return 0
|
2003-07-24 11:41:36 +04:00
|
|
|
else
|
2011-11-30 04:57:24 +04:00
|
|
|
# not a constant
|
|
|
|
return nil
|
2011-11-29 01:54:33 +04:00
|
|
|
end
|
2011-11-30 04:57:24 +04:00
|
|
|
upper = 1
|
|
|
|
until try_static_assert("#{const} <= #{upper}", headers, opt)
|
|
|
|
lower = upper
|
|
|
|
upper <<= 1
|
|
|
|
end
|
|
|
|
return nil unless lower
|
|
|
|
while upper > lower + 1
|
|
|
|
mid = (upper + lower) / 2
|
|
|
|
if try_static_assert("#{const} > #{mid}", headers, opt)
|
|
|
|
lower = mid
|
|
|
|
else
|
|
|
|
upper = mid
|
|
|
|
end
|
|
|
|
end
|
|
|
|
upper = -upper if neg
|
|
|
|
return upper
|
|
|
|
else
|
|
|
|
src = %{#{includes}
|
2003-07-24 11:41:36 +04:00
|
|
|
#include <stdio.h>
|
2003-08-26 15:03:53 +04:00
|
|
|
/*top*/
|
2013-01-23 11:18:06 +04:00
|
|
|
typedef#{neg ? '' : ' unsigned'}
|
2013-01-23 11:18:01 +04:00
|
|
|
#ifdef PRI_LL_PREFIX
|
|
|
|
#define PRI_CONFTEST_PREFIX PRI_LL_PREFIX
|
|
|
|
LONG_LONG
|
|
|
|
#else
|
|
|
|
#define PRI_CONFTEST_PREFIX "l"
|
|
|
|
long
|
|
|
|
#endif
|
|
|
|
conftest_type;
|
|
|
|
conftest_type conftest_const = (conftest_type)(#{const});
|
2013-01-23 11:18:06 +04:00
|
|
|
int main() {printf("%"PRI_CONFTEST_PREFIX"#{neg ? 'd' : 'u'}\\n", conftest_const); return 0;}
|
2003-07-24 11:41:36 +04:00
|
|
|
}
|
2012-03-22 06:17:26 +04:00
|
|
|
begin
|
2012-09-21 04:35:09 +04:00
|
|
|
if try_link0(src, opt, &b)
|
2013-07-04 11:03:01 +04:00
|
|
|
xpopen("./#{CONFTEST}") do |f|
|
2012-09-21 04:35:09 +04:00
|
|
|
return Integer(f.gets)
|
|
|
|
end
|
|
|
|
end
|
2012-03-22 06:17:26 +04:00
|
|
|
ensure
|
2013-07-04 11:03:01 +04:00
|
|
|
MakeMakefile.rm_f "#{CONFTEST}*"
|
2003-07-24 11:41:36 +04:00
|
|
|
end
|
|
|
|
end
|
2011-11-30 04:57:24 +04:00
|
|
|
nil
|
2003-07-24 11:41:36 +04:00
|
|
|
end
|
|
|
|
|
2011-11-30 04:57:24 +04:00
|
|
|
# You should use +have_func+ rather than +try_func+.
|
|
|
|
#
|
|
|
|
# [+func+] a String which contains a symbol name
|
|
|
|
# [+libs+] a String which contains library names.
|
|
|
|
# [+headers+] a String or an Array of strings which contains names of header
|
|
|
|
# files.
|
|
|
|
def try_func(func, libs, headers = nil, opt = "", &b)
|
|
|
|
headers = cpp_include(headers)
|
|
|
|
case func
|
|
|
|
when /^&/
|
|
|
|
decltype = proc {|x|"const volatile void *#{x}"}
|
|
|
|
when /\)$/
|
|
|
|
call = func
|
|
|
|
else
|
|
|
|
call = "#{func}()"
|
|
|
|
decltype = proc {|x| "void ((*#{x})())"}
|
|
|
|
end
|
|
|
|
if opt and !opt.empty?
|
|
|
|
[[:to_str], [:join, " "], [:to_s]].each do |meth, *args|
|
|
|
|
if opt.respond_to?(meth)
|
|
|
|
break opt = opt.send(meth, *args)
|
|
|
|
end
|
2011-11-10 10:02:40 +04:00
|
|
|
end
|
2011-11-30 04:57:24 +04:00
|
|
|
opt = "#{opt} #{libs}"
|
|
|
|
else
|
|
|
|
opt = libs
|
2011-11-10 10:02:40 +04:00
|
|
|
end
|
2011-11-30 04:57:24 +04:00
|
|
|
decltype && try_link(<<"SRC", opt, &b) or
|
2011-05-19 04:07:25 +04:00
|
|
|
#{headers}
|
2003-08-26 15:03:53 +04:00
|
|
|
/*top*/
|
2011-11-25 03:02:44 +04:00
|
|
|
extern int t(void);
|
2013-04-11 05:11:27 +04:00
|
|
|
#{MAIN_DOES_NOTHING 't'}
|
2015-06-17 03:12:30 +03:00
|
|
|
int t(void) { #{decltype["volatile p"]}; p = (#{decltype[]})#{func}; return !p; }
|
* 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
|
|
|
SRC
|
2011-11-30 04:57:24 +04:00
|
|
|
call && try_link(<<"SRC", opt, &b)
|
2011-05-19 04:07:25 +04:00
|
|
|
#{headers}
|
2006-09-29 06:44:37 +04:00
|
|
|
/*top*/
|
2011-11-25 03:02:44 +04:00
|
|
|
extern int t(void);
|
2013-04-11 05:11:27 +04:00
|
|
|
#{MAIN_DOES_NOTHING 't'}
|
2015-06-17 03:46:30 +03:00
|
|
|
#{"extern void #{call};" if decltype}
|
2011-12-01 11:20:20 +04:00
|
|
|
int t(void) { #{call}; return 0; }
|
2006-09-29 06:44:37 +04:00
|
|
|
SRC
|
2011-11-30 04:57:24 +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
|
|
|
|
2011-11-30 04:57:24 +04:00
|
|
|
# You should use +have_var+ rather than +try_var+.
|
|
|
|
def try_var(var, headers = nil, opt = "", &b)
|
|
|
|
headers = cpp_include(headers)
|
|
|
|
try_compile(<<"SRC", opt, &b)
|
2011-05-19 04:07:25 +04:00
|
|
|
#{headers}
|
2005-02-06 17:51:44 +03:00
|
|
|
/*top*/
|
2011-11-25 03:02:44 +04:00
|
|
|
extern int t(void);
|
2013-04-11 05:11:27 +04:00
|
|
|
#{MAIN_DOES_NOTHING 't'}
|
2015-06-17 03:12:30 +03:00
|
|
|
int t(void) { const volatile void *volatile p; p = &(&#{var})[0]; return !p; }
|
2005-02-06 17:51:44 +03:00
|
|
|
SRC
|
2011-11-30 04:57:24 +04:00
|
|
|
end
|
2005-02-06 17:51:44 +03:00
|
|
|
|
2011-11-30 04:57:24 +04:00
|
|
|
# Returns whether or not the +src+ can be preprocessed with the C
|
|
|
|
# preprocessor and matches with +pat+.
|
|
|
|
#
|
|
|
|
# If a block given, it is called with the source before compilation. You can
|
|
|
|
# modify the source in the block.
|
|
|
|
#
|
|
|
|
# [+pat+] a Regexp or a String
|
|
|
|
# [+src+] a String which contains a C source
|
|
|
|
# [+opt+] a String which contains preprocessor options
|
|
|
|
#
|
|
|
|
# NOTE: When pat is a Regexp the matching will be checked in process,
|
|
|
|
# otherwise egrep(1) will be invoked to check it.
|
|
|
|
def egrep_cpp(pat, src, opt = "", &b)
|
|
|
|
src = create_tmpsrc(src, &b)
|
|
|
|
xpopen(cpp_command('', opt)) do |f|
|
|
|
|
if Regexp === pat
|
|
|
|
puts(" ruby -ne 'print if #{pat.inspect}'")
|
|
|
|
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
|
2002-09-06 15:23:14 +04:00
|
|
|
end
|
|
|
|
end
|
2011-11-30 04:57:24 +04:00
|
|
|
ensure
|
2013-07-04 11:03:01 +04:00
|
|
|
MakeMakefile.rm_f "#{CONFTEST}*"
|
2011-11-30 04:57:24 +04:00
|
|
|
log_src(src)
|
1999-08-13 09:45:20 +04:00
|
|
|
end
|
|
|
|
|
2011-11-30 04:57:24 +04:00
|
|
|
# This is used internally by the have_macro? method.
|
|
|
|
def macro_defined?(macro, src, opt = "", &b)
|
|
|
|
src = src.sub(/[^\n]\z/, "\\&\n")
|
|
|
|
try_compile(src + <<"SRC", opt, &b)
|
2003-08-26 15:03:53 +04:00
|
|
|
/*top*/
|
2002-09-08 14:00:43 +04:00
|
|
|
#ifndef #{macro}
|
|
|
|
# error
|
2012-12-05 06:37:41 +04:00
|
|
|
|:/ === #{macro} undefined === /:|
|
2002-09-08 14:00:43 +04:00
|
|
|
#endif
|
2002-09-15 16:57:21 +04:00
|
|
|
SRC
|
1999-08-13 09:45:20 +04:00
|
|
|
end
|
|
|
|
|
2011-11-30 04:57:24 +04:00
|
|
|
# Returns whether or not:
|
|
|
|
# * the +src+ can be compiled as a C source,
|
|
|
|
# * the result object can be linked with its depending libraries
|
|
|
|
# successfully,
|
|
|
|
# * the linked file can be invoked as an executable
|
|
|
|
# * and the executable exits successfully
|
|
|
|
#
|
|
|
|
# +opt+ is passed to the linker as options. Note that +$CFLAGS+ and
|
|
|
|
# +$LDFLAGS+ are also passed to the linker.
|
|
|
|
#
|
|
|
|
# If a block given, it is called with the source before compilation. You can
|
|
|
|
# modify the source in the block.
|
|
|
|
#
|
|
|
|
# [+src+] a String which contains a C source
|
|
|
|
# [+opt+] a String which contains linker options
|
|
|
|
#
|
|
|
|
# Returns true when the executable exits successfully, false when it fails,
|
|
|
|
# or nil when preprocessing, compilation or link fails.
|
|
|
|
def try_run(src, opt = "", &b)
|
2013-02-15 13:24:50 +04:00
|
|
|
raise "cannot run test program while cross compiling" if CROSS_COMPILING
|
2011-11-30 04:57:24 +04:00
|
|
|
if try_link0(src, opt, &b)
|
2013-07-04 11:03:01 +04:00
|
|
|
xsystem("./#{CONFTEST}")
|
2001-07-24 14:29:17 +04:00
|
|
|
else
|
2011-11-30 04:57:24 +04:00
|
|
|
nil
|
2011-11-29 12:42:13 +04:00
|
|
|
end
|
2011-11-30 04:57:24 +04:00
|
|
|
ensure
|
2013-07-04 11:03:01 +04:00
|
|
|
MakeMakefile.rm_f "#{CONFTEST}*"
|
2011-11-30 04:57:24 +04:00
|
|
|
end
|
|
|
|
|
|
|
|
def install_files(mfile, ifiles, map = nil, srcprefix = nil)
|
|
|
|
ifiles or return
|
|
|
|
ifiles.empty? and return
|
|
|
|
srcprefix ||= "$(srcdir)/#{srcprefix}".chomp('/')
|
|
|
|
RbConfig::expand(srcdir = srcprefix.dup)
|
|
|
|
dirs = []
|
|
|
|
path = Hash.new {|h, i| h[i] = dirs.push([i])[-1]}
|
|
|
|
ifiles.each do |files, dir, prefix|
|
|
|
|
dir = map_dir(dir, map)
|
|
|
|
prefix &&= %r|\A#{Regexp.quote(prefix)}/?|
|
|
|
|
if /\A\.\// =~ files
|
|
|
|
# install files which are in current working directory.
|
|
|
|
files = files[2..-1]
|
|
|
|
len = nil
|
|
|
|
else
|
|
|
|
# install files which are under the $(srcdir).
|
|
|
|
files = File.join(srcdir, files)
|
|
|
|
len = srcdir.size
|
|
|
|
end
|
|
|
|
f = nil
|
|
|
|
Dir.glob(files) do |fx|
|
|
|
|
f = fx
|
|
|
|
f[0..len] = "" if len
|
|
|
|
case File.basename(f)
|
|
|
|
when *$NONINSTALLFILES
|
|
|
|
next
|
|
|
|
end
|
|
|
|
d = File.dirname(f)
|
|
|
|
d.sub!(prefix, "") if prefix
|
|
|
|
d = (d.empty? || d == ".") ? dir : File.join(dir, d)
|
|
|
|
f = File.join(srcprefix, f) if len
|
|
|
|
path[d] << f
|
|
|
|
end
|
|
|
|
unless len or f
|
|
|
|
d = File.dirname(files)
|
|
|
|
d.sub!(prefix, "") if prefix
|
|
|
|
d = (d.empty? || d == ".") ? dir : File.join(dir, d)
|
|
|
|
path[d] << files
|
|
|
|
end
|
2003-07-18 12:34:45 +04:00
|
|
|
end
|
2011-11-30 04:57:24 +04:00
|
|
|
dirs
|
1999-08-13 09:45:20 +04:00
|
|
|
end
|
|
|
|
|
2011-11-30 04:57:24 +04:00
|
|
|
def install_rb(mfile, dest, srcdir = nil)
|
|
|
|
install_files(mfile, [["lib/**/*.rb", dest, "lib"]], nil, srcdir)
|
|
|
|
end
|
2002-04-01 19:01:56 +04:00
|
|
|
|
2011-11-30 04:57:24 +04:00
|
|
|
def append_library(libs, lib) # :no-doc:
|
|
|
|
format(LIBARG, lib) + " " + libs
|
|
|
|
end
|
1998-01-16 15:19:09 +03:00
|
|
|
|
2011-11-30 04:57:24 +04:00
|
|
|
def message(*s)
|
|
|
|
unless Logging.quiet and not $VERBOSE
|
|
|
|
printf(*s)
|
|
|
|
$stdout.flush
|
|
|
|
end
|
2002-09-04 20:52:53 +04:00
|
|
|
end
|
2002-09-03 12:40:47 +04:00
|
|
|
|
2011-11-30 04:57:24 +04:00
|
|
|
# This emits a string to stdout that allows users to see the results of the
|
|
|
|
# various have* and find* methods as they are tested.
|
|
|
|
#
|
|
|
|
# Internal use only.
|
|
|
|
#
|
|
|
|
def checking_for(m, fmt = nil)
|
|
|
|
f = caller[0][/in `([^<].*)'$/, 1] and f << ": " #` for vim #'
|
|
|
|
m = "checking #{/\Acheck/ =~ f ? '' : 'for '}#{m}... "
|
|
|
|
message "%s", m
|
|
|
|
a = r = nil
|
|
|
|
Logging::postpone do
|
|
|
|
r = yield
|
|
|
|
a = (fmt ? "#{fmt % r}" : r ? "yes" : "no") << "\n"
|
|
|
|
"#{f}#{m}-------------------- #{a}\n"
|
|
|
|
end
|
|
|
|
message(a)
|
|
|
|
Logging::message "--------------------\n\n"
|
|
|
|
r
|
|
|
|
end
|
1998-01-16 15:19:09 +03:00
|
|
|
|
2011-11-30 04:57:24 +04:00
|
|
|
def checking_message(target, place = nil, opt = nil)
|
|
|
|
[["in", place], ["with", opt]].inject("#{target}") do |msg, (pre, noun)|
|
|
|
|
if noun
|
|
|
|
[[:to_str], [:join, ","], [:to_s]].each do |meth, *args|
|
|
|
|
if noun.respond_to?(meth)
|
|
|
|
break noun = noun.send(meth, *args)
|
|
|
|
end
|
2006-09-16 11:22:49 +04:00
|
|
|
end
|
2011-11-30 04:57:24 +04:00
|
|
|
msg << " #{pre} #{noun}" unless noun.empty?
|
2006-09-16 11:22:49 +04:00
|
|
|
end
|
2011-11-30 04:57:24 +04:00
|
|
|
msg
|
2006-09-16 11:22:49 +04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-11-30 04:57:24 +04:00
|
|
|
# :startdoc:
|
2008-03-07 13:56:13 +03:00
|
|
|
|
2011-11-30 04:57:24 +04:00
|
|
|
# Returns whether or not +macro+ is defined either in the common header
|
|
|
|
# files or within any +headers+ you provide.
|
|
|
|
#
|
|
|
|
# Any options you pass to +opt+ are passed along to the compiler.
|
|
|
|
#
|
|
|
|
def have_macro(macro, headers = nil, opt = "", &b)
|
|
|
|
checking_for checking_message(macro, headers, opt) do
|
|
|
|
macro_defined?(macro, cpp_include(headers), opt, &b)
|
|
|
|
end
|
2005-02-06 17:51:44 +03:00
|
|
|
end
|
|
|
|
|
2011-11-30 04:57:24 +04:00
|
|
|
# Returns whether or not the given entry point +func+ can be found within
|
2012-06-09 03:21:50 +04:00
|
|
|
# +lib+. If +func+ is +nil+, the <code>main()</code> entry point is used by
|
2011-11-30 04:57:24 +04:00
|
|
|
# default. If found, it adds the library to list of libraries to be used
|
|
|
|
# when linking your extension.
|
|
|
|
#
|
|
|
|
# If +headers+ are provided, it will include those header files as the
|
|
|
|
# header files it looks in when searching for +func+.
|
|
|
|
#
|
|
|
|
# The real name of the library to be linked can be altered by
|
|
|
|
# <code>--with-FOOlib</code> configuration option.
|
|
|
|
#
|
|
|
|
def have_library(lib, func = nil, headers = nil, opt = "", &b)
|
|
|
|
func = "main" if !func or func.empty?
|
|
|
|
lib = with_config(lib+'lib', lib)
|
|
|
|
checking_for checking_message(func.funcall_style, LIBARG%lib, opt) do
|
|
|
|
if COMMON_LIBS.include?(lib)
|
2003-08-06 07:11:14 +04:00
|
|
|
true
|
|
|
|
else
|
2011-11-30 04:57:24 +04:00
|
|
|
libs = append_library($libs, lib)
|
|
|
|
if try_func(func, libs, headers, opt, &b)
|
|
|
|
$libs = libs
|
|
|
|
true
|
|
|
|
else
|
|
|
|
false
|
|
|
|
end
|
2003-08-06 07:11:14 +04:00
|
|
|
end
|
1998-01-16 15:19:09 +03:00
|
|
|
end
|
|
|
|
end
|
1999-08-13 09:45:20 +04:00
|
|
|
|
2011-11-30 04:57:24 +04:00
|
|
|
# Returns whether or not the entry point +func+ can be found within the
|
|
|
|
# library +lib+ in one of the +paths+ specified, where +paths+ is an array
|
2012-06-09 03:21:50 +04:00
|
|
|
# of strings. If +func+ is +nil+ , then the <code>main()</code> function is
|
2011-11-30 04:57:24 +04:00
|
|
|
# used as the entry point.
|
|
|
|
#
|
|
|
|
# If +lib+ is found, then the path it was found on is added to the list of
|
|
|
|
# library paths searched and linked against.
|
|
|
|
#
|
|
|
|
def find_library(lib, func, *paths, &b)
|
|
|
|
func = "main" if !func or func.empty?
|
|
|
|
lib = with_config(lib+'lib', lib)
|
|
|
|
paths = paths.collect {|path| path.split(File::PATH_SEPARATOR)}.flatten
|
2013-03-20 17:53:16 +04:00
|
|
|
checking_for checking_message(func.funcall_style, LIBARG%lib) do
|
2011-11-30 04:57:24 +04:00
|
|
|
libpath = $LIBPATH
|
|
|
|
libs = append_library($libs, lib)
|
|
|
|
begin
|
|
|
|
until r = try_func(func, libs, &b) or paths.empty?
|
|
|
|
$LIBPATH = libpath | [paths.shift]
|
|
|
|
end
|
|
|
|
if r
|
|
|
|
$libs = libs
|
|
|
|
libpath = nil
|
|
|
|
end
|
|
|
|
ensure
|
|
|
|
$LIBPATH = libpath if libpath
|
2011-11-29 12:42:13 +04:00
|
|
|
end
|
2011-11-30 04:57:24 +04:00
|
|
|
r
|
1999-08-13 09:45:20 +04:00
|
|
|
end
|
|
|
|
end
|
1998-01-16 15:19:09 +03:00
|
|
|
|
2011-11-30 04:57:24 +04:00
|
|
|
# Returns whether or not the function +func+ can be found in the common
|
|
|
|
# header files, or within any +headers+ that you provide. If found, a macro
|
|
|
|
# is passed as a preprocessor constant to the compiler using the function
|
|
|
|
# name, in uppercase, prepended with +HAVE_+.
|
|
|
|
#
|
2012-06-09 03:21:50 +04:00
|
|
|
# To check functions in an additional library, you need to check that
|
|
|
|
# library first using <code>have_library()</code>. The +func+ shall be
|
|
|
|
# either mere function name or function name with arguments.
|
|
|
|
#
|
|
|
|
# For example, if <code>have_func('foo')</code> returned +true+, then the
|
2011-11-30 04:57:24 +04:00
|
|
|
# +HAVE_FOO+ preprocessor macro would be passed to the compiler.
|
|
|
|
#
|
|
|
|
def have_func(func, headers = nil, opt = "", &b)
|
|
|
|
checking_for checking_message(func.funcall_style, headers, opt) do
|
|
|
|
if try_func(func, $libs, headers, opt, &b)
|
|
|
|
$defs << "-DHAVE_#{func.sans_arguments.tr_cpp}"
|
|
|
|
true
|
|
|
|
else
|
|
|
|
false
|
|
|
|
end
|
2000-06-22 12:29:58 +04:00
|
|
|
end
|
1998-01-16 15:19:09 +03:00
|
|
|
end
|
|
|
|
|
2011-11-30 04:57:24 +04:00
|
|
|
# Returns whether or not the variable +var+ can be found in the common
|
|
|
|
# header files, or within any +headers+ that you provide. If found, a macro
|
|
|
|
# is passed as a preprocessor constant to the compiler using the variable
|
|
|
|
# name, in uppercase, prepended with +HAVE_+.
|
|
|
|
#
|
2012-06-09 03:21:50 +04:00
|
|
|
# To check variables in an additional library, you need to check that
|
|
|
|
# library first using <code>have_library()</code>.
|
|
|
|
#
|
2011-11-30 04:57:24 +04:00
|
|
|
# For example, if <code>have_var('foo')</code> returned true, then the
|
|
|
|
# +HAVE_FOO+ preprocessor macro would be passed to the compiler.
|
|
|
|
#
|
|
|
|
def have_var(var, headers = nil, opt = "", &b)
|
|
|
|
checking_for checking_message(var, headers, opt) do
|
|
|
|
if try_var(var, headers, opt, &b)
|
|
|
|
$defs.push(format("-DHAVE_%s", var.tr_cpp))
|
|
|
|
true
|
|
|
|
else
|
|
|
|
false
|
|
|
|
end
|
2005-02-06 17:51:44 +03:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-11-30 04:57:24 +04:00
|
|
|
# Returns whether or not the given +header+ file can be found on your system.
|
|
|
|
# If found, a macro is passed as a preprocessor constant to the compiler
|
|
|
|
# using the header file name, in uppercase, prepended with +HAVE_+.
|
|
|
|
#
|
|
|
|
# For example, if <code>have_header('foo.h')</code> returned true, then the
|
|
|
|
# +HAVE_FOO_H+ preprocessor macro would be passed to the compiler.
|
|
|
|
#
|
|
|
|
def have_header(header, preheaders = nil, opt = "", &b)
|
|
|
|
checking_for header do
|
|
|
|
if try_header(cpp_include(preheaders)+cpp_include(header), opt, &b)
|
|
|
|
$defs.push(format("-DHAVE_%s", header.tr_cpp))
|
|
|
|
true
|
|
|
|
else
|
|
|
|
false
|
|
|
|
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
|
|
|
end
|
1998-01-16 15:19:09 +03:00
|
|
|
end
|
1999-08-13 09:45:20 +04:00
|
|
|
|
2011-11-30 04:57:24 +04:00
|
|
|
# Returns whether or not the given +framework+ can be found on your system.
|
|
|
|
# If found, a macro is passed as a preprocessor constant to the compiler
|
|
|
|
# using the framework name, in uppercase, prepended with +HAVE_FRAMEWORK_+.
|
|
|
|
#
|
|
|
|
# For example, if <code>have_framework('Ruby')</code> returned true, then
|
|
|
|
# the +HAVE_FRAMEWORK_RUBY+ preprocessor macro would be passed to the
|
|
|
|
# compiler.
|
|
|
|
#
|
2013-07-04 19:25:46 +04:00
|
|
|
# If +fw+ is a pair of the framework name and its header file name
|
|
|
|
# that header file is checked, instead of the normally used header
|
|
|
|
# file which is named same as the framework.
|
2013-07-04 19:29:50 +04:00
|
|
|
def have_framework(fw, &b)
|
|
|
|
if Array === fw
|
|
|
|
fw, header = *fw
|
|
|
|
else
|
|
|
|
header = "#{fw}.h"
|
|
|
|
end
|
2011-11-30 04:57:24 +04:00
|
|
|
checking_for fw do
|
2013-07-04 19:25:46 +04:00
|
|
|
src = cpp_include("#{fw}/#{header}") << "\n" "int main(void){return 0;}"
|
2012-09-11 04:44:30 +04:00
|
|
|
opt = " -framework #{fw}"
|
2014-07-30 20:17:55 +04:00
|
|
|
if try_link(src, opt, &b) or (objc = try_link(src, "-ObjC#{opt}", &b))
|
2011-11-30 04:57:24 +04:00
|
|
|
$defs.push(format("-DHAVE_FRAMEWORK_%s", fw.tr_cpp))
|
2012-09-21 04:35:09 +04:00
|
|
|
# TODO: non-worse way than this hack, to get rid of separating
|
|
|
|
# option and its argument.
|
2014-07-30 20:17:55 +04:00
|
|
|
$LDFLAGS << " -ObjC" if objc and /(\A|\s)-ObjC(\s|\z)/ !~ $LDFLAGS
|
2013-10-14 06:07:51 +04:00
|
|
|
$LIBS << opt
|
2011-11-30 04:57:24 +04:00
|
|
|
true
|
|
|
|
else
|
|
|
|
false
|
|
|
|
end
|
2010-07-27 13:59:29 +04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-11-30 04:57:24 +04:00
|
|
|
# Instructs mkmf to search for the given +header+ in any of the +paths+
|
|
|
|
# provided, and returns whether or not it was found in those paths.
|
|
|
|
#
|
|
|
|
# If the header is found then the path it was found on is added to the list
|
|
|
|
# of included directories that are sent to the compiler (via the
|
|
|
|
# <code>-I</code> switch).
|
|
|
|
#
|
|
|
|
def find_header(header, *paths)
|
|
|
|
message = checking_message(header, paths)
|
|
|
|
header = cpp_include(header)
|
|
|
|
checking_for message do
|
|
|
|
if try_header(header)
|
|
|
|
true
|
|
|
|
else
|
|
|
|
found = false
|
|
|
|
paths.each do |dir|
|
|
|
|
opt = "-I#{dir}".quote
|
|
|
|
if try_header(header, opt)
|
|
|
|
$INCFLAGS << " " << opt
|
|
|
|
found = true
|
|
|
|
break
|
|
|
|
end
|
2004-02-13 19:03:15 +03:00
|
|
|
end
|
2011-11-30 04:57:24 +04:00
|
|
|
found
|
2004-02-13 19:03:15 +03:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-11-30 04:57:24 +04:00
|
|
|
# Returns whether or not the struct of type +type+ contains +member+. If
|
|
|
|
# it does not, or the struct type can't be found, then false is returned.
|
|
|
|
# You may optionally specify additional +headers+ in which to look for the
|
|
|
|
# struct (in addition to the common header files).
|
|
|
|
#
|
|
|
|
# If found, a macro is passed as a preprocessor constant to the compiler
|
|
|
|
# using the type name and the member name, in uppercase, prepended with
|
|
|
|
# +HAVE_+.
|
|
|
|
#
|
|
|
|
# For example, if <code>have_struct_member('struct foo', 'bar')</code>
|
|
|
|
# returned true, then the +HAVE_STRUCT_FOO_BAR+ preprocessor macro would be
|
|
|
|
# passed to the compiler.
|
|
|
|
#
|
|
|
|
# +HAVE_ST_BAR+ is also defined for backward compatibility.
|
|
|
|
#
|
|
|
|
def have_struct_member(type, member, headers = nil, opt = "", &b)
|
|
|
|
checking_for checking_message("#{type}.#{member}", headers) do
|
|
|
|
if try_compile(<<"SRC", opt, &b)
|
2011-05-19 04:07:25 +04:00
|
|
|
#{cpp_include(headers)}
|
2003-08-26 15:03:53 +04:00
|
|
|
/*top*/
|
* 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
|
|
|
int s = (char *)&((#{type}*)0)->#{member} - (char *)0;
|
2013-04-11 05:11:27 +04:00
|
|
|
#{MAIN_DOES_NOTHING}
|
2002-09-08 14:00:43 +04:00
|
|
|
SRC
|
2011-11-30 04:57:24 +04:00
|
|
|
$defs.push(format("-DHAVE_%s_%s", type.tr_cpp, member.tr_cpp))
|
|
|
|
$defs.push(format("-DHAVE_ST_%s", member.tr_cpp)) # backward compatibility
|
|
|
|
true
|
|
|
|
else
|
|
|
|
false
|
|
|
|
end
|
2002-09-08 14:00:43 +04: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
|
|
|
|
2011-11-30 04:57:24 +04:00
|
|
|
# Returns whether or not the static type +type+ is defined.
|
|
|
|
#
|
|
|
|
# See also +have_type+
|
|
|
|
#
|
|
|
|
def try_type(type, headers = nil, opt = "", &b)
|
|
|
|
if try_compile(<<"SRC", opt, &b)
|
2011-05-19 04:07:25 +04:00
|
|
|
#{cpp_include(headers)}
|
2007-08-03 02:09:08 +04:00
|
|
|
/*top*/
|
2011-11-29 12:42:13 +04:00
|
|
|
typedef #{type} conftest_type;
|
|
|
|
int conftestval[sizeof(conftest_type)?1:-1];
|
|
|
|
SRC
|
2011-11-30 04:57:24 +04:00
|
|
|
$defs.push(format("-DHAVE_TYPE_%s", type.tr_cpp))
|
|
|
|
true
|
|
|
|
else
|
|
|
|
false
|
|
|
|
end
|
2007-08-03 02:09:08 +04:00
|
|
|
end
|
|
|
|
|
2011-11-30 04:57:24 +04:00
|
|
|
# Returns whether or not the static type +type+ is defined. You may
|
|
|
|
# optionally pass additional +headers+ to check against in addition to the
|
|
|
|
# common header files.
|
|
|
|
#
|
|
|
|
# You may also pass additional flags to +opt+ which are then passed along to
|
|
|
|
# the compiler.
|
|
|
|
#
|
|
|
|
# If found, a macro is passed as a preprocessor constant to the compiler
|
|
|
|
# using the type name, in uppercase, prepended with +HAVE_TYPE_+.
|
|
|
|
#
|
|
|
|
# For example, if <code>have_type('foo')</code> returned true, then the
|
|
|
|
# +HAVE_TYPE_FOO+ preprocessor macro would be passed to the compiler.
|
|
|
|
#
|
|
|
|
def have_type(type, headers = nil, opt = "", &b)
|
|
|
|
checking_for checking_message(type, headers, opt) do
|
|
|
|
try_type(type, headers, opt, &b)
|
|
|
|
end
|
2007-08-03 02:09:08 +04:00
|
|
|
end
|
|
|
|
|
2011-11-30 04:57:24 +04:00
|
|
|
# Returns where the static type +type+ is defined.
|
|
|
|
#
|
|
|
|
# You may also pass additional flags to +opt+ which are then passed along to
|
|
|
|
# the compiler.
|
|
|
|
#
|
|
|
|
# See also +have_type+.
|
|
|
|
#
|
|
|
|
def find_type(type, opt, *headers, &b)
|
|
|
|
opt ||= ""
|
|
|
|
fmt = "not found"
|
|
|
|
def fmt.%(x)
|
|
|
|
x ? x.respond_to?(:join) ? x.join(",") : x : self
|
|
|
|
end
|
|
|
|
checking_for checking_message(type, nil, opt), fmt do
|
|
|
|
headers.find do |h|
|
|
|
|
try_type(type, h, opt, &b)
|
|
|
|
end
|
2003-07-24 11:41:36 +04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-11-30 04:57:24 +04:00
|
|
|
# Returns whether or not the constant +const+ is defined.
|
|
|
|
#
|
|
|
|
# See also +have_const+
|
|
|
|
#
|
|
|
|
def try_const(const, headers = nil, opt = "", &b)
|
|
|
|
const, type = *const
|
|
|
|
if try_compile(<<"SRC", opt, &b)
|
2011-05-19 04:07:25 +04:00
|
|
|
#{cpp_include(headers)}
|
2007-08-30 08:13:16 +04:00
|
|
|
/*top*/
|
|
|
|
typedef #{type || 'int'} conftest_type;
|
|
|
|
conftest_type conftestval = #{type ? '' : '(int)'}#{const};
|
|
|
|
SRC
|
2011-11-30 04:57:24 +04:00
|
|
|
$defs.push(format("-DHAVE_CONST_%s", const.tr_cpp))
|
|
|
|
true
|
|
|
|
else
|
|
|
|
false
|
|
|
|
end
|
2007-08-30 08:13:16 +04:00
|
|
|
end
|
|
|
|
|
2011-11-30 04:57:24 +04:00
|
|
|
# Returns whether or not the constant +const+ is defined. You may
|
|
|
|
# optionally pass the +type+ of +const+ as <code>[const, type]</code>,
|
|
|
|
# such as:
|
|
|
|
#
|
|
|
|
# have_const(%w[PTHREAD_MUTEX_INITIALIZER pthread_mutex_t], "pthread.h")
|
|
|
|
#
|
|
|
|
# You may also pass additional +headers+ to check against in addition to the
|
|
|
|
# common header files, and additional flags to +opt+ which are then passed
|
|
|
|
# along to the compiler.
|
|
|
|
#
|
|
|
|
# If found, a macro is passed as a preprocessor constant to the compiler
|
|
|
|
# using the type name, in uppercase, prepended with +HAVE_CONST_+.
|
|
|
|
#
|
|
|
|
# For example, if <code>have_const('foo')</code> returned true, then the
|
|
|
|
# +HAVE_CONST_FOO+ preprocessor macro would be passed to the compiler.
|
|
|
|
#
|
|
|
|
def have_const(const, headers = nil, opt = "", &b)
|
|
|
|
checking_for checking_message([*const].compact.join(' '), headers, opt) do
|
|
|
|
try_const(const, headers, opt, &b)
|
|
|
|
end
|
2007-08-30 08:13:16 +04:00
|
|
|
end
|
2010-01-17 08:23:25 +03:00
|
|
|
|
2011-11-30 04:57:24 +04:00
|
|
|
# :stopdoc:
|
|
|
|
STRING_OR_FAILED_FORMAT = "%s"
|
2013-01-25 05:37:06 +04:00
|
|
|
def STRING_OR_FAILED_FORMAT.%(x) # :nodoc:
|
2011-11-30 04:57:24 +04:00
|
|
|
x ? super : "failed"
|
2003-07-24 11:41:36 +04:00
|
|
|
end
|
|
|
|
|
2011-11-30 04:57:24 +04:00
|
|
|
def typedef_expr(type, headers)
|
|
|
|
typename, member = type.split('.', 2)
|
|
|
|
prelude = cpp_include(headers).split(/$/)
|
|
|
|
prelude << "typedef #{typename} rbcv_typedef_;\n"
|
|
|
|
return "rbcv_typedef_", member, prelude
|
|
|
|
end
|
2011-11-29 12:42:13 +04:00
|
|
|
|
2011-11-30 04:57:24 +04:00
|
|
|
def try_signedness(type, member, headers = nil, opts = nil)
|
|
|
|
raise ArgumentError, "don't know how to tell signedness of members" if member
|
|
|
|
if try_static_assert("(#{type})-1 < 0", headers, opts)
|
|
|
|
return -1
|
|
|
|
elsif try_static_assert("(#{type})-1 > 0", headers, opts)
|
|
|
|
return +1
|
2011-11-29 01:54:33 +04:00
|
|
|
end
|
|
|
|
end
|
2010-01-17 08:23:25 +03:00
|
|
|
|
2011-11-30 04:57:24 +04:00
|
|
|
# :startdoc:
|
|
|
|
|
|
|
|
# Returns the size of the given +type+. You may optionally specify
|
|
|
|
# additional +headers+ to search in for the +type+.
|
|
|
|
#
|
|
|
|
# If found, a macro is passed as a preprocessor constant to the compiler
|
|
|
|
# using the type name, in uppercase, prepended with +SIZEOF_+, followed by
|
|
|
|
# the type name, followed by <code>=X</code> where "X" is the actual size.
|
|
|
|
#
|
|
|
|
# For example, if <code>check_sizeof('mystruct')</code> returned 12, then
|
|
|
|
# the <code>SIZEOF_MYSTRUCT=12</code> preprocessor macro would be passed to
|
|
|
|
# the compiler.
|
|
|
|
#
|
|
|
|
def check_sizeof(type, headers = nil, opts = "", &b)
|
|
|
|
typedef, member, prelude = typedef_expr(type, headers)
|
2015-06-29 06:43:21 +03:00
|
|
|
prelude << "#{typedef} *rbcv_ptr_;\n"
|
2011-11-30 04:57:24 +04:00
|
|
|
prelude = [prelude]
|
|
|
|
expr = "sizeof((*rbcv_ptr_)#{"." << member if member})"
|
|
|
|
fmt = STRING_OR_FAILED_FORMAT
|
|
|
|
checking_for checking_message("size of #{type}", headers), fmt do
|
|
|
|
if size = try_constant(expr, prelude, opts, &b)
|
|
|
|
$defs.push(format("-DSIZEOF_%s=%s", type.tr_cpp, size))
|
|
|
|
size
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2011-11-29 12:42:13 +04:00
|
|
|
|
2011-11-30 04:57:24 +04:00
|
|
|
# Returns the signedness of the given +type+. You may optionally specify
|
|
|
|
# additional +headers+ to search in for the +type+.
|
|
|
|
#
|
|
|
|
# If the +type+ is found and is a numeric type, a macro is passed as a
|
|
|
|
# preprocessor constant to the compiler using the +type+ name, in uppercase,
|
|
|
|
# prepended with +SIGNEDNESS_OF_+, followed by the +type+ name, followed by
|
|
|
|
# <code>=X</code> where "X" is positive integer if the +type+ is unsigned
|
|
|
|
# and a negative integer if the +type+ is signed.
|
|
|
|
#
|
|
|
|
# For example, if +size_t+ is defined as unsigned, then
|
|
|
|
# <code>check_signedness('size_t')</code> would return +1 and the
|
|
|
|
# <code>SIGNEDNESS_OF_SIZE_T=+1</code> preprocessor macro would be passed to
|
|
|
|
# the compiler. The <code>SIGNEDNESS_OF_INT=-1</code> macro would be set
|
|
|
|
# for <code>check_signedness('int')</code>
|
|
|
|
#
|
|
|
|
def check_signedness(type, headers = nil, opts = nil, &b)
|
|
|
|
typedef, member, prelude = typedef_expr(type, headers)
|
|
|
|
signed = nil
|
|
|
|
checking_for("signedness of #{type}", STRING_OR_FAILED_FORMAT) do
|
|
|
|
signed = try_signedness(typedef, member, [prelude], opts, &b) or next nil
|
|
|
|
$defs.push("-DSIGNEDNESS_OF_%s=%+d" % [type.tr_cpp, signed])
|
|
|
|
signed < 0 ? "signed" : "unsigned"
|
|
|
|
end
|
|
|
|
signed
|
|
|
|
end
|
|
|
|
|
|
|
|
# Returns the convertible integer type of the given +type+. You may
|
|
|
|
# optionally specify additional +headers+ to search in for the +type+.
|
|
|
|
# _convertible_ means actually the same type, or typedef'd from the same
|
|
|
|
# type.
|
|
|
|
#
|
|
|
|
# If the +type+ is a integer type and the _convertible_ type is found,
|
|
|
|
# the following macros are passed as preprocessor constants to the compiler
|
|
|
|
# using the +type+ name, in uppercase.
|
|
|
|
#
|
|
|
|
# * +TYPEOF_+, followed by the +type+ name, followed by <code>=X</code>
|
|
|
|
# where "X" is the found _convertible_ type name.
|
|
|
|
# * +TYP2NUM+ and +NUM2TYP+,
|
|
|
|
# where +TYP+ is the +type+ name in uppercase with replacing an +_t+
|
|
|
|
# suffix with "T", followed by <code>=X</code> where "X" is the macro name
|
|
|
|
# to convert +type+ to an Integer object, and vice versa.
|
|
|
|
#
|
|
|
|
# For example, if +foobar_t+ is defined as unsigned long, then
|
|
|
|
# <code>convertible_int("foobar_t")</code> would return "unsigned long", and
|
|
|
|
# define these macros:
|
|
|
|
#
|
|
|
|
# #define TYPEOF_FOOBAR_T unsigned long
|
|
|
|
# #define FOOBART2NUM ULONG2NUM
|
|
|
|
# #define NUM2FOOBART NUM2ULONG
|
|
|
|
#
|
|
|
|
def convertible_int(type, headers = nil, opts = nil, &b)
|
|
|
|
type, macname = *type
|
|
|
|
checking_for("convertible type of #{type}", STRING_OR_FAILED_FORMAT) do
|
|
|
|
if UNIVERSAL_INTS.include?(type)
|
|
|
|
type
|
2011-11-13 18:46:01 +04:00
|
|
|
else
|
2011-11-30 04:57:24 +04:00
|
|
|
typedef, member, prelude = typedef_expr(type, headers, &b)
|
|
|
|
if member
|
|
|
|
prelude << "static rbcv_typedef_ rbcv_var;"
|
|
|
|
compat = UNIVERSAL_INTS.find {|t|
|
|
|
|
try_static_assert("sizeof(rbcv_var.#{member}) == sizeof(#{t})", [prelude], opts, &b)
|
|
|
|
}
|
|
|
|
else
|
|
|
|
next unless signed = try_signedness(typedef, member, [prelude])
|
|
|
|
u = "unsigned " if signed > 0
|
|
|
|
prelude << "extern rbcv_typedef_ foo();"
|
|
|
|
compat = UNIVERSAL_INTS.find {|t|
|
|
|
|
try_compile([prelude, "extern #{u}#{t} foo();"].join("\n"), opts, :werror=>true, &b)
|
|
|
|
}
|
|
|
|
end
|
|
|
|
if compat
|
|
|
|
macname ||= type.sub(/_(?=t\z)/, '').tr_cpp
|
|
|
|
conv = (compat == "long long" ? "LL" : compat.upcase)
|
|
|
|
compat = "#{u}#{compat}"
|
|
|
|
typename = type.tr_cpp
|
|
|
|
$defs.push(format("-DSIZEOF_%s=SIZEOF_%s", typename, compat.tr_cpp))
|
|
|
|
$defs.push(format("-DTYPEOF_%s=%s", typename, compat.quote))
|
|
|
|
$defs.push(format("-DPRI_%s_PREFIX=PRI_%s_PREFIX", macname, conv))
|
|
|
|
conv = (u ? "U" : "") + conv
|
|
|
|
$defs.push(format("-D%s2NUM=%s2NUM", macname, conv))
|
|
|
|
$defs.push(format("-DNUM2%s=NUM2%s", macname, conv))
|
|
|
|
compat
|
|
|
|
end
|
2010-12-03 13:53:53 +03:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2011-11-30 04:57:24 +04:00
|
|
|
# :stopdoc:
|
2008-03-07 13:56:13 +03:00
|
|
|
|
2011-11-30 04:57:24 +04:00
|
|
|
# Used internally by the what_type? method to determine if +type+ is a scalar
|
|
|
|
# pointer.
|
|
|
|
def scalar_ptr_type?(type, member = nil, headers = nil, &b)
|
|
|
|
try_compile(<<"SRC", &b) # pointer
|
2011-05-19 04:07:25 +04:00
|
|
|
#{cpp_include(headers)}
|
2005-09-07 03:35:31 +04:00
|
|
|
/*top*/
|
|
|
|
volatile #{type} conftestval;
|
2011-11-25 03:02:44 +04:00
|
|
|
extern int t(void);
|
2013-04-11 05:11:27 +04:00
|
|
|
#{MAIN_DOES_NOTHING 't'}
|
2011-11-25 03:02:44 +04:00
|
|
|
int t(void) {return (int)(1-*(conftestval#{member ? ".#{member}" : ""}));}
|
2005-09-07 03:35:31 +04:00
|
|
|
SRC
|
2011-11-30 04:57:24 +04:00
|
|
|
end
|
2005-09-07 03:35:31 +04:00
|
|
|
|
2011-11-30 04:57:24 +04:00
|
|
|
# Used internally by the what_type? method to determine if +type+ is a scalar
|
|
|
|
# pointer.
|
|
|
|
def scalar_type?(type, member = nil, headers = nil, &b)
|
|
|
|
try_compile(<<"SRC", &b) # pointer
|
2011-05-19 04:07:25 +04:00
|
|
|
#{cpp_include(headers)}
|
2005-09-07 03:35:31 +04:00
|
|
|
/*top*/
|
|
|
|
volatile #{type} conftestval;
|
2011-11-25 03:02:44 +04:00
|
|
|
extern int t(void);
|
2013-04-11 05:11:27 +04:00
|
|
|
#{MAIN_DOES_NOTHING 't'}
|
2011-11-25 03:02:44 +04:00
|
|
|
int t(void) {return (int)(1-(conftestval#{member ? ".#{member}" : ""}));}
|
2005-09-07 03:35:31 +04:00
|
|
|
SRC
|
2011-11-30 04:57:24 +04:00
|
|
|
end
|
2005-09-07 03:35:31 +04:00
|
|
|
|
2011-11-30 04:57:24 +04:00
|
|
|
# Used internally by the what_type? method to check if the _typeof_ GCC
|
|
|
|
# extension is available.
|
|
|
|
def have_typeof?
|
|
|
|
return $typeof if defined?($typeof)
|
|
|
|
$typeof = %w[__typeof__ typeof].find do |t|
|
|
|
|
try_compile(<<SRC)
|
2009-04-08 09:00:07 +04:00
|
|
|
int rbcv_foo;
|
2011-05-19 04:07:25 +04:00
|
|
|
#{t}(rbcv_foo) rbcv_bar;
|
2009-04-08 09:00:07 +04:00
|
|
|
SRC
|
2011-11-30 04:57:24 +04:00
|
|
|
end
|
2009-04-08 09:00:07 +04:00
|
|
|
end
|
|
|
|
|
2011-11-30 04:57:24 +04:00
|
|
|
def what_type?(type, member = nil, headers = nil, &b)
|
|
|
|
m = "#{type}"
|
|
|
|
var = val = "*rbcv_var_"
|
|
|
|
func = "rbcv_func_(void)"
|
|
|
|
if member
|
|
|
|
m << "." << member
|
2009-03-27 06:56:46 +03:00
|
|
|
else
|
2011-11-30 04:57:24 +04:00
|
|
|
type, member = type.split('.', 2)
|
|
|
|
end
|
|
|
|
if member
|
|
|
|
val = "(#{var}).#{member}"
|
2009-04-08 09:00:07 +04:00
|
|
|
end
|
2011-11-30 04:57:24 +04:00
|
|
|
prelude = [cpp_include(headers).split(/^/)]
|
|
|
|
prelude << ["typedef #{type} rbcv_typedef_;\n",
|
|
|
|
"extern rbcv_typedef_ *#{func};\n",
|
2015-06-29 06:43:21 +03:00
|
|
|
"rbcv_typedef_ #{var};\n",
|
2011-11-30 04:57:24 +04:00
|
|
|
]
|
|
|
|
type = "rbcv_typedef_"
|
|
|
|
fmt = member && !(typeof = have_typeof?) ? "seems %s" : "%s"
|
|
|
|
if typeof
|
|
|
|
var = "*rbcv_member_"
|
|
|
|
func = "rbcv_mem_func_(void)"
|
|
|
|
member = nil
|
|
|
|
type = "rbcv_mem_typedef_"
|
|
|
|
prelude[-1] << "typedef #{typeof}(#{val}) #{type};\n"
|
|
|
|
prelude[-1] << "extern #{type} *#{func};\n"
|
2015-06-29 06:43:21 +03:00
|
|
|
prelude[-1] << "#{type} #{var};\n"
|
2011-11-30 04:57:24 +04:00
|
|
|
val = var
|
|
|
|
end
|
|
|
|
def fmt.%(x)
|
|
|
|
x ? super : "unknown"
|
|
|
|
end
|
|
|
|
checking_for checking_message(m, headers), fmt do
|
|
|
|
if scalar_ptr_type?(type, member, prelude, &b)
|
|
|
|
if try_static_assert("sizeof(*#{var}) == 1", prelude)
|
|
|
|
return "string"
|
|
|
|
end
|
|
|
|
ptr = "*"
|
|
|
|
elsif scalar_type?(type, member, prelude, &b)
|
|
|
|
unless member and !typeof or try_static_assert("(#{type})-1 < 0", prelude)
|
|
|
|
unsigned = "unsigned"
|
|
|
|
end
|
|
|
|
ptr = ""
|
|
|
|
else
|
|
|
|
next
|
|
|
|
end
|
|
|
|
type = UNIVERSAL_INTS.find do |t|
|
|
|
|
pre = prelude
|
|
|
|
unless member
|
2015-06-29 06:43:21 +03:00
|
|
|
pre += [["#{unsigned} #{t} #{ptr}#{var};\n",
|
2011-11-30 04:57:24 +04:00
|
|
|
"extern #{unsigned} #{t} #{ptr}*#{func};\n"]]
|
|
|
|
end
|
|
|
|
try_static_assert("sizeof(#{ptr}#{val}) == sizeof(#{unsigned} #{t})", pre)
|
2009-04-08 09:00:07 +04:00
|
|
|
end
|
2011-11-30 04:57:24 +04:00
|
|
|
type or next
|
|
|
|
[unsigned, type, ptr].join(" ").strip
|
2005-09-07 03:35:31 +04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-11-30 04:57:24 +04:00
|
|
|
# This method is used internally by the find_executable method.
|
|
|
|
#
|
|
|
|
# Internal use only.
|
|
|
|
#
|
|
|
|
def find_executable0(bin, path = nil)
|
|
|
|
executable_file = proc do |name|
|
|
|
|
begin
|
|
|
|
stat = File.stat(name)
|
|
|
|
rescue SystemCallError
|
|
|
|
else
|
|
|
|
next name if stat.file? and stat.executable?
|
|
|
|
end
|
2011-03-11 12:42:46 +03:00
|
|
|
end
|
|
|
|
|
2011-11-30 04:57:24 +04:00
|
|
|
exts = config_string('EXECUTABLE_EXTS') {|s| s.split} || config_string('EXEEXT') {|s| [s]}
|
|
|
|
if File.expand_path(bin) == bin
|
|
|
|
return bin if executable_file.call(bin)
|
|
|
|
if exts
|
|
|
|
exts.each {|ext| executable_file.call(file = bin + ext) and return file}
|
|
|
|
end
|
|
|
|
return nil
|
2011-11-29 01:54:33 +04:00
|
|
|
end
|
2011-11-30 04:57:24 +04:00
|
|
|
if path ||= ENV['PATH']
|
|
|
|
path = path.split(File::PATH_SEPARATOR)
|
|
|
|
else
|
|
|
|
path = %w[/usr/local/bin /usr/ucb /usr/bin /bin]
|
|
|
|
end
|
|
|
|
file = nil
|
|
|
|
path.each do |dir|
|
|
|
|
return file if executable_file.call(file = File.join(dir, bin))
|
|
|
|
if exts
|
|
|
|
exts.each {|ext| executable_file.call(ext = file + ext) and return ext}
|
|
|
|
end
|
2009-11-30 10:54:26 +03:00
|
|
|
end
|
2011-11-30 04:57:24 +04:00
|
|
|
nil
|
2002-09-08 14:00:43 +04:00
|
|
|
end
|
2011-11-29 12:42:13 +04:00
|
|
|
|
2011-11-30 04:57:24 +04:00
|
|
|
# :startdoc:
|
|
|
|
|
|
|
|
# Searches for the executable +bin+ on +path+. The default path is your
|
|
|
|
# +PATH+ environment variable. If that isn't defined, it will resort to
|
|
|
|
# searching /usr/local/bin, /usr/ucb, /usr/bin and /bin.
|
|
|
|
#
|
|
|
|
# If found, it will return the full path, including the executable name, of
|
|
|
|
# where it was found.
|
|
|
|
#
|
|
|
|
# Note that this method does not actually affect the generated Makefile.
|
|
|
|
#
|
|
|
|
def find_executable(bin, path = nil)
|
|
|
|
checking_for checking_message(bin, path) do
|
|
|
|
find_executable0(bin, path)
|
|
|
|
end
|
2002-08-21 12:30:09 +04:00
|
|
|
end
|
|
|
|
|
2011-11-30 04:57:24 +04:00
|
|
|
# :stopdoc:
|
2008-03-07 13:56:13 +03:00
|
|
|
|
2011-11-30 04:57:24 +04:00
|
|
|
def arg_config(config, default=nil, &block)
|
|
|
|
$arg_config << [config, default]
|
|
|
|
defaults = []
|
|
|
|
if default
|
|
|
|
defaults << default
|
|
|
|
elsif !block
|
|
|
|
defaults << nil
|
|
|
|
end
|
|
|
|
$configure_args.fetch(config.tr('_', '-'), *defaults, &block)
|
|
|
|
end
|
|
|
|
|
|
|
|
# :startdoc:
|
|
|
|
|
|
|
|
# Tests for the presence of a <tt>--with-</tt>_config_ or
|
2012-06-09 03:21:50 +04:00
|
|
|
# <tt>--without-</tt>_config_ option. Returns +true+ if the with option is
|
|
|
|
# given, +false+ if the without option is given, and the default value
|
2011-11-30 04:57:24 +04:00
|
|
|
# otherwise.
|
|
|
|
#
|
|
|
|
# This can be useful for adding custom definitions, such as debug
|
|
|
|
# information.
|
|
|
|
#
|
|
|
|
# Example:
|
|
|
|
#
|
|
|
|
# if with_config("debug")
|
|
|
|
# $defs.push("-DOSSL_DEBUG") unless $defs.include? "-DOSSL_DEBUG"
|
|
|
|
# end
|
|
|
|
#
|
|
|
|
def with_config(config, default=nil)
|
|
|
|
config = config.sub(/^--with[-_]/, '')
|
|
|
|
val = arg_config("--with-"+config) do
|
|
|
|
if arg_config("--without-"+config)
|
|
|
|
false
|
|
|
|
elsif block_given?
|
|
|
|
yield(config, default)
|
|
|
|
else
|
|
|
|
break default
|
|
|
|
end
|
|
|
|
end
|
|
|
|
case val
|
|
|
|
when "yes"
|
|
|
|
true
|
|
|
|
when "no"
|
|
|
|
false
|
|
|
|
else
|
|
|
|
val
|
|
|
|
end
|
* sprintf.c (rb_str_format): allow %c to print one character
string (e.g. ?x).
* lib/tempfile.rb (Tempfile::make_tmpname): put dot between
basename and pid. [ruby-talk:196272]
* parse.y (do_block): remove -> style block.
* parse.y (parser_yylex): remove tLAMBDA_ARG.
* eval.c (rb_call0): binding for the return event hook should have
consistent scope. [ruby-core:07928]
* eval.c (proc_invoke): return behavior should depend whether it
is surrounded by a lambda or a mere block.
* eval.c (formal_assign): handles post splat arguments.
* eval.c (rb_call0): ditto.
* st.c (strhash): use FNV-1a hash.
* parse.y (parser_yylex): removed experimental ';;' terminator.
* eval.c (rb_node_arity): should be aware of post splat arguments.
* eval.c (rb_proc_arity): ditto.
* parse.y (f_args): syntax rule enhanced to support arguments
after the splat.
* parse.y (block_param): ditto for block parameters.
* parse.y (f_post_arg): mandatory formal arguments after the splat
argument.
* parse.y (new_args_gen): generate nodes for mandatory formal
arguments after the splat argument.
* eval.c (rb_eval): dispatch mandatory formal arguments after the
splat argument.
* parse.y (args): allow more than one splat in the argument list.
* parse.y (method_call): allow aref [] to accept all kind of
method argument, including assocs, splat, and block argument.
* eval.c (SETUP_ARGS0): prepare block argument as well.
* lib/mathn.rb (Integer): remove Integer#gcd2. [ruby-core:07931]
* eval.c (error_line): print receivers true/false/nil specially.
* eval.c (rb_proc_yield): handles parameters in yield semantics.
* eval.c (nil_yield): gives LocalJumpError to denote no block
error.
* io.c (rb_io_getc): now takes one-character string.
* string.c (rb_str_hash): use FNV-1a hash from Fowler/Noll/Vo
hashing algorithm.
* string.c (rb_str_aref): str[0] now returns 1 character string,
instead of a fixnum. [Ruby2]
* parse.y (parser_yylex): ?c now returns 1 character string,
instead of a fixnum. [Ruby2]
* string.c (rb_str_aset): no longer support fixnum insertion.
* eval.c (umethod_bind): should not update original class.
[ruby-dev:28636]
* eval.c (ev_const_get): should support constant access from
within instance_eval(). [ruby-dev:28327]
* time.c (time_timeval): should round for usec floating
number. [ruby-core:07896]
* time.c (time_add): ditto.
* dir.c (sys_warning): should not call a vararg function
rb_sys_warning() indirectly. [ruby-core:07886]
* numeric.c (flo_divmod): the first element of Float#divmod should
be an integer. [ruby-dev:28589]
* test/ruby/test_float.rb: add tests for divmod, div, modulo and remainder.
* re.c (rb_reg_initialize): should not allow modifying literal
regexps. frozen check moved from rb_reg_initialize_m as well.
* re.c (rb_reg_initialize): should not modify untainted objects in
safe levels higher than 3.
* re.c (rb_memcmp): type change from char* to const void*.
* dir.c (dir_close): should not close untainted dir stream.
* dir.c (GetDIR): add tainted/frozen check for each dir operation.
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_symbol_arg):
typo fixed. a patch from Florian Gross <florg at florg.net>.
* eval.c (EXEC_EVENT_HOOK): trace_func may remove itself from
event_hooks. no guarantee for arbitrary hook deletion.
[ruby-dev:28632]
* util.c (ruby_strtod): differ addition to minimize error.
[ruby-dev:28619]
* util.c (ruby_strtod): should not raise ERANGE when the input
string does not have any digits. [ruby-dev:28629]
* eval.c (proc_invoke): should restore old ruby_frame->block.
thanks to ts <decoux at moulon.inra.fr>. [ruby-core:07833]
also fix [ruby-dev:28614] as well.
* signal.c (trap): sig should be less then NSIG. Coverity found
this bug. a patch from Kevin Tew <tewk at tewk.com>.
[ruby-core:07823]
* math.c (math_log2): add new method inspired by
[ruby-talk:191237].
* math.c (math_log): add optional base argument to Math::log().
[ruby-talk:191308]
* ext/syck/emitter.c (syck_scan_scalar): avoid accessing
uninitialized array element. a patch from Pat Eyler
<rubypate at gmail.com>. [ruby-core:07809]
* array.c (rb_ary_fill): initialize local variables first. a
patch from Pat Eyler <rubypate at gmail.com>. [ruby-core:07810]
* ext/syck/yaml2byte.c (syck_yaml2byte_handler): need to free
type_tag. a patch from Pat Eyler <rubypate at gmail.com>.
[ruby-core:07808]
* ext/socket/socket.c (make_hostent_internal): accept ai_family
check from Sam Roberts <sroberts at uniserve.com>.
[ruby-core:07691]
* util.c (ruby_strtod): should not cut off 18 digits for no
reason. [ruby-core:07796]
* array.c (rb_ary_fill): internalize local variable "beg" to
pacify Coverity. [ruby-core:07770]
* pack.c (pack_unpack): now supports CRLF newlines. a patch from
<tommy at tmtm.org>. [ruby-dev:28601]
* applied code clean-up patch from Stefan Huehner
<stefan at huehner.org>. [ruby-core:07764]
* lib/jcode.rb (String::tr_s): should have translated non
squeezing character sequence (i.e. a character) as well. thanks
to Hiroshi Ichikawa <gimite at gimite.ddo.jp> [ruby-list:42090]
* ext/socket/socket.c: document update patch from Sam Roberts
<sroberts at uniserve.com>. [ruby-core:07701]
* lib/mathn.rb (Integer): need not to remove gcd2. a patch from
NARUSE, Yui <naruse at airemix.com>. [ruby-dev:28570]
* parse.y (arg): too much NEW_LIST()
* eval.c (SETUP_ARGS0): remove unnecessary access to nd_alen.
* eval.c (rb_eval): use ARGSCAT for NODE_OP_ASGN1.
[ruby-dev:28585]
* parse.y (arg): use NODE_ARGSCAT for placeholder.
* lib/getoptlong.rb (GetoptLong::get): RDoc update patch from
mathew <meta at pobox.com>. [ruby-core:07738]
* variable.c (rb_const_set): raise error when no target klass is
supplied. [ruby-dev:28582]
* prec.c (prec_prec_f): documentation patch from
<gerardo.santana at gmail.com>. [ruby-core:07689]
* bignum.c (rb_big_pow): second operand may be too big even if
it's a Fixnum. [ruby-talk:187984]
* README.EXT: update symbol description. [ruby-talk:188104]
* COPYING: explicitly note GPLv2. [ruby-talk:187922]
* parse.y: remove some obsolete syntax rules (unparenthesized
method calls in argument list).
* eval.c (rb_call0): insecure calling should be checked for non
NODE_SCOPE method invocations too.
* eval.c (rb_alias): should preserve the current safe level as
well as method definition.
* process.c (rb_f_sleep): remove RDoc description about SIGALRM
which is not valid on the current implementation. [ruby-dev:28464]
Thu Mar 23 21:40:47 2006 K.Kosako <sndgk393 AT ybb.ne.jp>
* eval.c (method_missing): should support argument splat in
super. a bug in combination of super, splat and
method_missing. [ruby-talk:185438]
* configure.in: Solaris SunPro compiler -rapth patch from
<kuwa at labs.fujitsu.com>. [ruby-dev:28443]
* configure.in: remove enable_rpath=no for Solaris.
[ruby-dev:28440]
* ext/win32ole/win32ole.c (ole_val2olevariantdata): change behavior
of converting OLE Variant object with VT_ARRAY|VT_UI1 and Ruby
String object.
* ruby.1: a clarification patch from David Lutterkort
<dlutter at redhat.com>. [ruby-core:7508]
* lib/rdoc/ri/ri_paths.rb (RI::Paths): adding paths from rubygems
directories. a patch from Eric Hodel <drbrain at segment7.net>.
[ruby-core:07423]
* eval.c (rb_clear_cache_by_class): clearing wrong cache.
* ext/extmk.rb: use :remove_destination to install extension libraries
to avoid SEGV. [ruby-dev:28417]
* eval.c (rb_thread_fd_writable): should not re-schedule output
from KILLED thread (must be error printing).
* array.c (rb_ary_flatten_bang): allow specifying recursion
level. [ruby-talk:182170]
* array.c (rb_ary_flatten): ditto.
* gc.c (add_heap): a heap_slots may overflow. a patch from Stefan
Weil <weil at mail.berlios.de>.
* eval.c (rb_call): use separate cache for fcall/vcall
invocation.
* eval.c (rb_eval): NODE_FCALL, NODE_VCALL can call local
functions.
* eval.c (rb_mod_local): a new method to specify newly added
visibility "local".
* eval.c (search_method): search for local methods which are
visible only from the current class.
* class.c (rb_class_local_methods): a method to list local methods.
* object.c (Init_Object): add BasicObject class as a top level
BlankSlate class.
* ruby.h (SYM2ID): should not cast to signed long.
[ruby-core:07414]
* class.c (rb_include_module): allow module duplication.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-06-10 01:20:17 +04:00
|
|
|
end
|
2008-03-07 13:56:13 +03:00
|
|
|
|
2011-11-30 04:57:24 +04:00
|
|
|
# Tests for the presence of an <tt>--enable-</tt>_config_ or
|
2012-06-09 03:21:50 +04:00
|
|
|
# <tt>--disable-</tt>_config_ option. Returns +true+ if the enable option is
|
|
|
|
# given, +false+ if the disable option is given, and the default value
|
2011-11-30 04:57:24 +04:00
|
|
|
# otherwise.
|
|
|
|
#
|
|
|
|
# This can be useful for adding custom definitions, such as debug
|
|
|
|
# information.
|
|
|
|
#
|
|
|
|
# Example:
|
|
|
|
#
|
|
|
|
# if enable_config("debug")
|
|
|
|
# $defs.push("-DOSSL_DEBUG") unless $defs.include? "-DOSSL_DEBUG"
|
|
|
|
# end
|
|
|
|
#
|
|
|
|
def enable_config(config, default=nil)
|
|
|
|
if arg_config("--enable-"+config)
|
|
|
|
true
|
|
|
|
elsif arg_config("--disable-"+config)
|
2005-10-22 18:55:07 +04:00
|
|
|
false
|
|
|
|
elsif block_given?
|
* sprintf.c (rb_str_format): allow %c to print one character
string (e.g. ?x).
* lib/tempfile.rb (Tempfile::make_tmpname): put dot between
basename and pid. [ruby-talk:196272]
* parse.y (do_block): remove -> style block.
* parse.y (parser_yylex): remove tLAMBDA_ARG.
* eval.c (rb_call0): binding for the return event hook should have
consistent scope. [ruby-core:07928]
* eval.c (proc_invoke): return behavior should depend whether it
is surrounded by a lambda or a mere block.
* eval.c (formal_assign): handles post splat arguments.
* eval.c (rb_call0): ditto.
* st.c (strhash): use FNV-1a hash.
* parse.y (parser_yylex): removed experimental ';;' terminator.
* eval.c (rb_node_arity): should be aware of post splat arguments.
* eval.c (rb_proc_arity): ditto.
* parse.y (f_args): syntax rule enhanced to support arguments
after the splat.
* parse.y (block_param): ditto for block parameters.
* parse.y (f_post_arg): mandatory formal arguments after the splat
argument.
* parse.y (new_args_gen): generate nodes for mandatory formal
arguments after the splat argument.
* eval.c (rb_eval): dispatch mandatory formal arguments after the
splat argument.
* parse.y (args): allow more than one splat in the argument list.
* parse.y (method_call): allow aref [] to accept all kind of
method argument, including assocs, splat, and block argument.
* eval.c (SETUP_ARGS0): prepare block argument as well.
* lib/mathn.rb (Integer): remove Integer#gcd2. [ruby-core:07931]
* eval.c (error_line): print receivers true/false/nil specially.
* eval.c (rb_proc_yield): handles parameters in yield semantics.
* eval.c (nil_yield): gives LocalJumpError to denote no block
error.
* io.c (rb_io_getc): now takes one-character string.
* string.c (rb_str_hash): use FNV-1a hash from Fowler/Noll/Vo
hashing algorithm.
* string.c (rb_str_aref): str[0] now returns 1 character string,
instead of a fixnum. [Ruby2]
* parse.y (parser_yylex): ?c now returns 1 character string,
instead of a fixnum. [Ruby2]
* string.c (rb_str_aset): no longer support fixnum insertion.
* eval.c (umethod_bind): should not update original class.
[ruby-dev:28636]
* eval.c (ev_const_get): should support constant access from
within instance_eval(). [ruby-dev:28327]
* time.c (time_timeval): should round for usec floating
number. [ruby-core:07896]
* time.c (time_add): ditto.
* dir.c (sys_warning): should not call a vararg function
rb_sys_warning() indirectly. [ruby-core:07886]
* numeric.c (flo_divmod): the first element of Float#divmod should
be an integer. [ruby-dev:28589]
* test/ruby/test_float.rb: add tests for divmod, div, modulo and remainder.
* re.c (rb_reg_initialize): should not allow modifying literal
regexps. frozen check moved from rb_reg_initialize_m as well.
* re.c (rb_reg_initialize): should not modify untainted objects in
safe levels higher than 3.
* re.c (rb_memcmp): type change from char* to const void*.
* dir.c (dir_close): should not close untainted dir stream.
* dir.c (GetDIR): add tainted/frozen check for each dir operation.
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_symbol_arg):
typo fixed. a patch from Florian Gross <florg at florg.net>.
* eval.c (EXEC_EVENT_HOOK): trace_func may remove itself from
event_hooks. no guarantee for arbitrary hook deletion.
[ruby-dev:28632]
* util.c (ruby_strtod): differ addition to minimize error.
[ruby-dev:28619]
* util.c (ruby_strtod): should not raise ERANGE when the input
string does not have any digits. [ruby-dev:28629]
* eval.c (proc_invoke): should restore old ruby_frame->block.
thanks to ts <decoux at moulon.inra.fr>. [ruby-core:07833]
also fix [ruby-dev:28614] as well.
* signal.c (trap): sig should be less then NSIG. Coverity found
this bug. a patch from Kevin Tew <tewk at tewk.com>.
[ruby-core:07823]
* math.c (math_log2): add new method inspired by
[ruby-talk:191237].
* math.c (math_log): add optional base argument to Math::log().
[ruby-talk:191308]
* ext/syck/emitter.c (syck_scan_scalar): avoid accessing
uninitialized array element. a patch from Pat Eyler
<rubypate at gmail.com>. [ruby-core:07809]
* array.c (rb_ary_fill): initialize local variables first. a
patch from Pat Eyler <rubypate at gmail.com>. [ruby-core:07810]
* ext/syck/yaml2byte.c (syck_yaml2byte_handler): need to free
type_tag. a patch from Pat Eyler <rubypate at gmail.com>.
[ruby-core:07808]
* ext/socket/socket.c (make_hostent_internal): accept ai_family
check from Sam Roberts <sroberts at uniserve.com>.
[ruby-core:07691]
* util.c (ruby_strtod): should not cut off 18 digits for no
reason. [ruby-core:07796]
* array.c (rb_ary_fill): internalize local variable "beg" to
pacify Coverity. [ruby-core:07770]
* pack.c (pack_unpack): now supports CRLF newlines. a patch from
<tommy at tmtm.org>. [ruby-dev:28601]
* applied code clean-up patch from Stefan Huehner
<stefan at huehner.org>. [ruby-core:07764]
* lib/jcode.rb (String::tr_s): should have translated non
squeezing character sequence (i.e. a character) as well. thanks
to Hiroshi Ichikawa <gimite at gimite.ddo.jp> [ruby-list:42090]
* ext/socket/socket.c: document update patch from Sam Roberts
<sroberts at uniserve.com>. [ruby-core:07701]
* lib/mathn.rb (Integer): need not to remove gcd2. a patch from
NARUSE, Yui <naruse at airemix.com>. [ruby-dev:28570]
* parse.y (arg): too much NEW_LIST()
* eval.c (SETUP_ARGS0): remove unnecessary access to nd_alen.
* eval.c (rb_eval): use ARGSCAT for NODE_OP_ASGN1.
[ruby-dev:28585]
* parse.y (arg): use NODE_ARGSCAT for placeholder.
* lib/getoptlong.rb (GetoptLong::get): RDoc update patch from
mathew <meta at pobox.com>. [ruby-core:07738]
* variable.c (rb_const_set): raise error when no target klass is
supplied. [ruby-dev:28582]
* prec.c (prec_prec_f): documentation patch from
<gerardo.santana at gmail.com>. [ruby-core:07689]
* bignum.c (rb_big_pow): second operand may be too big even if
it's a Fixnum. [ruby-talk:187984]
* README.EXT: update symbol description. [ruby-talk:188104]
* COPYING: explicitly note GPLv2. [ruby-talk:187922]
* parse.y: remove some obsolete syntax rules (unparenthesized
method calls in argument list).
* eval.c (rb_call0): insecure calling should be checked for non
NODE_SCOPE method invocations too.
* eval.c (rb_alias): should preserve the current safe level as
well as method definition.
* process.c (rb_f_sleep): remove RDoc description about SIGALRM
which is not valid on the current implementation. [ruby-dev:28464]
Thu Mar 23 21:40:47 2006 K.Kosako <sndgk393 AT ybb.ne.jp>
* eval.c (method_missing): should support argument splat in
super. a bug in combination of super, splat and
method_missing. [ruby-talk:185438]
* configure.in: Solaris SunPro compiler -rapth patch from
<kuwa at labs.fujitsu.com>. [ruby-dev:28443]
* configure.in: remove enable_rpath=no for Solaris.
[ruby-dev:28440]
* ext/win32ole/win32ole.c (ole_val2olevariantdata): change behavior
of converting OLE Variant object with VT_ARRAY|VT_UI1 and Ruby
String object.
* ruby.1: a clarification patch from David Lutterkort
<dlutter at redhat.com>. [ruby-core:7508]
* lib/rdoc/ri/ri_paths.rb (RI::Paths): adding paths from rubygems
directories. a patch from Eric Hodel <drbrain at segment7.net>.
[ruby-core:07423]
* eval.c (rb_clear_cache_by_class): clearing wrong cache.
* ext/extmk.rb: use :remove_destination to install extension libraries
to avoid SEGV. [ruby-dev:28417]
* eval.c (rb_thread_fd_writable): should not re-schedule output
from KILLED thread (must be error printing).
* array.c (rb_ary_flatten_bang): allow specifying recursion
level. [ruby-talk:182170]
* array.c (rb_ary_flatten): ditto.
* gc.c (add_heap): a heap_slots may overflow. a patch from Stefan
Weil <weil at mail.berlios.de>.
* eval.c (rb_call): use separate cache for fcall/vcall
invocation.
* eval.c (rb_eval): NODE_FCALL, NODE_VCALL can call local
functions.
* eval.c (rb_mod_local): a new method to specify newly added
visibility "local".
* eval.c (search_method): search for local methods which are
visible only from the current class.
* class.c (rb_class_local_methods): a method to list local methods.
* object.c (Init_Object): add BasicObject class as a top level
BlankSlate class.
* ruby.h (SYM2ID): should not cast to signed long.
[ruby-core:07414]
* class.c (rb_include_module): allow module duplication.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-06-10 01:20:17 +04:00
|
|
|
yield(config, default)
|
2005-10-22 18:55:07 +04:00
|
|
|
else
|
2011-11-30 04:57:24 +04:00
|
|
|
return default
|
2005-10-22 18:55:07 +04:00
|
|
|
end
|
|
|
|
end
|
1998-01-16 15:19:09 +03:00
|
|
|
|
2011-11-30 04:57:24 +04:00
|
|
|
# Generates a header file consisting of the various macro definitions
|
|
|
|
# generated by other methods such as have_func and have_header. These are
|
|
|
|
# then wrapped in a custom <code>#ifndef</code> based on the +header+ file
|
|
|
|
# name, which defaults to "extconf.h".
|
|
|
|
#
|
|
|
|
# For example:
|
|
|
|
#
|
|
|
|
# # extconf.rb
|
|
|
|
# require 'mkmf'
|
|
|
|
# have_func('realpath')
|
|
|
|
# have_header('sys/utime.h')
|
|
|
|
# create_header
|
|
|
|
# create_makefile('foo')
|
|
|
|
#
|
|
|
|
# The above script would generate the following extconf.h file:
|
|
|
|
#
|
|
|
|
# #ifndef EXTCONF_H
|
|
|
|
# #define EXTCONF_H
|
|
|
|
# #define HAVE_REALPATH 1
|
|
|
|
# #define HAVE_SYS_UTIME_H 1
|
|
|
|
# #endif
|
|
|
|
#
|
|
|
|
# Given that the create_header method generates a file based on definitions
|
|
|
|
# set earlier in your extconf.rb file, you will probably want to make this
|
|
|
|
# one of the last methods you call in your script.
|
|
|
|
#
|
|
|
|
def create_header(header = "extconf.h")
|
|
|
|
message "creating %s\n", header
|
|
|
|
sym = header.tr_cpp
|
|
|
|
hdr = ["#ifndef #{sym}\n#define #{sym}\n"]
|
|
|
|
for line in $defs
|
|
|
|
case line
|
|
|
|
when /^-D([^=]+)(?:=(.*))?/
|
|
|
|
hdr << "#define #$1 #{$2 ? Shellwords.shellwords($2)[0].gsub(/(?=\t+)/, "\\\n") : 1}\n"
|
|
|
|
when /^-U(.*)/
|
|
|
|
hdr << "#undef #$1\n"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
hdr << "#endif\n"
|
2012-02-17 04:56:25 +04:00
|
|
|
hdr = hdr.join("")
|
|
|
|
log_src(hdr, "#{header} is")
|
2011-11-30 04:57:24 +04:00
|
|
|
unless (IO.read(header) == hdr rescue false)
|
|
|
|
open(header, "wb") do |hfile|
|
|
|
|
hfile.write(hdr)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
$extconf_h = header
|
|
|
|
end
|
|
|
|
|
2014-04-08 17:55:57 +04:00
|
|
|
# call-seq:
|
|
|
|
# dir_config(target)
|
|
|
|
# dir_config(target, prefix)
|
|
|
|
# dir_config(target, idefault, ldefault)
|
|
|
|
#
|
|
|
|
# Sets a +target+ name that the user can then use to configure
|
|
|
|
# various "with" options with on the command line by using that
|
|
|
|
# name. For example, if the target is set to "foo", then the user
|
|
|
|
# could use the <code>--with-foo-dir=prefix</code>,
|
|
|
|
# <code>--with-foo-include=dir</code> and
|
|
|
|
# <code>--with-foo-lib=dir</code> command line options to tell where
|
|
|
|
# to search for header/library files.
|
|
|
|
#
|
|
|
|
# You may pass along additional parameters to specify default
|
|
|
|
# values. If one is given it is taken as default +prefix+, and if
|
|
|
|
# two are given they are taken as "include" and "lib" defaults in
|
|
|
|
# that order.
|
|
|
|
#
|
|
|
|
# In any case, the return value will be an array of determined
|
|
|
|
# "include" and "lib" directories, either of which can be nil if no
|
|
|
|
# corresponding command line option is given when no default value
|
|
|
|
# is specified.
|
2011-11-30 04:57:24 +04:00
|
|
|
#
|
|
|
|
# Note that dir_config only adds to the list of places to search for
|
|
|
|
# libraries and include files. It does not link the libraries into your
|
|
|
|
# application.
|
|
|
|
#
|
|
|
|
def dir_config(target, idefault=nil, ldefault=nil)
|
|
|
|
if dir = with_config(target + "-dir", (idefault unless ldefault))
|
|
|
|
defaults = Array === dir ? dir : dir.split(File::PATH_SEPARATOR)
|
|
|
|
idefault = ldefault = nil
|
|
|
|
end
|
2001-04-24 10:21:58 +04:00
|
|
|
|
2011-11-30 04:57:24 +04:00
|
|
|
idir = with_config(target + "-include", idefault)
|
|
|
|
$arg_config.last[1] ||= "${#{target}-dir}/include"
|
|
|
|
ldir = with_config(target + "-lib", ldefault)
|
2013-03-11 06:53:47 +04:00
|
|
|
$arg_config.last[1] ||= "${#{target}-dir}/#{_libdir_basename}"
|
2001-04-24 10:21:58 +04:00
|
|
|
|
2011-11-30 04:57:24 +04:00
|
|
|
idirs = idir ? Array === idir ? idir.dup : idir.split(File::PATH_SEPARATOR) : []
|
|
|
|
if defaults
|
|
|
|
idirs.concat(defaults.collect {|d| d + "/include"})
|
|
|
|
idir = ([idir] + idirs).compact.join(File::PATH_SEPARATOR)
|
|
|
|
end
|
2003-07-30 17:35:23 +04:00
|
|
|
unless idirs.empty?
|
2011-11-30 04:57:24 +04:00
|
|
|
idirs.collect! {|d| "-I" + d}
|
|
|
|
idirs -= Shellwords.shellwords($CPPFLAGS)
|
|
|
|
unless idirs.empty?
|
|
|
|
$CPPFLAGS = (idirs.quote << $CPPFLAGS).join(" ")
|
|
|
|
end
|
2011-11-29 01:54:33 +04:00
|
|
|
end
|
1999-08-13 09:45:20 +04:00
|
|
|
|
2011-11-30 04:57:24 +04:00
|
|
|
ldirs = ldir ? Array === ldir ? ldir.dup : ldir.split(File::PATH_SEPARATOR) : []
|
|
|
|
if defaults
|
2013-03-11 06:53:47 +04:00
|
|
|
ldirs.concat(defaults.collect {|d| "#{d}/#{_libdir_basename}"})
|
2011-11-30 04:57:24 +04:00
|
|
|
ldir = ([ldir] + ldirs).compact.join(File::PATH_SEPARATOR)
|
|
|
|
end
|
|
|
|
$LIBPATH = ldirs | $LIBPATH
|
|
|
|
|
|
|
|
[idir, ldir]
|
|
|
|
end
|
|
|
|
|
2013-06-11 12:25:40 +04:00
|
|
|
# Returns compile/link information about an installed library in a
|
|
|
|
# tuple of <code>[cflags, ldflags, libs]</code>, by using the
|
|
|
|
# command found first in the following commands:
|
2012-06-09 03:21:50 +04:00
|
|
|
#
|
2013-06-11 12:25:40 +04:00
|
|
|
# 1. If <code>--with-{pkg}-config={command}</code> is given via
|
|
|
|
# command line option: <code>{command} {option}</code>
|
|
|
|
#
|
|
|
|
# 2. <code>{pkg}-config {option}</code>
|
|
|
|
#
|
|
|
|
# 3. <code>pkg-config {option} {pkg}</code>
|
|
|
|
#
|
|
|
|
# Where {option} is, for instance, <code>--cflags</code>.
|
|
|
|
#
|
2013-06-12 11:08:08 +04:00
|
|
|
# The values obtained are appended to +$CFLAGS+, +$LDFLAGS+ and
|
|
|
|
# +$libs+.
|
|
|
|
#
|
2013-06-11 12:25:40 +04:00
|
|
|
# If an <code>option</code> argument is given, the config command is
|
2013-06-12 11:08:08 +04:00
|
|
|
# invoked with the option and a stripped output string is returned
|
|
|
|
# without modifying any of the global values mentioned above.
|
2013-04-11 01:15:32 +04:00
|
|
|
def pkg_config(pkg, option=nil)
|
2011-11-30 04:57:24 +04:00
|
|
|
if pkgconfig = with_config("#{pkg}-config") and find_executable0(pkgconfig)
|
|
|
|
# iff package specific config command is given
|
|
|
|
elsif ($PKGCONFIG ||=
|
|
|
|
(pkgconfig = with_config("pkg-config", ("pkg-config" unless CROSS_COMPILING))) &&
|
|
|
|
find_executable0(pkgconfig) && pkgconfig) and
|
|
|
|
system("#{$PKGCONFIG} --exists #{pkg}")
|
|
|
|
# default to pkg-config command
|
2014-09-09 04:27:34 +04:00
|
|
|
pkgconfig = $PKGCONFIG
|
|
|
|
get = proc {|opt|
|
2015-06-01 12:46:41 +03:00
|
|
|
opt = xpopen("#{$PKGCONFIG} --#{opt} #{pkg}", err:[:child, :out], &:read)
|
2015-11-04 04:31:09 +03:00
|
|
|
Logging.open {puts opt.each_line.map{|s|"=> #{s.inspect}"}}
|
2014-09-09 04:27:34 +04:00
|
|
|
opt.strip if $?.success?
|
|
|
|
}
|
2011-11-30 04:57:24 +04:00
|
|
|
elsif find_executable0(pkgconfig = "#{pkg}-config")
|
|
|
|
# default to package specific config command, as a last resort.
|
2014-09-09 04:27:34 +04:00
|
|
|
else
|
|
|
|
pkgconfig = nil
|
|
|
|
end
|
|
|
|
if pkgconfig
|
|
|
|
get ||= proc {|opt|
|
2015-06-01 12:46:41 +03:00
|
|
|
opt = xpopen("#{pkgconfig} --#{opt}", err:[:child, :out], &:read)
|
2015-11-04 04:31:09 +03:00
|
|
|
Logging.open {puts opt.each_line.map{|s|"=> #{s.inspect}"}}
|
2014-09-09 04:27:34 +04:00
|
|
|
opt.strip if $?.success?
|
|
|
|
}
|
2011-11-30 04:57:24 +04:00
|
|
|
end
|
2013-07-02 06:35:36 +04:00
|
|
|
orig_ldflags = $LDFLAGS
|
2013-04-11 01:15:32 +04:00
|
|
|
if get and option
|
|
|
|
get[option]
|
|
|
|
elsif get and try_ldflags(ldflags = get['libs'])
|
2014-09-09 04:27:34 +04:00
|
|
|
if incflags = get['cflags-only-I']
|
|
|
|
$INCFLAGS << " " << incflags
|
|
|
|
cflags = get['cflags-only-other']
|
|
|
|
else
|
|
|
|
cflags = get['cflags']
|
|
|
|
end
|
2011-11-30 04:57:24 +04:00
|
|
|
libs = get['libs-only-l']
|
2015-06-01 16:01:52 +03:00
|
|
|
if cflags
|
|
|
|
$CFLAGS += " " << cflags
|
|
|
|
$CXXFLAGS += " " << cflags
|
|
|
|
end
|
|
|
|
if libs
|
|
|
|
ldflags = (Shellwords.shellwords(ldflags) - Shellwords.shellwords(libs)).quote.join(" ")
|
|
|
|
else
|
|
|
|
libs, ldflags = Shellwords.shellwords(ldflags).partition {|s| s =~ /-l([^ ]+)/ }.map {|l|l.quote.join(" ")}
|
|
|
|
end
|
2011-11-30 04:57:24 +04:00
|
|
|
$libs += " " << libs
|
2015-06-01 16:01:52 +03:00
|
|
|
|
|
|
|
$LDFLAGS = [orig_ldflags, ldflags].join(' ')
|
2011-11-30 04:57:24 +04:00
|
|
|
Logging::message "package configuration for %s\n", pkg
|
|
|
|
Logging::message "cflags: %s\nldflags: %s\nlibs: %s\n\n",
|
|
|
|
cflags, ldflags, libs
|
|
|
|
[cflags, ldflags, libs]
|
|
|
|
else
|
|
|
|
Logging::message "package configuration for %s is not found\n", pkg
|
|
|
|
nil
|
|
|
|
end
|
2003-08-02 09:54:00 +04:00
|
|
|
end
|
2002-06-11 05:27:48 +04:00
|
|
|
|
2013-06-12 11:08:08 +04:00
|
|
|
# :stopdoc:
|
|
|
|
|
2011-11-30 04:57:24 +04:00
|
|
|
def with_destdir(dir)
|
|
|
|
dir = dir.sub($dest_prefix_pattern, '')
|
|
|
|
/\A\$[\(\{]/ =~ dir ? dir : "$(DESTDIR)"+dir
|
2011-11-29 01:54:33 +04:00
|
|
|
end
|
2011-11-29 12:42:13 +04:00
|
|
|
|
2011-11-30 04:57:24 +04:00
|
|
|
# Converts forward slashes to backslashes. Aimed at MS Windows.
|
|
|
|
#
|
|
|
|
# Internal use only.
|
|
|
|
#
|
|
|
|
def winsep(s)
|
|
|
|
s.tr('/', '\\')
|
|
|
|
end
|
2011-11-29 12:42:13 +04:00
|
|
|
|
2011-11-30 04:57:24 +04:00
|
|
|
# Converts native path to format acceptable in Makefile
|
|
|
|
#
|
|
|
|
# Internal use only.
|
|
|
|
#
|
|
|
|
if !CROSS_COMPILING
|
|
|
|
case CONFIG['build_os']
|
|
|
|
when 'mingw32'
|
|
|
|
def mkintpath(path)
|
|
|
|
# mingw uses make from msys and it needs special care
|
|
|
|
# converts from C:\some\path to /C/some/path
|
|
|
|
path = path.dup
|
|
|
|
path.tr!('\\', '/')
|
|
|
|
path.sub!(/\A([A-Za-z]):(?=\/)/, '/\1')
|
|
|
|
path
|
|
|
|
end
|
2012-09-23 16:44:30 +04:00
|
|
|
when 'cygwin'
|
|
|
|
if CONFIG['target_os'] != 'cygwin'
|
|
|
|
def mkintpath(path)
|
|
|
|
IO.popen(["cygpath", "-u", path], &:read).chomp
|
|
|
|
end
|
|
|
|
end
|
2011-11-30 04:57:24 +04:00
|
|
|
end
|
|
|
|
end
|
2012-09-23 16:42:29 +04:00
|
|
|
unless method_defined?(:mkintpath)
|
2009-01-23 08:56:01 +03:00
|
|
|
def mkintpath(path)
|
|
|
|
path
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-11-30 04:57:24 +04:00
|
|
|
def configuration(srcdir)
|
|
|
|
mk = []
|
|
|
|
vpath = $VPATH.dup
|
|
|
|
CONFIG["hdrdir"] ||= $hdrdir
|
|
|
|
mk << %{
|
1998-01-16 15:19:09 +03:00
|
|
|
SHELL = /bin/sh
|
|
|
|
|
2010-11-11 15:46:23 +03:00
|
|
|
# V=0 quiet, V=1 verbose. other values don't work.
|
|
|
|
V = 0
|
|
|
|
Q1 = $(V:1=)
|
|
|
|
Q = $(Q1:0=@)
|
2016-01-07 06:06:58 +03:00
|
|
|
ECHO1 = $(V:1=@ #{CONFIG['NULLCMD']})
|
|
|
|
ECHO = $(ECHO1:0=@ echo)
|
2014-05-18 03:23:37 +04:00
|
|
|
NULLCMD = #{CONFIG['NULLCMD']}
|
2010-11-11 15:46:23 +03:00
|
|
|
|
1998-01-16 15:19:09 +03:00
|
|
|
#### Start of system configuration section. ####
|
2011-05-19 04:07:25 +04:00
|
|
|
#{"top_srcdir = " + $top_srcdir.sub(%r"\A#{Regexp.quote($topdir)}/", "$(topdir)/") if $extmk}
|
2012-09-23 16:52:01 +04:00
|
|
|
srcdir = #{srcdir.gsub(/\$\((srcdir)\)|\$\{(srcdir)\}/) {mkintpath(CONFIG[$1||$2]).unspace}}
|
2013-03-20 17:52:54 +04:00
|
|
|
topdir = #{mkintpath(topdir = $extmk ? CONFIG["topdir"] : $topdir).unspace}
|
|
|
|
hdrdir = #{(hdrdir = CONFIG["hdrdir"]) == topdir ? "$(topdir)" : mkintpath(hdrdir).unspace}
|
2011-06-11 05:32:49 +04:00
|
|
|
arch_hdrdir = #{$arch_hdrdir.quote}
|
2013-01-20 17:24:31 +04:00
|
|
|
PATH_SEPARATOR = #{CONFIG['PATH_SEPARATOR']}
|
2004-03-18 12:50:14 +03:00
|
|
|
VPATH = #{vpath.join(CONFIG['PATH_SEPARATOR'])}
|
2002-06-11 05:27:48 +04:00
|
|
|
}
|
2011-11-30 04:57:24 +04:00
|
|
|
if $extmk
|
2012-10-25 18:06:31 +04:00
|
|
|
mk << "RUBYLIB =\n""RUBYOPT = -\n"
|
2011-11-30 04:57:24 +04:00
|
|
|
end
|
2012-09-23 16:44:30 +04:00
|
|
|
prefix = mkintpath(CONFIG["prefix"])
|
|
|
|
if destdir = prefix[$dest_prefix_pattern, 1]
|
2011-11-30 04:57:24 +04:00
|
|
|
mk << "\nDESTDIR = #{destdir}\n"
|
2013-12-05 17:18:07 +04:00
|
|
|
prefix = prefix[destdir.size..-1]
|
2011-11-30 04:57:24 +04:00
|
|
|
end
|
2012-09-23 16:52:01 +04:00
|
|
|
mk << "prefix = #{with_destdir(prefix).unspace}\n"
|
2011-11-30 04:57:24 +04:00
|
|
|
CONFIG.each do |key, var|
|
2012-09-23 16:52:01 +04:00
|
|
|
mk << "#{key} = #{with_destdir(mkintpath(var)).unspace}\n" if /.prefix$/ =~ key
|
2011-11-30 04:57:24 +04:00
|
|
|
end
|
|
|
|
CONFIG.each do |key, var|
|
|
|
|
next if /^abs_/ =~ key
|
2015-09-04 06:54:29 +03:00
|
|
|
next if /^(?:src|top(?:_src)?|build|hdr)dir$/ =~ key
|
2011-11-30 04:57:24 +04:00
|
|
|
next unless /dir$/ =~ key
|
2015-09-04 06:54:29 +03:00
|
|
|
mk << "#{key} = #{with_destdir(var)}\n"
|
2011-11-30 04:57:24 +04:00
|
|
|
end
|
|
|
|
if !$extmk and !$configure_args.has_key?('--ruby') and
|
|
|
|
sep = config_string('BUILD_FILE_SEPARATOR')
|
|
|
|
sep = ":/=#{sep}"
|
|
|
|
else
|
|
|
|
sep = ""
|
|
|
|
end
|
|
|
|
possible_command = (proc {|s| s if /top_srcdir/ !~ s} unless $extmk)
|
|
|
|
extconf_h = $extconf_h ? "-DRUBY_EXTCONF_H=\\\"$(RUBY_EXTCONF_H)\\\" " : $defs.join(" ") << " "
|
2013-04-13 04:46:29 +04:00
|
|
|
headers = %w[
|
|
|
|
$(hdrdir)/ruby.h
|
|
|
|
$(hdrdir)/ruby/ruby.h
|
|
|
|
$(hdrdir)/ruby/defines.h
|
|
|
|
$(hdrdir)/ruby/missing.h
|
|
|
|
$(hdrdir)/ruby/intern.h
|
|
|
|
$(hdrdir)/ruby/st.h
|
|
|
|
$(hdrdir)/ruby/subst.h
|
|
|
|
]
|
2012-08-22 11:57:22 +04:00
|
|
|
if RULE_SUBST
|
|
|
|
headers.each {|h| h.sub!(/.*/, &RULE_SUBST.method(:%))}
|
|
|
|
end
|
|
|
|
headers << $config_h
|
|
|
|
headers << '$(RUBY_EXTCONF_H)' if $extconf_h
|
2011-11-30 04:57:24 +04:00
|
|
|
mk << %{
|
2011-07-31 18:17:34 +04:00
|
|
|
|
* 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
|
|
|
CC = #{CONFIG['CC']}
|
2005-04-21 01:45:43 +04:00
|
|
|
CXX = #{CONFIG['CXX']}
|
2002-11-14 16:51:19 +03:00
|
|
|
LIBRUBY = #{CONFIG['LIBRUBY']}
|
|
|
|
LIBRUBY_A = #{CONFIG['LIBRUBY_A']}
|
|
|
|
LIBRUBYARG_SHARED = #$LIBRUBYARG_SHARED
|
|
|
|
LIBRUBYARG_STATIC = #$LIBRUBYARG_STATIC
|
2012-05-18 13:13:47 +04:00
|
|
|
empty =
|
|
|
|
OUTFLAG = #{OUTFLAG}$(empty)
|
|
|
|
COUTFLAG = #{COUTFLAG}$(empty)
|
* 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
|
|
|
|
2006-05-26 03:44:08 +04:00
|
|
|
RUBY_EXTCONF_H = #{$extconf_h}
|
2008-06-09 16:14:39 +04:00
|
|
|
cflags = #{CONFIG['cflags']}
|
2015-02-03 06:26:38 +03:00
|
|
|
cxxflags = #{CONFIG['cxxflags']}
|
2008-06-09 16:14:39 +04:00
|
|
|
optflags = #{CONFIG['optflags']}
|
|
|
|
debugflags = #{CONFIG['debugflags']}
|
2011-01-15 05:57:36 +03:00
|
|
|
warnflags = #{$warnflags}
|
2013-03-29 06:09:51 +04:00
|
|
|
CCDLFLAGS = #{$static ? '' : CONFIG['CCDLFLAGS']}
|
|
|
|
CFLAGS = $(CCDLFLAGS) #$CFLAGS $(ARCH_FLAG)
|
2006-05-26 03:44:08 +04:00
|
|
|
INCFLAGS = -I. #$INCFLAGS
|
2007-10-13 23:08:37 +04:00
|
|
|
DEFS = #{CONFIG['DEFS']}
|
2006-05-26 03:44:08 +04:00
|
|
|
CPPFLAGS = #{extconf_h}#{$CPPFLAGS}
|
2013-12-29 13:43:12 +04:00
|
|
|
CXXFLAGS = $(CCDLFLAGS) #$CXXFLAGS $(ARCH_FLAG)
|
2012-09-06 20:21:57 +04:00
|
|
|
ldflags = #{$LDFLAGS}
|
2012-07-18 09:53:23 +04:00
|
|
|
dldflags = #{$DLDFLAGS} #{CONFIG['EXTDLDFLAGS']}
|
2010-01-09 22:41:22 +03:00
|
|
|
ARCH_FLAG = #{$ARCH_FLAG}
|
2011-12-03 02:17:34 +04:00
|
|
|
DLDFLAGS = $(ldflags) $(dldflags) $(ARCH_FLAG)
|
* 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
|
|
|
LDSHARED = #{CONFIG['LDSHARED']}
|
2005-04-21 01:45:43 +04:00
|
|
|
LDSHAREDXX = #{config_string('LDSHAREDXX') || '$(LDSHARED)'}
|
* 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
|
|
|
AR = #{CONFIG['AR']}
|
|
|
|
EXEEXT = #{CONFIG['EXEEXT']}
|
|
|
|
|
2013-02-08 04:35:20 +04:00
|
|
|
}
|
|
|
|
CONFIG.each do |key, val|
|
|
|
|
mk << "#{key} = #{val}\n" if /^RUBY.*NAME/ =~ key
|
|
|
|
end
|
|
|
|
mk << %{
|
* 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
|
|
|
arch = #{CONFIG['arch']}
|
|
|
|
sitearch = #{CONFIG['sitearch']}
|
* mkconfig.rb: generate RbConfig instead of Config.
* instruby.rb, rubytest.rb, runruby.rb, bcc32/Makefile.sub,
ext/extmk.rb, ext/dl/extconf.rb, ext/iconv/charset_alias.rb,
lib/mkmf.rb, lib/rdoc/ri/ri_paths.rb,
lib/webrick/httpservlet/cgihandler.rb,
test/dbm/test_dbm.rb, test/gdbm/test_gdbm.rb,
test/ruby/envutil.rb, test/soap/calc/test_calc_cgi.rb,
test/soap/header/test_authheader_cgi.rb, test/soap/ssl/test_ssl.rb,
win32/mkexports.rb, win32/resource.rb: Use RbConfig instead of
Config.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9970 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-02-20 11:34:53 +03:00
|
|
|
ruby_version = #{RbConfig::CONFIG['ruby_version']}
|
2012-09-23 16:46:48 +04:00
|
|
|
ruby = #{$ruby.sub(%r[\A#{Regexp.quote(RbConfig::CONFIG['bindir'])}(?=/|\z)]) {'$(bindir)'}}
|
2005-09-21 18:31:20 +04:00
|
|
|
RUBY = $(ruby#{sep})
|
2012-08-22 11:57:22 +04:00
|
|
|
ruby_headers = #{headers.join(' ')}
|
|
|
|
|
2009-01-24 02:21:16 +03:00
|
|
|
RM = #{config_string('RM', &possible_command) || '$(RUBY) -run -e rm -- -f'}
|
2008-09-01 17:44:54 +04:00
|
|
|
RM_RF = #{'$(RUBY) -run -e rm -- -rf'}
|
2009-01-25 05:06:29 +03:00
|
|
|
RMDIRS = #{config_string('RMDIRS', &possible_command) || '$(RUBY) -run -e rmdir -- -p'}
|
2009-01-24 02:21:16 +03:00
|
|
|
MAKEDIRS = #{config_string('MAKEDIRS', &possible_command) || '@$(RUBY) -run -e mkdir -- -p'}
|
|
|
|
INSTALL = #{config_string('INSTALL', &possible_command) || '@$(RUBY) -run -e install -- -vp'}
|
2005-05-13 18:44:59 +04:00
|
|
|
INSTALL_PROG = #{config_string('INSTALL_PROG') || '$(INSTALL) -m 0755'}
|
|
|
|
INSTALL_DATA = #{config_string('INSTALL_DATA') || '$(INSTALL) -m 0644'}
|
2009-01-24 02:21:16 +03:00
|
|
|
COPY = #{config_string('CP', &possible_command) || '@$(RUBY) -run -e cp -- -v'}
|
2012-08-24 10:42:34 +04:00
|
|
|
TOUCH = exit >
|
1998-01-16 15:19:09 +03:00
|
|
|
|
* 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
|
|
|
#### End of system configuration section. ####
|
1998-01-16 15:19:09 +03:00
|
|
|
|
2006-10-12 13:28:28 +04:00
|
|
|
preload = #{defined?($preload) && $preload ? $preload.join(' ') : ''}
|
* 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
|
|
|
}
|
2011-11-30 04:57:24 +04:00
|
|
|
if $nmake == ?b
|
|
|
|
mk.each do |x|
|
|
|
|
x.gsub!(/^(MAKEDIRS|INSTALL_(?:PROG|DATA))+\s*=.*\n/) do
|
|
|
|
"!ifndef " + $1 + "\n" +
|
|
|
|
$& +
|
|
|
|
"!endif\n"
|
|
|
|
end
|
2002-12-31 15:31:12 +03:00
|
|
|
end
|
|
|
|
end
|
2011-11-30 04:57:24 +04:00
|
|
|
mk
|
2002-12-31 15:31:12 +03:00
|
|
|
end
|
2012-08-24 10:42:34 +04:00
|
|
|
|
2013-04-09 05:02:53 +04:00
|
|
|
def timestamp_file(name, target_prefix = nil)
|
|
|
|
if target_prefix
|
|
|
|
pat = []
|
|
|
|
install_dirs.each do |n, d|
|
|
|
|
pat << n if /\$\(target_prefix\)\z/ =~ d
|
|
|
|
end
|
|
|
|
name = name.gsub(/\$\((#{pat.join("|")})\)/) {$&+target_prefix}
|
|
|
|
end
|
2012-11-02 15:11:21 +04:00
|
|
|
name = name.gsub(/(\$[({]|[})])|(\/+)|[^-.\w]+/) {$1 ? "" : $2 ? ".-." : "_"}
|
2013-04-13 18:06:33 +04:00
|
|
|
"$(TIMESTAMP_DIR)/.#{name}.time"
|
2012-08-24 10:42:34 +04:00
|
|
|
end
|
2011-11-30 04:57:24 +04:00
|
|
|
# :startdoc:
|
* 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
|
|
|
|
2011-11-30 04:57:24 +04:00
|
|
|
# creates a stub Makefile.
|
|
|
|
#
|
|
|
|
def dummy_makefile(srcdir)
|
|
|
|
configuration(srcdir) << <<RULES << CLEANINGS
|
2004-03-24 12:48:09 +03:00
|
|
|
CLEANFILES = #{$cleanfiles.join(' ')}
|
|
|
|
DISTCLEANFILES = #{$distcleanfiles.join(' ')}
|
|
|
|
|
2004-04-02 13:00:12 +04:00
|
|
|
all install static install-so install-rb: Makefile
|
2016-01-07 06:06:58 +03:00
|
|
|
@$(NULLCMD)
|
2009-02-19 08:22:04 +03:00
|
|
|
.PHONY: all install static install-so install-rb
|
2012-05-16 09:39:06 +04:00
|
|
|
.PHONY: clean clean-so clean-static clean-rb
|
2004-03-24 12:48:09 +03:00
|
|
|
|
|
|
|
RULES
|
2011-11-30 04:57:24 +04:00
|
|
|
end
|
1998-01-16 15:19:09 +03:00
|
|
|
|
2013-01-25 05:37:06 +04:00
|
|
|
def each_compile_rules # :nodoc:
|
2012-11-28 16:19:49 +04:00
|
|
|
vpath_splat = /\$\(\*VPATH\*\)/
|
|
|
|
COMPILE_RULES.each do |rule|
|
|
|
|
if vpath_splat =~ rule
|
|
|
|
$VPATH.each do |path|
|
|
|
|
yield rule.sub(vpath_splat) {path}
|
|
|
|
end
|
|
|
|
else
|
|
|
|
yield rule
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-11-30 04:57:24 +04:00
|
|
|
# Processes the data contents of the "depend" file. Each line of this file
|
|
|
|
# is expected to be a file name.
|
|
|
|
#
|
|
|
|
# Returns the output of findings, in Makefile format.
|
|
|
|
#
|
|
|
|
def depend_rules(depend)
|
|
|
|
suffixes = []
|
|
|
|
depout = []
|
|
|
|
cont = implicit = nil
|
|
|
|
impconv = proc do
|
2012-11-28 16:19:49 +04:00
|
|
|
each_compile_rules {|rule| depout << (rule % implicit[0]) << implicit[1]}
|
2011-11-30 04:57:24 +04:00
|
|
|
implicit = nil
|
|
|
|
end
|
|
|
|
ruleconv = proc do |line|
|
|
|
|
if implicit
|
|
|
|
if /\A\t/ =~ line
|
|
|
|
implicit[1] << line
|
|
|
|
next
|
|
|
|
else
|
|
|
|
impconv[]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
if m = /\A\.(\w+)\.(\w+)(?:\s*:)/.match(line)
|
|
|
|
suffixes << m[1] << m[2]
|
|
|
|
implicit = [[m[1], m[2]], [m.post_match]]
|
2011-11-29 01:54:33 +04:00
|
|
|
next
|
2014-11-15 13:46:38 +03:00
|
|
|
elsif RULE_SUBST and /\A(?!\s*\w+\s*=)[$\w][^#]*:/ =~ line
|
2014-11-15 13:51:11 +03:00
|
|
|
line.sub!(/\s*\#.*$/, '')
|
|
|
|
comment = $&
|
|
|
|
line.gsub!(%r"(\s)(?!\.)([^$(){}+=:\s\\,]+)(?=\s|\z)") {$1 + RULE_SUBST % $2}
|
|
|
|
line = line.chomp + comment + "\n" if comment
|
2011-11-29 01:54:33 +04:00
|
|
|
end
|
2011-11-30 04:57:24 +04:00
|
|
|
depout << line
|
2002-12-21 18:42:10 +03:00
|
|
|
end
|
2011-11-30 04:57:24 +04:00
|
|
|
depend.each_line do |line|
|
|
|
|
line.gsub!(/\.o\b/, ".#{$OBJEXT}")
|
2013-04-13 22:00:25 +04:00
|
|
|
line.gsub!(/\{\$\(VPATH\)\}/, "") unless $nmake
|
2011-11-30 04:57:24 +04:00
|
|
|
line.gsub!(/\$\((?:hdr|top)dir\)\/config.h/, $config_h)
|
|
|
|
line.gsub!(%r"\$\(hdrdir\)/(?!ruby(?![^:;/\s]))(?=[-\w]+\.h)", '\&ruby/')
|
|
|
|
if $nmake && /\A\s*\$\(RM|COPY\)/ =~ line
|
|
|
|
line.gsub!(%r"[-\w\./]{2,}"){$&.tr("/", "\\")}
|
|
|
|
line.gsub!(/(\$\((?!RM|COPY)[^:)]+)(?=\))/, '\1:/=\\')
|
|
|
|
end
|
|
|
|
if /(?:^|[^\\])(?:\\\\)*\\$/ =~ line
|
|
|
|
(cont ||= []) << line
|
|
|
|
next
|
|
|
|
elsif cont
|
|
|
|
line = (cont << line).join
|
|
|
|
cont = nil
|
|
|
|
end
|
|
|
|
ruleconv.call(line)
|
2011-11-29 12:42:13 +04:00
|
|
|
end
|
2011-11-30 04:57:24 +04:00
|
|
|
if cont
|
|
|
|
ruleconv.call(cont.join)
|
|
|
|
elsif implicit
|
|
|
|
impconv.call
|
|
|
|
end
|
|
|
|
unless suffixes.empty?
|
|
|
|
depout.unshift(".SUFFIXES: ." + suffixes.uniq.join(" .") + "\n\n")
|
|
|
|
end
|
2012-05-01 11:15:18 +04:00
|
|
|
depout.unshift("$(OBJS): $(RUBY_EXTCONF_H)\n\n") if $extconf_h
|
2011-11-30 04:57:24 +04:00
|
|
|
depout.flatten!
|
|
|
|
depout
|
|
|
|
end
|
|
|
|
|
|
|
|
# Generates the Makefile for your extension, passing along any options and
|
|
|
|
# preprocessor constants that you may have generated through other methods.
|
|
|
|
#
|
|
|
|
# The +target+ name should correspond the name of the global function name
|
|
|
|
# defined within your C extension, minus the +Init_+. For example, if your
|
|
|
|
# C extension is defined as +Init_foo+, then your target would simply be
|
|
|
|
# "foo".
|
|
|
|
#
|
|
|
|
# If any "/" characters are present in the target name, only the last name
|
|
|
|
# is interpreted as the target name, and the rest are considered toplevel
|
|
|
|
# directory names, and the generated Makefile will be altered accordingly to
|
|
|
|
# follow that directory structure.
|
|
|
|
#
|
|
|
|
# For example, if you pass "test/foo" as a target name, your extension will
|
|
|
|
# be installed under the "test" directory. This means that in order to
|
|
|
|
# load the file within a Ruby program later, that directory structure will
|
|
|
|
# have to be followed, e.g. <code>require 'test/foo'</code>.
|
|
|
|
#
|
|
|
|
# The +srcprefix+ should be used when your source files are not in the same
|
|
|
|
# directory as your build script. This will not only eliminate the need for
|
|
|
|
# you to manually copy the source files into the same directory as your
|
|
|
|
# build script, but it also sets the proper +target_prefix+ in the generated
|
|
|
|
# Makefile.
|
|
|
|
#
|
|
|
|
# Setting the +target_prefix+ will, in turn, install the generated binary in
|
|
|
|
# a directory under your <code>RbConfig::CONFIG['sitearchdir']</code> that
|
|
|
|
# mimics your local filesystem when you run <code>make install</code>.
|
|
|
|
#
|
|
|
|
# For example, given the following file tree:
|
|
|
|
#
|
|
|
|
# ext/
|
|
|
|
# extconf.rb
|
|
|
|
# test/
|
|
|
|
# foo.c
|
|
|
|
#
|
|
|
|
# And given the following code:
|
|
|
|
#
|
|
|
|
# create_makefile('test/foo', 'test')
|
|
|
|
#
|
|
|
|
# That will set the +target_prefix+ in the generated Makefile to "test".
|
|
|
|
# That, in turn, will create the following file tree when installed via the
|
|
|
|
# <code>make install</code> command:
|
|
|
|
#
|
|
|
|
# /path/to/ruby/sitearchdir/test/foo.so
|
|
|
|
#
|
|
|
|
# It is recommended that you use this approach to generate your makefiles,
|
|
|
|
# instead of copying files around manually, because some third party
|
|
|
|
# libraries may depend on the +target_prefix+ being set properly.
|
|
|
|
#
|
|
|
|
# The +srcprefix+ argument can be used to override the default source
|
|
|
|
# directory, i.e. the current directory. It is included as part of the
|
|
|
|
# +VPATH+ and added to the list of +INCFLAGS+.
|
|
|
|
#
|
|
|
|
def create_makefile(target, srcprefix = nil)
|
|
|
|
$target = target
|
2015-10-24 15:10:48 +03:00
|
|
|
libpath = $DEFLIBPATH|$LIBPATH
|
2011-11-30 04:57:24 +04:00
|
|
|
message "creating Makefile\n"
|
2013-07-04 11:03:01 +04:00
|
|
|
MakeMakefile.rm_f "#{CONFTEST}*"
|
2011-11-30 04:57:24 +04:00
|
|
|
if CONFIG["DLEXT"] == $OBJEXT
|
|
|
|
for lib in libs = $libs.split
|
|
|
|
lib.sub!(/-l(.*)/, %%"lib\\1.#{$LIBEXT}"%)
|
|
|
|
end
|
|
|
|
$defs.push(format("-DEXTLIB='%s'", libs.join(",")))
|
2003-12-18 15:48:43 +03:00
|
|
|
end
|
2011-11-29 01:54:33 +04:00
|
|
|
|
2011-11-30 04:57:24 +04:00
|
|
|
if target.include?('/')
|
|
|
|
target_prefix, target = File.split(target)
|
|
|
|
target_prefix[0,0] = '/'
|
|
|
|
else
|
|
|
|
target_prefix = ""
|
|
|
|
end
|
2011-11-29 01:54:33 +04:00
|
|
|
|
2011-11-30 04:57:24 +04:00
|
|
|
srcprefix ||= "$(srcdir)/#{srcprefix}".chomp('/')
|
|
|
|
RbConfig.expand(srcdir = srcprefix.dup)
|
|
|
|
|
|
|
|
ext = ".#{$OBJEXT}"
|
|
|
|
orig_srcs = Dir[File.join(srcdir, "*.{#{SRC_EXT.join(%q{,})}}")]
|
|
|
|
if not $objs
|
|
|
|
srcs = $srcs || orig_srcs
|
|
|
|
objs = srcs.inject(Hash.new {[]}) {|h, f| h[File.basename(f, ".*") << ext] <<= f; h}
|
|
|
|
$objs = objs.keys
|
|
|
|
unless objs.delete_if {|b, f| f.size == 1}.empty?
|
|
|
|
dups = objs.sort.map {|b, f|
|
|
|
|
"#{b[/.*\./]}{#{f.collect {|n| n[/([^.]+)\z/]}.join(',')}}"
|
|
|
|
}
|
|
|
|
abort "source files duplication - #{dups.join(", ")}"
|
2011-11-29 01:54:33 +04:00
|
|
|
end
|
2011-11-29 12:42:13 +04:00
|
|
|
else
|
2011-11-30 04:57:24 +04:00
|
|
|
$objs.collect! {|o| File.basename(o, ".*") << ext} unless $OBJEXT == "o"
|
|
|
|
srcs = $srcs || $objs.collect {|o| o.chomp(ext) << ".c"}
|
* 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
|
|
|
end
|
2011-11-30 04:57:24 +04:00
|
|
|
$srcs = srcs
|
|
|
|
|
2012-08-23 11:15:27 +04:00
|
|
|
hdrs = Dir[File.join(srcdir, "*.{#{HDR_EXT.join(%q{,})}}")]
|
|
|
|
|
2011-11-30 04:57:24 +04:00
|
|
|
target = nil if $objs.empty?
|
|
|
|
|
|
|
|
if target and EXPORT_PREFIX
|
|
|
|
if File.exist?(File.join(srcdir, target + '.def'))
|
|
|
|
deffile = "$(srcdir)/$(TARGET).def"
|
|
|
|
unless EXPORT_PREFIX.empty?
|
2014-12-28 12:13:21 +03:00
|
|
|
makedef = %{$(RUBY) -pe "$$_.sub!(/^(?=\\w)/,'#{EXPORT_PREFIX}') unless 1../^EXPORTS$/i" #{deffile}}
|
2011-11-30 04:57:24 +04:00
|
|
|
end
|
|
|
|
else
|
2014-12-28 12:13:21 +03:00
|
|
|
makedef = %{(echo EXPORTS && echo $(TARGET_ENTRY))}
|
2011-11-30 04:57:24 +04:00
|
|
|
end
|
|
|
|
if makedef
|
|
|
|
$cleanfiles << '$(DEFFILE)'
|
|
|
|
origdef = deffile
|
|
|
|
deffile = "$(TARGET)-$(arch).def"
|
|
|
|
end
|
2011-11-29 01:54:33 +04:00
|
|
|
end
|
2011-11-30 04:57:24 +04:00
|
|
|
origdef ||= ''
|
2009-01-22 12:12:49 +03:00
|
|
|
|
2011-11-30 04:57:24 +04:00
|
|
|
if $extout and $INSTALLFILES
|
|
|
|
$cleanfiles.concat($INSTALLFILES.collect {|files, dir|File.join(dir, files.sub(/\A\.\//, ''))})
|
|
|
|
$distcleandirs.concat($INSTALLFILES.collect {|files, dir| dir})
|
|
|
|
end
|
2006-06-10 03:18:04 +04:00
|
|
|
|
2013-03-02 19:04:23 +04:00
|
|
|
if $extmk and $static
|
|
|
|
$defs << "-DRUBY_EXPORT=1"
|
|
|
|
end
|
|
|
|
|
2011-11-30 04:57:24 +04:00
|
|
|
if $extmk and not $extconf_h
|
|
|
|
create_header
|
|
|
|
end
|
2011-11-29 12:42:13 +04:00
|
|
|
|
2011-11-30 04:57:24 +04:00
|
|
|
libpath = libpathflag(libpath)
|
* 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
|
|
|
|
2011-11-30 04:57:24 +04:00
|
|
|
dllib = target ? "$(TARGET).#{CONFIG['DLEXT']}" : ""
|
|
|
|
staticlib = target ? "$(TARGET).#$LIBEXT" : ""
|
|
|
|
mfile = open("Makefile", "wb")
|
|
|
|
conf = configuration(srcprefix)
|
|
|
|
conf = yield(conf) if block_given?
|
|
|
|
mfile.puts(conf)
|
|
|
|
mfile.print "
|
2015-10-24 15:10:48 +03:00
|
|
|
libpath = #{($DEFLIBPATH|$LIBPATH).join(" ")}
|
* 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
|
|
|
LIBPATH = #{libpath}
|
|
|
|
DEFFILE = #{deffile}
|
|
|
|
|
2003-01-21 22:33:19 +03:00
|
|
|
CLEANFILES = #{$cleanfiles.join(' ')}
|
|
|
|
DISTCLEANFILES = #{$distcleanfiles.join(' ')}
|
2009-01-25 05:06:29 +03:00
|
|
|
DISTCLEANDIRS = #{$distcleandirs.join(' ')}
|
2002-10-28 20:01:23 +03:00
|
|
|
|
2009-02-19 08:22:04 +03:00
|
|
|
extout = #{$extout && $extout.quote}
|
2004-02-09 12:20:52 +03:00
|
|
|
extout_prefix = #{$extout_prefix}
|
2002-10-28 20:01:23 +03:00
|
|
|
target_prefix = #{target_prefix}
|
|
|
|
LOCAL_LIBS = #{$LOCAL_LIBS}
|
|
|
|
LIBS = #{$LIBRUBYARG} #{$libs} #{$LIBS}
|
2011-11-20 18:22:44 +04:00
|
|
|
ORIG_SRCS = #{orig_srcs.collect(&File.method(:basename)).join(' ')}
|
|
|
|
SRCS = $(ORIG_SRCS) #{(srcs - orig_srcs).collect(&File.method(:basename)).join(' ')}
|
2009-03-03 10:25:50 +03:00
|
|
|
OBJS = #{$objs.join(" ")}
|
2012-08-23 11:15:27 +04:00
|
|
|
HDRS = #{hdrs.map{|h| '$(srcdir)/' + File.basename(h)}.join(' ')}
|
2002-10-28 20:01:23 +03:00
|
|
|
TARGET = #{target}
|
2012-07-09 08:28:40 +04:00
|
|
|
TARGET_NAME = #{target && target[/\A\w+/]}
|
|
|
|
TARGET_ENTRY = #{EXPORT_PREFIX || ''}Init_$(TARGET_NAME)
|
2002-12-21 18:42:10 +03:00
|
|
|
DLLIB = #{dllib}
|
2006-05-27 06:30:10 +04:00
|
|
|
EXTSTATIC = #{$static || ""}
|
2004-04-08 14:45:21 +04:00
|
|
|
STATIC_LIB = #{staticlib unless $static.nil?}
|
2006-09-16 11:06:57 +04:00
|
|
|
#{!$extout && defined?($installed_list) ? "INSTALLED_LIST = #{$installed_list}\n" : ""}
|
2013-04-13 18:06:33 +04:00
|
|
|
TIMESTAMP_DIR = #{$extout ? '$(extout)/.timestamp' : '.'}
|
2006-12-31 18:02:22 +03:00
|
|
|
" #"
|
2011-11-30 04:57:24 +04:00
|
|
|
# TODO: fixme
|
|
|
|
install_dirs.each {|d| mfile.print("%-14s= %s\n" % d) if /^[[:upper:]]/ =~ d[0]}
|
|
|
|
n = ($extout ? '$(RUBYARCHDIR)/' : '') + '$(TARGET)'
|
|
|
|
mfile.print "
|
2005-02-06 17:51:44 +03:00
|
|
|
TARGET_SO = #{($extout ? '$(RUBYARCHDIR)/' : '')}$(DLLIB)
|
2008-08-07 09:16:27 +04:00
|
|
|
CLEANLIBS = #{n}.#{CONFIG['DLEXT']} #{config_string('cleanlibs') {|t| t.gsub(/\$\*/) {n}}}
|
2009-01-27 05:03:54 +03:00
|
|
|
CLEANOBJS = *.#{$OBJEXT} #{config_string('cleanobjs') {|t| t.gsub(/\$\*/, "$(TARGET)#{deffile ? '-$(arch)': ''}")} if target} *.bak
|
2002-10-28 20:01:23 +03:00
|
|
|
|
2008-10-11 05:20:20 +04:00
|
|
|
all: #{$extout ? "install" : target ? "$(DLLIB)" : "Makefile"}
|
2015-09-04 06:54:23 +03:00
|
|
|
static: #{$extmk && !$static ? "all" : "$(STATIC_LIB)#{!$extmk ? " install-rb" : ""}"}
|
2009-02-19 08:22:04 +03:00
|
|
|
.PHONY: all install static install-so install-rb
|
2012-05-16 09:39:06 +04:00
|
|
|
.PHONY: clean clean-so clean-static clean-rb
|
2006-09-16 11:06:57 +04:00
|
|
|
"
|
2011-11-30 04:57:24 +04:00
|
|
|
mfile.print CLEANINGS
|
|
|
|
fsep = config_string('BUILD_FILE_SEPARATOR') {|s| s unless s == "/"}
|
|
|
|
if fsep
|
|
|
|
sep = ":/=#{fsep}"
|
|
|
|
fseprepl = proc {|s|
|
|
|
|
s = s.gsub("/", fsep)
|
|
|
|
s = s.gsub(/(\$\(\w+)(\))/) {$1+sep+$2}
|
2014-07-27 15:04:28 +04:00
|
|
|
s.gsub(/(\$\{\w+)(\})/) {$1+sep+$2}
|
2011-11-30 04:57:24 +04:00
|
|
|
}
|
|
|
|
rsep = ":#{fsep}=/"
|
2009-01-25 05:06:29 +03:00
|
|
|
else
|
2011-11-30 04:57:24 +04:00
|
|
|
fseprepl = proc {|s| s}
|
|
|
|
sep = ""
|
|
|
|
rsep = ""
|
2011-11-29 01:54:33 +04:00
|
|
|
end
|
2011-11-30 04:57:24 +04:00
|
|
|
dirs = []
|
|
|
|
mfile.print "install: install-so install-rb\n\n"
|
|
|
|
sodir = (dir = "$(RUBYARCHDIR)").dup
|
|
|
|
mfile.print("install-so: ")
|
|
|
|
if target
|
|
|
|
f = "$(DLLIB)"
|
|
|
|
dest = "#{dir}/#{f}"
|
2015-01-05 15:33:22 +03:00
|
|
|
stamp = timestamp_file(dir, target_prefix)
|
2011-11-30 04:57:24 +04:00
|
|
|
if $extout
|
2012-09-23 16:48:15 +04:00
|
|
|
mfile.puts dest
|
2011-11-30 04:57:24 +04:00
|
|
|
mfile.print "clean-so::\n"
|
2015-01-05 15:33:22 +03:00
|
|
|
mfile.print "\t-$(Q)$(RM) #{fseprepl[dest]} #{fseprepl[stamp]}\n"
|
2012-01-11 20:04:25 +04:00
|
|
|
mfile.print "\t-$(Q)$(RMDIRS) #{fseprepl[dir]}#{$ignore_error}\n"
|
2011-11-30 04:57:24 +04:00
|
|
|
else
|
2015-01-05 15:33:22 +03:00
|
|
|
mfile.print "#{f} #{stamp}\n"
|
2012-09-23 16:48:15 +04:00
|
|
|
mfile.print "\t$(INSTALL_PROG) #{fseprepl[f]} #{dir}\n"
|
2011-11-30 04:57:24 +04:00
|
|
|
if defined?($installed_list)
|
|
|
|
mfile.print "\t@echo #{dir}/#{File.basename(f)}>>$(INSTALLED_LIST)\n"
|
|
|
|
end
|
2011-11-29 12:42:13 +04:00
|
|
|
end
|
2012-05-16 09:39:06 +04:00
|
|
|
mfile.print "clean-static::\n"
|
|
|
|
mfile.print "\t-$(Q)$(RM) $(STATIC_LIB)\n"
|
2011-11-30 04:57:24 +04:00
|
|
|
else
|
|
|
|
mfile.puts "Makefile"
|
|
|
|
end
|
2016-01-07 06:06:58 +03:00
|
|
|
mfile.print("install-rb: pre-install-rb do-install-rb install-rb-default\n")
|
|
|
|
mfile.print("install-rb-default: pre-install-rb-default do-install-rb-default\n")
|
2011-11-30 04:57:24 +04:00
|
|
|
mfile.print("pre-install-rb: Makefile\n")
|
|
|
|
mfile.print("pre-install-rb-default: Makefile\n")
|
2016-01-07 06:06:58 +03:00
|
|
|
mfile.print("do-install-rb:\n")
|
|
|
|
mfile.print("do-install-rb-default:\n")
|
2011-11-30 04:57:24 +04:00
|
|
|
for sfx, i in [["-default", [["lib/**/*.rb", "$(RUBYLIBDIR)", "lib"]]], ["", $INSTALLFILES]]
|
|
|
|
files = install_files(mfile, i, nil, srcprefix) or next
|
|
|
|
for dir, *files in files
|
|
|
|
unless dirs.include?(dir)
|
|
|
|
dirs << dir
|
2013-04-09 05:02:53 +04:00
|
|
|
mfile.print "pre-install-rb#{sfx}: #{timestamp_file(dir, target_prefix)}\n"
|
2011-05-19 04:07:25 +04:00
|
|
|
end
|
2011-11-30 04:57:24 +04:00
|
|
|
for f in files
|
|
|
|
dest = "#{dir}/#{File.basename(f)}"
|
2016-01-07 06:06:58 +03:00
|
|
|
mfile.print("do-install-rb#{sfx}: #{dest}\n")
|
2013-04-09 05:02:53 +04:00
|
|
|
mfile.print("#{dest}: #{f} #{timestamp_file(dir, target_prefix)}\n")
|
2014-10-20 18:21:18 +04:00
|
|
|
mfile.print("\t$(Q) $(#{$extout ? 'COPY' : 'INSTALL_DATA'}) #{f} $(@D)\n")
|
2011-11-30 04:57:24 +04:00
|
|
|
if defined?($installed_list) and !$extout
|
|
|
|
mfile.print("\t@echo #{dest}>>$(INSTALLED_LIST)\n")
|
|
|
|
end
|
|
|
|
if $extout
|
|
|
|
mfile.print("clean-rb#{sfx}::\n")
|
2012-01-11 20:04:25 +04:00
|
|
|
mfile.print("\t-$(Q)$(RM) #{fseprepl[dest]}\n")
|
2011-11-30 04:57:24 +04:00
|
|
|
end
|
2009-01-25 05:06:29 +03:00
|
|
|
end
|
|
|
|
end
|
2011-11-30 04:57:24 +04:00
|
|
|
mfile.print "pre-install-rb#{sfx}:\n"
|
2014-05-02 07:26:48 +04:00
|
|
|
if files.empty?
|
2014-05-18 03:23:37 +04:00
|
|
|
mfile.print("\t@$(NULLCMD)\n")
|
2014-05-02 07:26:48 +04:00
|
|
|
else
|
2016-01-07 06:06:58 +03:00
|
|
|
q = "$(MAKE) -q do-install-rb#{sfx}"
|
|
|
|
if $nmake
|
|
|
|
mfile.print "!if \"$(Q)\" == \"@\"\n\t@#{q} || \\\n!endif\n\t"
|
|
|
|
else
|
2016-01-07 09:37:44 +03:00
|
|
|
mfile.print "\t$(Q1:0=@#{q} || )"
|
2016-01-07 06:06:58 +03:00
|
|
|
end
|
2016-01-07 09:51:09 +03:00
|
|
|
mfile.print "$(ECHO1:0=echo) installing#{sfx.sub(/^-/, " ")} #{target} libraries\n"
|
2014-05-02 07:26:48 +04:00
|
|
|
end
|
2011-11-30 04:57:24 +04:00
|
|
|
if $extout
|
|
|
|
dirs.uniq!
|
|
|
|
unless dirs.empty?
|
|
|
|
mfile.print("clean-rb#{sfx}::\n")
|
|
|
|
for dir in dirs.sort_by {|d| -d.count('/')}
|
2015-01-05 15:33:22 +03:00
|
|
|
stamp = timestamp_file(dir, target_prefix)
|
|
|
|
mfile.print("\t-$(Q)$(RM) #{fseprepl[stamp]}\n")
|
2012-01-11 20:04:25 +04:00
|
|
|
mfile.print("\t-$(Q)$(RMDIRS) #{fseprepl[dir]}#{$ignore_error}\n")
|
2011-11-30 04:57:24 +04:00
|
|
|
end
|
2009-01-25 05:06:29 +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
|
|
|
end
|
2002-06-11 05:27:48 +04:00
|
|
|
end
|
2011-11-30 04:57:24 +04:00
|
|
|
dirs.unshift(sodir) if target and !dirs.include?(sodir)
|
2012-08-24 10:42:34 +04:00
|
|
|
dirs.each do |d|
|
2013-04-09 05:02:53 +04:00
|
|
|
t = timestamp_file(d, target_prefix)
|
|
|
|
mfile.print "#{t}:\n\t$(Q) $(MAKEDIRS) $(@D) #{d}\n\t$(Q) $(TOUCH) $@\n"
|
2012-08-24 10:42:34 +04:00
|
|
|
end
|
2004-02-09 11:48:55 +03:00
|
|
|
|
2011-11-30 04:57:24 +04:00
|
|
|
mfile.print <<-SITEINSTALL
|
2002-10-23 22:52:29 +04:00
|
|
|
|
2004-02-09 11:48:55 +03:00
|
|
|
site-install: site-install-so site-install-rb
|
|
|
|
site-install-so: install-so
|
|
|
|
site-install-rb: install-rb
|
|
|
|
|
2011-11-30 04:57:24 +04:00
|
|
|
SITEINSTALL
|
* 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
|
|
|
|
2011-11-30 04:57:24 +04:00
|
|
|
return unless target
|
2002-12-21 18:42:10 +03:00
|
|
|
|
2011-11-30 04:57:24 +04:00
|
|
|
mfile.puts SRC_EXT.collect {|e| ".path.#{e} = $(VPATH)"} if $nmake == ?b
|
2014-10-08 05:38:32 +04:00
|
|
|
mfile.print ".SUFFIXES: .#{(SRC_EXT + [$OBJEXT, $ASMEXT]).compact.join(' .')}\n"
|
2011-11-30 04:57:24 +04:00
|
|
|
mfile.print "\n"
|
* 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
|
|
|
|
2011-11-30 04:57:24 +04:00
|
|
|
compile_command = "\n\t$(ECHO) compiling $(<#{rsep})\n\t$(Q) %s\n\n"
|
2014-10-08 05:38:32 +04:00
|
|
|
command = compile_command % COMPILE_CXX
|
|
|
|
asm_command = compile_command.sub(/compiling/, 'translating') % ASSEMBLE_CXX
|
2011-11-30 04:57:24 +04:00
|
|
|
CXX_EXT.each do |e|
|
2012-11-28 16:19:49 +04:00
|
|
|
each_compile_rules do |rule|
|
2011-11-30 04:57:24 +04:00
|
|
|
mfile.printf(rule, e, $OBJEXT)
|
2014-10-08 05:38:32 +04:00
|
|
|
mfile.print(command)
|
|
|
|
mfile.printf(rule, e, $ASMEXT)
|
|
|
|
mfile.print(asm_command)
|
2011-11-30 04:57:24 +04:00
|
|
|
end
|
2011-11-29 01:54:33 +04:00
|
|
|
end
|
2014-10-08 05:38:32 +04:00
|
|
|
command = compile_command % COMPILE_C
|
|
|
|
asm_command = compile_command.sub(/compiling/, 'translating') % ASSEMBLE_C
|
2011-11-30 04:57:24 +04:00
|
|
|
C_EXT.each do |e|
|
2012-11-28 16:19:49 +04:00
|
|
|
each_compile_rules do |rule|
|
2011-11-30 04:57:24 +04:00
|
|
|
mfile.printf(rule, e, $OBJEXT)
|
2014-10-08 05:38:32 +04:00
|
|
|
mfile.print(command)
|
|
|
|
mfile.printf(rule, e, $ASMEXT)
|
|
|
|
mfile.print(asm_command)
|
2011-11-30 04:57:24 +04:00
|
|
|
end
|
2004-04-08 14:45:21 +04:00
|
|
|
end
|
1998-01-16 15:19:09 +03:00
|
|
|
|
2011-11-30 04:57:24 +04:00
|
|
|
mfile.print "$(RUBYARCHDIR)/" if $extout
|
|
|
|
mfile.print "$(DLLIB): "
|
|
|
|
mfile.print "$(DEFFILE) " if makedef
|
2012-08-24 10:42:34 +04:00
|
|
|
mfile.print "$(OBJS) Makefile"
|
2013-04-09 05:02:53 +04:00
|
|
|
mfile.print " #{timestamp_file('$(RUBYARCHDIR)', target_prefix)}" if $extout
|
2012-08-24 10:42:34 +04:00
|
|
|
mfile.print "\n"
|
2011-11-30 04:57:24 +04:00
|
|
|
mfile.print "\t$(ECHO) linking shared-object #{target_prefix.sub(/\A\/(.*)/, '\1/')}$(DLLIB)\n"
|
2012-01-11 20:04:25 +04:00
|
|
|
mfile.print "\t-$(Q)$(RM) $(@#{sep})\n"
|
2011-11-30 04:57:24 +04:00
|
|
|
link_so = LINK_SO.gsub(/^/, "\t$(Q) ")
|
|
|
|
if srcs.any?(&%r"\.(?:#{CXX_EXT.join('|')})\z".method(:===))
|
|
|
|
link_so = link_so.sub(/\bLDSHARED\b/, '\&XX')
|
|
|
|
end
|
|
|
|
mfile.print link_so, "\n\n"
|
|
|
|
unless $static.nil?
|
2012-01-11 20:04:25 +04:00
|
|
|
mfile.print "$(STATIC_LIB): $(OBJS)\n\t-$(Q)$(RM) $(@#{sep})\n\t"
|
2011-11-30 04:57:24 +04:00
|
|
|
mfile.print "$(ECHO) linking static-library $(@#{rsep})\n\t$(Q) "
|
|
|
|
mfile.print "$(AR) #{config_string('ARFLAGS') || 'cru '}$@ $(OBJS)"
|
|
|
|
config_string('RANLIB') do |ranlib|
|
2013-10-14 06:07:19 +04:00
|
|
|
mfile.print "\n\t-$(Q)#{ranlib} $(@) 2> /dev/null || true"
|
2011-11-30 04:57:24 +04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
mfile.print "\n\n"
|
|
|
|
if makedef
|
|
|
|
mfile.print "$(DEFFILE): #{origdef}\n"
|
|
|
|
mfile.print "\t$(ECHO) generating $(@#{rsep})\n"
|
2014-12-28 12:13:21 +03:00
|
|
|
mfile.print "\t$(Q) #{makedef} > $@\n\n"
|
2005-02-22 17:52:59 +03:00
|
|
|
end
|
2005-02-06 17:51:44 +03:00
|
|
|
|
2011-11-30 04:57:24 +04:00
|
|
|
depend = File.join(srcdir, "depend")
|
|
|
|
if File.exist?(depend)
|
|
|
|
mfile.print("###\n", *depend_rules(File.read(depend)))
|
|
|
|
else
|
2012-08-23 11:15:27 +04:00
|
|
|
mfile.print "$(OBJS): $(HDRS) $(ruby_headers)\n"
|
2011-11-29 01:54:33 +04:00
|
|
|
end
|
1998-01-16 15:19:09 +03:00
|
|
|
|
2011-11-30 04:57:24 +04:00
|
|
|
$makefile_created = true
|
|
|
|
ensure
|
|
|
|
mfile.close if mfile
|
|
|
|
end
|
|
|
|
|
|
|
|
# :stopdoc:
|
|
|
|
|
|
|
|
def init_mkmf(config = CONFIG, rbconfig = RbConfig::CONFIG)
|
|
|
|
$makefile_created = false
|
|
|
|
$arg_config = []
|
|
|
|
$enable_shared = config['ENABLE_SHARED'] == 'yes'
|
|
|
|
$defs = []
|
|
|
|
$extconf_h = nil
|
|
|
|
if $warnflags = CONFIG['warnflags'] and CONFIG['GCC'] == 'yes'
|
|
|
|
# turn warnings into errors only for bundled extensions.
|
|
|
|
config['warnflags'] = $warnflags.gsub(/(\A|\s)-Werror[-=]/, '\1-W')
|
|
|
|
RbConfig.expand(rbconfig['warnflags'] = config['warnflags'].dup)
|
|
|
|
config.each do |key, val|
|
|
|
|
RbConfig.expand(rbconfig[key] = val.dup) if /warnflags/ =~ val
|
|
|
|
end
|
|
|
|
$warnflags = config['warnflags'] unless $extmk
|
|
|
|
end
|
|
|
|
$CFLAGS = with_config("cflags", arg_config("CFLAGS", config["CFLAGS"])).dup
|
2013-12-31 13:32:38 +04:00
|
|
|
$CXXFLAGS = (with_config("cxxflags", arg_config("CXXFLAGS", config["CXXFLAGS"]))||'').dup
|
2011-11-30 04:57:24 +04:00
|
|
|
$ARCH_FLAG = with_config("arch_flag", arg_config("ARCH_FLAG", config["ARCH_FLAG"])).dup
|
|
|
|
$CPPFLAGS = with_config("cppflags", arg_config("CPPFLAGS", config["CPPFLAGS"])).dup
|
|
|
|
$LDFLAGS = with_config("ldflags", arg_config("LDFLAGS", config["LDFLAGS"])).dup
|
|
|
|
$INCFLAGS = "-I$(arch_hdrdir)"
|
|
|
|
$INCFLAGS << " -I$(hdrdir)/ruby/backward" unless $extmk
|
|
|
|
$INCFLAGS << " -I$(hdrdir) -I$(srcdir)"
|
|
|
|
$DLDFLAGS = with_config("dldflags", arg_config("DLDFLAGS", config["DLDFLAGS"])).dup
|
|
|
|
$LIBEXT = config['LIBEXT'].dup
|
|
|
|
$OBJEXT = config["OBJEXT"].dup
|
2012-03-22 06:17:30 +04:00
|
|
|
$EXEEXT = config["EXEEXT"].dup
|
2014-10-08 05:38:32 +04:00
|
|
|
$ASMEXT = config_string('ASMEXT', &:dup) || 'S'
|
2011-11-30 04:57:24 +04:00
|
|
|
$LIBS = "#{config['LIBS']} #{config['DLDLIBS']}"
|
|
|
|
$LIBRUBYARG = ""
|
|
|
|
$LIBRUBYARG_STATIC = config['LIBRUBYARG_STATIC']
|
|
|
|
$LIBRUBYARG_SHARED = config['LIBRUBYARG_SHARED']
|
2013-02-25 09:41:16 +04:00
|
|
|
$DEFLIBPATH = [$extmk ? "$(topdir)" : "$(#{config["libdirname"] || "libdir"})"]
|
2011-11-30 04:57:24 +04:00
|
|
|
$DEFLIBPATH.unshift(".")
|
|
|
|
$LIBPATH = []
|
|
|
|
$INSTALLFILES = []
|
|
|
|
$NONINSTALLFILES = [/~\z/, /\A#.*#\z/, /\A\.#/, /\.bak\z/i, /\.orig\z/, /\.rej\z/, /\.l[ao]\z/, /\.o\z/]
|
2013-02-17 12:23:25 +04:00
|
|
|
$VPATH = %w[$(srcdir) $(arch_hdrdir)/ruby $(hdrdir)/ruby]
|
2011-11-30 04:57:24 +04:00
|
|
|
|
|
|
|
$objs = nil
|
|
|
|
$srcs = nil
|
|
|
|
$libs = ""
|
|
|
|
if $enable_shared or RbConfig.expand(config["LIBRUBY"].dup) != RbConfig.expand(config["LIBRUBY_A"].dup)
|
|
|
|
$LIBRUBYARG = config['LIBRUBYARG']
|
|
|
|
end
|
2011-11-29 01:54:33 +04:00
|
|
|
|
2011-11-30 04:57:24 +04:00
|
|
|
$LOCAL_LIBS = ""
|
2001-04-24 10:21:58 +04:00
|
|
|
|
2011-11-30 04:57:24 +04:00
|
|
|
$cleanfiles = config_string('CLEANFILES') {|s| Shellwords.shellwords(s)} || []
|
|
|
|
$cleanfiles << "mkmf.log"
|
|
|
|
$distcleanfiles = config_string('DISTCLEANFILES') {|s| Shellwords.shellwords(s)} || []
|
|
|
|
$distcleandirs = config_string('DISTCLEANDIRS') {|s| Shellwords.shellwords(s)} || []
|
|
|
|
|
|
|
|
$extout ||= nil
|
|
|
|
$extout_prefix ||= nil
|
|
|
|
|
|
|
|
$arg_config.clear
|
|
|
|
dir_config("opt")
|
|
|
|
end
|
2011-11-29 01:54:33 +04:00
|
|
|
|
2011-11-30 04:57:24 +04:00
|
|
|
FailedMessage = <<MESSAGE
|
|
|
|
Could not create Makefile due to some reason, probably lack of necessary
|
|
|
|
libraries and/or headers. Check the mkmf.log file for more details. You may
|
|
|
|
need configuration options.
|
2005-02-06 17:51:44 +03:00
|
|
|
|
|
|
|
Provided configuration options:
|
|
|
|
MESSAGE
|
|
|
|
|
2011-11-30 04:57:24 +04:00
|
|
|
# Returns whether or not the Makefile was successfully generated. If not,
|
|
|
|
# the script will abort with an error message.
|
|
|
|
#
|
|
|
|
# Internal use only.
|
|
|
|
#
|
|
|
|
def mkmf_failed(path)
|
|
|
|
unless $makefile_created or File.exist?("Makefile")
|
|
|
|
opts = $arg_config.collect {|t, n| "\t#{t}#{n ? "=#{n}" : ""}\n"}
|
|
|
|
abort "*** #{path} failed ***\n" + FailedMessage + opts.join
|
|
|
|
end
|
2005-02-06 17:51:44 +03:00
|
|
|
end
|
|
|
|
|
2013-03-11 06:53:47 +04:00
|
|
|
private
|
|
|
|
|
|
|
|
def _libdir_basename
|
|
|
|
@libdir_basename ||= config_string("libdir") {|name| name[/\A\$\(exec_prefix\)\/(.*)/, 1]} || "lib"
|
|
|
|
end
|
|
|
|
|
2013-03-27 01:39:50 +04:00
|
|
|
def MAIN_DOES_NOTHING(*refs)
|
|
|
|
src = MAIN_DOES_NOTHING
|
2013-03-28 19:55:05 +04:00
|
|
|
unless refs.empty?
|
|
|
|
src = src.sub(/\{/) do
|
|
|
|
$& +
|
|
|
|
"\n if (argc > 1000000) {\n" +
|
|
|
|
refs.map {|n|" printf(\"%p\", &#{n});\n"}.join("") +
|
|
|
|
" }\n"
|
|
|
|
end
|
|
|
|
end
|
2013-03-27 01:39:50 +04:00
|
|
|
src
|
|
|
|
end
|
|
|
|
|
2012-01-12 13:44:34 +04:00
|
|
|
extend self
|
|
|
|
init_mkmf
|
|
|
|
|
|
|
|
$make = with_config("make-prog", ENV["MAKE"] || "make")
|
|
|
|
make, = Shellwords.shellwords($make)
|
|
|
|
$nmake = nil
|
|
|
|
case
|
|
|
|
when $mswin
|
|
|
|
$nmake = ?m if /nmake/i =~ make
|
|
|
|
end
|
|
|
|
$ignore_error = $nmake ? '' : ' 2> /dev/null || true'
|
|
|
|
|
|
|
|
RbConfig::CONFIG["srcdir"] = CONFIG["srcdir"] =
|
|
|
|
$srcdir = arg_config("--srcdir", File.dirname($0))
|
|
|
|
$configure_args["--topsrcdir"] ||= $srcdir
|
|
|
|
if $curdir = arg_config("--curdir")
|
|
|
|
RbConfig.expand(curdir = $curdir.dup)
|
|
|
|
else
|
|
|
|
curdir = $curdir = "."
|
|
|
|
end
|
|
|
|
unless File.expand_path(RbConfig::CONFIG["topdir"]) == File.expand_path(curdir)
|
|
|
|
CONFIG["topdir"] = $curdir
|
|
|
|
RbConfig::CONFIG["topdir"] = curdir
|
2011-11-30 04:57:24 +04:00
|
|
|
end
|
2012-01-12 13:44:34 +04:00
|
|
|
$configure_args["--topdir"] ||= $curdir
|
|
|
|
$ruby = arg_config("--ruby", File.join(RbConfig::CONFIG["bindir"], CONFIG["ruby_install_name"]))
|
2011-11-29 03:45:42 +04:00
|
|
|
|
2013-12-31 10:44:58 +04:00
|
|
|
RbConfig.expand(CONFIG["RUBY_SO_NAME"])
|
|
|
|
|
2011-11-30 04:57:24 +04:00
|
|
|
# :startdoc:
|
2011-11-29 03:45:42 +04:00
|
|
|
|
2012-01-12 13:44:34 +04:00
|
|
|
split = Shellwords.method(:shellwords).to_proc
|
* 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
|
|
|
|
2012-01-12 13:44:34 +04:00
|
|
|
EXPORT_PREFIX = config_string('EXPORT_PREFIX') {|s| s.strip}
|
* 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
|
|
|
|
2012-10-25 18:06:31 +04:00
|
|
|
hdr = ['#include "ruby.h"' "\n"]
|
2012-01-12 13:44:34 +04:00
|
|
|
config_string('COMMON_MACROS') do |s|
|
|
|
|
Shellwords.shellwords(s).each do |w|
|
|
|
|
w, v = w.split(/=/, 2)
|
|
|
|
hdr << "#ifndef #{w}"
|
|
|
|
hdr << "#define #{[w, v].compact.join(" ")}"
|
|
|
|
hdr << "#endif /* #{w} */"
|
|
|
|
end
|
2011-11-29 05:08:16 +04:00
|
|
|
end
|
2012-01-12 13:44:34 +04:00
|
|
|
config_string('COMMON_HEADERS') do |s|
|
|
|
|
Shellwords.shellwords(s).each {|w| hdr << "#include <#{w}>"}
|
|
|
|
end
|
2013-01-25 05:37:06 +04:00
|
|
|
|
|
|
|
##
|
2013-07-18 17:50:32 +04:00
|
|
|
# Common headers for Ruby C extensions
|
2013-01-25 05:37:06 +04:00
|
|
|
|
2012-01-12 13:44:34 +04:00
|
|
|
COMMON_HEADERS = hdr.join("\n")
|
2013-01-25 05:37:06 +04:00
|
|
|
|
|
|
|
##
|
2013-07-18 17:50:32 +04:00
|
|
|
# Common libraries for Ruby C extensions
|
2013-01-25 05:37:06 +04:00
|
|
|
|
2012-01-12 13:44:34 +04:00
|
|
|
COMMON_LIBS = config_string('COMMON_LIBS', &split) || []
|
|
|
|
|
2013-01-25 05:37:06 +04:00
|
|
|
##
|
|
|
|
# make compile rules
|
|
|
|
|
2012-01-12 13:44:34 +04:00
|
|
|
COMPILE_RULES = config_string('COMPILE_RULES', &split) || %w[.%s.%s:]
|
|
|
|
RULE_SUBST = config_string('RULE_SUBST')
|
2013-01-25 05:37:06 +04:00
|
|
|
|
|
|
|
##
|
|
|
|
# Command which will compile C files in the generated Makefile
|
|
|
|
|
2012-01-12 13:44:34 +04:00
|
|
|
COMPILE_C = config_string('COMPILE_C') || '$(CC) $(INCFLAGS) $(CPPFLAGS) $(CFLAGS) $(COUTFLAG)$@ -c $<'
|
2013-01-25 05:37:06 +04:00
|
|
|
|
|
|
|
##
|
|
|
|
# Command which will compile C++ files in the generated Makefile
|
|
|
|
|
2012-01-12 13:44:34 +04:00
|
|
|
COMPILE_CXX = config_string('COMPILE_CXX') || '$(CXX) $(INCFLAGS) $(CPPFLAGS) $(CXXFLAGS) $(COUTFLAG)$@ -c $<'
|
2013-01-25 05:37:06 +04:00
|
|
|
|
2014-10-08 05:38:32 +04:00
|
|
|
##
|
|
|
|
# Command which will translate C files to assembler sources in the generated Makefile
|
|
|
|
|
|
|
|
ASSEMBLE_C = config_string('ASSEMBLE_C') || COMPILE_C.sub(/(?<=\s)-c(?=\s)/, '-S')
|
|
|
|
|
|
|
|
##
|
|
|
|
# Command which will translate C++ files to assembler sources in the generated Makefile
|
|
|
|
|
|
|
|
ASSEMBLE_CXX = config_string('ASSEMBLE_CXX') || COMPILE_CXX.sub(/(?<=\s)-c(?=\s)/, '-S')
|
|
|
|
|
2013-01-25 05:37:06 +04:00
|
|
|
##
|
|
|
|
# Command which will compile a program in order to test linking a library
|
|
|
|
|
2012-01-12 13:44:34 +04:00
|
|
|
TRY_LINK = config_string('TRY_LINK') ||
|
2013-07-04 11:03:01 +04:00
|
|
|
"$(CC) #{OUTFLAG}#{CONFTEST}#{$EXEEXT} $(INCFLAGS) $(CPPFLAGS) " \
|
2012-01-12 13:44:34 +04:00
|
|
|
"$(CFLAGS) $(src) $(LIBPATH) $(LDFLAGS) $(ARCH_FLAG) $(LOCAL_LIBS) $(LIBS)"
|
2013-01-25 05:37:06 +04:00
|
|
|
|
|
|
|
##
|
|
|
|
# Command which will link a shared library
|
|
|
|
|
2012-12-10 08:18:13 +04:00
|
|
|
LINK_SO = (config_string('LINK_SO') || "").sub(/^$/) do
|
2012-01-12 13:44:34 +04:00
|
|
|
if CONFIG["DLEXT"] == $OBJEXT
|
|
|
|
"ld $(DLDFLAGS) -r -o $@ $(OBJS)\n"
|
|
|
|
else
|
2012-10-25 18:06:31 +04:00
|
|
|
"$(LDSHARED) #{OUTFLAG}$@ $(OBJS) " \
|
2012-01-12 13:44:34 +04:00
|
|
|
"$(LIBPATH) $(DLDFLAGS) $(LOCAL_LIBS) $(LIBS)"
|
|
|
|
end
|
2012-12-10 08:18:13 +04:00
|
|
|
end
|
2013-01-25 05:37:06 +04:00
|
|
|
|
|
|
|
##
|
|
|
|
# Argument which will add a library path to the linker
|
|
|
|
|
2012-09-23 16:45:21 +04:00
|
|
|
LIBPATHFLAG = config_string('LIBPATHFLAG') || ' -L%s'
|
2012-01-12 13:44:34 +04:00
|
|
|
RPATHFLAG = config_string('RPATHFLAG') || ''
|
2013-01-25 05:37:06 +04:00
|
|
|
|
|
|
|
##
|
|
|
|
# Argument which will add a library to the linker
|
|
|
|
|
2012-01-12 13:44:34 +04:00
|
|
|
LIBARG = config_string('LIBARG') || '-l%s'
|
2013-01-25 05:37:06 +04:00
|
|
|
|
|
|
|
##
|
|
|
|
# A C main function which does no work
|
|
|
|
|
2013-03-28 19:55:05 +04:00
|
|
|
MAIN_DOES_NOTHING = config_string('MAIN_DOES_NOTHING') || "int main(int argc, char **argv)\n{\n return 0;\n}"
|
2012-01-12 13:44:34 +04:00
|
|
|
UNIVERSAL_INTS = config_string('UNIVERSAL_INTS') {|s| Shellwords.shellwords(s)} ||
|
|
|
|
%w[int short long long\ long]
|
|
|
|
|
|
|
|
sep = config_string('BUILD_FILE_SEPARATOR') {|s| ":/=#{s}" if s != "/"} || ""
|
2013-01-25 05:37:06 +04:00
|
|
|
|
|
|
|
##
|
|
|
|
# Makefile rules that will clean the extension build directory
|
|
|
|
|
2012-01-12 13:44:34 +04:00
|
|
|
CLEANINGS = "
|
2012-06-12 18:46:29 +04:00
|
|
|
clean-static::
|
2009-01-25 05:06:29 +03:00
|
|
|
clean-rb-default::
|
|
|
|
clean-rb::
|
|
|
|
clean-so::
|
2012-05-16 09:39:06 +04:00
|
|
|
clean: clean-so clean-static clean-rb-default clean-rb
|
2012-08-25 04:55:34 +04:00
|
|
|
\t\t-$(Q)$(RM) $(CLEANLIBS#{sep}) $(CLEANOBJS#{sep}) $(CLEANFILES#{sep}) .*.time
|
2002-10-28 20:01:23 +03:00
|
|
|
|
2009-01-25 05:06:29 +03:00
|
|
|
distclean-rb-default::
|
|
|
|
distclean-rb::
|
|
|
|
distclean-so::
|
2012-05-16 09:39:06 +04:00
|
|
|
distclean-static::
|
|
|
|
distclean: clean distclean-so distclean-static distclean-rb-default distclean-rb
|
2013-07-04 11:03:01 +04:00
|
|
|
\t\t-$(Q)$(RM) Makefile $(RUBY_EXTCONF_H) #{CONFTEST}.* mkmf.log
|
2012-01-11 20:04:25 +04:00
|
|
|
\t\t-$(Q)$(RM) core ruby$(EXEEXT) *~ $(DISTCLEANFILES#{sep})
|
|
|
|
\t\t-$(Q)$(RMDIRS) $(DISTCLEANDIRS#{sep})#{$ignore_error}
|
2002-10-28 20:01:23 +03:00
|
|
|
|
2008-10-11 05:20:20 +04:00
|
|
|
realclean: distclean
|
2002-10-28 20:01:23 +03:00
|
|
|
"
|
2011-11-30 04:57:24 +04:00
|
|
|
end
|
|
|
|
|
|
|
|
include MakeMakefile
|
2005-02-06 17:51:44 +03:00
|
|
|
|
|
|
|
if not $extmk and /\A(extconf|makefile).rb\z/ =~ File.basename($0)
|
|
|
|
END {mkmf_failed($0)}
|
|
|
|
end
|