Is it possible to configure GNU make to only show error. make --no-print-directory suppresses all the Entering/Leaving messages. similarly I don’t want to see “make[4]: Nothing to be done for install.“. Just the build error.
thanks.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
make -swon’t print any of the commands (as if every command was prefixed by@). If the commands themselves are printing output, try redirecting standard output away but keeping standard error.However my recommendation would be to let all the output through, because it can be very useful to figure out what’s going on. Use a tool such as colormake to make it more readable.