Merge "Make apex availability of some bionic libraries explicit" into main
This commit is contained in:
commit
343381d593
3 changed files with 12 additions and 0 deletions
|
@ -32,6 +32,9 @@ cc_library_static {
|
|||
"bionic/libstdc++/include",
|
||||
],
|
||||
export_include_dirs: ["include"],
|
||||
apex_available: [
|
||||
"com.android.runtime",
|
||||
],
|
||||
}
|
||||
|
||||
cc_benchmark {
|
||||
|
|
|
@ -47,6 +47,9 @@ cc_library_static {
|
|||
sanitize: {
|
||||
never: true,
|
||||
},
|
||||
apex_available: [
|
||||
"com.android.runtime",
|
||||
],
|
||||
}
|
||||
|
||||
cc_library {
|
||||
|
|
|
@ -146,12 +146,18 @@ cc_library_static {
|
|||
|
||||
// Ensure that the compiler won't insert string function calls before ifuncs are resolved.
|
||||
cflags: ["-ffreestanding"],
|
||||
apex_available: [
|
||||
"com.android.runtime",
|
||||
],
|
||||
}
|
||||
|
||||
cc_library_static {
|
||||
name: "liblinker_malloc",
|
||||
defaults: ["linker_defaults", "linker_all_targets"],
|
||||
srcs: ["linker_memory.cpp"],
|
||||
apex_available: [
|
||||
"com.android.runtime",
|
||||
],
|
||||
}
|
||||
|
||||
cc_library_static {
|
||||
|
|
Loading…
Reference in a new issue