require "language/haskell" class Ghc < Formula include Language::Haskell::Cabal desc "Glorious Glasgow Haskell Compilation System" homepage "https://haskell.org/ghc/" url "https://downloads.haskell.org/ghc/8.8.1/ghc-8.8.1-src.tar.xz" sha256 "908a83d9b814da74585de9d39687189e6260ec3848131f9d9236cab8a123721a" bottle do rebuild 1 sha256 "e0c68beda3b63b242d971f86792e92693732fa5e23c69659fc0a59d8dc331a38" => :catalina sha256 "335717b90bb69785591b4e8896bd081170d4dd0fcb0f7496d367c2b0fdcf03c3" => :mojave sha256 "0b1414c28edf44b9433a2976a7ed63301197c478f9e2d01fa5dd449b3b42a597" => :high_sierra end head do url "https://gitlab.haskell.org/ghc/ghc.git", :branch => "ghc-8.8" depends_on "autoconf" => :build depends_on "automake" => :build depends_on "libtool" => :build resource "cabal" do url "https://hackage.haskell.org/package/cabal-install-3.0.0.0/cabal-install-3.0.0.0.tar.gz" sha256 "a432a7853afe96c0fd80f434bd80274601331d8c46b628cd19a0d8e96212aaf1" end end depends_on "python" => :build depends_on "sphinx-doc" => :build resource "gmp" do url "https://ftp.gnu.org/gnu/gmp/gmp-6.1.2.tar.xz" mirror "https://gmplib.org/download/gmp/gmp-6.1.2.tar.xz" mirror "https://ftpmirror.gnu.org/gmp/gmp-6.1.2.tar.xz" sha256 "87b565e89a9a684fe4ebeeddb8399dce2599f9c9049854ca8c0dfbdea0e21912" end # https://www.haskell.org/ghc/download_ghc_8_6_5.html#macosx_x86_64 # "This is a distribution for Mac OS X, 10.7 or later." # Need to use 8.6.5 to build 8.8.1 because of # https://gitlab.haskell.org/ghc/ghc/issues/17146 resource "binary" do url "https://downloads.haskell.org/~ghc/8.6.5/ghc-8.6.5-x86_64-apple-darwin.tar.xz" sha256 "dfc1bdb1d303a87a8552aa17f5b080e61351f2823c2b99071ec23d0837422169" end # Two patches: # - configure: workaround for https://gitlab.haskell.org/ghc/ghc/issues/17114 # - rts/Linker.c: Fix for Catalina compatibility https://gitlab.haskell.org/ghc/ghc/issues/17353 patch :DATA def install # Work around Xcode 11 clang bug # https://bitbucket.org/multicoreware/x265/issues/514/wrong-code-generated-on-macos-1015 ENV.append_to_cflags "-fno-stack-check" if DevelopmentTools.clang_build_version >= 1010 ENV["CC"] = ENV.cc ENV["LD"] = "ld" # Build a static gmp rather than in-tree gmp, otherwise all ghc-compiled # executables link to Homebrew's GMP. gmp = libexec/"integer-gmp" # 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", "--build=#{Hardware.oldest_cpu}-apple-darwin#{`uname -r`.to_i}" system "make" system "make", "check" system "make", "install" end args = ["--with-gmp-includes=#{gmp}/include", "--with-gmp-libraries=#{gmp}/lib"] # As of Xcode 7.3 (and the corresponding CLT) `nm` is a symlink to `llvm-nm` # and the old `nm` is renamed `nm-classic`. Building with the new `nm`, a # segfault occurs with the following error: # make[1]: * [compiler/stage2/dll-split.stamp] Segmentation fault: 11 # Upstream is aware of the issue and is recommending the use of nm-classic # until Apple restores POSIX compliance: # https://ghc.haskell.org/trac/ghc/ticket/11744 # https://ghc.haskell.org/trac/ghc/ticket/11823 # https://mail.haskell.org/pipermail/ghc-devs/2016-April/011862.html # LLVM itself has already fixed the bug: llvm-mirror/llvm@ae7cf585 # rdar://25311883 and rdar://25299678 if DevelopmentTools.clang_build_version >= 703 && DevelopmentTools.clang_build_version < 800 args << "--with-nm=#{`xcrun --find nm-classic`.chomp}" end resource("binary").stage do binary = buildpath/"binary" system "./configure", "--prefix=#{binary}", *args ENV.deparallelize { system "make", "install" } ENV.prepend_path "PATH", binary/"bin" end if build.head? resource("cabal").stage do system "sh", "bootstrap.sh", "--sandbox" (buildpath/"bootstrap-tools/bin").install ".cabal-sandbox/bin/cabal" end ENV.prepend_path "PATH", buildpath/"bootstrap-tools/bin" cabal_sandbox do cabal_install "--only-dependencies", "happy", "alex" cabal_install "--prefix=#{buildpath}/bootstrap-tools", "happy", "alex" end system "./boot" end system "./configure", "--prefix=#{prefix}", *args system "make" ENV.deparallelize { system "make", "install" } Dir.glob(lib/"*/package.conf.d/package.cache") { |f| rm f } end def post_install system "#{bin}/ghc-pkg", "recache" end test do (testpath/"hello.hs").write('main = putStrLn "Hello Homebrew"') system "#{bin}/runghc", testpath/"hello.hs" end end __END__ diff --git a/configure b/configure index e00a480..6db08ee 100755 --- a/configure +++ b/configure @@ -11525,6 +11525,8 @@ fi; fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $fptools_cv_alex_version" >&5 $as_echo "$fptools_cv_alex_version" >&6; } +if test ! -f compiler/cmm/CmmLex.hs || test ! -f compiler/parser/Lexer.hs +then fp_version1=$fptools_cv_alex_version; fp_version2=3.1.7 fp_save_IFS=$IFS; IFS='.' while test x"$fp_version1" != x || test x"$fp_version2" != x @@ -11548,6 +11550,7 @@ IFS=$fp_save_IFS if test "$fp_num1" -lt "$fp_num2"; then : as_fn_error $? "Alex version 3.1.7 or later is required to compile GHC." "$LINENO" 5 fi +fi AlexVersion=$fptools_cv_alex_version; diff -pur a/rts/Linker.c b/rts/Linker.c --- a/rts/Linker.c 2019-08-25 21:03:36.000000000 +0900 +++ b/rts/Linker.c 2019-11-05 11:09:06.000000000 +0900 @@ -192,7 +192,7 @@ int ocTryLoad( ObjectCode* oc ); * * MAP_32BIT not available on OpenBSD/amd64 */ -#if defined(x86_64_HOST_ARCH) && defined(MAP_32BIT) +#if defined(x86_64_HOST_ARCH) && defined(MAP_32BIT) && !defined(__APPLE__) #define TRY_MAP_32BIT MAP_32BIT #else #define TRY_MAP_32BIT 0 @@ -214,7 +214,7 @@ int ocTryLoad( ObjectCode* oc ); */ #if !defined(ALWAYS_PIC) && defined(x86_64_HOST_ARCH) -#if defined(MAP_32BIT) +#if defined(MAP_32BIT) && !defined(__APPLE__) // Try to use MAP_32BIT #define MMAP_32BIT_BASE_DEFAULT 0 #else