diff options
| author | 2021-05-18 22:21:48 +0000 | |
|---|---|---|
| committer | 2021-05-18 22:21:48 +0000 | |
| commit | 1ff512573e1acd0a0646a035d3fd21c5beebfcea (patch) | |
| tree | d49e5060a89e35c30535c5c5b5593e070d879262 | |
| parent | 1deadca316216ae673fccfc79b0c1cfc7f00dc73 (diff) | |
| parent | 535429299a5d76a392b3c88c9c3350c883685184 (diff) | |
Merge "Remove libjemalloc5 and libc_jemalloc_wrapper from denylist."
| -rw-r--r-- | android/bazel.go | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/android/bazel.go b/android/bazel.go index 4f8392d1f..1404f99ef 100644 --- a/android/bazel.go +++ b/android/bazel.go @@ -180,11 +180,10 @@ var ( "liblinker_malloc", // http://b/186826466, cc_library_static, depends on //external/zlib:libz (http://b/186823782) // also depends on //system/libziparchive:libziparchive (http://b/186823656) // also depends on //system/logging/liblog:liblog (http://b/186822772) - "libc_jemalloc_wrapper", // http://b/187012490, cc_library_static, depends on //external/jemalloc_new:libjemalloc5 (http://b/186828626) - "libc_ndk", // http://b/187013218, cc_library_static, depends on //bionic/libm:libm (http://b/183064661) - "libc", // http://b/183064430, cc_library, depends on //external/jemalloc_new:libjemalloc5 (http://b/186828626) - "libc_malloc_hooks", // http://b/187016307, cc_library, ld.lld: error: undefined symbol: __malloc_hook - "libm", // http://b/183064661, cc_library, math.h:25:16: error: unexpected token in argument list + "libc_ndk", // http://b/187013218, cc_library_static, depends on //bionic/libm:libm (http://b/183064661) + "libc", // http://b/183064430, cc_library, depends on //external/jemalloc_new:libjemalloc5 (http://b/186828626) + "libc_malloc_hooks", // http://b/187016307, cc_library, ld.lld: error: undefined symbol: __malloc_hook + "libm", // http://b/183064661, cc_library, math.h:25:16: error: unexpected token in argument list // http://b/186823769: Needs C++ STL support, includes from unconverted standard libraries in //external/libcxx // c++_static @@ -204,7 +203,6 @@ var ( "note_memtag_heap_async", // http://b/185127353: cc_library_static, error: feature.h not found "note_memtag_heap_sync", // http://b/185127353: cc_library_static, error: feature.h not found - "libjemalloc5", // cc_library, ld.lld: error: undefined symbol: memset "gwp_asan_crash_handler", // cc_library, ld.lld: error: undefined symbol: memset // Tests. Handle later. @@ -217,7 +215,8 @@ var ( // Per-module denylist of cc_library modules to only generate the static // variant if their shared variant isn't ready or buildable by Bazel. bp2buildCcLibraryStaticOnlyList = []string{ - "libstdc++", // http://b/186822597, cc_library, ld.lld: error: undefined symbol: __errno + "libstdc++", // http://b/186822597, cc_library, ld.lld: error: undefined symbol: __errno + "libjemalloc5", // http://b/188503688, cc_library, `target: { android: { enabled: false } }` for android targets. } // Per-module denylist to opt modules out of mixed builds. Such modules will |