Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit deebae59 authored by Ian Rogers's avatar Ian Rogers
Browse files

Build the libc++ variant of libbacktrace on the host for Mac.

Bug: 13751317
Change-Id: Iefadec1cd9b3ca109ac436bd5eb7c096c2dcbe40
parent 304d31f0
Loading
Loading
Loading
Loading
+17 −0
Original line number Diff line number Diff line
@@ -186,4 +186,21 @@ LOCAL_SRC_FILES := \

include $(BUILD_HOST_SHARED_LIBRARY)

# Don't build for unbundled branches
ifeq (,$(TARGET_BUILD_APPS))
#-------------------------------------------------------------------------
# The libbacktrace library (libc++)
#-------------------------------------------------------------------------
include $(CLEAR_VARS)

LOCAL_MODULE := libbacktrace_libc++
LOCAL_MODULE_TAGS := optional

LOCAL_SRC_FILES := \
	BacktraceMap.cpp \

include $(BUILD_HOST_SHARED_LIBRARY)

endif # TARGET_BUILD_APPS

endif # HOST_OS-darwin