Date: Tue, 25 Sep 2018 14:42:34 +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: r480666 - head/audio/triceratops-lv2 Message-ID: <201809251442.w8PEgYDR075567@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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} \
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201809251442.w8PEgYDR075567>