Module: wine Branch: master Commit: 17a0e19489e14107f8ed7bcad9a07cb75e566ead URL: https://gitlab.winehq.org/wine/wine/-/commit/17a0e19489e14107f8ed7bcad9a07cb...
Author: Alexandre Julliard julliard@winehq.org Date: Tue May 9 14:25:58 2023 +0200
server: Make x86_64 a supported architecture on ARM64.
---
server/registry.c | 1 + 1 file changed, 1 insertion(+)
diff --git a/server/registry.c b/server/registry.c index 03e5f20cae5..3fea7dd79a4 100644 --- a/server/registry.c +++ b/server/registry.c @@ -1857,6 +1857,7 @@ static void init_supported_machines(void) if (prefix_type == PREFIX_64BIT) { supported_machines[count++] = IMAGE_FILE_MACHINE_ARM64; + supported_machines[count++] = IMAGE_FILE_MACHINE_AMD64; supported_machines[count++] = IMAGE_FILE_MACHINE_I386; } supported_machines[count++] = IMAGE_FILE_MACHINE_ARMNT;