Enable host multilib
Change-Id: I17405452a141d9ce15e4093f6610e8a9eceb98a9
This commit is contained in:
parent
ec19363c23
commit
ffce3fcf33
1 changed files with 6 additions and 0 deletions
|
@ -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)
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue