Prebuild command that runs make
Posted: Fri Oct 07, 2011 2:25 am
When I have the following pre-build command:
cd ../linux;make -f Makefile.proto;cd -
I get the following warning:
warning: jobserver unavailable: using -j1. Add `+' to parent make rule.
After I changed the command to this:
cd ../linux;make -j5 -f Makefile.proto;cd -
I got this warning:
warning: -jN forced in submake: disabling jobserver mode.
This is not a critical error - the job is done correctly. Still it would be nice to get rid of build warnings.
cd ../linux;make -f Makefile.proto;cd -
I get the following warning:
warning: jobserver unavailable: using -j1. Add `+' to parent make rule.
After I changed the command to this:
cd ../linux;make -j5 -f Makefile.proto;cd -
I got this warning:
warning: -jN forced in submake: disabling jobserver mode.
This is not a critical error - the job is done correctly. Still it would be nice to get rid of build warnings.