From f98359ef5c4da25d0a6bf2ea09f2a96618e7c768 Mon Sep 17 00:00:00 2001 From: Tillmann Karras Date: Sat, 3 Jan 2015 11:46:26 +0100 Subject: [PATCH] MemoryUtil: add comment for Valgrind Valgrind doesn't support the mmap() flag MAP_32BIT. Adding a simple CMake option would force a recompile, so just add this comment. --- Source/Core/Common/MemoryUtil.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Source/Core/Common/MemoryUtil.cpp b/Source/Core/Common/MemoryUtil.cpp index fd88726814..87cc7812e0 100644 --- a/Source/Core/Common/MemoryUtil.cpp +++ b/Source/Core/Common/MemoryUtil.cpp @@ -21,6 +21,10 @@ #include #endif +// Valgrind doesn't support MAP_32BIT. +// Uncomment the following line to be able to run Dolphin in Valgrind. +//#undef MAP_32BIT + #if !defined(_WIN32) && defined(_M_X86_64) && !defined(MAP_32BIT) #include #define PAGE_MASK (getpagesize() - 1)