I downloaded the Linux kernel and started compiling it, so question has arisen since
I’m building on an old laptop.
What if I hit Ctrl-C while make-ing and then run make again later; does it start the build
from the beginning?
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.
The simple answer is as long as all the target files that make creates still exist and have a newer timestamp than the files they depend on they will not be rebuilt. Generally in order to have the behavior you’re trying avoid occur you would have to issue a
make cleancommand or something similar.