Commit 34ae5a09 authored by Andreas Haas's avatar Andreas Haas Committed by Commit Bot

[gm] Adjust the script to support mips64el

R=jkummerow@chromium.org

Change-Id: I6fc3817410df4f070675051397a30cc1b0ca7dfe
Reviewed-on: https://chromium-review.googlesource.com/488030Reviewed-by: 's avatarJakob Kummerow <jkummerow@chromium.org>
Commit-Queue: Andreas Haas <ahaas@chromium.org>
Cr-Commit-Position: refs/heads/master@{#44929}
parent 4e85f818
...@@ -176,7 +176,7 @@ class Config(object): ...@@ -176,7 +176,7 @@ class Config(object):
def GetTargetCpu(self): def GetTargetCpu(self):
cpu = "x86" cpu = "x86"
if self.arch.endswith("64") or self.arch == "s390x": if "64" in self.arch or self.arch == "s390x":
cpu = "x64" cpu = "x64"
return "target_cpu = \"%s\"" % cpu return "target_cpu = \"%s\"" % cpu
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment