summaryrefslogtreecommitdiff
path: root/apex/Android.bp
diff options
context:
space:
mode:
Diffstat (limited to 'apex/Android.bp')
-rw-r--r--apex/Android.bp22
1 files changed, 18 insertions, 4 deletions
diff --git a/apex/Android.bp b/apex/Android.bp
index ce9d82bdf..c6c4cbf09 100644
--- a/apex/Android.bp
+++ b/apex/Android.bp
@@ -36,6 +36,9 @@ apex {
},
key: "com.android.runtime.key",
certificate: ":com.android.runtime.certificate",
+ prebuilts: [
+ "bionic-linker-config",
+ ],
}
sdk {
@@ -65,10 +68,21 @@ 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"],
+ },
+ },
+}
+
+prebuilt_etc {
+ name: "bionic-linker-config",
+ src: "linker.config.txt",
+ filename: "linker.config.txt",
+ installable: false,
}