aboutsummaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorDan Willemsen <dwillemsen@google.com>2015-07-08 13:02:19 -0700
committerDan Willemsen <dwillemsen@google.com>2015-07-08 13:02:19 -0700
commitffce3fcf330bce68c402a5d5ac1eddc295ebf356 (patch)
tree3a9c239c3186a8273d373ab0d5b952f8ee8968bc /common
parentec19363c235ebb9998cc97b7566fac71752bdf17 (diff)
downloadbuild_soong-ffce3fcf330bce68c402a5d5ac1eddc295ebf356.tar.gz
build_soong-ffce3fcf330bce68c402a5d5ac1eddc295ebf356.tar.bz2
build_soong-ffce3fcf330bce68c402a5d5ac1eddc295ebf356.zip
Enable host multilib
Change-Id: I17405452a141d9ce15e4093f6610e8a9eceb98a9
Diffstat (limited to 'common')
-rw-r--r--common/arch.go6
1 files changed, 6 insertions, 0 deletions
diff --git a/common/arch.go b/common/arch.go
index 6faef59c..6865904d 100644
--- a/common/arch.go
+++ b/common/arch.go
@@ -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)
}