diff options
author | Jan Beich <jbeich@FreeBSD.org> | 2016-10-11 16:43:36 +0000 |
---|---|---|
committer | Jan Beich <jbeich@FreeBSD.org> | 2016-10-11 16:43:36 +0000 |
commit | cc4cd2f8ef0997c3a0ce5000465a43e30fb7414c (patch) | |
tree | 14c741fca3468eae4f20353a5dfceace5e9c10cf /emulators | |
parent | gecko: back out r423631 for 10.x bustage (diff) |
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.
Notes
Notes:
svn path=/head/; revision=423781
Diffstat (limited to 'emulators')
-rw-r--r-- | emulators/citra-qt5/Makefile | 2 | ||||
-rw-r--r-- | emulators/citra/Makefile | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/emulators/citra-qt5/Makefile b/emulators/citra-qt5/Makefile index 690002e635c2..ac7516fe5ba0 100644 --- a/emulators/citra-qt5/Makefile +++ b/emulators/citra-qt5/Makefile @@ -1,6 +1,6 @@ # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 PKGNAMESUFFIX= -qt5 MASTERDIR= ${.CURDIR}/../citra diff --git a/emulators/citra/Makefile b/emulators/citra/Makefile index faa2b658be68..dfed166c265e 100644 --- a/emulators/citra/Makefile +++ b/emulators/citra/Makefile @@ -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 |