Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(835)

Side by Side Diff: docs/getting_started.md

Issue 1727993002: Documentation fix for android aarch32 disassembly (Closed) Base URL: https://chromium.googlesource.com/libyuv/libyuv@master
Patch Set: merge with head Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « README.chromium ('k') | include/libyuv/version.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Getting Started 1 # Getting Started
2 2
3 How to get and build the libyuv code. 3 How to get and build the libyuv code.
4 4
5 ## Pre-requisites 5 ## Pre-requisites
6 6
7 You'll need to have depot tools installed: https://www.chromium.org/developers/h ow-tos/install-depot-tools 7 You'll need to have depot tools installed: https://www.chromium.org/developers/h ow-tos/install-depot-tools
8 Refer to chromium instructions for each platform for other prerequisites. 8 Refer to chromium instructions for each platform for other prerequisites.
9 9
10 ## Getting the Code 10 ## Getting the Code
(...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after
155 155
156 GYP_DEFINES="OS=android target_arch=ia32 android_full_debug=1" GYP_CROSSCOMP ILE=1 ./gyp_libyuv 156 GYP_DEFINES="OS=android target_arch=ia32 android_full_debug=1" GYP_CROSSCOMP ILE=1 ./gyp_libyuv
157 ninja -j7 -C out/Debug libyuv_unittest_apk 157 ninja -j7 -C out/Debug libyuv_unittest_apk
158 158
159 mipsel 159 mipsel
160 160
161 GYP_DEFINES="OS=android target_arch=mipsel" GYP_CROSSCOMPILE=1 ./gyp_libyuv 161 GYP_DEFINES="OS=android target_arch=mipsel" GYP_CROSSCOMPILE=1 ./gyp_libyuv
162 ninja -j7 -C out/Debug libyuv_unittest_apk 162 ninja -j7 -C out/Debug libyuv_unittest_apk
163 ninja -j7 -C out/Release libyuv_unittest_apk 163 ninja -j7 -C out/Release libyuv_unittest_apk
164 164
165 arm32 disassembly:
166
167 third_party/android_tools/ndk/toolchains/arm-linux-androideabi-4.9/prebuilt/ linux-x86_64/bin/arm-linux-androideabi-objdump -d out/Release/obj/source/libyuv. row_neon.o
168
165 arm64 disassembly: 169 arm64 disassembly:
166 170
167 third_party/android_tools/ndk/toolchains/aarch64-linux-android-4.9/prebuilt/ linux-x86_64/bin/aarch64-linux-android-objdump -d out/Release/obj/source/libyuv. row_neon64.o 171 third_party/android_tools/ndk/toolchains/aarch64-linux-android-4.9/prebuilt/ linux-x86_64/bin/aarch64-linux-android-objdump -d out/Release/obj/source/libyuv. row_neon64.o
168 172
169 Running tests: 173 Running tests:
170 174
171 util/android/test_runner.py gtest -s libyuv_unittest -t 7200 --verbose --rel ease --gtest_filter=* 175 util/android/test_runner.py gtest -s libyuv_unittest -t 7200 --verbose --rel ease --gtest_filter=*
172 176
173 Running test as benchmark: 177 Running test as benchmark:
174 178
(...skipping 236 matching lines...) Expand 10 before | Expand all | Expand 10 after
411 git checkout -b mycl -t origin/master 415 git checkout -b mycl -t origin/master
412 git pull 416 git pull
413 <edit files> 417 <edit files>
414 git add -u 418 git add -u
415 git commit -m "my change" 419 git commit -m "my change"
416 git cl lint 420 git cl lint
417 git cl try 421 git cl try
418 git cl upload -r a-reviewer@chomium.org -s 422 git cl upload -r a-reviewer@chomium.org -s
419 <once approved..> 423 <once approved..>
420 git cl land 424 git cl land
OLDNEW
« no previous file with comments | « README.chromium ('k') | include/libyuv/version.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698