From 92b88338384e2b247f0070cb856440e86088d446 Mon Sep 17 00:00:00 2001 From: Guillaume Gigaud Date: Thu, 15 Nov 2018 13:56:28 +0100 Subject: [PATCH] fix(configure) Don't add rt on Android Library rt is included in the libc on Android: https://developer.android.com/ndk/guides/stable_apis#a3 --- configure.ac | 3 +++ 1 file changed, 3 insertions(+) diff --git a/configure.ac b/configure.ac index c129d327f1..33f7b5e5fd 100644 --- a/configure.ac +++ b/configure.ac @@ -99,6 +99,9 @@ case "${host_os}" in OPENCL_INC="" AM_CONDITIONAL([ADD_RT], false) ;; + *android*) + AM_CONDITIONAL([ADD_RT], false) + ;; powerpc-*-darwin*) OPENCL_LIBS="" ;;