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

Side by Side Diff: slave/skia_slave_scripts/flavor_utils/arm64model_build_step_utils.py

Issue 217423024: run arm64_make with sh -x (Closed) Base URL: https://skia.googlesource.com/buildbot.git@master
Patch Set: Created 6 years, 8 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 unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2014 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import datetime 5 import datetime
6 import os 6 import os
7 import sys 7 import sys
8 8
9 from utils import shell_utils 9 from utils import shell_utils
10 from utils import ssh_utils 10 from utils import ssh_utils
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 54
55 assert os.path.isdir(self._working_dir) 55 assert os.path.isdir(self._working_dir)
56 56
57 toolchain_bin = os.path.join( 57 toolchain_bin = os.path.join(
58 self._working_dir, 58 self._working_dir,
59 'gcc-linaro-aarch64-linux-gnu-4.8-2013.12_linux', 59 'gcc-linaro-aarch64-linux-gnu-4.8-2013.12_linux',
60 'bin') 60 'bin')
61 assert os.path.isdir(toolchain_bin) 61 assert os.path.isdir(toolchain_bin)
62 62
63 make_cmd = [ 63 make_cmd = [
64 'sh', '-x',
64 os.path.join(platform_bin, 'arm64_make'), 65 os.path.join(platform_bin, 'arm64_make'),
65 '-o', self._build_dir, 66 '-o', self._build_dir,
66 '-c', os.path.join(toolchain_bin, 'aarch64-linux-gnu-gcc'), 67 '-c', os.path.join(toolchain_bin, 'aarch64-linux-gnu-gcc'),
67 '-x', os.path.join(toolchain_bin, 'aarch64-linux-gnu-g++'), 68 '-x', os.path.join(toolchain_bin, 'aarch64-linux-gnu-g++'),
68 '-t', self._step.configuration, 69 '-t', self._step.configuration,
69 ] 70 ]
70 shell_utils.run(make_cmd, log_in_real_time=False) 71 shell_utils.run(make_cmd)
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698