Reland "Recognize libdl_android as a Bionic library".

Necessary to create the symlinks from /system/lib{,64} to the Runtime APEX.

Test: build & boot
Bug: 135753770
Bug: 144343305
Change-Id: I221bed87a85f18c927ba44ee75b7db75316c1f49
This commit is contained in:
Martin Stjernholm 2019-11-11 15:33:27 +00:00
parent c6e9f92cfa
commit 203489b321
1 changed files with 1 additions and 1 deletions

View File

@ -890,7 +890,7 @@ func (c *Module) ExportedDeps() android.Paths {
func isBionic(name string) bool {
switch name {
case "libc", "libm", "libdl", "linker":
case "libc", "libm", "libdl", "libdl_android", "linker":
return true
}
return false