[1/2] winebuild: Detect armv* toolchains

André Hentschel nerv at dawncrow.de
Tue Dec 29 17:25:52 CST 2015


Signed-off-by: André Hentschel <nerv at dawncrow.de>
---
ARMv4 and below isn't supported by Wine. Not sure yet if there are armv8- toolchains and what the default target would be (32/64)

 tools/winebuild/utils.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/tools/winebuild/utils.c b/tools/winebuild/utils.c
index 4860a19..08e6b01 100644
--- a/tools/winebuild/utils.c
+++ b/tools/winebuild/utils.c
@@ -64,6 +64,9 @@ static const struct
     { "x86_64",  CPU_x86_64 },
     { "powerpc", CPU_POWERPC },
     { "arm",     CPU_ARM },
+    { "armv5",   CPU_ARM },
+    { "armv6",   CPU_ARM },
+    { "armv7",   CPU_ARM },
     { "arm64",   CPU_ARM64 },
     { "aarch64", CPU_ARM64 },
 };
-- 
1.9.1





More information about the wine-patches mailing list