Enable host multilib

Change-Id: I17405452a141d9ce15e4093f6610e8a9eceb98a9
This commit is contained in:
Dan Willemsen 2015-07-08 13:02:19 -07:00
parent ec19363c23
commit ffce3fcf33

View file

@ -345,6 +345,12 @@ func ArchMutator(mctx blueprint.EarlyMutatorContext) {
switch module.base().commonProperties.Compile_multilib {
case "common":
arches = append(arches, commonArch)
case "both":
arches = append(arches, x8664Arch, x86Arch)
case "first", "64":
arches = append(arches, x8664Arch)
case "32":
arches = append(arches, x86Arch)
default:
arches = append(arches, x8664Arch)
}