Created
October 23, 2013 07:52
-
-
Save jamiehodge/7114280 to your computer and use it in GitHub Desktop.
config.rb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module Rubinius | |
config = {} | |
config[:config_file] = "/Users/jamiehodge/Documents/development/rubinius/rubinius/config.rb" | |
config[:build_tool_gems] = "HTTP/1.1 200 OK" | |
config[:build_c_ext_gems] = "\n" | |
config[:rubygems_gems] = "x-amz-version-id: ub8m1CNxjhm1vn24aplF4CDcG.AGOJcb\r\n" | |
config[:runtime_gems] = "a" | |
config[:ruby_version] = "2.1.0" | |
config[:version] = "2.1.1n295" | |
config[:libversion] = "2.1" | |
config[:patch_version] = "1" | |
config[:release_date] = "2013-10-22" | |
config[:revision] = "d7fc650a2f7ea1169ce1868be93ef5e3a78e2c4e" | |
config[:config_version] = 183 | |
config[:vm_release_h] = "/Users/jamiehodge/Documents/development/rubinius/rubinius/vm/gen/release.h" | |
config[:command_line] = [] | |
config[:build_ruby] = "/usr/local/Cellar/ruby/HEAD/bin/ruby" | |
config[:build_make] = "make" | |
config[:build_rake] = "rake" | |
config[:build_perl] = "perl" | |
config[:llvm] = :prebuilt | |
config[:llvm_configure] = "/Users/jamiehodge/Documents/development/rubinius/rubinius/vendor/llvm/Release/bin/llvm-config" | |
config[:llvm_version] = "3.2svn" | |
config[:llvm_shared] = false | |
config[:cc] = "gcc" | |
config[:cxx] = "g++" | |
config[:ldshared] = "gcc -bundle -undefined suppress -flat_namespace" | |
config[:ldsharedxx] = "g++ -bundle -undefined suppress -flat_namespace -lstdc++" | |
config[:gcc_major] = "4.2" | |
config[:user_cflags] = "" | |
config[:user_cxxflags] = "" | |
config[:user_cppflags] = "" | |
config[:user_ldflags] = "" | |
config[:system_cflags] = "-I/usr/local/include -fPIC -D_DARWIN_USE_64_BIT_INODE" | |
config[:system_cxxflags] = "" | |
config[:system_cppflags] = "" | |
config[:system_ldflags] = "-L/usr/local/lib " | |
config[:include_dirs] = ["/usr/local/include"] | |
config[:lib_dirs] = ["/usr/local/lib"] | |
config[:defines] = ["HAS_EXECINFO", "HAVE_SPT_REUSEARGV", "HAVE_NL_LANGINFO", "HAVE_STRNLEN", "HAVE_TM_GMTOFF", "HAVE_TM_ZONE", "HAVE_TIMEZONE", "HAVE_TZNAME", "HAVE_DAYLIGHT", "HAVE_ALLOCA_H", "HAVE_STRING_H", "HAVE_SYS_TIME_H", "HAVE_SYS_TIMES_H", "HAVE_SYS_TYPES_H", "HAVE_UNISTD_H", "HAVE_STDARG_H"] | |
config[:curses] = "curses" | |
config[:host] = "x86_64-apple-darwin13.0.0" | |
config[:cpu] = "x86_64" | |
config[:vendor] = "apple" | |
config[:os] = "darwin13.0.0" | |
config[:little_endian] = true | |
config[:sizeof_long] = 8 | |
config[:x86_32] = false | |
config[:x86_64] = true | |
config[:dtrace] = false | |
config[:fibers] = true | |
config[:sourcedir] = "/Users/jamiehodge/Documents/development/rubinius/rubinius" | |
config[:stagingdir] = nil | |
config[:build_prefix] = "/Users/jamiehodge/Documents/development/rubinius/rubinius" | |
config[:capi_includedir] = "/Users/jamiehodge/Documents/development/rubinius/rubinius/vm/include/capi" | |
config[:build_exe] = "/Users/jamiehodge/Documents/development/rubinius/rubinius/bin/rbx" | |
config[:prefixdir] = "/Users/jamiehodge/Documents/development/rubinius/rubinius" | |
config[:bindir] = "/bin" | |
config[:libdir] = "/library" | |
config[:encdir] = "/library/encoding/converter" | |
config[:runtimedir] = "/runtime" | |
config[:kerneldir] = "/kernel" | |
config[:sitedir] = "/site" | |
config[:vendordir] = "/vendor" | |
config[:includedir] = "/vm/include/capi" | |
config[:mandir] = "/man" | |
config[:gemsdir] = "/gems" | |
config[:program_name] = "rbx" | |
config[:bin_links] = ["ruby", "rake", "gem", "irb", "rdoc", "ri"] | |
config[:use_bin_links] = true | |
config[:windows] = false | |
config[:darwin] = true | |
config[:bsd] = false | |
config[:linux] = false | |
config[:vendor_zlib] = false | |
if Rubinius.constants.map { |x| x.to_s }.include?("BUILD_CONFIG") | |
self::BUILD_CONFIG.replace config | |
else | |
self::BUILD_CONFIG = config | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment