nerdexam
LPI

117-102 · Question #635

Which of the following insures that all of the dependencies, such as the include files, are in place?

The correct answer is A. make dep. 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…

108 Essential System Services

Question

Which of the following insures that all of the dependencies, such as the include files, are in place?

Options

  • Amake dep
  • Bmake clean
  • Cmake_dep
  • Dmake_install

How the community answered

(33 responses)
  • A
    76% (25)
  • B
    15% (5)
  • C
    6% (2)
  • D
    3% (1)

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

#make dep#kernel compilation#build dependencies

Community Discussion

No community discussion yet for this question.

Full 117-102 Practice