svn commit: r457313 - head/lang/mono

Ed Maste emaste at FreeBSD.org
Tue Dec 26 20:09:11 UTC 2017


Author: emaste (src committer)
Date: Tue Dec 26 20:09:09 2017
New Revision: 457313
URL: https://svnweb.freebsd.org/changeset/ports/457313

Log:
  lang/mono: set LLD_UNSAFE to avoid linking with lld
  
  mono fails to link with lld because lld defaults to -ztext and does not
  allow relocations in readonly segments (such as the one containing
  .text).  For now just fall back to linking with ld.bfd if the system ld
  is lld.
  
  PR:		214864
  Approved by:	portmgr (LLD_UNSAFE blanket)
  Sponsored by:	The FreeBSD Foundation

Modified:
  head/lang/mono/Makefile

Modified: head/lang/mono/Makefile
==============================================================================
--- head/lang/mono/Makefile	Tue Dec 26 19:30:17 2017	(r457312)
+++ head/lang/mono/Makefile	Tue Dec 26 20:09:09 2017	(r457313)
@@ -57,6 +57,7 @@ USE_GNOME=	glib20
 USE_PERL5=	build
 GNU_CONFIGURE=	yes
 USE_LDCONFIG=	yes
+LLD_UNSAFE=	yes
 SHEBANG_FILES=	scripts/mono-heapviz
 
 CONFIGURE_ARGS=	--disable-dtrace


More information about the svn-ports-head mailing list