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

Unified Diff: skia/BUILD.gn

Issue 1540293003: Support for arm64 build. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years 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
« mojo/tools/mopy/config.py ('K') | « mojo/tools/mopy/config.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: skia/BUILD.gn
diff --git a/skia/BUILD.gn b/skia/BUILD.gn
index 12ced6b5a838ec7777044d60a2b71988a7a1e907..89ef514586a932c4895fd69fb2de201f2e039acd 100644
--- a/skia/BUILD.gn
+++ b/skia/BUILD.gn
@@ -476,7 +476,7 @@ source_set("skia_opts") {
if (is_linux || is_mac) {
cflags += [ "-msse4.1" ]
}
- } else if (current_cpu == "arm") {
+ } else if (current_cpu == "arm" || current_cpu == "arm64") {
# The assembly uses the frame pointer register (r7 in Thumb/r11 in
# ARM), the compiler doesn't like that.
cflags += [ "-fomit-frame-pointer" ]
« mojo/tools/mopy/config.py ('K') | « mojo/tools/mopy/config.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698