svn commit: r518116 - head/devel/mdb

John Baldwin jhb at FreeBSD.org
Thu Nov 21 22:22:05 UTC 2019


Author: jhb (src,doc committer)
Date: Thu Nov 21 22:22:04 2019
New Revision: 518116
URL: https://svnweb.freebsd.org/changeset/ports/518116

Log:
  Use clang 7 as compiler on 11.x and 12.x to fix build.
  
  clang 8 and later error for duplicate definitions of enum values.  mdb
  depends on having identical but duplicate definitions.  This was fixed
  differently in 13 with a change to the kernel, but that change is
  disruptive and cannot be easily backported.
  
  Reported by:	pkg-fallout, Attila Nagy
  Approved by:	bdrewery
  MFH:		2019Q3
  Differential Revision:	https://reviews.freebsd.org/D22486

Modified:
  head/devel/mdb/Makefile

Modified: head/devel/mdb/Makefile
==============================================================================
--- head/devel/mdb/Makefile	Thu Nov 21 21:51:33 2019	(r518115)
+++ head/devel/mdb/Makefile	Thu Nov 21 22:22:04 2019	(r518116)
@@ -9,7 +9,7 @@ COMMENT=	Solaris Modular Debugger
 
 LICENSE=	CDDL
 
-USES=		uidfix
+USES=		compiler uidfix
 
 USE_GITHUB=	yes
 GH_ACCOUNT=	bsdjhb
@@ -29,6 +29,15 @@ CFLAGS+=	-DMDB_PREFIX=\\\"${PREFIX}\\\" -g
 
 .if !exists(${SRC_BASE}/cddl/compat) || !exists(${SRC_BASE}/sys/cddl/compat)
 IGNORE=		requires full source tree with CDDL sources
+.endif
+
+.if ${OSVERSION} < 1300015 && ${COMPILER_TYPE} == "clang" && \
+    ${COMPILER_VERSION} >= 80
+# clang 8 cannot compile due to enum redefinitions in kernel.h
+BUILD_DEPENDS+=	${LOCALBASE}/bin/clang70:devel/llvm70
+CPP=	${LOCALBASE}/bin/clang-cpp70
+CC=	${LOCALBASE}/bin/clang70
+CXX=	${LOCALBASE}/bin/clang++70
 .endif
 
 pre-install:


More information about the svn-ports-all mailing list