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

Unified Diff: build/detect_v8_host_arch.py

Issue 371923006: Add mips64 port. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Rebase Created 6 years, 5 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
« no previous file with comments | « Makefile ('k') | build/standalone.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/detect_v8_host_arch.py
diff --git a/build/detect_v8_host_arch.py b/build/detect_v8_host_arch.py
index f66383b5c5fdbeadeebf216ee538fd8ddb1d6b98..3460a9a404f0ce459e6a3ac4f159cf6b06afb0d0 100644
--- a/build/detect_v8_host_arch.py
+++ b/build/detect_v8_host_arch.py
@@ -51,6 +51,8 @@ def DoMain(_):
host_arch = 'arm'
elif host_arch == 'aarch64':
host_arch = 'arm64'
+ elif host_arch == 'mips64':
+ host_arch = 'mips64el'
elif host_arch.startswith('mips'):
host_arch = 'mipsel'
« no previous file with comments | « Makefile ('k') | build/standalone.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698