Module: wine Branch: master Commit: b0fc60d2794c870e33d9d22fd1369986520fcb83 URL: http://source.winehq.org/git/wine.git/?a=commit;h=b0fc60d2794c870e33d9d22fd1...
Author: André Hentschel nerv@dawncrow.de Date: Thu Nov 16 23:20:45 2017 +0100
libwine: Reserve memory areas for ARM64 in case we don't have a preloader.
Signed-off-by: André Hentschel nerv@dawncrow.de Signed-off-by: Alexandre Julliard julliard@winehq.org
---
libs/wine/mmap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libs/wine/mmap.c b/libs/wine/mmap.c index 1a3ca59..458cc13 100644 --- a/libs/wine/mmap.c +++ b/libs/wine/mmap.c @@ -398,7 +398,7 @@ void mmap_init(void) } reserve_dos_area();
-#elif defined(__x86_64__) +#elif defined(__x86_64__) || defined(__aarch64__)
if (!list_head( &reserved_areas )) {