Skip to content
Snippets Groups Projects
Commit eb97ee37 authored by Aleksandras Kostarevas's avatar Aleksandras Kostarevas
Browse files

Enable logging in builds

parent 63016fd0
No related branches found
Tags 0.1.24
No related merge requests found
...@@ -19,7 +19,7 @@ LOCAL_ARM_NEON := true ...@@ -19,7 +19,7 @@ LOCAL_ARM_NEON := true
############ some local flags ############ some local flags
# If you change any of those flags, you need to rebuild both libjni_latinime_common_static # If you change any of those flags, you need to rebuild both libjni_latinime_common_static
# and the shared library that uses libjni_latinime_common_static. # and the shared library that uses libjni_latinime_common_static.
FLAG_DBG ?= false FLAG_DBG ?= true
FLAG_DO_PROFILE ?= false FLAG_DO_PROFILE ?= false
###################################### ######################################
...@@ -63,7 +63,7 @@ ifeq ($(FLAG_DO_PROFILE), true) ...@@ -63,7 +63,7 @@ ifeq ($(FLAG_DO_PROFILE), true)
else # FLAG_DO_PROFILE else # FLAG_DO_PROFILE
ifeq ($(FLAG_DBG), true) ifeq ($(FLAG_DBG), true)
$(warning Making debug version of native library) $(warning Making debug version of native library)
LOCAL_CFLAGS += -DFLAG_DBG -funwind-tables -fno-inline LOCAL_CFLAGS += -DFLAG_DBG #-funwind-tables -fno-inline
ifeq ($(FLAG_FULL_DBG), true) ifeq ($(FLAG_FULL_DBG), true)
$(warning Making full debug version of native library) $(warning Making full debug version of native library)
LOCAL_CFLAGS += -DFLAG_FULL_DBG LOCAL_CFLAGS += -DFLAG_FULL_DBG
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment