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 authored 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
Original file line number Diff line number Diff line change
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.