OSDN Git Service

android: Move Object format code to lib/BinaryFormat.
authorMauro Rossi <issor.oruam@gmail.com>
Sat, 1 Sep 2018 00:36:45 +0000 (02:36 +0200)
committerMauro Rossi <issor.oruam@gmail.com>
Thu, 15 Apr 2021 11:04:59 +0000 (13:04 +0200)
Reference:
19ca2b0f9d ("Move Object format code to lib/BinaryFormat.")

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

index 4875725..7708c13 100644 (file)
@@ -254,6 +254,7 @@ cc_library_shared {
         "libLLVMRuntimeDyld",
         "libLLVMMCJIT",
         "libLLVMOrcJIT",
+        "libLLVMBinaryFormat",
     ],
 
     export_include_dirs: ["include"],
diff --git a/llvm/lib/BinaryFormat/Android.bp b/llvm/lib/BinaryFormat/Android.bp
new file mode 100644 (file)
index 0000000..b99bb0a
--- /dev/null
@@ -0,0 +1,7 @@
+cc_library_static {
+    name: "libLLVMBinaryFormat",
+    defaults: [
+        "llvm-lib-defaults",
+    ],
+    srcs: ["*.cpp"],
+}