gauche: Do not define `AO_USE_PTHREAD_DEFS` for ARMv7

This commit is contained in:
Tee KOBAYASHI 2021-12-25 09:51:37 +09:00 committed by Henrik Grimler
parent c9faf3f050
commit 294260fc2f
No known key found for this signature in database
GPG Key ID: B0076E490B71616B
1 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,11 @@
--- a/src/gauche/priv/atomicP.h
+++ b/src/gauche/priv/atomicP.h
@@ -95,7 +95,7 @@
*
* -- gniibe 2012-11-27
*/
-#if defined(__ARMEL__)
+#if defined(__ARMEL__) && !defined(__ARM_ARCH_7A__)
#define AO_USE_PTHREAD_DEFS 1
#endif