diff options
author | 2018-11-06 13:32:06 +0000 | |
---|---|---|
committer | 2018-11-06 14:31:16 +0000 | |
commit | 12dd9aee74a588bf31f151cebba930849b4baceb (patch) | |
tree | 9d04404a17b4f3e5e9e2b1150fc575a74ecd37c2 /build/codegen.go | |
parent | 5725e7c4aab576384649de60557dc1f52eb21b9f (diff) |
Use unified libvixl(d) instead of per-supported-arch libvixl(d)-arm(64).
Using a unified libvixl(s) saves space by sharing code that was common
to libvixl(d)-arm and libvixl(d)-arm64 and also addresses multiple
definitions issues that would cause ODR violations.
Test: 32-bit-only device boot test
Test: 32/64-bit device boot test
Change-Id: I1d67c43897e08bc0f5743eb038fe574ce2fb54f3
Diffstat (limited to 'build/codegen.go')
-rw-r--r-- | build/codegen.go | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/build/codegen.go b/build/codegen.go index 8526bf192b..d0db78e571 100644 --- a/build/codegen.go +++ b/build/codegen.go @@ -107,8 +107,9 @@ func codegen(ctx android.LoadHookContext, c *codegenProperties, library bool) { } type CodegenCommonArchProperties struct { - Srcs []string - Cflags []string + Srcs []string + Cflags []string + Cppflags []string } type CodegenLibraryArchProperties struct { |