• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10.1/ruby-106/ruby/tool/

Lines Matching refs:CONFIG

6   CONFIG = Hash.new {""}
128 RbConfig.expand($installed_list, RbConfig::CONFIG)
148 if !defined?($strip_command) and (cmd = CONFIG["STRIP"])
299 def CONFIG.[](name, mandatory = false)
302 raise "CONFIG['#{name}'] must be set" if !value or value.empty?
307 exeext = CONFIG["EXEEXT"]
309 ruby_install_name = CONFIG["ruby_install_name", true]
310 rubyw_install_name = CONFIG["rubyw_install_name"]
313 bindir = CONFIG["bindir", true]
314 libdir = CONFIG["libdir", true]
315 rubyhdrdir = CONFIG["rubyhdrdir", true]
316 archhdrdir = CONFIG["rubyarchhdrdir"] || (rubyhdrdir + "/" + CONFIG['arch'])
317 rubylibdir = CONFIG["rubylibdir", true]
318 archlibdir = CONFIG["rubyarchdir", true]
319 sitelibdir = CONFIG["sitelibdir"]
320 sitearchlibdir = CONFIG["sitearchdir"]
321 vendorlibdir = CONFIG["vendorlibdir"]
322 vendorarchlibdir = CONFIG["vendorarchdir"]
323 mandir = CONFIG["mandir", true]
324 docdir = CONFIG["docdir", true]
325 configure_args = Shellwords.shellwords(CONFIG["configure_args"])
326 enable_shared = CONFIG["ENABLE_SHARED"] == 'yes'
327 dll = CONFIG["LIBRUBY_SO", enable_shared]
328 lib = CONFIG["LIBRUBY", true]
329 arc = CONFIG["LIBRUBY_A", true]
330 major = CONFIG["MAJOR", true]
331 minor = CONFIG["MINOR", true]
355 for link in CONFIG["LIBRUBY_ALIASES"].split
362 if CONFIG["ARCHFILE"]
363 for file in CONFIG["ARCHFILE"].split
370 pc = CONFIG["ruby_pc"]
379 noinst = %w[-* -*/] | (CONFIG["no_install_files"] || "").split
380 install_recursive("#{$extout}/#{CONFIG['arch']}", archlibdir, :no_install => noinst, :mode => $prog_mode, :strip => $strip)
386 install_recursive("#{$extout}/include/#{CONFIG['arch']}", archhdrdir, :glob => "*.h", :mode => $data_mode)
402 ridatadir = File.join(CONFIG['ridir'], CONFIG['ruby_version'], "system")
415 bindir=`#{CONFIG["CHDIR"]} "${0%/*}" 2>/dev/null; pwd`
417 if CONFIG["LIBRUBY_RELATIVE"] != 'yes' and libpathenv = CONFIG["LIBPATHENV"]
439 if trans = CONFIG["program_transform_name"]
634 prefix = "#{$extout}/#{CONFIG['arch']}/"