Files
sthen 1b13452762 reset bcallah maintainer lines, quite a lot of timeouts which make it
tricky for others to work on the ports tree, this will also bring more
visible to portroach of those which are outdated
2026-02-11 15:12:24 +00:00

77 lines
2.6 KiB
Makefile

BROKEN= needs new bootstrap and an update for more recent llvm
# You must create a bootstrap for each supported arch.
# Can use GDC to create said bootstrap compiler.
ONLY_FOR_ARCHS = amd64
V = 1.35.0
COMMENT = LLVM D Compiler
DISTFILES = ldc-${V}-src.tar.gz
DISTFILES.boot= ldc-${V}-bootstrap.tar.gz
PKGNAME = ldc-${V}
REVISION = 1
CATEGORIES = lang
HOMEPAGE = https://wiki.dlang.org/LDC
# LDC: BSD
# Runtime libraries: Boost Software License 1.0
# Misc: Apache 2.0 with LLVM exceptions
PERMIT_PACKAGE = Yes
WANTLIB += ${COMPILER_LIBCXX} c execinfo m z
SITES = https://github.com/ldc-developers/ldc/releases/download/v${V}/
SITES.boot = https://github.com/ibara/ldc/releases/download/bootstrap-${V}/
# C++14
COMPILER = base-clang ports-gcc
MODULES = lang/clang devel/cmake
MODCLANG_COMPILER_LINKS = No
MODCLANG_RUNDEP = No
# XXX - do not let this broken port pull in llvm/16
#MODCLANG_VERSION = 16
# COMPILE_D_MODULES_SEPARATELY=ON lets ldc compile with sane memory limits.
CONFIGURE_ARGS = -DCOMPILE_D_MODULES_SEPARATELY=ON \
-DLDC_DYNAMIC_COMPILE=OFF \
-DLDC_WITH_LLD=OFF \
-DLLVM_CONFIG="${LOCALBASE}/bin/llvm-config-${MODCLANG_VERSION}"
# Use a bootstrap compiler, similar to DMD.
CONFIGURE_ENV = DMD="${WRKDIR}/ldc-${V}-bootstrap/${MACHINE_ARCH}/ldmd2" \
LD_LIBRARY_PATH="${WRKDIR}/ldc-${V}-bootstrap/${MACHINE_ARCH}"
MAKE_ENV += LD_LIBRARY_PATH="${WRKDIR}/ldc-${V}-bootstrap/${MACHINE_ARCH}"
WRKDIST = ${WRKDIR}/ldc-${V}-src
# I put a vanilla ldc2.conf in the bootstrap tarball.
# This fixes it up for the specifics for each arch.
post-patch:
sed -i 's#/usr/local/include/d#${WRKDIR}/ldc-${V}-bootstrap/d#g' \
${WRKDIR}/ldc-${V}-bootstrap/${MACHINE_ARCH}/ldc2.conf
sed -i 's#"/usr/local/lib",#"/usr/local/lib","${WRKDIR}/ldc-${V}-bootstrap/${MACHINE_ARCH}",#g' \
${WRKDIR}/ldc-${V}-bootstrap/${MACHINE_ARCH}/ldc2.conf
chmod 644 ${WRKDIR}/ldc-${V}-bootstrap/${MACHINE_ARCH}/lib*.so* # XXX
cp /usr/lib/libc.so.98.* ${WRKDIR}/ldc-${V}-bootstrap/${MACHINE_ARCH}/ # XXX
# Same trick as with flang:
# Replace the shared LLVM.so library with the static libraries.
# Fixes runtime warnings about symbol size mismatches.
# Revisit on occasion (maybe these warning go away someday?)
post-configure:
sed -i \
's,-lLLVM ,`${LOCALBASE}/bin/llvm-config-${MODCLANG_VERSION} --libs all --link-static --ignore-libllvm` -lz ,g' \
${WRKBUILD}/build.ninja
# Move the default ldc2.conf to its proper packaging location.
post-install:
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/ldc
mv ${PREFIX}/etc/ldc2.conf ${PREFIX}/share/examples/ldc
rm -rf ${PREFIX}/etc
.include <bsd.port.mk>