class Ghc < Formula desc "Glorious Glasgow Haskell Compilation System" homepage "https://haskell.org/ghc/" url "https://downloads.haskell.org/~ghc/7.10.3/ghc-7.10.3b-src.tar.bz2" sha256 "b0bb177b8095de6074e5a3538e55fd1fc187dae6eb6ae36b05582c55f7d2db6f" bottle do sha256 "72c6c729ea385aaebfa22b55fe31b85f46e423a510c83d2f76c8f57336f9bf2c" => :el_capitan sha256 "3914b0875845c0e419c440c1b5833631ea709e6e8d5d9bf546422852c4c96ea8" => :yosemite sha256 "3ca8542ed077871a9da2e7af1a2362eb6ddc52501e6625fa5b06e9fda288e980" => :mavericks end option "with-test", "Verify the build using the testsuite" deprecated_option "tests" => "with-test" deprecated_option "with-tests" => "with-test" depends_on "homebrew/dupes/m4" => :build unless OS.mac? # These two dependencies are needed for the bootstrap executables. depends_on "gmp" => :build if OS.linux? depends_on "homebrew/dupes/ncurses" => :build if OS.linux? resource "gmp" do url "http://ftpmirror.gnu.org/gmp/gmp-6.1.0.tar.bz2" mirror "https://gmplib.org/download/gmp/gmp-6.1.0.tar.bz2" mirror "https://ftp.gnu.org/gnu/gmp/gmp-6.1.0.tar.bz2" sha256 "498449a994efeba527885c10405993427995d3f86b8768d8cdf8d9dd7c6b73e8" end if MacOS.version <= :lion fails_with :clang do cause <<-EOS.undent Fails to bootstrap ghc-cabal. Error is: libraries/Cabal/Cabal/Distribution/Compat/Binary/Class.hs:398:14: The last statement in a 'do' block must be an expression n <- get :: Get Int getMany n EOS end end resource "binary" do if OS.linux? # Using 7.10.1 gives the error message: # BFD: dist-install/build/stj2R30K: Not enough room for program headers, try linking with -N # strip:dist-install/build/stj2R30K[.note.gnu.build-id]: Bad value url "http://downloads.haskell.org/~ghc/7.6.3/ghc-7.6.3-x86_64-unknown-linux.tar.bz2" sha256 "398dd5fa6ed479c075ef9f638ef4fc2cc0fbf994e1b59b54d77c26a8e1e73ca0" elsif MacOS.version <= :lion url "https://downloads.haskell.org/~ghc/7.6.3/ghc-7.6.3-x86_64-apple-darwin.tar.bz2" sha256 "f7a35bea69b6cae798c5f603471a53b43c4cc5feeeeb71733815db6e0a280945" else url "https://downloads.haskell.org/~ghc/7.10.3/ghc-7.10.3-x86_64-apple-darwin.tar.xz" sha256 "852781d43d41cd55d02f818fe798bb4d1f7e52f488408167f413f7948cf1e7df" end end resource "testsuite" do url "https://downloads.haskell.org/~ghc/7.10.3/ghc-7.10.3-testsuite.tar.xz" sha256 "50c151695c8099901334a8478713ee3bb895a90132e2b75d1493961eb8ec643a" end def install # Build a static gmp rather than in-tree gmp, otherwise it links to brew's. gmp = libexec/"integer-gmp" # MPN_PATH: The lowest common denomenator asm paths that work on Darwin, # corresponding to Yonah and Merom. Obviates --disable-assembly. ENV["MPN_PATH"] = "x86_64/fastsse x86_64/core2 x86_64 generic" if build.bottle? # GMP *does not* use PIC by default without shared libs so --with-pic # is mandatory or else you'll get "illegal text relocs" errors. resource("gmp").stage do system "./configure", "--prefix=#{gmp}", "--with-pic", "--disable-shared" system "make" system "make", "check" ENV.deparallelize { system "make", "install" } end args = ["--with-gmp-includes=#{gmp}/include", "--with-gmp-libraries=#{gmp}/lib", "--with-ld=ld", # Avoid hardcoding superenv's ld. "--with-gcc=#{ENV.cc}"] # Always. if ENV.compiler == :clang args << "--with-clang=#{ENV.cc}" elsif ENV.compiler == :llvm args << "--with-gcc-4.2=#{ENV.cc}" end if OS.linux? # Fix error while loading shared libraries: libgmp.so.3 ln_s Formula["gmp"].lib/"libgmp.so", gmp/"lib/libgmp.so.3" ENV.prepend_path "LD_LIBRARY_PATH", gmp/"lib" # Fix /usr/bin/ld: cannot find -lgmp ENV.prepend_path "LIBRARY_PATH", gmp/"lib" # Fix ghc-stage2: error while loading shared libraries: libncursesw.so.5 ln_s Formula["ncurses"].lib/"libncursesw.so", gmp/"lib/libncursesw.so.5" # Fix ghc-pkg: error while loading shared libraries: libncursesw.so.6 ENV.prepend_path "LD_LIBRARY_PATH", Formula["ncurses"].lib end resource("binary").stage do # Change the dynamic linker and RPATH of the binary executables. if OS.linux? && Formula["glibc"].installed? keg = Keg.new(prefix) Dir["ghc/stage2/build/tmp/ghc-stage2", "libraries/*/dist-install/build/*.so", "rts/dist/build/*.so*", "utils/*/dist*/build/tmp/*"].each do |s| file = Pathname.new(s) keg.change_rpath(file, HOMEBREW_PREFIX.to_s) if file.mach_o_executable? || file.dylib? end end binary = buildpath/"binary" system "./configure", "--prefix=#{binary}", *args ENV.deparallelize { system "make", "install" } ENV.prepend_path "PATH", binary/"bin" end system "./configure", "--prefix=#{prefix}", *args system "make" if build.with? "test" resource("testsuite").stage { buildpath.install Dir["*"] } cd "testsuite" do system "make", "clean" system "make", "CLEANUP=1", "THREADS=#{ENV.make_jobs}", "fast" end end ENV.deparallelize { system "make", "install" } end test do (testpath/"hello.hs").write('main = putStrLn "Hello Homebrew"') system "#{bin}/runghc", testpath/"hello.hs" end end