Building

From GnuCash
Revision as of 23:57, 30 November 2018 by Fell (talk | contribs) (Build Tools: Fix link, add more; abstract)
Jump to: navigation, search

This page deals with building GnuCash from the source code. It includes building the current stable release from source code (downloaded as tarballs) as well as the developers version of GnuCash from the Git repository. If you are searching for instructions for the stable version available from your distributions software repositories, you should read Installation.

This page doesn't provide specific instructions for optional third-party modules like AqBanking or Perl Finance::Quote but does list the dependencies required and links to the configuration switches used with CMake to include them during compilation.

Introduction

Gnucash can be built from sources on Linux distributions, Microsoft Windows and Mac OS/X. There are three major steps in building the GnuCash program. These are listed along with the tools which may used for each step:

  1. Configuration (cmake - autotools in earlier GnuCash versions)
  2. Compilation ( make or ninja)
  3. Installation (make or ninja)

Building GnuCash utilizes a set of tools which is available for all three of the major operating systems. These steps are described in detail for each operating system in the linked pages below, along with the installation of the build tools.

The GnuCash build system has gone through some changes in the course of the 2.6 and 3 series.

Build Tools

A general description of the tools used to configure and build Gnucash is given in Build tools.

A listing of dependencies is available at Dependencies.

CMake has replaced the Autotools autogen and configure scripts for configuring the build. This has provided the ability to configure for alternative build systems and popular IDEs. Under the hood compilation and installation can now either be controlled using GNU Make or alternatively using the faster Ninja. Depending on the version of GnuCash you want to build you have the following options:

For the application generally
GnuCash 3 and more recent
These versions are configured using CMake. Autotools support has been removed. Either make or ninja may be used to build ;
GnuCash 2.6 and earlier
These versions are configured with Autotools and built with the GNU make utility. V 2.6.13 on allowed experimental use of cmake to configure and ninja to build;
Source API Documentation
This is built directly from the program sources. Depending on how the build system is configured you can use make doc or ninja doc. Note this requires Doxygen to be installed.
For the documentation
The GnuCash Help and Tutorial and Concept Guide are configured with Autotools and built with Make.

Compiler

GnuCash 3.x requires a C++ compiler that supports ISO-standards C11 and C++11. Gcc version >=4.8 and Clang version >= 3.3 are known to work. For GnuCash 4.x (i.e. current master branch) we expect to require C++14 and may require C++17 compatibility.

Building on Linux Distributions

Detailed instructions for building Gnucash on Linux distributions can be found on Building On Linux.

Building on Mac OS X

Mac OS X instructions can be found on MacOSX/Quartz (This is the procedure used for building the binary packages) or gnucash installation from source on Mac OS X.

Building on Microsoft Windows

Compiling GnuCash on Windows is possible, but much more difficult than on linux. For details, see GnuCash on Microsoft Windows.