OSDN Git Service

android: Add a Microsoft Demangler.
authorMauro Rossi <issor.oruam@gmail.com>
Sat, 1 Sep 2018 15:52:18 +0000 (17:52 +0200)
committerMauro Rossi <issor.oruam@gmail.com>
Sat, 8 Sep 2018 07:29:44 +0000 (09:29 +0200)
Reference: 42e40ea33e ("Add a Microsoft Demangler.")

Android.bp
lib/Demangle/Android.bp [new file with mode: 0644]

index f9f3775..6c040d6 100644 (file)
@@ -229,6 +229,7 @@ cc_library_shared {
         "libLLVMBitWriter",
         "libLLVMBitReader",
         "libLLVMPasses",
+        "libLLVMDemangle",
 
         // post static libraries
         "libLLVMLTO",
diff --git a/lib/Demangle/Android.bp b/lib/Demangle/Android.bp
new file mode 100644 (file)
index 0000000..476e718
--- /dev/null
@@ -0,0 +1,7 @@
+cc_library_static {
+    name: "libLLVMDemangle",
+    defaults: [
+        "llvm-lib-defaults",
+    ],
+    srcs: ["*.cpp"],
+}