blob: 5fa9f1572a55b38725923299ab49b2bce83a8165 [file] [log] [blame]
Christopher Ferris91f44102013-05-20 17:24:15 -07001# Copyright (C) 2013 The Android Open Source Project
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
15LOCAL_PATH:= $(call my-dir)
16
17src_files := \
Dan Albertdc847e62014-11-15 18:50:10 -080018 memtrack.cpp
Christopher Ferris91f44102013-05-20 17:24:15 -070019
Christopher Ferris91f44102013-05-20 17:24:15 -070020include $(CLEAR_VARS)
Dan Albertcaacf4e2014-09-12 10:46:30 -070021LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk
Christopher Ferris91f44102013-05-20 17:24:15 -070022
23LOCAL_SRC_FILES := $(src_files)
24
25LOCAL_MODULE_PATH := $(TARGET_OUT_OPTIONAL_EXECUTABLES)
Christopher Ferris91f44102013-05-20 17:24:15 -070026LOCAL_MODULE := memtrack_share
27
28LOCAL_C_INCLUDES += $(includes)
29LOCAL_SHARED_LIBRARIES := \
Dan Albertdc847e62014-11-15 18:50:10 -080030 liblog \
Christopher Ferris91f44102013-05-20 17:24:15 -070031
32include $(BUILD_EXECUTABLE)
33
34include $(CLEAR_VARS)
Dan Albertcaacf4e2014-09-12 10:46:30 -070035LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk
Christopher Ferris91f44102013-05-20 17:24:15 -070036
37LOCAL_SRC_FILES := $(src_files)
38LOCAL_MODULE_PATH := $(TARGET_OUT_OPTIONAL_EXECUTABLES)
Christopher Ferris91f44102013-05-20 17:24:15 -070039LOCAL_MODULE := memtrack
40
41LOCAL_FORCE_STATIC_EXECUTABLE := true
Christopher Ferris91f44102013-05-20 17:24:15 -070042LOCAL_STATIC_LIBRARIES := \
Dan Albertdc847e62014-11-15 18:50:10 -080043 libc \
44 liblog \
45 libc++abi \
46 libdl \
Christopher Ferris91f44102013-05-20 17:24:15 -070047
Dan Albertdc847e62014-11-15 18:50:10 -080048LOCAL_CXX_STL := libc++_static
Stephen Hines56cd3942014-12-02 10:41:37 -080049
50# Bug: 18389563 - Today, libc++_static and libgcc have duplicate sybols for
51# __aeabi_uidiv(). Allowing multiple definitions lets the build proceed, but
52# updating compiler-rt to be a superset of libgcc will allow this WAR to be
53# removed.
54LOCAL_LDFLAGS := -Wl,-z,muldefs
55
Christopher Ferris91f44102013-05-20 17:24:15 -070056include $(BUILD_EXECUTABLE)