You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
clFFT seems cross-compilable for android.
The only error I encountered was in the makefile of startTimer:
if( UNIX AND NOT APPLE )
# This library dependency is brought in by the high precision timer available in linux
target_link_libraries( StatTimer -lrt )
endif( )
Should be
if( UNIX AND NOT APPLE AND NOT ANDROID )
# This library dependency is brought in by the high precision timer available in linux
# In Android, there's no need to link against rt
target_link_libraries( StatTimer -lrt )
endif( )
PR needed ?
The text was updated successfully, but these errors were encountered:
clFFT seems cross-compilable for android.
The only error I encountered was in the makefile of startTimer:
Should be
PR needed ?
The text was updated successfully, but these errors were encountered: