Skip to content

Commit

Permalink
fix(configure) Don't add rt on Android
Browse files Browse the repository at this point in the history
Library rt is included in the libc on Android: https://developer.android.com/ndk/guides/stable_apis#a3
  • Loading branch information
guillaume-tgl committed Nov 15, 2018
1 parent ec476f9 commit 92b8833
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions configure.ac
Expand Up @@ -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=""
;;
Expand Down

0 comments on commit 92b8833

Please sign in to comment.