Skip to content

Commit f995960

Browse files
authored
Support aarch64-pc-windows-msvc (#206)
1 parent 8589f20 commit f995960

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/detect_platform.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
// Our inline assembly path assume GCC/Clang syntax.
2222
// Native Client doesn't seem to support inline assembly(?).
23-
#if defined(__GNUC__) && !defined(__native_client__)
23+
#if (defined(__GNUC__) || defined(__clang__)) && !defined(__native_client__)
2424
#define GEMMLOWP_ALLOW_INLINE_ASM
2525
#endif
2626

0 commit comments

Comments
 (0)