svn commit: r538032 - head/graphics/mesa-dri

Emmanuel Vadot manu at FreeBSD.org
Fri Jun 5 16:18:59 UTC 2020


Author: manu
Date: Fri Jun  5 16:18:58 2020
New Revision: 538032
URL: https://svnweb.freebsd.org/changeset/ports/538032

Log:
  mesa*: Always use LLD
  
  LLD is already used in 12 and 13 but we still use ld.bfd by default on 11
  and for some unknown reason some mesa libs fails to build with it since the
  meson switch.
  
  PR:		246997
  Approved by:	zeising (x11@ implicit)

Modified:
  head/graphics/mesa-dri/Makefile.common

Modified: head/graphics/mesa-dri/Makefile.common
==============================================================================
--- head/graphics/mesa-dri/Makefile.common	Fri Jun  5 16:12:19 2020	(r538031)
+++ head/graphics/mesa-dri/Makefile.common	Fri Jun  5 16:18:58 2020	(r538032)
@@ -84,6 +84,8 @@ LLVM_DEFAULT=	90
 LLVM_DEFAULT=	80
 .endif
 
+LDFLAGS+=	-fuse-ld=lld
+
 BINARY_ALIAS+=	python3=${PYTHON_VERSION}
 
 .if ${ARCH} == sparc64


More information about the svn-ports-all mailing list