Skip to content

Commit

Permalink
Update TypeDefinitions.h to support ARM64 (aarch64) on MinGW-w64
Browse files Browse the repository at this point in the history
Support ARM64 (aarch64) when building with MinGW-w64
  • Loading branch information
brechtsanders authored Nov 2, 2023
1 parent 9f59fcf commit 6eca3e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tbbmalloc/TypeDefinitions.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
# define __ARCH_ipf 1
# elif defined(_M_IX86)||defined(__i386__) // the latter for MinGW support
# define __ARCH_x86_32 1
# elif defined(_M_ARM) || defined(_M_ARM64)
# elif defined(_M_ARM) || defined(_M_ARM64) || defined(__aarch64__) // the latter for MinGW support
# define __ARCH_other 1
# else
# error Unknown processor architecture for Windows
Expand Down

0 comments on commit 6eca3e0

Please sign in to comment.