Talk:Build Tools

From GnuCash
Revision as of 03:55, 22 September 2018 by DaveC49 (talk | contribs)
Jump to: navigation, search

I dont think the description here really represents the situation. Both Autotools and Cmake are build configuration utilities not tool chains as such.

Would it not be better to describe the toolchains as: Autotools->make; #must be used for the documentation builds- used for program builds <v 2.6; Cmake->make; # now used for program and API documentation (V3.2 forward); Cmake->ninja; # alternative program build (API documentation??) (V3.2 forward);

or even better if we consider the installation as a separate step from the build itself

Autotools->make->make; #must be used for the documentation builds- used for program builds <v 2.6; Cmake->make->make; # now used for program and API documentation (V3.2 forward); Cmake->ninja->Make; # alternative program build (API documentation??) (V3.2 forward);

The other parts of the tool chain here is the compiler system called by the above to compile and libtool to construct the libraries. Should they not be also mentioned

David Cousens