Date: Tue, 11 Oct 2016 16:43:36 +0000 (UTC) From: Jan Beich <jbeich@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r423781 - in head/emulators: citra citra-qt5 Message-ID: <201610111643.u9BGhagJ021977@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: jbeich Date: Tue Oct 11 16:43:36 2016 New Revision: 423781 URL: https://svnweb.freebsd.org/changeset/ports/423781 Log: emulators/citra: don't use GCC to build on 10.x libstdc++ in ports is still built against libsupc++ rather than libcxxrt, so it's unsafe to use together libc++. This means USE_GCC is practically forbidden with C++ ports on >= 10.0 systems. Modified: head/emulators/citra-qt5/Makefile (contents, props changed) head/emulators/citra/Makefile (contents, props changed) Modified: head/emulators/citra-qt5/Makefile ============================================================================== --- head/emulators/citra-qt5/Makefile Tue Oct 11 16:22:23 2016 (r423780) +++ head/emulators/citra-qt5/Makefile Tue Oct 11 16:43:36 2016 (r423781) @@ -1,6 +1,6 @@ # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 PKGNAMESUFFIX= -qt5 MASTERDIR= ${.CURDIR}/../citra Modified: head/emulators/citra/Makefile ============================================================================== --- head/emulators/citra/Makefile Tue Oct 11 16:22:23 2016 (r423780) +++ head/emulators/citra/Makefile Tue Oct 11 16:43:36 2016 (r423781) @@ -2,7 +2,7 @@ PORTNAME= citra PORTVERSION= s20161007 -PORTREVISION?= 0 +PORTREVISION?= 1 CATEGORIES= emulators MAINTAINER= jbeich@FreeBSD.org @@ -33,7 +33,7 @@ GH_TUPLE= citra-emu:${PORTNAME}:136cbbe svn2github:inih:603729d:inih/externals/inih/inih USES= cmake:outsource compiler:c++14-lang iconv localbase:ldflags -FAVORITE_COMPILER= gcc # c++14-lib +FAVORITE_COMPILER= ${COMPILER_TYPE} # c++14-lib CXXFLAGS+= -D_GLIBCXX_USE_C99 -D_GLIBCXX_USE_C99_MATH_TR1 \ -D_DECLARE_C99_LDBL_MATH # XXX ports/193528 LDFLAGS+= -Wl,--as-needed # GL
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201610111643.u9BGhagJ021977>