Home
last modified time | relevance | path

Searched refs:systemSharedLibs (Results 1 – 6 of 6) sorted by relevance

/build/soong/cc/
Dlinker.go281 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 …]
Dbinary_sdk_member.go138 p.SystemSharedLibs = specifiedDeps.systemSharedLibs
Dlibrary.go865 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)
Dlibrary_sdk_member.go398 p.SystemSharedLibs = specifiedDeps.systemSharedLibs
Dcc_test.go3108 systemSharedLibs := []string{"libc.so", "libm.so", "libdl.so"}
3109 for _, lib := range systemSharedLibs {
Dcc.go410 systemSharedLibs []string // Note nil and [] are semantically distinct. member