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

Unified Diff: tools/build.py

Issue 2899803002: Adds deprecation messages for MIPS cross-builds (Closed)
Patch Set: Created 3 years, 7 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 | « CHANGELOG.md ('k') | tools/gn.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/build.py
diff --git a/tools/build.py b/tools/build.py
index 5fa9f22ae83530033753fa3482184f6767bb3c8c..fe971d360badc0dc2a61cdcac7f6052c65766ec5 100755
--- a/tools/build.py
+++ b/tools/build.py
@@ -99,7 +99,7 @@ def ProcessOsOption(os_name):
def ProcessOptions(options, args):
if options.arch == 'all':
- options.arch = 'ia32,x64,simarm,simarm64,simmips,simdbc64'
+ options.arch = 'ia32,x64,simarm,simarm64,simdbc64'
if options.mode == 'all':
options.mode = 'debug,release,product'
if options.os == 'all':
@@ -484,6 +484,13 @@ def BuildNinjaCommand(options, target, target_os, mode, arch):
filter_xcodebuild_output = False
def BuildOneConfig(options, target, target_os, mode, arch):
global filter_xcodebuild_output
+ if arch.startswith('mips'):
+ bold = '\033[1m'
+ reset = '\033[0m'
+ print(bold + "Warning: MIPS architectures are unlikely to be supported in "
+ "upcoming releases. Please consider using another architecture "
+ "and/or file an issue explaining your specific use of and need for "
+ "MIPS support." + reset)
start_time = time.time()
args = []
build_config = utils.GetBuildConf(mode, arch, target_os)
« no previous file with comments | « CHANGELOG.md ('k') | tools/gn.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698