Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 91729bd2 authored by Colin Cross's avatar Colin Cross Committed by Gerrit Code Review
Browse files

Merge "Add musl_x86 and glibc_x86 style properties to bazel configurations"

parents c8a64871 2d295a2d
Loading
Loading
Loading
Loading
+10 −0
Original line number Original line Diff line number Diff line
@@ -2179,6 +2179,16 @@ func (m *ModuleBase) GetArchVariantProperties(ctx ArchVariantContext, propertySe
				targetStructs := getTargetStructs(ctx, archProperties, targetField)
				targetStructs := getTargetStructs(ctx, archProperties, targetField)
				osArchStructs = append(osArchStructs, targetStructs...)
				osArchStructs = append(osArchStructs, targetStructs...)
			}
			}
			if os == LinuxMusl {
				targetField := "Musl_" + arch.Name
				targetStructs := getTargetStructs(ctx, archProperties, targetField)
				osArchStructs = append(osArchStructs, targetStructs...)
			}
			if os == Linux {
				targetField := "Glibc_" + arch.Name
				targetStructs := getTargetStructs(ctx, archProperties, targetField)
				osArchStructs = append(osArchStructs, targetStructs...)
			}


			targetField := GetCompoundTargetField(os, arch)
			targetField := GetCompoundTargetField(os, arch)
			targetName := fmt.Sprintf("%s_%s", os.Name, arch.Name)
			targetName := fmt.Sprintf("%s_%s", os.Name, arch.Name)