Advertisement
Guest User

Untitled

a guest
Nov 25th, 2015
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. # Cortex
  2. ifeq ($(CORTEX_TUNINGS),true)
  3. ifndef LOCAL_IS_HOST_MODULE
  4. LOCAL_DISABLE_CORTEX := \
  5. libbluetooth_jni_32 \
  6. libmmcamera_interface_32 \
  7. libmmjpeg_interface_32
  8.  
  9. ifeq ($(filter $(LOCAL_DISABLE_CORTEX), $(LOCAL_MODULE)),)
  10. ifdef LOCAL_CFLAGS_64
  11. LOCAL_CFLAGS_64 += -mcpu=cortex-a57 -mtune=cortex-a57
  12. else
  13. LOCAL_CFLAGS_64 := -mcpu=cortex-a57 -mtune=cortex-a57
  14. endif
  15. endif
  16. endif
  17. endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement