vcomp/tests: Add ARM and ARM64 arch strings.
This commit is contained in:
parent
f0b32b8d57
commit
e40970bce7
|
@ -86,6 +86,10 @@ static void (CDECL *pomp_set_num_threads)(int num_threads);
|
||||||
#define ARCH "x86"
|
#define ARCH "x86"
|
||||||
#elif defined(__x86_64__)
|
#elif defined(__x86_64__)
|
||||||
#define ARCH "amd64"
|
#define ARCH "amd64"
|
||||||
|
#elif defined __arm__
|
||||||
|
#define ARCH "arm"
|
||||||
|
#elif defined __aarch64__
|
||||||
|
#define ARCH "arm64"
|
||||||
#else
|
#else
|
||||||
#define ARCH "none"
|
#define ARCH "none"
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue