# # Copyright (C) 2014 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. # # Don't build for unbundled branches ifeq (,$(TARGET_BUILD_APPS)) # libcxxabi isn't working on mips yet ifneq ($(TARGET_ARCH),$(filter $(TARGET_ARCH), mips mips64)) LOCAL_PATH := $(call my-dir) LIBCXXABI_SRC_FILES := \ src/abort_message.cpp \ src/cxa_aux_runtime.cpp \ src/cxa_default_handlers.cpp \ src/cxa_demangle.cpp \ src/cxa_exception.cpp \ src/cxa_exception_storage.cpp \ src/cxa_guard.cpp \ src/cxa_handlers.cpp \ src/cxa_new_delete.cpp \ src/cxa_personality.cpp \ src/cxa_unexpected.cpp \ src/cxa_vector.cpp \ src/cxa_virtual.cpp \ src/exception.cpp \ src/fallback_malloc.ipp \ src/private_typeinfo.cpp \ src/stdexcept.cpp \ src/typeinfo.cpp \ src/Unwind/libunwind.cpp \ src/Unwind/Unwind-sjlj.c \ src/Unwind/UnwindLevel1-gcc-ext.c \ src/Unwind/UnwindLevel1.c \ src/Unwind/UnwindRegistersSave.S \ ifeq ($(TARGET_ARCH),$(filter $(TARGET_ARCH),x86 x86_64)) LIBCXXABI_SRC_FILES += src/Unwind/UnwindRegistersRestore.S endif LIBCXXABI_CFLAGS := \ -I$(LOCAL_PATH)/include/ \ LIBCXXABI_RTTI_FLAG := -frtti LIBCXXABI_CPPFLAGS := \ -Iexternal/libcxx/include/ \ -std=c++11 \ -fexceptions \ include $(CLEAR_VARS) LOCAL_MODULE := libcxxabi LOCAL_CLANG := true LOCAL_SRC_FILES := $(LIBCXXABI_SRC_FILES) LOCAL_CFLAGS := $(LIBCXXABI_CFLAGS) LOCAL_CPPFLAGS := $(LIBCXXABI_CPPFLAGS) LOCAL_RTTI_FLAG := $(LIBCXXABI_RTTI_FLAG) ifneq ($(TARGET_ARCH),arm) LOCAL_SHARED_LIBRARIES := libdl endif LOCAL_SYSTEM_SHARED_LIBRARIES := libc include $(BUILD_SHARED_LIBRARY) include $(CLEAR_VARS) LOCAL_MODULE := libcxxabi LOCAL_CLANG := true LOCAL_SRC_FILES := $(LIBCXXABI_SRC_FILES) ifneq ($(TARGET_ARCH),$(filter $(TARGET_ARCH),x86 x86_64)) LOCAL_SRC_FILES += src/Unwind/UnwindRegistersRestore.S endif LOCAL_CFLAGS := $(LIBCXXABI_CFLAGS) LOCAL_CPPFLAGS := $(LIBCXXABI_CPPFLAGS) ifeq ($(HOST_OS),darwin) LOCAL_SRC_FILES += src/Unwind/Unwind_AppleExtras.cpp # libcxxabi really doesn't like the non-LLVM assembler on Darwin LOCAL_ASFLAGS += -integrated-as LOCAL_CFLAGS += -integrated-as LOCAL_CPPFLAGS += -integrated-as endif LOCAL_LDFLAGS := -lpthread LOCAL_RTTI_FLAG := $(LIBCXXABI_RTTI_FLAG) include $(BUILD_HOST_SHARED_LIBRARY) endif endif # TARGET_BUILD_APPS