bug-make
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Regression on Cygwin: Problems with parallel make in 4.4


From: Paul Smith
Subject: Re: Regression on Cygwin: Problems with parallel make in 4.4
Date: Tue, 21 Feb 2023 09:39:26 -0500
User-agent: Evolution 3.46.4 (by Flathub.org)

On Tue, 2023-02-21 at 08:35 -0500, Ken Brown wrote:
> makeĀ  check-TESTS
> make[4]: Entering directory 
> '/home/kbrown/src/texlive/test.x86_64/Work/texk/kpathsea'
> make[5]: Entering directory 
> '/home/kbrown/src/texlive/test.x86_64/Work/texk/kpathsea'

OK, I see the rule that generates the [5] recursion:

  $(TEST_SUITE_LOG): $(TEST_LOGS)
        @$(am__set_TESTS_bases); \
            ...

(I think).  Hm, this rule does contain $(MAKE) so it should be
automatically marked for recursion.  Maybe something weird about
AM_MAKEFLAGS?

Sorry for the iteration but can you run the build again, this time with
the "--trace" option and also editing the above rule (at line 1755 of
kpathsea/Makefile to add "set -x" as in:

  $(TEST_SUITE_LOG): $(TEST_LOGS)
        @$(set -x; am__set_TESTS_bases); \
            ...

There will likely be a lot of output.

Thanks!



reply via email to

[Prev in Thread] Current Thread [Next in Thread]