We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aee404f commit 849b089Copy full SHA for 849b089
src/Makefile
@@ -263,9 +263,12 @@ endif
263
264
### On mingw use Windows threads, otherwise POSIX
265
ifneq ($(comp),mingw)
266
- # Haiku has pthreads in its libroot, so only link it in on other platforms
267
- ifneq ($(UNAME),Haiku)
268
- LDFLAGS += -lpthread
+ # On Android Bionic's C library comes with its own pthread implementation bundled in
+ ifneq ($(arch),armv7)
+ # Haiku has pthreads in its libroot, so only link it in on other platforms
269
+ ifneq ($(UNAME),Haiku)
270
+ LDFLAGS += -lpthread
271
+ endif
272
endif
273
274
0 commit comments