diff options
| author | Dan Willemsen <dwillemsen@google.com> | 2015-07-08 13:02:19 -0700 |
|---|---|---|
| committer | Dan Willemsen <dwillemsen@google.com> | 2015-07-08 13:02:19 -0700 |
| commit | ffce3fcf330bce68c402a5d5ac1eddc295ebf356 (patch) | |
| tree | 3a9c239c3186a8273d373ab0d5b952f8ee8968bc /common | |
| parent | ec19363c235ebb9998cc97b7566fac71752bdf17 (diff) | |
| download | build_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.go | 6 |
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) } |
