69fce4e503
Add a resource for downloading the current 32-bit binary build to use as the bootstrap when installing 32-bit. Without this sbcl cannot be installed on a 32-bit machine. With this commit installing on x86_64 machine using the 32-bit option will bootstrap from the 32-bit binary. Bootstrap to 32-bit from the 64-bit should work, as any boostrap that can run should produce the same result, but this ensures at install time that the machine can run the 32-bit version. Updated the version of the 64-bit bootstrap file from 1.1.0 to 1.1.8 and added a comment on where to find documented the list of latest binary versions. Closes Homebrew/homebrew#26850. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
91 lines
3.1 KiB
Ruby
91 lines
3.1 KiB
Ruby
require 'formula'
|
|
|
|
class Sbcl < Formula
|
|
homepage 'http://www.sbcl.org/'
|
|
url 'http://downloads.sourceforge.net/project/sbcl/sbcl/1.1.15/sbcl-1.1.15-source.tar.bz2'
|
|
sha1 '345b505353c3ed6a2b2a18e3de9e704527bf32a4'
|
|
|
|
head 'git://sbcl.git.sourceforge.net/gitroot/sbcl/sbcl.git'
|
|
|
|
bottle do
|
|
sha1 "0fbd8c1f8ff12f6fd4c2ccb660edad3a40f57cb6" => :mavericks
|
|
sha1 "91f483bf6f8001a0b1557727450de769528f1c79" => :mountain_lion
|
|
sha1 "a2160042c9d0dc94208966ac3034a44364e6c2a0" => :lion
|
|
end
|
|
|
|
fails_with :llvm do
|
|
build 2334
|
|
cause "Compilation fails with LLVM."
|
|
end
|
|
|
|
option "32-bit"
|
|
option "without-threads", "Build SBCL without support for native threads"
|
|
option "with-ldb", "Include low-level debugger in the build"
|
|
option "with-internal-xref", "Include XREF information for SBCL internals (increases core size by 5-6MB)"
|
|
|
|
# Current binary versions are listed at http://sbcl.sourceforge.net/platform-table.html
|
|
|
|
resource 'bootstrap64' do
|
|
url 'http://downloads.sourceforge.net/project/sbcl/sbcl/1.1.8/sbcl-1.1.8-x86-64-darwin-binary.tar.bz2'
|
|
sha1 'cffd8c568588f48bd0c69295a385b662d27983cf'
|
|
end
|
|
|
|
resource 'bootstrap32' do
|
|
url 'http://downloads.sourceforge.net/project/sbcl/sbcl/1.1.6/sbcl-1.1.6-x86-darwin-binary.tar.bz2'
|
|
sha1 '35a76b93f8714bc34ba127df4aaf69aacfc08164'
|
|
end
|
|
|
|
def patches
|
|
{ :p0 => [
|
|
"https://trac.macports.org/export/88830/trunk/dports/lang/sbcl/files/patch-base-target-features.diff",
|
|
"https://trac.macports.org/export/88830/trunk/dports/lang/sbcl/files/patch-make-doc.diff",
|
|
"https://trac.macports.org/export/88830/trunk/dports/lang/sbcl/files/patch-posix-tests.diff",
|
|
"https://trac.macports.org/export/88830/trunk/dports/lang/sbcl/files/patch-use-mach-exception-handler.diff"
|
|
]}
|
|
end
|
|
|
|
def write_features
|
|
features = []
|
|
features << ":sb-thread" unless build.include? "without-threads"
|
|
features << ":sb-ldb" if build.include? "with-ldb"
|
|
features << ":sb-xref-for-internals" if build.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]/n
|
|
end
|
|
|
|
bootstrap = (build.build_32_bit? || !MacOS.prefer_64_bit?) ? 'bootstrap32' : 'bootstrap64'
|
|
resource(bootstrap).stage do
|
|
# 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"
|
|
|
|
cd buildpath do
|
|
ENV['SBCL_ARCH'] = 'x86' if build.build_32_bit?
|
|
system "./make.sh", "--prefix=#{prefix}", "--xc-host=#{xc_cmdline}"
|
|
end
|
|
end
|
|
|
|
ENV['INSTALL_ROOT'] = prefix
|
|
system "sh install.sh"
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/sbcl", "--version"
|
|
end
|
|
end
|