summaryrefslogtreecommitdiff
path: root/lang/ghc/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'lang/ghc/Makefile')
-rw-r--r--lang/ghc/Makefile189
1 files changed, 53 insertions, 136 deletions
diff --git a/lang/ghc/Makefile b/lang/ghc/Makefile
index ce4fa4c9c728..88cf3f8c2f3f 100644
--- a/lang/ghc/Makefile
+++ b/lang/ghc/Makefile
@@ -13,7 +13,7 @@ WWW= https://www.haskell.org/ghc/
LICENSE= BSD3CLAUSE
LICENSE_FILE= ${WRKSRC}/LICENSE
-ONLY_FOR_ARCHS= aarch64 amd64 i386
+ONLY_FOR_ARCHS= aarch64 amd64
BUILD_DEPENDS= ${LOCALBASE}/lib/libgmp.so:math/gmp
@@ -23,13 +23,14 @@ USES= autoreconf compiler:c11 gmake \
GNU_CONFIGURE= yes
CONFIGURE_ARGS+= --docdir=${DOCSDIR}
-CONFIGURE_ENV= ALEX=/usr/bin/true HAPPY=/usr/bin/true
-INSTALL_TARGET= install-strip
+CONFIGURE_ENV= CC=${CC} CXX=${CXX} CPP=${CPP} GHC=${BOOT_GHC} \
+ ALEX=/usr/bin/true HAPPY=/usr/bin/true
+CONFIGURE_TARGET= ${GHC_ARCH}-portbld-${OPSYS:tl}
USE_LOCALE= en_US.UTF-8
-USE_PERL5= build
NO_CCACHE= yes
OPTIONS_SUB= yes
-SHEBANG_FILES= ${BOOT_SCRIPT}
+SHEBANG_FILES= ${BOOT_SCRIPT} \
+ hadrian/bootstrap/bootstrap.py
OPTIONS_DEFINE?= DYNAMIC GMP PROFILE DOCS PDFDOCS
OPTIONS_DEFAULT= DYNAMIC PROFILE GMP
@@ -45,12 +46,9 @@ DYNAMIC_DESC= Add support for dynamic linking
GMP_DESC= Use GNU Multi-precision Library from Ports
PROFILE_DESC= Add support for performance profiling
-BOOT_CONFIGURE_ENV= GHC=${LOCALBASE}/bin/ghc
-BOOT_CONFIGURE_ENV_OFF= GHC=${BOOT_GHC} LLC=llc${BOOT_LLVM_VERSION} OPT=opt${BOOT_LLVM_VERSION}
-
DOCS_BUILD_DEPENDS= sphinx-build:textproc/py-sphinx
-DOCS_VARS= enable_docs=YES hadrian_docs_arg=--docs=no-sphinx-pdfs
-DOCS_VARS_OFF= enable_docs=NO hadrian_docs_arg=--docs=none
+DOCS_VARS= hadrian_docs_arg=--docs=no-sphinx-pdfs
+DOCS_VARS_OFF= hadrian_docs_arg=--docs=none
PDFDOCS_IMPLIES= DOCS
PDFDOCS_BUILD_DEPENDS= xelatex:print/tex-xetex \
@@ -61,8 +59,8 @@ DYNAMIC_CONFIGURE_WITH= system-libffi \
ffi-includes=${LOCALBASE}/include \
ffi-libraries=${LOCALBASE}/lib
DYNAMIC_LIB_DEPENDS= libffi.so:devel/libffi
-DYNAMIC_VARS= enable_dynamic=YES hadrian_setting_dynamic=True
-DYNAMIC_VARS_OFF= enable_dynamic=NO hadrian_setting_dynamic=False
+DYNAMIC_VARS= hadrian_setting_dynamic=True
+DYNAMIC_VARS_OFF= hadrian_setting_dynamic=False
# do not replace this with GMP_CONFIGURE_WITH
# it adds "--without-gmp-*" when the option is OFF, which results in "no" value
@@ -72,8 +70,8 @@ GMP_CONFIGURE_ON= --with-gmp-includes=${LOCALBASE}/include \
GMP_LIB_DEPENDS= libgmp.so:math/gmp
GMP_VARS_OFF= hadrian_gmp_arg=--bignum=native
-PROFILE_VARS= enable_profile=YES hadrian_setting_profile=True
-PROFILE_VARS_OFF= enable_profile=NO hadrian_setting_profile=False
+PROFILE_VARS= hadrian_setting_profile=True
+PROFILE_VARS_OFF= hadrian_setting_profile=False
GHC_VERSION?= 9.8.4
LLVM_VERSION?= 15
@@ -96,187 +94,125 @@ BASE_PACKAGES?= Cabal-3.10.3.0 array-0.5.8.0 base-4.19.2.0 binary-0.8.9.1 \
PLIST_SUB+= ${pkg:C/-([0-9.])+//:tu}_VERSION=${pkg:C/^([^\.]*-)+//}
.endfor
-BUILD_MK= DYNAMIC_GHC_PROGRAMS=${ENABLE_DYNAMIC} \
- BUILD_PROF_LIBS=${ENABLE_PROFILE} \
- HADDOCK_DOCS=YES \
- BUILD_SPHINX_HTML=${ENABLE_DOCS} \
- BUILD_SPHINX_PDF=NO \
- SRC_HC_OPTS+="-I${NCURSESINC} -L${NCURSESLIB} -I${LOCALBASE}/include -L${LOCALBASE}/lib" \
- SRC_CC_OPTS+="${CFLAGS}" \
- EXTRA_HSC2HS_OPTS+="-I${LOCALBASE}/include --lflag=-L${LOCALBASE}/lib" \
- EXTRA_LD_OPTS+="-L${LOCALBASE}/lib" \
- libraries/terminfo_CONFIGURE_OPTS+="--configure-option=--with-curses-libraries=${NCURSESLIB}" \
- V=0
+PLIST_SUB+= GHC_ARCH=${GHC_ARCH}
.include <bsd.port.pre.mk>
-.if ${GHC_VERSION:C/\..*//g} >= 9 && ${ARCH} != i386
-# hadrian build on i386 fails due to https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=269570
-# relocation R_386_TLS_LE cannot be used with -shared
-USE_HADRIAN= yes
+.if ${OSVERSION} >= 1500000
+BUILD_DEPENDS+= ${LOCALBASE}/lib/compat/libutil.so.9:misc/compat14x
.endif
-.if ${GHC_VERSION:C/\..*//g} >= 9 && ${GHC_VERSION:C/[^\.]*\.//:C/\..*//g} >= 4
-BOOT_SCRIPT= ./boot.source
-IGNORE_i386= requires Hadrian build which doesn't work on i386
-.else
-BOOT_SCRIPT= ./boot
-.endif
+# GHC 9.2 has a different name for this
+BOOT_SCRIPT?= ./boot.source
.if ${SLAVE_PORT} != "yes"
PORTDOCS= *
-HADRIAN_PLAN= ${PATCHDIR}/plan-bootstrap-${BOOT_GHC_VERSION:C/\./_/g}.json
+HADRIAN_PLAN?= ${PATCHDIR}/plan-bootstrap-${BOOT_GHC_VERSION:C/\./_/g}.json
.else
HADRIAN_DOCS_ARG= --docs=none
HADRIAN_PLAN= ${MASTERDIR}/files/plan-bootstrap-${BOOT_GHC_VERSION:C/\./_/g}.json
PLIST_SUB+= GMP=
.endif
-.ifdef USE_HADRIAN
LIB_DEPENDS+= libffi.so:devel/libffi
.undef DYNAMIC_CONFIGURE_WITH
CONFIGURE_ARGS+= --with-system-libffi --with-ffi-includes=${LOCALBASE}/include --with-ffi-libraries=${LOCALBASE}/lib
-CONFIGURE_ENV+= CC=${CC} CXX=${CXX}
-SHEBANG_FILES+= hadrian/bootstrap/bootstrap.py
HADRIAN_CMD= ${WRKSRC}/hadrian/bootstrap/_build/bin/hadrian ${HADRIAN_DOCS_ARG} ${HADRIAN_GMP_ARG}
DO_MAKE_BUILD= ${SETENVI} ${WRK_ENV} ${HADRIAN_CMD} ${_MAKE_JOBS} --flavour=ports
ALL_TARGET= binary-dist-dir
INSTALL_WRKSRC= ${WRKSRC}/_build/bindist/ghc-${GHC_VERSION}-${CONFIGURE_TARGET}
-INSTALL_TARGET= install
-PLIST?= ${.CURDIR}/pkg-plist.hadrian
-. if (empty(PORT_OPTIONS:MDYNAMIC) || empty(PORT_OPTIONS:MPROFILE))
+.if ! ${PORT_OPTIONS:MDYNAMIC} || !${PORT_OPTIONS:MPROFILE}
IGNORE= Building with Hadrian requires both DYNAMIC and PROFILE for now
-. endif
.endif
GHC_ARCH= ${ARCH:S/amd64/x86_64/:C/armv.*/arm/}
-CONFIGURE_TARGET= ${GHC_ARCH}-portbld-${OPSYS:tl}
-BOOT_DIR= ${WRKDIR}/ghc-${BOOT_GHC_VERSION}-boot
-BOOT_INSTALL_DIR= ${WRKDIR}/ghc-boot-install
-BOOT_GHC= ${BOOT_INSTALL_DIR}/bin/ghc-${BOOT_GHC_VERSION}
-
-PLIST_SUB+= GHC_ARCH=${GHC_ARCH}
-
-.if ${BOOT_GHC_VERSION:C/\..*//g} >= 9
BOOT_DIR= ${WRKDIR}/ghc-${BOOT_GHC_VERSION}-${CONFIGURE_TARGET}
-.endif
-
-# this is hacky but 92 is special as it is compiled with autotools on i386 and with Hadrian elsewhere
-.if ${SLAVE_PORT} == "yes" && ${PKGNAMESUFFIX} == "92"
-. ifdef USE_HADRIAN
-PLIST= ${.CURDIR}/../ghc92/pkg-plist.hadrian
-. else
-PLIST= ${.CURDIR}/../ghc92/pkg-plist
-. endif
-.endif
+BOOT_INSTALL_DIR= ${WRKDIR}/ghc-boot-install
-.if empty(PORT_OPTIONS:MBOOT)
+.if ! ${PORT_OPTIONS:MBOOT}
DISTFILES+= ghc-${BOOT_GHC_VERSION}-boot-${ARCH}-freebsd${EXTRACT_SUFX}:boot
+BOOT_GHC= ${BOOT_INSTALL_DIR}/bin/ghc-${BOOT_GHC_VERSION}
+.else
+# Allow to be overriden by user when using the BOOT option
+BOOT_GHC?= ${LOCALBASE}/bin/ghc
.endif # MBOOT
-.if !defined(IGNORE_MISSING_HADRIAN) && defined(USE_HADRIAN)
+.if !defined(IGNORE_MISSING_HADRIAN)
DISTFILES+= hadrian-${GHC_VERSION}-boot.tar.gz:boot
.endif
-.if ${ARCH} == aarch64 || ${ARCH:Marmv*}
-# ghc-8.10.x on arm requires devel/llvm10
-# CONFIGURE_TARGET must to be the same as the llvm triple
+.if ${ARCH} == aarch64
CONFIGURE_TARGET= ${ARCH}-unknown-freebsd${"${ARCH:Maarch64}" != "":?:-gnueabihf}
CONFIGURE_ARGS+= --host=${CONFIGURE_TARGET}
-BUILD_DEPENDS+= llc${LLVM_VERSION}:devel/llvm${LLVM_VERSION}
-RUN_DEPENDS+= llc${LLVM_VERSION}:devel/llvm${LLVM_VERSION}
-
-# When GHC being compiled and GHC used for bootstrapping support different
-# LLVM versions, we have to pull in both. Luckily, this is relatively rare.
-. if ${BOOT_LLVM_VERSION} != ${LLVM_VERSION}
-BUILD_DEPENDS+= llc${BOOT_LLVM_VERSION}:devel/llvm${BOOT_LLVM_VERSION}
-. endif
.endif
post-patch:
-# Generate the build.mk file
- ${RM} -f ${WRKSRC}/mk/build.mk
-.for line in ${BUILD_MK}
- ${ECHO_CMD} ${line} >> ${WRKSRC}/mk/build.mk
-.endfor
-.ifdef USE_HADRIAN
${SED} -e 's|%%DYNAMIC%%|${HADRIAN_SETTING_DYNAMIC}|' \
-e 's|%%PROFILE%%|${HADRIAN_SETTING_PROFILE}|' \
${PATCHDIR}/UserSettings.hs > ${WRKSRC}/hadrian/src/UserSettings.hs
-.endif
pre-configure:
- # Call the bootstrap script
- cd ${WRKSRC}/ && ${BOOT_SCRIPT}
+# Call the bootstrap script
+ cd ${WRKSRC} && ${BOOT_SCRIPT}
+.if ! ${PORT_OPTIONS:MBOOT}
# If we are using bootstrap compiler, configure and install it into ${BOOT_DIR}
-.if empty(PORT_OPTIONS:MBOOT)
- cd ${BOOT_DIR} && ${CONFIGURE_CMD} ${CONFIGURE_ENV} --prefix=${BOOT_INSTALL_DIR}
+ cd ${BOOT_DIR} && ${SETENVI} ${CONFIGURE_ENV} ${CONFIGURE_CMD} --prefix=${BOOT_INSTALL_DIR}
cd ${BOOT_DIR} && ${SETENVI} ${WRK_ENV} ${GMAKE} PACKAGES='' install
.endif
-.ifdef USE_HADRIAN
-# Compile Hadrian
+
+pre-build:
+.if ! ${PORT_OPTIONS:MBOOT}
+# Compile Hadrian using the bootstrap compiler and bootstrap Hadrian distfile
cd ${WRKSRC}/hadrian/bootstrap && \
./bootstrap.py -w ${BOOT_GHC} -s ${DISTDIR}/hadrian-${GHC_VERSION}-boot.tar.gz
+.else
+# Otherwise, use whatever GHC and Hadrian plan the user wants
+. if !exists(${BOOT_GHC})
+ @${ECHO_CMD} "===> BOOT_GHC ${BOOT_GHC} does not exist"
+ @${ECHO_CMD} "Re-run make BOOT_GHC=/path/to/correct/ghc"
+ @${FALSE}
+. endif
+. if !exists(${HADRIAN_PLAN})
+ @${ECHO_CMD} "===> HADRIAN_PLAN ${HADRIAN_PLAN} does not exist"
+ @${ECHO_CMD} "Run ls ${WRKSRC}/hadrian/bootstrap to see available plans"
+ @${ECHO_CMD} "Pick one closest to ${BOOT_GHC} ,"
+ @${ECHO_CMD} "hack if needed, run make HADRIAN_PLAN=/path/to/plan.json"
+ @${FALSE}
+. endif
+ cd ${WRKSRC}/hadrian/bootstrap && \
+ ./bootstrap.py -w ${BOOT_GHC} --deps ${HADRIAN_PLAN}
.endif
-.ifdef USE_HADRIAN
pre-install:
cd ${INSTALL_WRKSRC} && ${CONFIGURE_CMD} ${CONFIGURE_ENV} --prefix=${PREFIX}
-.endif
post-install:
-.ifdef USE_HADRIAN
# Hadrian doesn't have --docdir
${MV} ${STAGEDIR}${DOCSDIR}-${GHC_VERSION} ${STAGEDIR}${DOCSDIR}
# These includes are duplicated in lib/ghc-X.Y.Z/lib/<triple>/rts-X.Y.Z/include
${RM} -r ${STAGEDIR}${PREFIX}/include/*
-.endif
${FIND} ${STAGEDIR}${DOCSDIR} -name .buildinfo -delete
-# For some reason, INSTALL_TARGET=install-strip doesn't cause libraries to be stripped
-# Run strip on them manually
${FIND} ${STAGEDIR}${PREFIX}/lib/ghc-${GHC_VERSION} -type f -perm +111 -exec ${STRIP_CMD} {} +
${FIND} ${STAGEDIR}${PREFIX}/lib/ghc-${GHC_VERSION} -name '*.so' -exec ${STRIP_CMD} {} +
${RM} ${STAGEDIR}${PREFIX}/bin/haddock
.if ${SLAVE_PORT} == "yes"
-. ifndef USE_HADRIAN
- ${MV} ${STAGEDIR}${PREFIX}/bin/hsc2hs ${STAGEDIR}${PREFIX}/bin/hsc2hs-ghc-${GHC_VERSION}
-. endif
+# Do not install docs for slave GHCs
${FIND} ${STAGEDIR}${PREFIX}/bin -not -type d -not -regex '.*-${GHC_VERSION}' -delete
${RM} -r ${STAGEDIR}${PREFIX}/lib/ghc-${GHC_VERSION}/html
${RM} -r ${STAGEDIR}${PREFIX}/lib/ghc-${GHC_VERSION}/latex
.endif
post-install-DOCS-off:
-# Docs for Haskell libraries are generated by Haddock, not sphinx, so we have
-# to pass WITH_HADDOCK=no to the build.mk to skip their generation.
-# However, we don't want to do that because this would cause Haddock itself not
-# to be built.
${RM} -r ${STAGEDIR}${DOCSDIR}/html
-.if exists(${BOOT_INSTALL_DIR}/bin/runhaskell)
-RUNHASKELL?= ${BOOT_INSTALL_DIR}/bin/runhaskell
-.else
-RUNHASKELL?= ${LOCALBASE}/bin/runhaskell
-.endif
-
# Create a bootstrap compiler tar ball: run this in an interactive poudriere jail
# Set all OPTIONS to OFF when generating bootstraps
.PHONY: create-bootstrap
create-bootstrap:
-.ifndef USE_HADRIAN
- cd ${WRKSRC} \
- && ${ECHO_CMD} "BIN_DIST_NAME=ghc-${GHC_VERSION}-boot" >> mk/build.mk \
- && ${ECHO_CMD} "BIN_DIST_TAR=ghc-${GHC_VERSION}-boot.tar" >> mk/build.mk \
- && ${ECHO_CMD} "HADDOCK_DOCS=NO" >> mk/build.mk \
- && ${SETENVI} ${WRK_ENV} ${GMAKE} binary-dist TAR_COMP=xz \
- && ${MV} ${WRKSRC}/ghc-${GHC_VERSION}-boot-${GHC_ARCH}-portbld-freebsd.tar.xz /tmp/ghc-${GHC_VERSION}-boot-${ARCH}-freebsd.tar.xz
-.else
cd ${WRKSRC} \
&& ${HADRIAN_CMD} binary-dist-xz \
&& ${MV} ${WRKSRC}/_build/bindist/ghc-${GHC_VERSION}-${CONFIGURE_TARGET}.tar.xz /tmp/ghc-${GHC_VERSION}-boot-${ARCH}-freebsd.tar.xz
-.endif
-
@cd /tmp \
&& sha256 ghc-${GHC_VERSION}-boot-${ARCH}-freebsd.tar.xz \
&& ${ECHO_CMD} -n "SIZE (ghc-${GHC_VERSION}-boot-${ARCH}-freebsd.tar.xz) = " \
@@ -286,17 +222,10 @@ create-bootstrap:
# Set DYNAMIC, GMP and PROFILE to ON, and DOCS to OFF when generating Stack bindist
.PHONY: create-stack-bindist
create-stack-bindist:
-.ifndef USE_HADRIAN
- cd ${WRKSRC} \
- && ${SETENVI} ${WRK_ENV} ${GMAKE} binary-dist TAR_COMP=xz \
- && ${MV} ${WRKSRC}/ghc-${GHC_VERSION}-${GHC_ARCH}-portbld-freebsd.tar.xz /tmp/
-.else
cd ${WRKSRC} \
&& ${HADRIAN_CMD} binary-dist-xz \
&& ${MV} ${WRKSRC}/_build/bindist/ghc-${GHC_VERSION}-${GHC_ARCH}-portbld-freebsd.tar.xz /tmp/
-.endif
-
- cd /tmp \
+ @cd /tmp \
&& ${ECHO_CMD} "${GHC_VERSION}:" \
&& ${ECHO_CMD} "url: \"http://distcache.FreeBSD.org/local-distfiles/arrowd/stack-bindists/ghc-${GHC_VERSION}-${GHC_ARCH}-portbld-freebsd.tar.xz\"" \
&& ${ECHO_CMD} -n "content-length: " \
@@ -308,14 +237,7 @@ create-stack-bindist:
.PHONY: create-hadrian-bootstrap
create-hadrian-bootstrap:
-.if !empty(PORT_OPTIONS:MBOOT)
- @${ECHO_CMD} "Generating Hadrian bootstrap without bootstrap GHC isn't supported"
- ${FALSE}
-.endif
${MAKE} -C ${.CURDIR} patch build-depends USE_PACKAGE_DEPENDS_ONLY=yes IGNORE_MISSING_HADRIAN=yes
-# We always would need to create our own plan.json file and put it into PATCHDIR:
-# Predefined plans use integer-gmp, while we build bootstraps with integer-simple
-# Predefined plans aren't pretty-printed, so we can't easily patch them
cd ${WRKSRC}/hadrian/bootstrap && \
./bootstrap.py -w ${BOOT_GHC} --deps ${HADRIAN_PLAN} fetch -o /tmp/hadrian-${GHC_VERSION}-boot
@@ -328,11 +250,6 @@ create-hadrian-bootstrap:
.PHONY: check-hadrian-bootstrap
check-hadrian-bootstrap:
-.if !empty(PORT_OPTIONS:MBOOT)
- @${ECHO_CMD} "Generating Hadrian bootstrap without bootstrap GHC isn't supported"
- ${FALSE}
-.endif
-# Compile Hadrian
cd ${WRKSRC}/hadrian/bootstrap && \
./bootstrap.py -w ${BOOT_GHC} -s /tmp/hadrian-${GHC_VERSION}-boot.tar.gz