diff options
Diffstat (limited to 'cc/testing.go')
| -rw-r--r-- | cc/testing.go | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/cc/testing.go b/cc/testing.go index 59e8497a0..fab76d816 100644 --- a/cc/testing.go +++ b/cc/testing.go @@ -450,6 +450,25 @@ func commonDefaultModules() string { cc_library_static { name: "note_memtag_heap_sync", } + + + cc_library { + name: "libjemalloc5", + host_supported: true, + no_libcrt: true, + nocrt: true, + default_shared_libs: [], + stl: "none", + } + + cc_library { + name: "libc_musl", + host_supported: true, + no_libcrt: true, + nocrt: true, + default_shared_libs: [], + stl: "none", + } ` } |