makefile - Error log of make command in Linux -
i compiling kernel module , has many compilation errors in it. after running "make", errors thrown out many fit in screen. scrolling doesn't reach first error. tried capturing errors doing make &2 > log didn't work (log file empty , error messages still dumped on screen).
can please tell me how go logging messages generated during compilation/make logfile?
try doing:
make >&log
the &
after >
tells shell dump both stdout , stderr log
. can used pipes.
Comments
Post a Comment