svn commit: r480666 - head/audio/triceratops-lv2

Ed Maste emaste at FreeBSD.org
Tue Sep 25 14:42:35 UTC 2018


Author: emaste (src committer)
Date: Tue Sep 25 14:42:34 2018
New Revision: 480666
URL: https://svnweb.freebsd.org/changeset/ports/480666

Log:
  audio/triceratops-lv2: add -znotext to LDFLAGS on i386, for lld
  
  This port links some non-PIC code, which fails with lld as it defaults
  to disallowing relocations against read-only segments. For i386 we can
  just add -znotext unconditionally: for GNU BFD ld it just affirms BFD's
  existing default.
  
  PR:		214864
  Approved by:	portmgr (lld blanket)
  Sponsored by:	The FreeBSD Foundation

Modified:
  head/audio/triceratops-lv2/Makefile

Modified: head/audio/triceratops-lv2/Makefile
==============================================================================
--- head/audio/triceratops-lv2/Makefile	Tue Sep 25 14:25:50 2018	(r480665)
+++ head/audio/triceratops-lv2/Makefile	Tue Sep 25 14:42:34 2018	(r480666)
@@ -21,6 +21,7 @@ LIB_DEPENDS=	libfontconfig.so:x11-fonts/fontconfig \
 USES=		compiler:c++11-lang pkgconfig waf
 USE_GNOME=	cairo cairomm gdkpixbuf2 gtk20 gtkmm24
 NO_WRKSUBDIR=	yes
+LDFLAGS_i386=	-Wl,-znotext
 
 post-install:
 		@${STRIP_CMD} \


More information about the svn-ports-head mailing list