Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 19 Aug 2020 09:29:16 +0000 (UTC)
From:      Piotr Kubaj <pkubaj@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org
Subject:   svn commit: r545295 - branches/2020Q3/science/simgrid
Message-ID:  <202008190929.07J9TGnp008330@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: pkubaj
Date: Wed Aug 19 09:29:16 2020
New Revision: 545295
URL: https://svnweb.freebsd.org/changeset/ports/545295

Log:
  MFH: r545294
  
  science/simgrid: fix build on non-aarch64, non-x86
  
  Add libunwind to LIB_DEPENDS only on aarch64, amd64 and i386. Port builds fine without it on powerpc64
  
  Approved by:	portmgr (fix build blanket)

Modified:
  branches/2020Q3/science/simgrid/Makefile
Directory Properties:
  branches/2020Q3/   (props changed)

Modified: branches/2020Q3/science/simgrid/Makefile
==============================================================================
--- branches/2020Q3/science/simgrid/Makefile	Wed Aug 19 09:23:36 2020	(r545294)
+++ branches/2020Q3/science/simgrid/Makefile	Wed Aug 19 09:29:16 2020	(r545295)
@@ -12,7 +12,11 @@ LICENSE_FILE=	${WRKSRC}/LICENSE-LGPL-2.1
 
 LIB_DEPENDS=	libboost_context.so:devel/boost-libs \
 		libcgraph.so:graphics/graphviz \
-		libunwind-ptrace.so:devel/libunwind
+		${LIB_DEPENDS_${ARCH}}
+
+LIB_DEPENDS_aarch64=	libunwind.so:devel/libunwind
+LIB_DEPENDS_amd64=	libunwind.so:devel/libunwind
+LIB_DEPENDS_i386=	libunwind.so:devel/libunwind
 
 USES=		cmake:noninja compiler:c++11-lang perl5 python:3.6+ shebangfix
 USE_GITLAB=	yes



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