=?UTF-8?Q?Andr=C3=A9=20Hentschel=20?=: vcomp/tests: Add ARM and ARM64 arch strings.

Alexandre Julliard julliard at wine.codeweavers.com
Mon Aug 17 09:01:12 CDT 2015


Module: wine
Branch: master
Commit: e40970bce7bb14063d697caccac6d1794462f29f
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=e40970bce7bb14063d697caccac6d1794462f29f

Author: André Hentschel <nerv at dawncrow.de>
Date:   Sun Aug  9 14:06:03 2015 +0200

vcomp/tests: Add ARM and ARM64 arch strings.

---

 dlls/vcomp/tests/vcomp.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/dlls/vcomp/tests/vcomp.c b/dlls/vcomp/tests/vcomp.c
index a111d16..7bfddc2 100644
--- a/dlls/vcomp/tests/vcomp.c
+++ b/dlls/vcomp/tests/vcomp.c
@@ -86,6 +86,10 @@ static void  (CDECL   *pomp_set_num_threads)(int num_threads);
 #define ARCH "x86"
 #elif defined(__x86_64__)
 #define ARCH "amd64"
+#elif defined __arm__
+#define ARCH "arm"
+#elif defined __aarch64__
+#define ARCH "arm64"
 #else
 #define ARCH "none"
 #endif




More information about the wine-cvs mailing list