pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/emulators/dolphin-emu Don't conflict with macros from ...
details: https://anonhg.NetBSD.org/pkgsrc/rev/2bf4ca8ff6db
branches: trunk
changeset: 427713:2bf4ca8ff6db
user: joerg <joerg%pkgsrc.org@localhost>
date: Mon Apr 20 00:34:20 2020 +0000
description:
Don't conflict with macros from *intrin.h.
diffstat:
emulators/dolphin-emu/distinfo | 3 +-
emulators/dolphin-emu/patches/patch-Source_Core_Common_x64CPUDetect.cpp | 33 ++++++++++
2 files changed, 35 insertions(+), 1 deletions(-)
diffs (54 lines):
diff -r 59f052dad7ff -r 2bf4ca8ff6db emulators/dolphin-emu/distinfo
--- a/emulators/dolphin-emu/distinfo Mon Apr 20 00:32:56 2020 +0000
+++ b/emulators/dolphin-emu/distinfo Mon Apr 20 00:34:20 2020 +0000
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.3 2019/10/25 09:56:51 kamil Exp $
+$NetBSD: distinfo,v 1.4 2020/04/20 00:34:20 joerg Exp $
SHA1 (dolphin-emu-5.0.tar.gz) = 6553f9fe5281326b86f33fb6b99a93fe6a8820af
RMD160 (dolphin-emu-5.0.tar.gz) = e8c4cb2c903b78c3e21cb12b0724ab0728c1391a
@@ -10,6 +10,7 @@
SHA1 (patch-Source_Core_Common_MemoryUtil.cpp) = af681a3f43687f7af09c87732a7a2da8e8c58e05
SHA1 (patch-Source_Core_Common_StringUtil.cpp) = 3a53d42ae9da1d50c0693bd222cb20be9ebe5a16
SHA1 (patch-Source_Core_Common_Thread.cpp) = 8356c548c43ad762f4d226cf3d51a854f0a8b7f3
+SHA1 (patch-Source_Core_Common_x64CPUDetect.cpp) = 9238fc6d7c9f225fbd9885c1e5b07b237041e4f7
SHA1 (patch-Source_Core_Core_HW_EXI__DeviceEthernet.h) = 144250d51b78e287a8305e75ee06e24c305c3d75
SHA1 (patch-Source_Core_Core_IPC__HLE_WII__Socket.h) = 8de6dec95689efb63c3795d3e361b5bd9a8d7768
SHA1 (patch-Source_Core_Core_MemTools.cpp) = 2316e8103749fe174db7f694f2eeb22035cd135c
diff -r 59f052dad7ff -r 2bf4ca8ff6db emulators/dolphin-emu/patches/patch-Source_Core_Common_x64CPUDetect.cpp
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/emulators/dolphin-emu/patches/patch-Source_Core_Common_x64CPUDetect.cpp Mon Apr 20 00:34:20 2020 +0000
@@ -0,0 +1,33 @@
+$NetBSD: patch-Source_Core_Common_x64CPUDetect.cpp,v 1.1 2020/04/20 00:34:20 joerg Exp $
+
+--- Source/Core/Common/x64CPUDetect.cpp.orig 2020-04-19 15:52:44.582835202 +0000
++++ Source/Core/Common/x64CPUDetect.cpp
+@@ -42,13 +42,18 @@ static inline void __cpuid(int info[4],
+ }
+
+ #define _XCR_XFEATURE_ENABLED_MASK 0
+-static u64 _xgetbv(u32 index)
++static u64 my_xgetbv(u32 index)
+ {
+ u32 eax, edx;
+ __asm__ __volatile__("xgetbv" : "=a"(eax), "=d"(edx) : "c"(index));
+ return ((u64)edx << 32) | eax;
+ }
+
++#else
++static u64 my_xgetbv(u32 index)
++{
++ return _xgetbv(index);
++}
+ #endif // ifndef _WIN32
+
+ CPUInfo cpu_info;
+@@ -134,7 +139,7 @@ void CPUInfo::Detect()
+ // - XGETBV result has the XCR bit set.
+ if (((cpu_id[2] >> 28) & 1) && ((cpu_id[2] >> 27) & 1))
+ {
+- if ((_xgetbv(_XCR_XFEATURE_ENABLED_MASK) & 0x6) == 0x6)
++ if ((my_xgetbv(_XCR_XFEATURE_ENABLED_MASK) & 0x6) == 0x6)
+ {
+ bAVX = true;
+ if ((cpu_id[2] >> 12) & 1)
Home |
Main Index |
Thread Index |
Old Index