diff options
author | Jan Beich <jbeich@FreeBSD.org> | 2016-10-21 12:35:17 +0000 |
---|---|---|
committer | Jan Beich <jbeich@FreeBSD.org> | 2016-10-21 12:35:17 +0000 |
commit | e61cb19437daeb93aedc3567a7b7b5df8e2df89b (patch) | |
tree | 6bd67e8fc33d6c870f84aedfe56b3abdccb9f016 | |
parent | Reference MFSA for Thunderbird fixed by r423073 (diff) |
emulators/citra: only build on amd64 for now
JIT is only available for amd64 while non-JIT or fake JIT build isn't
yet supported.
Reported by: pkg-fallout for aarch64
-rw-r--r-- | emulators/citra/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/emulators/citra/Makefile b/emulators/citra/Makefile index dfed166c265e..c25c7ba29f9f 100644 --- a/emulators/citra/Makefile +++ b/emulators/citra/Makefile @@ -18,7 +18,8 @@ LICENSE_FILE_GPLv2+ = ${WRKSRC}/license.txt LIB_DEPENDS= libpng.so:graphics/png # backend_x64/hostloc.h:93:8: fatal error: no type named 'Reg64' in namespace 'Xbyak' -BROKEN_i386= https://github.com/MerryMage/dynarmic/issues/35 +ONLY_FOR_ARCHS= amd64 +ONLY_FOR_ARCHS_REASON= https://github.com/MerryMage/dynarmic/issues/35 USE_GITHUB= yes # XXX Switch to system Boost after ports/199601 |