Skip to content

Commit

Permalink
Recognize __aarch64__
Browse files Browse the repository at this point in the history
As reported by #232

Co-authored-by: Malte Lenz <[email protected]>
  • Loading branch information
maltelenz authored Feb 5, 2024
1 parent 492ea83 commit a03bcdd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mat4.c
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ Mat_VarWrite4(mat_t *mat, const matvar_t *matvar)
#elif defined(__i386__) || defined(__alpha__) || defined(__ia64) || defined(__ia64__) || \
defined(_M_IX86) || defined(_M_IA64) || defined(_M_ALPHA) || defined(__amd64) || \
defined(__amd64__) || defined(_M_AMD64) || defined(__x86_64) || defined(__x86_64__) || \
defined(_M_X64) || defined(__bfin__) || defined(__loongarch64)
defined(_M_X64) || defined(__bfin__) || defined(__loongarch64) || defined(__aarch64__)
#else
return MATIO_E_OPERATION_NOT_SUPPORTED;
#endif
Expand Down

0 comments on commit a03bcdd

Please sign in to comment.