Commit bf084642 authored by Wez Furlong's avatar Wez Furlong Committed by Facebook Github Bot

fbcode_builder: add VERBOSE=1 to make invocations

Summary: This makes it easier to debug and diagnose build problems

Reviewed By: simpkins

Differential Revision: D13831342

fbshipit-source-id: 3921a05715fb00264b2e1a6e134686d68aea804d
parent d129ad43
......@@ -287,7 +287,7 @@ class FBCodeBuilder(object):
))
def parallel_make(self, make_vars=None):
return self.run(ShellQuoted('make -j {n} {vars}').format(
return self.run(ShellQuoted('make -j {n} VERBOSE=1 {vars}').format(
n=self.option('make_parallelism'),
vars=self._make_vars(make_vars),
))
......@@ -295,7 +295,7 @@ class FBCodeBuilder(object):
def make_and_install(self, make_vars=None):
return [
self.parallel_make(make_vars),
self.run(ShellQuoted('make install {vars}').format(
self.run(ShellQuoted('make install VERBOSE=1 {vars}').format(
vars=self._make_vars(make_vars),
)),
]
......
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