Android build fix proposal.

malloc_usable_size has different signature on this platform.
thread and real time apis are part of bionic.
This commit is contained in:
David Carlier 2020-04-14 14:20:56 +01:00
parent 69a0846478
commit 6c5039bad1
2 changed files with 10 additions and 4 deletions

View file

@ -146,10 +146,12 @@ endif()
if(WIN32)
list(APPEND mi_libraries psapi shell32 user32 bcrypt)
else()
list(APPEND mi_libraries pthread)
find_library(LIBRT rt)
if(LIBRT)
list(APPEND mi_libraries ${LIBRT})
if(NOT ${CC} MATCHES "android")
list(APPEND mi_libraries pthread)
find_library(LIBRT rt)
if(LIBRT)
list(APPEND mi_libraries ${LIBRT})
endif()
endif()
endif()