-
Type: Bug
-
Resolution: Fixed
-
Priority: Major - P3
-
Affects Version/s: None
-
Component/s: None
-
None
librt as well as libpthred are integrated in to libc on android and don't exist independently.
Changing
if (UNIX AND NOT APPLE) set (SHM_LIB -lrt) endif ()
to
if (UNIX AND NOT APPLE AND NOT ANDROID) set (SHM_LIB -lrt) endif ()
worked for me.