Hi Mathias, > I think there are some missing dependencies. My command line is: > > make -j2 clean all > > The error is: > > ar: jim-subcmd.o: No such file or directory > > But this commands seems to work: > > make clean > make -j2 all >
I think this is a race condition.The -j2 flag creates 2 processes for make, trying to consume all the cores in your system. What I suspect is that using both "clean" and "all" produce a race condition in this case over what process is compiling and what process is using jim-subcmd.o. I guess that "make -j2 clean" doesn't produce faster results, so you are safe with the workaround you found. I'll try to reproduce the problem and take it from there. Regards, Edgar > > > > Regards, > > Mathias > _______________________________________________ Openocd-development mailing list [email protected] https://lists.berlios.de/mailman/listinfo/openocd-development
