November 2018
Intermediate to advanced
528 pages
13h 21m
English
As the dependencies are installed, we can build the code using autotools by running these commands in succession as follows:
./autogen.sh ./configure --with-gui=qt5 --enable-debug sudo make
Pay attention to the space and double dash in front of both the options: with-gui and enable-debug.
It's common to supply some options to the configure command to change the final location of the executable program. You can explore the different possible options in the official documentation: https://github.com/bitcoin/bitcoin/blob/master/doc/build-unix.md.
As you may have noticed, we passed the configure file two arguments: --with-gui=qt5 to build the graphical interface, and --enable-debug to produce better debugging builds. If ...
Read now
Unlock full access