diff options
-rw-r--r-- | apex/Android.bp | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/apex/Android.bp b/apex/Android.bp index ce9d82bdf..100430da4 100644 --- a/apex/Android.bp +++ b/apex/Android.bp @@ -65,10 +65,14 @@ sdk { module_exports { name: "runtime-module-host-exports", - defaults: ["linux_bionic_supported"], + host_supported: true, device_supported: false, + compile_multilib: "64", - native_binaries: [ - "linker", - ], + native_binaries: ["linkerconfig"], + target: { + linux_bionic: { + native_binaries: ["linker"], + }, + }, } |