• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// 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
15cc_defaults {
16    name: "memtrack_defaults",
17
18    srcs: ["memtrack.cpp"],
19
20    cflags: [
21        "-Wall",
22        "-Werror",
23    ],
24}
25
26cc_binary {
27    name: "memtrack_share",
28    defaults: ["memtrack_defaults"],
29
30    shared_libs: ["liblog"],
31}
32
33cc_binary {
34    name: "memtrack",
35    defaults: ["memtrack_defaults"],
36
37    static_executable: true,
38    static_libs: [
39        "libc",
40        "liblog",
41        "libc++abi",
42        "libdl",
43    ],
44
45    stl: "libc++_static",
46
47    // Bug: 18389563 - Today, libc++_static and libgcc have duplicate sybols for
48    // __aeabi_uidiv(). Allowing multiple definitions lets the build proceed, but
49    // updating compiler-rt to be a superset of libgcc will allow this WAR to be
50    // removed.
51    ldflags: ["-Wl,-z,muldefs"],
52}
53