I'm trying to write a program that builds with autotools, however I have run into a problem when I try to make it. Automake seems to rely on a file called depcomp. I was wondering what this file does, and what I should fill it with/how I should make it.
Asked
Active
Viewed 4,555 times
6
-
1Your program does not build with autotools. You use the autotools to create a build system which is used to build the program. Perhaps this is a trivial distinction, perhaps that is what is meant by the phrase "a program that builds with autotools", but it is a distinction which has caused untold confusion and should be clarified. – William Pursell Nov 13 '12 at 21:20
1 Answers
7
depcomp
is installed by Automake itself when you run automake --install
(or better, when you run autoreconf -vfi
). It is used to keep track of the dependencies as a side-effect of compilation.

adl
- 15,627
- 6
- 51
- 65