Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 29 Dec 2017 15:20:54 +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: r457508 - head/sysutils/e2fsprogs
Message-ID:  <201712291520.vBTFKsxj073643@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: emaste (src committer)
Date: Fri Dec 29 15:20:54 2017
New Revision: 457508
URL: https://svnweb.freebsd.org/changeset/ports/457508

Log:
  sysutils/e2fsprogs: set LLD_UNSAFE to avoid linking with lld
  
  One test fails when this port is linked with lld:
  
  d_loaddump: debugfs load/dump test: failed
  
  --- d_loaddump/expect	2017-10-16 05:45:45.000000000 +0000
  +++ d_loaddump.log	2017-12-28 13:00:42.099973000 +0000
  @@ -10,7 +10,7 @@
   Pass 3: Checking directory connectivity
   Pass 4: Checking reference counts
   Pass 5: Checking group summary information
  -test_filesys: 12/64 files (0.0% non-contiguous), 158/512 blocks
  +test_filesys: 12/64 files (0.0% non-contiguous), 156/512 blocks
   Exit status is 0
   debugfs -R ''dump test_data d_loaddump.ver.tmp'' test.img
   Exit status is 0
  
  This looks like a very unusual failure and careful investigation into
  lld's behaviour is warranted, but for now set LLD_UNSAFE to fall back
  to ld.bfd so the port continues to build for users using lld as
  /usr/bin/ld.
  
  PR:		214864
  Approved by:	portmgr (LLD_UNSAFE blanket)
  Sponsored by:	The FreeBSD Foundation

Modified:
  head/sysutils/e2fsprogs/Makefile

Modified: head/sysutils/e2fsprogs/Makefile
==============================================================================
--- head/sysutils/e2fsprogs/Makefile	Fri Dec 29 14:25:16 2017	(r457507)
+++ head/sysutils/e2fsprogs/Makefile	Fri Dec 29 15:20:54 2017	(r457508)
@@ -27,6 +27,7 @@ CPE_VENDOR=	e2fsprogs_project
 USE_CSTD=	gnu99
 USE_LDCONFIG=	yes
 GNU_CONFIGURE=	yes
+LLD_UNSAFE=	yes
 CONFIGURE_ARGS?=--disable-fsck \
 		--disable-e2initrd-helper \
 		--disable-libuuid \



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