OSDN Git Service

Add support for building libLTO.so in LLVM.
authorStephen Hines <srhines@google.com>
Thu, 30 Jul 2015 07:42:26 +0000 (00:42 -0700)
committerStephen Hines <srhines@google.com>
Mon, 3 Aug 2015 20:23:37 +0000 (13:23 -0700)
Bug: 21616856
Change-Id: Id6b9e5b91fb1b9e1ff73a096a4286b443bad0382

Android.mk
tools/lto/Android.mk [new file with mode: 0644]

index c86080b..1e0e175 100644 (file)
@@ -124,6 +124,7 @@ subdirs += \
   tools/llvm-rtdyld \
   tools/llvm-size \
   tools/llvm-symbolizer \
+  tools/lto \
   tools/macho-dump \
   tools/obj2yaml \
   tools/opt \
diff --git a/tools/lto/Android.mk b/tools/lto/Android.mk
new file mode 100644 (file)
index 0000000..9d5c61c
--- /dev/null
@@ -0,0 +1,75 @@
+#
+# Copyright (C) 2015 The Android Open Source Project
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+#      http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+
+LOCAL_PATH:= $(call my-dir)
+
+LLVM_ROOT_PATH := $(LOCAL_PATH)/../../
+include $(LLVM_ROOT_PATH)/llvm.mk
+
+# For the host only
+# =====================================================
+include $(CLEAR_VARS)
+include $(CLEAR_TBLGEN_VARS)
+
+LOCAL_MODULE := libLTO
+
+LOCAL_MODULE_CLASS := SHARED_LIBRARIES
+
+llvm_lto_SRC_FILES := \
+  lto.cpp \
+  LTODisassembler.cpp
+
+LOCAL_SRC_FILES := $(llvm_lto_SRC_FILES)
+
+LOCAL_STATIC_LIBRARIES := \
+  libLLVMARMAsmParser \
+  libLLVMARMCodeGen \
+  libLLVMARMAsmPrinter \
+  libLLVMARMDisassembler \
+  libLLVMARMDesc \
+  libLLVMARMInfo \
+  libLLVMMipsAsmParser \
+  libLLVMMipsCodeGen \
+  libLLVMMipsDisassembler \
+  libLLVMMipsAsmPrinter \
+  libLLVMMipsDesc \
+  libLLVMMipsInfo \
+  libLLVMX86Info \
+  libLLVMX86AsmParser \
+  libLLVMX86CodeGen \
+  libLLVMX86Disassembler \
+  libLLVMX86Desc \
+  libLLVMX86AsmPrinter \
+  libLLVMX86Utils \
+  libLLVMAArch64Info \
+  libLLVMAArch64AsmParser \
+  libLLVMAArch64CodeGen \
+  libLLVMAArch64Disassembler \
+  libLLVMAArch64Desc \
+  libLLVMAArch64AsmPrinter \
+  libLLVMAArch64Utils \
+  libLLVMCore \
+  libLLVMLTO \
+  libLLVMMC \
+  libLLVMMCDisassembler \
+  libLLVMSupport
+
+ifndef USE_MINGW
+LOCAL_LDLIBS += -lpthread -ldl
+endif
+
+include $(LLVM_HOST_BUILD_MK)
+include $(BUILD_HOST_SHARED_LIBRARY)