mirror of
https://github.com/facebook/proxygen.git
synced 2025-08-10 05:22:59 +03:00
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
This commit is contained in:
committed by
Facebook Github Bot
parent
a913b2ed8d
commit
199ab83498
@@ -287,7 +287,7 @@ class FBCodeBuilder(object):
|
|||||||
))
|
))
|
||||||
|
|
||||||
def parallel_make(self, make_vars=None):
|
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'),
|
n=self.option('make_parallelism'),
|
||||||
vars=self._make_vars(make_vars),
|
vars=self._make_vars(make_vars),
|
||||||
))
|
))
|
||||||
@@ -295,7 +295,7 @@ class FBCodeBuilder(object):
|
|||||||
def make_and_install(self, make_vars=None):
|
def make_and_install(self, make_vars=None):
|
||||||
return [
|
return [
|
||||||
self.parallel_make(make_vars),
|
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),
|
vars=self._make_vars(make_vars),
|
||||||
)),
|
)),
|
||||||
]
|
]
|
||||||
|
Reference in New Issue
Block a user