diff options
author | sophiez <sophiez@google.com> | 2021-03-25 22:11:44 +0000 |
---|---|---|
committer | sophiez <sophiez@google.com> | 2021-03-25 22:12:04 +0000 |
commit | ae5da5ba78d14209b81ffdc1b32e8c944c6323be (patch) | |
tree | e129ffa2f5c573ec0228b2b457cc75b09eb0b765 /scripts | |
parent | 9c35c5d2a6c434c8f0d7acc0cbd5f7e159b002fe (diff) |
NDK API coverage
Update the gen_ndk_usedby_apex.sh script to generate NDK API list with
library name.
Test: TARGET_BUILD_APPS=com.android.adbd m dist apps_only
Change-Id: I799e03ad7d81a4184229f658fd6c8824b9ba6e1f
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/gen_ndk_usedby_apex.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/gen_ndk_usedby_apex.sh b/scripts/gen_ndk_usedby_apex.sh index f143161da..0d3ed5a29 100755 --- a/scripts/gen_ndk_usedby_apex.sh +++ b/scripts/gen_ndk_usedby_apex.sh @@ -33,7 +33,7 @@ parseReadelfOutput() { do if [[ $line = *FUNC*GLOBAL*UND*@* ]] ; then - echo "$line" | sed -r 's/.*UND (.*)@.*/\1/g' >> "$2" + echo "$line" | sed -r 's/.*UND (.*@.*)/\1/g' >> "$2" fi done < "$1" echo "" >> "$2" |