109 lines
3.7 KiB
Makefile
109 lines
3.7 KiB
Makefile
#
|
|
# Copyright (C) 2016 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)
|
|
|
|
libcxxabi_src_files := \
|
|
libcxxabi/src/abort_message.cpp \
|
|
libcxxabi/src/cxa_aux_runtime.cpp \
|
|
libcxxabi/src/cxa_default_handlers.cpp \
|
|
libcxxabi/src/cxa_demangle.cpp \
|
|
libcxxabi/src/cxa_exception.cpp \
|
|
libcxxabi/src/cxa_exception_storage.cpp \
|
|
libcxxabi/src/cxa_guard.cpp \
|
|
libcxxabi/src/cxa_handlers.cpp \
|
|
libcxxabi/src/cxa_new_delete.cpp \
|
|
libcxxabi/src/cxa_personality.cpp \
|
|
libcxxabi/src/cxa_thread_atexit.cpp \
|
|
libcxxabi/src/cxa_unexpected.cpp \
|
|
libcxxabi/src/cxa_vector.cpp \
|
|
libcxxabi/src/cxa_virtual.cpp \
|
|
libcxxabi/src/exception.cpp \
|
|
libcxxabi/src/private_typeinfo.cpp \
|
|
libcxxabi/src/stdexcept.cpp \
|
|
libcxxabi/src/typeinfo.cpp
|
|
|
|
libunwind_src_files := \
|
|
libcxxabi/src/Unwind/libunwind.cpp \
|
|
libcxxabi/src/Unwind/Unwind-EHABI.cpp \
|
|
libcxxabi/src/Unwind/Unwind-sjlj.c \
|
|
libcxxabi/src/Unwind/UnwindLevel1.c \
|
|
libcxxabi/src/Unwind/UnwindLevel1-gcc-ext.c \
|
|
libcxxabi/src/Unwind/UnwindRegistersRestore.S \
|
|
libcxxabi/src/Unwind/UnwindRegistersSave.S
|
|
|
|
libcxxabi_includes := \
|
|
$(LOCAL_PATH)/libcxxabi/include \
|
|
$(LOCAL_PATH)/../llvm-libc++/libcxx/include \
|
|
|
|
libcxxabi_cflags := -D__STDC_FORMAT_MACROS
|
|
libcxxabi_cppflags := -std=c++11
|
|
|
|
ifneq (,$(filter armeabi%,$(TARGET_ARCH_ABI)))
|
|
use_llvm_unwinder := true
|
|
libcxxabi_cppflags += -DLIBCXXABI_USE_LLVM_UNWINDER=1
|
|
else
|
|
use_llvm_unwinder := false
|
|
libcxxabi_cppflags += -DLIBCXXABI_USE_LLVM_UNWINDER=0
|
|
endif
|
|
|
|
ifneq ($(LIBCXX_FORCE_REBUILD),true) # Using prebuilt
|
|
|
|
ifeq ($(use_llvm_unwinder),true)
|
|
include $(CLEAR_VARS)
|
|
LOCAL_MODULE := libunwind
|
|
LOCAL_SRC_FILES := ../llvm-libc++/libs/$(TARGET_ARCH_ABI)/$(LOCAL_MODULE)$(TARGET_LIB_EXTENSION)
|
|
LOCAL_EXPORT_C_INCLUDES := $(LOCAL_PATH)/libcxxabi/include
|
|
include $(PREBUILT_STATIC_LIBRARY)
|
|
endif
|
|
|
|
include $(CLEAR_VARS)
|
|
LOCAL_MODULE := libc++abi
|
|
LOCAL_SRC_FILES := ../llvm-libc++/libs/$(TARGET_ARCH_ABI)/$(LOCAL_MODULE)$(TARGET_LIB_EXTENSION)
|
|
LOCAL_EXPORT_C_INCLUDES := $(LOCAL_PATH)/libcxxabi/include
|
|
include $(PREBUILT_STATIC_LIBRARY)
|
|
|
|
else # Building
|
|
|
|
include $(CLEAR_VARS)
|
|
LOCAL_MODULE := libunwind
|
|
LOCAL_SRC_FILES := $(libunwind_src_files)
|
|
LOCAL_C_INCLUDES := $(libcxxabi_includes)
|
|
LOCAL_CFLAGS := $(libcxxabi_cflags) -fvisibility=hidden
|
|
LOCAL_EXPORT_C_INCLUDES := $(LOCAL_PATH)/libcxxabi/include
|
|
include $(BUILD_STATIC_LIBRARY)
|
|
|
|
include $(CLEAR_VARS)
|
|
LOCAL_MODULE := libc++abi
|
|
LOCAL_SRC_FILES := $(libcxxabi_src_files)
|
|
LOCAL_C_INCLUDES := $(libcxxabi_includes)
|
|
LOCAL_CPPFLAGS := $(libcxxabi_cppflags)
|
|
LOCAL_CPP_FEATURES := rtti exceptions
|
|
LOCAL_EXPORT_C_INCLUDES := $(LOCAL_PATH)/libcxxabi/include
|
|
LOCAL_STATIC_LIBRARIES := android_support
|
|
|
|
# Unlike the platform build, ndk-build will actually perform dependency checking
|
|
# on static libraries and topologically sort them to determine link order.
|
|
# Though there is no link step, without this we may link libunwind before
|
|
# libc++abi, which won't succeed.
|
|
ifeq ($(use_llvm_unwinder),true)
|
|
LOCAL_STATIC_LIBRARIES += libunwind
|
|
endif
|
|
include $(BUILD_STATIC_LIBRARY)
|
|
|
|
endif # Prebuilt/building
|
|
|
|
$(call import-module, android/support)
|