Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 29 Nov 2019 13:23:21 +0000 (UTC)
From:      Piotr Kubaj <pkubaj@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r518648 - head/graphics/pcl-pointclouds
Message-ID:  <201911291323.xATDNLTW064685@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: pkubaj
Date: Fri Nov 29 13:23:21 2019
New Revision: 518648
URL: https://svnweb.freebsd.org/changeset/ports/518648

Log:
  graphics/pcl-pointclouds: fix build on powerpc64 with clang
  
  lld on powerpc64 elfv2 can't link this port, add LLD_UNSAFE=yes:
  ld: error: relocation refers to a discarded section: .text.__clang_call_terminate
  >>> defined in common/CMakeFiles/pcl_common.dir/src/pcl_base.cpp.o
  >>> section group signature: __clang_call_terminate
  >>> prevailing definition is in common/CMakeFiles/pcl_common.dir/src/point_types.cpp.o
  >>> referenced by pcl_base.cpp
  >>>               common/CMakeFiles/pcl_common.dir/src/pcl_base.cpp.o:(pcl::PCLBase<pcl::PCLPointCloud2>::initCompute())
  
  PR:		241944
  Approved by:	mentors (implicit approval), yuri (maintainer timeout)

Modified:
  head/graphics/pcl-pointclouds/Makefile

Modified: head/graphics/pcl-pointclouds/Makefile
==============================================================================
--- head/graphics/pcl-pointclouds/Makefile	Fri Nov 29 13:21:38 2019	(r518647)
+++ head/graphics/pcl-pointclouds/Makefile	Fri Nov 29 13:23:21 2019	(r518648)
@@ -3,7 +3,7 @@
 PORTNAME=	pcl
 DISTVERSIONPREFIX=	${PORTNAME}-
 DISTVERSION=	1.9.1
-PORTREVISION=	7
+PORTREVISION=	8
 CATEGORIES=	graphics math
 PKGNAMESUFFIX=	-pointclouds
 
@@ -28,6 +28,7 @@ LIB_DEPENDS=	libboost_system.so:devel/boost-libs \
 		libtiff.so:graphics/tiff
 
 USES=		cmake compiler eigen:3 jpeg python xorg
+LLD_UNSAFE=	yes
 USE_GITHUB=	yes
 GH_ACCOUNT=	PointCloudLibrary
 USE_XORG=	x11 xext xt ice sm



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