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

Unified Diff: docs/getting_started.md

Issue 2285683002: Add MIPS SIMD Arch (MSA) optimized MirrorRow function (Closed)
Patch Set: Incorporated review comments Created 4 years, 3 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 side-by-side diff with in-line comments
Download patch
Index: docs/getting_started.md
diff --git a/docs/getting_started.md b/docs/getting_started.md
index 939f08f02bcff370e85b884c6c2825a22442849f..86ca3c0ab89305f75b2f9b056c36dcdae44ace46 100644
--- a/docs/getting_started.md
+++ b/docs/getting_started.md
@@ -196,6 +196,17 @@ Running test with C code:
gn gen out/Official "--args=is_debug=false is_official_build=true is_chrome_branded=true"
ninja -C out/Official
+#### Building mips with GN
+
+mipsel
+ gn gen out/Default "--args=is_debug=false target_cpu=\"mipsel\" target_os = \"android\" mips_arch_variant = \"r6\" mips_use_msa = true is_component_build = true is_clang = false"
+ ninja -C out/Default
+
+mips64el
+ gn gen out/Default "--args=is_debug=false target_cpu=\"mips64el\" target_os = \"android\" mips_arch_variant = \"r6\" mips_use_msa = true is_component_build = true is_clang = false"
+ ninja -C out/Default
+
+
### Linux
GYP_DEFINES="target_arch=x64" ./gyp_libyuv
« no previous file with comments | « CMakeLists.txt ('k') | include/libyuv/cpu_id.h » ('j') | include/libyuv/macros_msa.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698