* [Buildroot] [PATCH 1/2] graph-depends: support calling from recursive make
@ 2014-06-23 20:11 Arnout Vandecappelle
2014-06-23 20:11 ` [Buildroot] [PATCH 2/2] graph-depends: remove unnecessary redirect of stderr Arnout Vandecappelle
` (2 more replies)
0 siblings, 3 replies; 6+ messages in thread
From: Arnout Vandecappelle @ 2014-06-23 20:11 UTC (permalink / raw)
To: buildroot
The graph-depends script calls make. If the outer make was called
recursively, or if it was called with '-C <somedir>', then the
environment will contain "MAKEFLAGS=w --". Therefore, the recursive
make prints 'Entering' and 'Leaving' messages, which clobbers the
output for dot.
To avoid this, add "--no-print-directory" to the recursive make
arguments. Since we require GNU make 3.81, we can be sure that this
option is available.
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
---
Tested with:
echo '======== In-tree'
make defconfig
make graph-depends
echo '======== Out-of-tree, called out of top-dir, relative'
cd ..
make -C buildroot O=../br.build-2 defconfig
make -C buildroot O=../br.build-2 graph-depends
echo '======== Out-of-tree, called from top-dir, relative'
cd buildroot
make O=../br.build-3 defconfig
make O=../br.build-3 graph-depends
echo '======== Out-of-tree, called from O-dir, absolute'
cd ..
mkdir br.build-4
cd br.build-4
make -C ../buildroot O=$(pwd) defconfig
make graph-depends
echo '======== Out-of-tree, called out of top-dir, absolute '
cd ..
mkdir br.build-5
make -C buildroot O=$(pwd)/br.build-5 defconfig
make -C buildroot O=$(pwd)/br.build-5 graph-depends
echo '======== Out-of-tree, called fromother dir, absolute-relative'
mkdir br.build-6.1
cd br.build-6.1
make -C ../buildroot O=$(pwd)/../br.build-6.2 defconfig
make -C ../buildroot O=$(pwd)/../br.build-6.2 graph-depends
cd ..
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
---
support/scripts/graph-depends | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/support/scripts/graph-depends b/support/scripts/graph-depends
index 58401a2..52c16ce 100755
--- a/support/scripts/graph-depends
+++ b/support/scripts/graph-depends
@@ -81,7 +81,7 @@ allpkgs = []
# list is used as the starting point for full dependency graphs
def get_targets():
sys.stderr.write("Getting targets\n")
- cmd = ["make", "-s", "show-targets"]
+ cmd = ["make", "-s", "--no-print-directory", "show-targets"]
p = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE, universal_newlines=True)
output = p.communicate()[0].strip()
if p.returncode != 0:
@@ -95,7 +95,7 @@ def get_targets():
# dependencies formatted as a Python dictionary.
def get_depends(pkgs):
sys.stderr.write("Getting dependencies for %s\n" % pkgs)
- cmd = ["make", "-s" ]
+ cmd = ["make", "-s", "--no-print-directory" ]
for pkg in pkgs:
cmd.append("%s-show-depends" % pkg)
p = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE, universal_newlines=True)
--
2.0.0
^ permalink raw reply related [flat|nested] 6+ messages in thread* [Buildroot] [PATCH 2/2] graph-depends: remove unnecessary redirect of stderr
2014-06-23 20:11 [Buildroot] [PATCH 1/2] graph-depends: support calling from recursive make Arnout Vandecappelle
@ 2014-06-23 20:11 ` Arnout Vandecappelle
2014-06-23 20:42 ` Yann E. MORIN
2014-06-23 20:29 ` [Buildroot] [PATCH 1/2] graph-depends: support calling from recursive make Yann E. MORIN
2014-06-29 8:44 ` Thomas Petazzoni
2 siblings, 1 reply; 6+ messages in thread
From: Arnout Vandecappelle @ 2014-06-23 20:11 UTC (permalink / raw)
To: buildroot
It hides any error messages reported by make.
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
---
support/scripts/graph-depends | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/support/scripts/graph-depends b/support/scripts/graph-depends
index 52c16ce..1ecfeda 100755
--- a/support/scripts/graph-depends
+++ b/support/scripts/graph-depends
@@ -82,7 +82,7 @@ allpkgs = []
def get_targets():
sys.stderr.write("Getting targets\n")
cmd = ["make", "-s", "--no-print-directory", "show-targets"]
- p = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE, universal_newlines=True)
+ p = subprocess.Popen(cmd, stdout=subprocess.PIPE, universal_newlines=True)
output = p.communicate()[0].strip()
if p.returncode != 0:
return None
@@ -98,7 +98,7 @@ def get_depends(pkgs):
cmd = ["make", "-s", "--no-print-directory" ]
for pkg in pkgs:
cmd.append("%s-show-depends" % pkg)
- p = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE, universal_newlines=True)
+ p = subprocess.Popen(cmd, stdout=subprocess.PIPE, universal_newlines=True)
output = p.communicate()[0]
if p.returncode != 0:
sys.stderr.write("Error getting dependencies %s\n" % pkgs)
--
2.0.0
^ permalink raw reply related [flat|nested] 6+ messages in thread* [Buildroot] [PATCH 2/2] graph-depends: remove unnecessary redirect of stderr
2014-06-23 20:11 ` [Buildroot] [PATCH 2/2] graph-depends: remove unnecessary redirect of stderr Arnout Vandecappelle
@ 2014-06-23 20:42 ` Yann E. MORIN
2014-06-23 21:13 ` Samuel Martin
0 siblings, 1 reply; 6+ messages in thread
From: Yann E. MORIN @ 2014-06-23 20:42 UTC (permalink / raw)
To: buildroot
Arnout, All,
On 2014-06-23 22:11 +0200, Arnout Vandecappelle (Essensium/Mind) spake thusly:
> It hides any error messages reported by make.
>
> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Not sure what the test-case for that one would be, but it looks sane.
Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Regards,
Yann E. MORIN.
> ---
> support/scripts/graph-depends | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/support/scripts/graph-depends b/support/scripts/graph-depends
> index 52c16ce..1ecfeda 100755
> --- a/support/scripts/graph-depends
> +++ b/support/scripts/graph-depends
> @@ -82,7 +82,7 @@ allpkgs = []
> def get_targets():
> sys.stderr.write("Getting targets\n")
> cmd = ["make", "-s", "--no-print-directory", "show-targets"]
> - p = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE, universal_newlines=True)
> + p = subprocess.Popen(cmd, stdout=subprocess.PIPE, universal_newlines=True)
> output = p.communicate()[0].strip()
> if p.returncode != 0:
> return None
> @@ -98,7 +98,7 @@ def get_depends(pkgs):
> cmd = ["make", "-s", "--no-print-directory" ]
> for pkg in pkgs:
> cmd.append("%s-show-depends" % pkg)
> - p = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE, universal_newlines=True)
> + p = subprocess.Popen(cmd, stdout=subprocess.PIPE, universal_newlines=True)
> output = p.communicate()[0]
> if p.returncode != 0:
> sys.stderr.write("Error getting dependencies %s\n" % pkgs)
> --
> 2.0.0
>
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot
--
.-----------------.--------------------.------------------.--------------------.
| Yann E. MORIN | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software Designer | \ / CAMPAIGN | ___ |
| +33 223 225 172 `------------.-------: X AGAINST | \e/ There is no |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL | v conspiracy. |
'------------------------------^-------^------------------^--------------------'
^ permalink raw reply [flat|nested] 6+ messages in thread* [Buildroot] [PATCH 2/2] graph-depends: remove unnecessary redirect of stderr
2014-06-23 20:42 ` Yann E. MORIN
@ 2014-06-23 21:13 ` Samuel Martin
0 siblings, 0 replies; 6+ messages in thread
From: Samuel Martin @ 2014-06-23 21:13 UTC (permalink / raw)
To: buildroot
Arnout, Yann, all,
On Mon, Jun 23, 2014 at 10:42 PM, Yann E. MORIN <yann.morin.1998@free.fr> wrote:
> Arnout, All,
>
> On 2014-06-23 22:11 +0200, Arnout Vandecappelle (Essensium/Mind) spake thusly:
>> It hides any error messages reported by make.
>>
>> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
>
> Not sure what the test-case for that one would be, but it looks sane.
A test-case is when checking the graph-depends script using:
----
$ python3 ./support/script/graph-depends -p <foo>
Getting dependencies for ['<foo>']
Error getting dependencies ['<foo>']
----
after a rebase (and with some legacy option selected), sadly fails
with no clue at all in the output to help understanding what is wrong
:-(
I had to fire up pdb ;-)
But that true, who else uses the graph-depends script outside the BR
make wrapper? ;-)
>
> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Acked-by: Samuel Martin <s.martin49@gmail.com>
Tested-by: Samuel Martin <s.martin49@gmail.com>
Regards,
--
Samuel
^ permalink raw reply [flat|nested] 6+ messages in thread
* [Buildroot] [PATCH 1/2] graph-depends: support calling from recursive make
2014-06-23 20:11 [Buildroot] [PATCH 1/2] graph-depends: support calling from recursive make Arnout Vandecappelle
2014-06-23 20:11 ` [Buildroot] [PATCH 2/2] graph-depends: remove unnecessary redirect of stderr Arnout Vandecappelle
@ 2014-06-23 20:29 ` Yann E. MORIN
2014-06-29 8:44 ` Thomas Petazzoni
2 siblings, 0 replies; 6+ messages in thread
From: Yann E. MORIN @ 2014-06-23 20:29 UTC (permalink / raw)
To: buildroot
Arnout, All,
On 2014-06-23 22:11 +0200, Arnout Vandecappelle (Essensium/Mind) spake thusly:
> The graph-depends script calls make. If the outer make was called
> recursively, or if it was called with '-C <somedir>', then the
> environment will contain "MAKEFLAGS=w --". Therefore, the recursive
> make prints 'Entering' and 'Leaving' messages, which clobbers the
> output for dot.
>
> To avoid this, add "--no-print-directory" to the recursive make
> arguments. Since we require GNU make 3.81, we can be sure that this
> option is available.
>
> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
I wonder why we did not think opf that earlier... Good catch! :-)
Tested-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Regards,
Yann E. MORIN.
> ---
> Tested with:
>
> echo '======== In-tree'
> make defconfig
> make graph-depends
>
> echo '======== Out-of-tree, called out of top-dir, relative'
> cd ..
> make -C buildroot O=../br.build-2 defconfig
> make -C buildroot O=../br.build-2 graph-depends
>
> echo '======== Out-of-tree, called from top-dir, relative'
> cd buildroot
> make O=../br.build-3 defconfig
> make O=../br.build-3 graph-depends
>
> echo '======== Out-of-tree, called from O-dir, absolute'
> cd ..
> mkdir br.build-4
> cd br.build-4
> make -C ../buildroot O=$(pwd) defconfig
> make graph-depends
>
> echo '======== Out-of-tree, called out of top-dir, absolute '
> cd ..
> mkdir br.build-5
> make -C buildroot O=$(pwd)/br.build-5 defconfig
> make -C buildroot O=$(pwd)/br.build-5 graph-depends
>
> echo '======== Out-of-tree, called fromother dir, absolute-relative'
> mkdir br.build-6.1
> cd br.build-6.1
> make -C ../buildroot O=$(pwd)/../br.build-6.2 defconfig
> make -C ../buildroot O=$(pwd)/../br.build-6.2 graph-depends
> cd ..
>
> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
> ---
> support/scripts/graph-depends | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/support/scripts/graph-depends b/support/scripts/graph-depends
> index 58401a2..52c16ce 100755
> --- a/support/scripts/graph-depends
> +++ b/support/scripts/graph-depends
> @@ -81,7 +81,7 @@ allpkgs = []
> # list is used as the starting point for full dependency graphs
> def get_targets():
> sys.stderr.write("Getting targets\n")
> - cmd = ["make", "-s", "show-targets"]
> + cmd = ["make", "-s", "--no-print-directory", "show-targets"]
> p = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE, universal_newlines=True)
> output = p.communicate()[0].strip()
> if p.returncode != 0:
> @@ -95,7 +95,7 @@ def get_targets():
> # dependencies formatted as a Python dictionary.
> def get_depends(pkgs):
> sys.stderr.write("Getting dependencies for %s\n" % pkgs)
> - cmd = ["make", "-s" ]
> + cmd = ["make", "-s", "--no-print-directory" ]
> for pkg in pkgs:
> cmd.append("%s-show-depends" % pkg)
> p = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE, universal_newlines=True)
> --
> 2.0.0
>
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot
--
.-----------------.--------------------.------------------.--------------------.
| Yann E. MORIN | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software Designer | \ / CAMPAIGN | ___ |
| +33 223 225 172 `------------.-------: X AGAINST | \e/ There is no |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL | v conspiracy. |
'------------------------------^-------^------------------^--------------------'
^ permalink raw reply [flat|nested] 6+ messages in thread* [Buildroot] [PATCH 1/2] graph-depends: support calling from recursive make
2014-06-23 20:11 [Buildroot] [PATCH 1/2] graph-depends: support calling from recursive make Arnout Vandecappelle
2014-06-23 20:11 ` [Buildroot] [PATCH 2/2] graph-depends: remove unnecessary redirect of stderr Arnout Vandecappelle
2014-06-23 20:29 ` [Buildroot] [PATCH 1/2] graph-depends: support calling from recursive make Yann E. MORIN
@ 2014-06-29 8:44 ` Thomas Petazzoni
2 siblings, 0 replies; 6+ messages in thread
From: Thomas Petazzoni @ 2014-06-29 8:44 UTC (permalink / raw)
To: buildroot
Dear Arnout Vandecappelle (Essensium/Mind),
On Mon, 23 Jun 2014 22:11:23 +0200, Arnout Vandecappelle
(Essensium/Mind) wrote:
> The graph-depends script calls make. If the outer make was called
> recursively, or if it was called with '-C <somedir>', then the
> environment will contain "MAKEFLAGS=w --". Therefore, the recursive
> make prints 'Entering' and 'Leaving' messages, which clobbers the
> output for dot.
>
> To avoid this, add "--no-print-directory" to the recursive make
> arguments. Since we require GNU make 3.81, we can be sure that this
> option is available.
>
> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Patches 1/2 and 2/2 applied, thanks!
Thomas
--
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2014-06-29 8:44 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-06-23 20:11 [Buildroot] [PATCH 1/2] graph-depends: support calling from recursive make Arnout Vandecappelle
2014-06-23 20:11 ` [Buildroot] [PATCH 2/2] graph-depends: remove unnecessary redirect of stderr Arnout Vandecappelle
2014-06-23 20:42 ` Yann E. MORIN
2014-06-23 21:13 ` Samuel Martin
2014-06-23 20:29 ` [Buildroot] [PATCH 1/2] graph-depends: support calling from recursive make Yann E. MORIN
2014-06-29 8:44 ` Thomas Petazzoni
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox