82 lines
2.7 KiB
Ruby
82 lines
2.7 KiB
Ruby
require 'formula'
|
|
|
|
class SbclBootstrapBinaries < Formula
|
|
url 'http://downloads.sourceforge.net/project/sbcl/sbcl/1.0.49/sbcl-1.0.49-x86-darwin-binary.tar.bz2'
|
|
md5 '6ffae170cfa0f1858efb37aa7544aba6'
|
|
version "1.0.49"
|
|
end
|
|
|
|
class Sbcl < Formula
|
|
homepage 'http://www.sbcl.org/'
|
|
url 'http://downloads.sourceforge.net/project/sbcl/sbcl/1.0.53/sbcl-1.0.53-source.tar.bz2'
|
|
md5 '28bdb8d65b240bcc45370f19b781f9b8'
|
|
head 'git://sbcl.git.sourceforge.net/gitroot/sbcl/sbcl.git'
|
|
|
|
fails_with_llvm "Compilation fails with LLVM.", :build => 2334
|
|
|
|
skip_clean 'bin'
|
|
skip_clean 'lib'
|
|
|
|
def options
|
|
[
|
|
["--without-threads", "Build SBCL without support for native threads"],
|
|
["--with-ldb", "Include low-level debugger in the build"],
|
|
["--with-internal-xref", "Include XREF information for SBCL internals (increases core size by 5-6MB)"],
|
|
["--32bit", "Override arch detection and compile for 32-bits."]
|
|
]
|
|
end
|
|
|
|
def patches
|
|
{ :p0 => [
|
|
"https://trac.macports.org/export/87593/trunk/dports/lang/sbcl/files/patch-base-target-features.diff",
|
|
"https://trac.macports.org/export/87593/trunk/dports/lang/sbcl/files/patch-make-doc.diff",
|
|
"https://trac.macports.org/export/87593/trunk/dports/lang/sbcl/files/patch-posix-tests.diff",
|
|
"https://trac.macports.org/export/87593/trunk/dports/lang/sbcl/files/patch-use-mach-exception-handler.diff"
|
|
]}
|
|
end
|
|
|
|
def write_features
|
|
features = []
|
|
features << ":sb-thread" unless ARGV.include? "--without-threads"
|
|
features << ":sb-ldb" if ARGV.include? "--with-ldb"
|
|
features << ":sb-xref-for-internals" if ARGV.include? "--with-internal-xref"
|
|
|
|
File.open("customize-target-features.lisp", "w") do |file|
|
|
file.puts "(lambda (list)"
|
|
features.each do |f|
|
|
file.puts " (pushnew #{f} list)"
|
|
end
|
|
file.puts " list)"
|
|
end
|
|
end
|
|
|
|
def install
|
|
write_features
|
|
|
|
# Remove non-ASCII values from environment as they cause build failures
|
|
# More information: http://bugs.gentoo.org/show_bug.cgi?id=174702
|
|
ENV.delete_if do |key, value|
|
|
value =~ /[\x80-\xff]/
|
|
end
|
|
|
|
build_directory = Dir.pwd
|
|
|
|
SbclBootstrapBinaries.new.brew {
|
|
# We only need the binaries for bootstrapping, so don't install anything:
|
|
command = Dir.pwd + "/src/runtime/sbcl"
|
|
core = Dir.pwd + "/output/sbcl.core"
|
|
xc_cmdline = "#{command} --core #{core} --disable-debugger --no-userinit --no-sysinit"
|
|
|
|
Dir.chdir(build_directory)
|
|
|
|
if ARGV.include? "--32bit"
|
|
system "SBCL_ARCH=x86 ./make.sh --prefix='#{prefix}' --xc-host='#{xc_cmdline}'"
|
|
else
|
|
system "./make.sh --prefix='#{prefix}' --xc-host='#{xc_cmdline}'"
|
|
end
|
|
}
|
|
|
|
ENV['INSTALL_ROOT'] = prefix
|
|
system "sh install.sh"
|
|
end
|
|
end
|