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
Change-Id: I231b4ec48869843de233ebb7c2e4fc5a49e7288a
This commit is contained in:
Martin Stjernholm
2019-11-06 00:22:37 +00:00
parent af60d490ff
commit f4ed8df84d

View File

@@ -877,7 +877,7 @@ func (c *Module) ExportedFlags() []string {
func isBionic(name string) bool {
switch name {
case "libc", "libm", "libdl", "linker":
case "libc", "libm", "libdl", "libdl_android", "linker":
return true
}
return false