Searched refs:systemSharedLibs (Results 1 – 6 of 6) sorted by relevance
/build/soong/cc/ |
D | linker.go | 281 systemSharedLibs := linker.Properties.System_shared_libs 282 if systemSharedLibs == nil { 286 systemSharedLibs = []string{"libc", "libm", "libdl"} 292 if inList("libc", systemSharedLibs) { 293 if !inList("libdl", systemSharedLibs) { 303 if inList("libdl", systemSharedLibs) && inList("libc", systemSharedLibs) && 304 indexList("libdl", systemSharedLibs) < indexList("libc", systemSharedLibs) { 308 deps.LateSharedLibs = append(deps.LateSharedLibs, systemSharedLibs...) 502 if specifiedDeps.systemSharedLibs == nil { 503 specifiedDeps.systemSharedLibs = linker.Properties.System_shared_libs [all …]
|
D | binary_sdk_member.go | 138 p.SystemSharedLibs = specifiedDeps.systemSharedLibs
|
D | library.go | 865 if specifiedDeps.systemSharedLibs == nil { 866 specifiedDeps.systemSharedLibs = properties.System_shared_libs 868 …specifiedDeps.systemSharedLibs = append(specifiedDeps.systemSharedLibs, properties.System_shared_l… 872 if len(specifiedDeps.systemSharedLibs) > 0 { 875 specifiedDeps.systemSharedLibs = android.FirstUniqueStrings(specifiedDeps.systemSharedLibs)
|
D | library_sdk_member.go | 398 p.SystemSharedLibs = specifiedDeps.systemSharedLibs
|
D | cc_test.go | 3108 systemSharedLibs := []string{"libc.so", "libm.so", "libdl.so"} 3109 for _, lib := range systemSharedLibs {
|
D | cc.go | 410 systemSharedLibs []string // Note nil and [] are semantically distinct. member
|