diff options
author | johannst <johannes.stoelp@gmail.com> | 2021-02-26 23:19:03 +0100 |
---|---|---|
committer | johannst <johannes.stoelp@gmail.com> | 2021-02-26 23:19:03 +0100 |
commit | 0d881bc974b74dff75c00a3cab5d535cbb2ace46 (patch) | |
tree | 35c5892c135d5623879b106e93df4cc235669a8d /lib/arch.h | |
parent | 5fbee6be76c8751c282b45c54b8179ae525e00c1 (diff) | |
download | matcha-threads-0d881bc974b74dff75c00a3cab5d535cbb2ace46.tar.gz matcha-threads-0d881bc974b74dff75c00a3cab5d535cbb2ace46.zip |
added implementation for armv7a
Diffstat (limited to 'lib/arch.h')
-rw-r--r-- | lib/arch.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -10,6 +10,8 @@ static_assert(false, "Matcha Threads only supported on Linux!"); # include "arch/x86_64/api.h" #elif defined(__aarch64__) # include "arch/arm64/api.h" +#elif defined(__arm__) +# include "arch/arm/api.h" #else static_assert(false, "Unsupported architecture!"); #endif |