On 7/23/07, Justin Robert Knierim <[EMAIL PROTECTED]> wrote: > On Mon, July 23, 2007 5:38 pm, M.Canales.es wrote: > > I tried several times "make -j3 -s" and "make -j4 -s" with no issues, > > using Make 3.80. > > Weird, I tried it just now about 6 times in a row and it isn't giving > those same errors. So I'm not sure what is causing it. I just know at > the time it was showing those errors, if I removed the -j flag it built > fine. I'll see what I can find out, thanks for checking Manuel.
It's a race condition. That's what happens when you try to run make with parallel jobs and the dependencies aren't setup correctly. It's hard to tell which part is failing without more output, but clearly some job is executing without necessarily waiting for a file it needs. Which leads to errors like this: I/O error : No such file or directory Most of them time you're getting lucky that this unnamed file is there, but nothing is forcing it to happen. -- Dan _______________________________________________ Clfs-dev mailing list [email protected] http://lists.cross-lfs.org/cgi-bin/mailman/listinfo/clfs-dev
