From e40970bce7bb14063d697caccac6d1794462f29f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Hentschel?= Date: Sun, 9 Aug 2015 14:06:03 +0200 Subject: [PATCH] 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 a111d16f1fd..7bfddc2f82b 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