NetBSD-Bugs archive

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

Re: toolchain/34934



The following reply was made to PR bin/34934; it has been noted by GNATS.

From: Roland Illig <roland.illig%gmx.de@localhost>
To: gnats-bugs%netbsd.org@localhost
Cc: 
Subject: Re: toolchain/34934
Date: Sat, 7 May 2022 12:40:24 +0200

 Am 14.02.2022 um 22:35 schrieb David Holland:
 >   *This* PR is about the sequential form breaking sometimes for targets
 >   in other directories. As I pointed out in 2006, by default it works
 >   correctly. (If by chance you have broken this recently, please fix
 >   it.)
 
 Thanks for the detailed explanation.
 
 Do you see any chance of making this "sometimes" or "in some cases" more
 specific?
 
 When you say "sometimes", does this mean that when running the same
 scenario 20 times in a row, 3 of them might fail and the other 17 might
 succeed?
 
 When you say "in some cases", does this mean that the behavior is then
 either "always fail" or "always succeed", but no mixture?
 
 Could it have something to do with .PATH, or is it enough to have
 subdir/file?
 
 I ran the following loop for several minutes in the example directory
 that you provided; it always generated consistent output.
 
 make clean
 make > good.out
 while :; do
    make -s clean
    make > new.out
    cmp -s new.out good.out || break
    printf .
 done
 
 Any other ideas to reproduce the wrong behavior?
 
 Roland
 


Home | Main Index | Thread Index | Old Index