Date: Sun, 7 Jul 2019 11:39:19 +0000 (UTC) From: Gleb Popov <arrowd@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r506132 - head/lang/ghc Message-ID: <201907071139.x67BdJqp051883@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: arrowd Date: Sun Jul 7 11:39:18 2019 New Revision: 506132 URL: https://svnweb.freebsd.org/changeset/ports/506132 Log: lang/ghc: Remove `--enable-dtrace=0` for newer GHCs, seem to be working now. PR: 228727 Modified: head/lang/ghc/Makefile Modified: head/lang/ghc/Makefile ============================================================================== --- head/lang/ghc/Makefile Sun Jul 7 11:35:29 2019 (r506131) +++ head/lang/ghc/Makefile Sun Jul 7 11:39:18 2019 (r506132) @@ -3,7 +3,7 @@ PORTNAME= ghc PORTVERSION= ${GHC_VERSION} -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= lang haskell MASTER_SITES= https://www.haskell.org/ghc/dist/${PORTVERSION}/:source \ LOCAL/arrowd/:boot \ @@ -29,8 +29,6 @@ CONFIGURE_ARGS= --with-iconv-includes=${LOCALBASE}/in --with-iconv-libraries=${LOCALBASE}/lib CONFIGURE_ENV= CC=${CC} LD=${LD} PATH=${SLAVES_PREFIX}/bin:${PATH} MAKE_ENV= PATH=${SLAVES_PREFIX}/bin:${PATH} -# Turn off for a while, see PR 228727 -CONFIGURE_ARGS+= --enable-dtrace=0 SUB_FILES= build.mk SUB_LIST= GHC_VERSION=${GHC_VERSION} \ @@ -91,6 +89,8 @@ ONLY_FOR_ARCHS+= aarch64 armv6 armv7 powerpc64 .if ${GHC_VERSION_MAJOR} == 8 && ${GHC_VERSION_MINOR} <= 4 LLVM_VERSION= 50 +# Turn off for old GHCs, see PR 228727 +CONFIGURE_ARGS+= --enable-dtrace=0 .else LLVM_VERSION= 60 .endif
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201907071139.x67BdJqp051883>