117-102 · Question #636
Which of the following removes all of the object files and some other things that an old version leaves behind?
The correct answer is B. make clean. When the configure script ends, it also tells you to make dep' and (possibly) clean'. So, do the make dep'. This insures that all of the dependencies, such the include files, are in place. It does not take long, unless your computer is fairly slow to begin with. For older…
Question
Options
- Amake dep
- Bmake clean
- Cmake_dep
- Dmake_install
How the community answered
(33 responses)- A6% (2)
- B73% (24)
- C3% (1)
- D18% (6)
Explanation
When the configure script ends, it also tells you to make dep' and (possibly) clean'. So, do the make dep'. This insures that all of the dependencies, such the include files, are in place. It does not take long, unless your computer is fairly slow to begin with. For older versions of the kernel, when finished, you should do a make clean'. This removes all of the object files and some other things that an old version leaves behind. In any case, do not forget this step before attempting to recompile a kernel.
Topics
Community Discussion
No community discussion yet for this question.