Skip to content

Instantly share code, notes, and snippets.

@richmolj
Created July 8, 2013 17:58
Show Gist options
  • Save richmolj/5950972 to your computer and use it in GitHub Desktop.
Save richmolj/5950972 to your computer and use it in GitHub Desktop.
module Rubinius
# Make this reload friendly without silly constant defined warnings.
BUILD_CONFIG = {
:command_line => "",
:which_ruby => :ruby,
:build_ruby => "/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/bin/ruby",
:build_rake => "rake",
:build_perl => "perl",
:llvm => :prebuilt,
:llvm_configure => "/Users/richmolj/code/rubinius/vendor/llvm/Release/bin/llvm-config",
:llvm_version => "3.2svn",
:llvm_shared => false,
:cc => "gcc",
:cxx => "g++",
:ldshared => "gcc -bundle -undefined suppress -flat_namespace",
:ldsharedxx => "g++ -bundle -undefined suppress -flat_namespace -lstdc++",
:gcc_major => "4.2",
:user_cflags => "",
:user_cxxflags => "",
:user_cppflags => "",
:user_ldflags => "",
:system_cflags => "-I/usr/local/include -fPIC -D_DARWIN_USE_64_BIT_INODE",
:system_cxxflags => "",
:system_cppflags => "",
:system_ldflags => "-L/usr/local/lib ",
:make => "make",
:include_dirs => ["/usr/local/include"],
:lib_dirs => ["/usr/local/lib"],
:defines => ["HAS_EXECINFO", "HAVE_SPT_REUSEARGV", "HAVE_NL_LANGINFO", "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"],
:curses => "curses",
:host => "x86_64-apple-darwin12.3.0",
:cpu => "x86_64",
:vendor => "apple",
:os => "darwin12.3.0",
:little_endian => true,
:sizeof_long => 8,
:x86_32 => false,
:x86_64 => true,
:dtrace => false,
:fibers => true,
:sourcedir => "/Users/richmolj/code/rubinius",
:stagingdir => nil,
:prefixdir => "/Users/richmolj/code/rubinius",
:bindir => "/bin",
:libdir => "/lib",
:runtimedir => "/runtime",
:kerneldir => "/kernel",
:sitedir => "/site",
:vendordir => "/vendor",
:include18dir => "/vm/capi/18/include",
:include19dir => "/vm/capi/19/include",
:include20dir => "/vm/capi/19/include",
:mandir => "/man",
:gemsdir => "/gems",
:program_name => "rbx",
:bin_links => ["ruby", "rake", "gem", "irb", "rdoc", "ri"],
:use_bin_links => true,
:version => "2.0.0.rc1",
:libversion => "2.0",
:release_date => "yyyy-mm-dd",
:config_version => 174,
:windows => false,
:darwin => true,
:bsd => false,
:linux => false,
:version_list => ["18", "19"],
:default_version => "18",
:vendor_zlib => false,
:readline => :c_readline,
}
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment