Skip to content

Commit

Permalink
pass -vv through mach to cargo
Browse files Browse the repository at this point in the history
  • Loading branch information
tigercosmos committed Dec 23, 2017
1 parent c2cacb6 commit 49a983a
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions python/servo/build_commands.py
Expand Up @@ -167,15 +167,18 @@ class MachCommands(CommandBase):
@CommandArgument('--verbose', '-v',
action='store_true',
help='Print verbose output')
@CommandArgument('--very-verbose', '-vv',
action='store_true',
help='Print very verbose output')
@CommandArgument('params', nargs='...',
help="Command-line arguments to be passed through to Cargo")
@CommandArgument('--with-debug-assertions',
default=None,
action='store_true',
help='Enable debug assertions in release')
def build(self, target=None, release=False, dev=False, jobs=None,
features=None, android=None, verbose=False, debug_mozjs=False, params=None,
with_debug_assertions=False):
features=None, android=None, verbose=False, very_verbose=False,
debug_mozjs=False, params=None, with_debug_assertions=False):

opts = params or []
opts += ["--manifest-path", self.servo_manifest()]
Expand Down Expand Up @@ -223,6 +226,8 @@ def build(self, target=None, release=False, dev=False, jobs=None,
opts += ["-j", jobs]
if verbose:
opts += ["-v"]
if very_verbose:
opts += ["-vv"]

if android:
target = self.config["android"]["target"]
Expand Down

0 comments on commit 49a983a

Please sign in to comment.