aboutsummaryrefslogtreecommitdiffstats
path: root/lib/DebugInfo
diff options
context:
space:
mode:
authorStephen Hines <srhines@google.com>2014-06-09 16:49:54 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2014-06-09 16:49:55 +0000
commit19c6fbb3e8aaf74093afa08013134b61fa08f245 (patch)
treef4f29ff2e71102ee86111bc695830ae5850ec50c /lib/DebugInfo
parenta637ea99e253d9d3bd16ebb9e33f5828d38d94de (diff)
parent075c621d834af7ffc32d2067fadb147cc1758b99 (diff)
downloadexternal_llvm-19c6fbb3e8aaf74093afa08013134b61fa08f245.zip
external_llvm-19c6fbb3e8aaf74093afa08013134b61fa08f245.tar.gz
external_llvm-19c6fbb3e8aaf74093afa08013134b61fa08f245.tar.bz2
Merge "Adds the ability to run the llvm test suite in-tree."
Diffstat (limited to 'lib/DebugInfo')
-rw-r--r--lib/DebugInfo/Android.mk52
1 files changed, 52 insertions, 0 deletions
diff --git a/lib/DebugInfo/Android.mk b/lib/DebugInfo/Android.mk
new file mode 100644
index 0000000..12dfb3b
--- /dev/null
+++ b/lib/DebugInfo/Android.mk
@@ -0,0 +1,52 @@
+LOCAL_PATH:= $(call my-dir)
+
+debuginfo_SRC_FILES := \
+ DIContext.cpp \
+ DWARFAbbreviationDeclaration.cpp \
+ DWARFCompileUnit.cpp \
+ DWARFContext.cpp \
+ DWARFDebugAbbrev.cpp \
+ DWARFDebugArangeSet.cpp \
+ DWARFDebugAranges.cpp \
+ DWARFDebugFrame.cpp \
+ DWARFDebugInfoEntry.cpp \
+ DWARFDebugLine.cpp \
+ DWARFDebugLoc.cpp \
+ DWARFDebugRangeList.cpp \
+ DWARFFormValue.cpp \
+ DWARFTypeUnit.cpp \
+ DWARFUnit.cpp \
+
+# For the host
+# =====================================================
+include $(CLEAR_VARS)
+
+REQUIRES_RTTI := 1
+
+LOCAL_SRC_FILES := $(debuginfo_SRC_FILES)
+
+LOCAL_MODULE:= libLLVMDebugInfo
+
+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)
+
+REQUIRES_RTTI := 1
+
+LOCAL_SRC_FILES := $(debuginfo_SRC_FILES)
+
+LOCAL_MODULE:= libLLVMDebugInfo
+
+LOCAL_MODULE_TAGS := optional
+
+include $(LLVM_DEVICE_BUILD_MK)
+include $(LLVM_GEN_INTRINSICS_MK)
+include $(BUILD_STATIC_LIBRARY)
+endif