Module: wine Branch: master Commit: 3ea316638dc79ba031aadeb7a3c992c1c3235cb3 URL: http://source.winehq.org/git/wine.git/?a=commit;h=3ea316638dc79ba031aadeb7a3...
Author: André Hentschel nerv@dawncrow.de Date: Wed Jan 16 00:44:33 2013 +0100
widl: Add ARM64 support.
---
tools/widl/widl.c | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/tools/widl/widl.c b/tools/widl/widl.c index 1718247..5626d13 100644 --- a/tools/widl/widl.c +++ b/tools/widl/widl.c @@ -266,7 +266,8 @@ static void set_target( const char *target ) { "sparc", SYS_WIN32 }, { "alpha", SYS_WIN32 }, { "powerpc", SYS_WIN32 }, - { "arm", SYS_WIN32 } + { "arm", SYS_WIN32 }, + { "aarch64", SYS_WIN64 } };
unsigned int i;