aboutsummaryrefslogtreecommitdiffstats
path: root/llvm-device-build.mk
diff options
context:
space:
mode:
Diffstat (limited to 'llvm-device-build.mk')
-rw-r--r--llvm-device-build.mk9
1 files changed, 8 insertions, 1 deletions
diff --git a/llvm-device-build.mk b/llvm-device-build.mk
index b8f38c7..0090359 100644
--- a/llvm-device-build.mk
+++ b/llvm-device-build.mk
@@ -11,7 +11,14 @@ LOCAL_CFLAGS := \
$(LOCAL_CFLAGS)
ifneq ($(TARGET_SIMULATOR),true)
-LOCAL_CFLAGS := -DANDROID_TARGET_BUILD $(LOCAL_CFLAGS)
+# The three inline options together reduce libbcc.so almost 1MB.
+# We move them from global build/core/combo/TARGET_linux-arm.mk
+# to here.
+LOCAL_CFLAGS := -DANDROID_TARGET_BUILD \
+ -finline-limit=64 \
+ -finline-functions \
+ -fno-inline-functions-called-once \
+ $(LOCAL_CFLAGS)
endif
ifeq ($(LLVM_ENABLE_ASSERTION),true)