Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 27 Dec 2017 15:23:24 +0000 (UTC)
From:      Ed Maste <emaste@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r457373 - head/math/p5-Math-Pari
Message-ID:  <201712271523.vBRFNOmh059628@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: emaste (src committer)
Date: Wed Dec 27 15:23:24 2017
New Revision: 457373
URL: https://svnweb.freebsd.org/changeset/ports/457373

Log:
  math/p5-Math-Pari: set LLD_UNSAFE to avoid linking with lld
  
  lld defaults to disallowing relocations in readonly segments (e.g., 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/math/p5-Math-Pari/Makefile

Modified: head/math/p5-Math-Pari/Makefile
==============================================================================
--- head/math/p5-Math-Pari/Makefile	Wed Dec 27 15:19:34 2017	(r457372)
+++ head/math/p5-Math-Pari/Makefile	Wed Dec 27 15:23:24 2017	(r457373)
@@ -18,6 +18,7 @@ LIB_DEPENDS=	libgmp.so:math/gmp
 
 USES=		perl5
 USE_PERL5=	configure
+LLD_UNSAFE=	yes	# lld defaults to -ztext
 
 PARI_WRKSRC=	${WRKDIR}/pari-2.3.5
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201712271523.vBRFNOmh059628>