Loading cc/cc.go +5 −2 Original line number Diff line number Diff line Loading @@ -1266,9 +1266,12 @@ func orderStaticModuleDeps(module LinkableInterface, staticDeps []LinkableInterf allTransitiveDeps := make(map[android.Path][]android.Path, len(staticDeps)) staticDepFiles := []android.Path{} for _, dep := range staticDeps { // The OutputFile may not be valid for a variant not present, and the AllowMissingDependencies flag is set. if dep.OutputFile().Valid() { allTransitiveDeps[dep.OutputFile().Path()] = dep.GetDepsInLinkOrder() staticDepFiles = append(staticDepFiles, dep.OutputFile().Path()) } } sharedDepFiles := []android.Path{} for _, sharedDep := range sharedDeps { if sharedDep.HasStaticVariant() { Loading Loading
cc/cc.go +5 −2 Original line number Diff line number Diff line Loading @@ -1266,9 +1266,12 @@ func orderStaticModuleDeps(module LinkableInterface, staticDeps []LinkableInterf allTransitiveDeps := make(map[android.Path][]android.Path, len(staticDeps)) staticDepFiles := []android.Path{} for _, dep := range staticDeps { // The OutputFile may not be valid for a variant not present, and the AllowMissingDependencies flag is set. if dep.OutputFile().Valid() { allTransitiveDeps[dep.OutputFile().Path()] = dep.GetDepsInLinkOrder() staticDepFiles = append(staticDepFiles, dep.OutputFile().Path()) } } sharedDepFiles := []android.Path{} for _, sharedDep := range sharedDeps { if sharedDep.HasStaticVariant() { Loading