From owner-svn-ports-head@freebsd.org Wed Dec 20 02:08:29 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3167CE8AF74; Wed, 20 Dec 2017 02:08:29 +0000 (UTC) (envelope-from emaste@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id F290C768EE; Wed, 20 Dec 2017 02:08:28 +0000 (UTC) (envelope-from emaste@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id vBK28R4D050930; Wed, 20 Dec 2017 02:08:27 GMT (envelope-from emaste@FreeBSD.org) Received: (from emaste@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vBK28RSm050929; Wed, 20 Dec 2017 02:08:27 GMT (envelope-from emaste@FreeBSD.org) Message-Id: <201712200208.vBK28RSm050929@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: emaste set sender to emaste@FreeBSD.org using -f From: Ed Maste Date: Wed, 20 Dec 2017 02:08:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r456772 - head/devel/jsl X-SVN-Group: ports-head X-SVN-Commit-Author: emaste X-SVN-Commit-Paths: head/devel/jsl X-SVN-Commit-Revision: 456772 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Dec 2017 02:08:29 -0000 Author: emaste (src committer) Date: Wed Dec 20 02:08:27 2017 New Revision: 456772 URL: https://svnweb.freebsd.org/changeset/ports/456772 Log: devel/jsl: set LLD_UNSAFE The port invokes the linker directly (not via the compiler driver). lld does not include any default search paths (unlike the GNU BFD linker) so cannot find libraries specified as e.g. -lm or -lz. This can be addressed by invoking the linker via the compiler driver, or by specifying the search path explicitly with -L. For now just avoid using lld to link the port. PR: 214864 Approved by: portmgr (LLD_UNSAFE blanket) Sponsored by: The FreeBSD Foundation Modified: head/devel/jsl/Makefile Modified: head/devel/jsl/Makefile ============================================================================== --- head/devel/jsl/Makefile Wed Dec 20 01:58:39 2017 (r456771) +++ head/devel/jsl/Makefile Wed Dec 20 02:08:27 2017 (r456772) @@ -19,6 +19,7 @@ MAKEFILE= Makefile.ref MAKE_ARGS= OS_CFLAGS="-DXP_UNIX -DHAVE_VA_COPY -DVA_COPY=va_copy" CFLAGS+= -fPIC MAKE_JOBS_UNSAFE= yes +LLD_UNSAFE= yes .include