aboutsummaryrefslogtreecommitdiffstats
path: root/lib/LTO/Android.mk
diff options
context:
space:
mode:
Diffstat (limited to 'lib/LTO/Android.mk')
-rw-r--r--lib/LTO/Android.mk35
1 files changed, 35 insertions, 0 deletions
diff --git a/lib/LTO/Android.mk b/lib/LTO/Android.mk
new file mode 100644
index 0000000..68b7a72
--- /dev/null
+++ b/lib/LTO/Android.mk
@@ -0,0 +1,35 @@
+LOCAL_PATH:= $(call my-dir)
+
+lto_SRC_FILES := \
+ LTOModule.cpp \
+ LTOCodeGenerator.cpp \
+
+# For the host
+# =====================================================
+include $(CLEAR_VARS)
+
+LOCAL_SRC_FILES := $(lto_SRC_FILES)
+
+LOCAL_MODULE:= libLLVMLTO
+
+LOCAL_MODULE_TAGS := optional
+
+include $(LLVM_HOST_BUILD_MK)
+include $(LLVM_GEN_INTRINSICS_MK)
+include $(BUILD_HOST_STATIC_LIBRARY)
+
+# For the device
+# =====================================================
+ifneq (true,$(DISABLE_LLVM_DEVICE_BUILDS))
+include $(CLEAR_VARS)
+
+LOCAL_SRC_FILES := $(lto_SRC_FILES)
+
+LOCAL_MODULE:= libLLVMLTO
+
+LOCAL_MODULE_TAGS := optional
+
+include $(LLVM_DEVICE_BUILD_MK)
+include $(LLVM_GEN_INTRINSICS_MK)
+include $(BUILD_STATIC_LIBRARY)
+endif