aboutsummaryrefslogtreecommitdiff
path: root/emulators
diff options
context:
space:
mode:
authorJan Beich <jbeich@FreeBSD.org>2017-06-13 22:49:20 +0000
committerJan Beich <jbeich@FreeBSD.org>2017-06-13 22:49:20 +0000
commite65ce214aa8b393ef663fe8399c240197cb686ee (patch)
tree134fbd97e050db7f8f85111a8270092d6ca053af /emulators
parent5fd92d43d16d3f18df233a61b28d52c4132c8344 (diff)
downloadports-e65ce214aa8b393ef663fe8399c240197cb686ee.tar.gz
ports-e65ce214aa8b393ef663fe8399c240197cb686ee.zip
emulators/citra: drop Clang < 3.8 workaround (FreeBSD < 11)
s20170516 is busted on 2017Q2, so don't pretend old Clang is still supported. /head relies on USES=compiler:c++14-lang using Clang 4.0 after r439804.
Notes
Notes: svn path=/head/; revision=443546
Diffstat (limited to 'emulators')
-rw-r--r--emulators/citra/files/patch-src_video__core_shader_shader__jit__x64__compiler.cpp17
1 files changed, 0 insertions, 17 deletions
diff --git a/emulators/citra/files/patch-src_video__core_shader_shader__jit__x64__compiler.cpp b/emulators/citra/files/patch-src_video__core_shader_shader__jit__x64__compiler.cpp
deleted file mode 100644
index a5244a73b98f..000000000000
--- a/emulators/citra/files/patch-src_video__core_shader_shader__jit__x64__compiler.cpp
+++ /dev/null
@@ -1,17 +0,0 @@
-https://github.com/llvm-mirror/clang/commit/41885d36e85ead75a1d18ef7d2f43663f90ed67e
-
---- src/video_core/shader/shader_jit_x64_compiler.cpp.orig 2017-02-21 21:47:34 UTC
-+++ src/video_core/shader/shader_jit_x64_compiler.cpp
-@@ -6,7 +6,12 @@
- #include <cmath>
- #include <cstdint>
- #include <nihstro/shader_bytecode.h>
-+#if defined(__clang__) && (__clang_major__ == 3 && __clang_minor__ < 8)
-+// <smmintrin.h> requires -msse4.1 with Clang before 3.8
-+#define _MM_FROUND_FLOOR 0x01
-+#else
- #include <smmintrin.h>
-+#endif
- #include <xmmintrin.h>
- #include "common/assert.h"
- #include "common/logging/log.h"