On 2012-11-05, Miguel Guedes wrote: > Is it possible to suppress GNU/Make's warning messages? > > In particular I'd like to suppress the following warning without adding + to > the parent rule: > > make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make > rule.
I have such warning when run make in parallel (with '-j4' like option) under Cygwin or MSYS. It say that your make executable build without job-server support. To see what your make support put to your Makefile: $(error $(.FEATURES)) To workaround - don't pass '-j' to make or use make with jobserver support!! -- Best regards! _______________________________________________ Help-make mailing list [email protected] https://lists.gnu.org/mailman/listinfo/help-make
