Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 11 Dec 2019 15:44:40 +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: r519812 - head/devel/xeus
Message-ID:  <201912111544.xBBFieWA003202@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: pkubaj
Date: Wed Dec 11 15:44:40 2019
New Revision: 519812
URL: https://svnweb.freebsd.org/changeset/ports/519812

Log:
  devel/xeus: don't optimize for the host CPU
  
  It causes a build error on powerpc64:
  g++9: error: unrecognized command line option '-march=native'; did you mean '-mcpu=native'?
  
  And may cause runtime issues even when it builds.
  
  PR:		242582
  Approved by:	yuri (maintainer)

Modified:
  head/devel/xeus/Makefile

Modified: head/devel/xeus/Makefile
==============================================================================
--- head/devel/xeus/Makefile	Wed Dec 11 15:23:11 2019	(r519811)
+++ head/devel/xeus/Makefile	Wed Dec 11 15:44:40 2019	(r519812)
@@ -2,7 +2,7 @@
 
 PORTNAME=	xeus
 DISTVERSION=	0.23.2
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	devel
 
 MAINTAINER=	yuri@FreeBSD.org
@@ -22,6 +22,7 @@ USES=		cmake compiler:c++14-lang localbase:ldflags pkg
 USE_GITHUB=	yes
 GH_ACCOUNT=	QuantStack
 CMAKE_OFF=	BUILD_STATIC_LIBS
+CMAKE_ON=	DISABLE_ARCH_NATIVE
 USE_LDCONFIG=	yes
 
 .include <bsd.port.mk>



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