svn commit: r519812 - head/devel/xeus

Piotr Kubaj pkubaj at FreeBSD.org
Wed Dec 11 15:44:41 UTC 2019


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 at 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>


More information about the svn-ports-all mailing list