aboutsummaryrefslogtreecommitdiff
path: root/docs/getting_started.md
diff options
context:
space:
mode:
authorPrashanth Swaminathan <prashanthsw@google.com>2023-06-07 14:11:20 -0700
committerlibyuv LUCI CQ <libyuv-scoped@luci-project-accounts.iam.gserviceaccount.com>2023-06-07 21:39:59 +0000
commitd573f6451d4a570f2f8ff8886783aa10389a91ee (patch)
tree84f7d4bd0a0588df252a595dca70e70156e639ce /docs/getting_started.md
parentc1f93246f1a1c3f25ef97046dc06569bf5c19380 (diff)
downloadlibyuv-d573f6451d4a570f2f8ff8886783aa10389a91ee.tar.gz
Remove stale Android NDK and fix docs [2/2]
Now that chromium/base has rolled and switched the android_ndk_root to the new android_toolchain directory, remove the stale Android NDK. Fix up documentation that refers to stale paths and suggest the appropriate tools to perform objdump operations. Bug: 1448383 Test: Verified build of LibYUV. Change-Id: I7b674052b1ef0914cf4ee81c6c6d62410e5fc569 Reviewed-on: https://chromium-review.googlesource.com/c/libyuv/libyuv/+/4583622 Reviewed-by: Mirko Bonadei <mbonadei@chromium.org> Commit-Queue: Prashanth Swaminathan <prashanthsw@google.com>
Diffstat (limited to 'docs/getting_started.md')
-rw-r--r--docs/getting_started.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/getting_started.md b/docs/getting_started.md
index b19f0009..d04e2d48 100644
--- a/docs/getting_started.md
+++ b/docs/getting_started.md
@@ -139,11 +139,11 @@ mips
arm disassembly:
- third_party/android_ndk/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64/bin/aarch64-linux-android-objdump -d ./out/Release/obj/libyuv/row_common.o >row_common.txt
+ llvm-objdump -d ./out/Release/obj/libyuv/row_common.o >row_common.txt
- third_party/android_ndk/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64/bin/aarch64-linux-android-objdump -d ./out/Release/obj/libyuv_neon/row_neon.o >row_neon.txt
+ llvm-objdump -d ./out/Release/obj/libyuv_neon/row_neon.o >row_neon.txt
- third_party/android_ndk/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64/bin/aarch64-linux-android-objdump -d ./out/Release/obj/libyuv_neon/row_neon64.o >row_neon64.txt
+ llvm-objdump -d ./out/Release/obj/libyuv_neon/row_neon64.o >row_neon64.txt
Caveat: Disassembly may require optimize_max be disabled in BUILD.gn