aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Albert <danalbert@google.com>2022-04-20 19:19:07 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2022-04-20 19:19:07 +0000
commit3e25f8272f59da66b7b161bff9649879f2cc1f48 (patch)
tree445ae0b6f2b805302322292afd9419588eb51888
parent486fabd1520b8f90742dcfee9388f38d79a139ff (diff)
parent2d8d2a00648fd92b0a2ea4b07e0433677aa6bae3 (diff)
downloadbionic-3e25f8272f59da66b7b161bff9649879f2cc1f48.tar.gz
Merge "Disable strict abigail checking pending asm fix."
-rw-r--r--libc/Android.bp2
-rw-r--r--libm/Android.bp2
2 files changed, 4 insertions, 0 deletions
diff --git a/libc/Android.bp b/libc/Android.bp
index 7175c77c2..07e483e4f 100644
--- a/libc/Android.bp
+++ b/libc/Android.bp
@@ -2324,6 +2324,8 @@ ndk_library {
name: "libc",
symbol_file: "libc.map.txt",
first_version: "9",
+ // APIs implemented in asm don't have debug info: http://b/190554910.
+ allow_untyped_symbols: true,
}
ndk_library {
diff --git a/libm/Android.bp b/libm/Android.bp
index 5622e8cf4..7469cde0a 100644
--- a/libm/Android.bp
+++ b/libm/Android.bp
@@ -552,6 +552,8 @@ ndk_library {
name: "libm",
symbol_file: "libm.map.txt",
first_version: "9",
+ // APIs implemented in asm don't have debug info: http://b/190554910.
+ allow_untyped_symbols: true,
}
genrule {