nunchuk-io / nunchuk-desktop

GNU General Public License v3.0
70 stars 9 forks source link

Build guideline

Follow this document to build the application on your platform

Tools

Qt libraries and Qt Creator

Download the Qt for your platform Qt offline installer and install it.

For Windows, download Visual studio 2017 or 2019.

Notes:
Qt version 5.12 or higher is recommended
Windows: Select compiler MSCV 2017 (or 2019) 64 - bit (or 32 bit depends on your OS)
Linux: Compiler GCC 64 or 32
MAC: Compiler GCC 64 or 32 (macOS)

Setup

Clone project and fetch submodules

git clone https://gitlab.com/nunchuck/nunchuck-qt
cd nunchuck-qt
git submodule update --init --recursive
wget http://download.oracle.com/berkeley-db/db-4.8.30.zip
unzip db-4.8.30.zip
cd db-4.8.30
cd build_unix/
../dist/configure --prefix=/usr/local --enable-cxx
make
make install
apt-get install -y libssl-dev

Build contrib/libnunchuk Build Bitcoin Core (details)

cd contrib/libnunchuk/contrib/bitcoin
./autogen.sh
./configure --without-gui --disable-zmq --with-miniupnpc=no --with-incompatible-bdb --disable-bench --disable-tests -enable-module-ecdh # important
make -j8
cd ..

Build Sqlcipher (details)

cd libnunchuk/contrib/sqlcipher
./configure --enable-tempstore=yes CFLAGS="-DSQLITE_HAS_CODEC" LDFLAGS="-lcrypto"
make -j8
popd
cd ..

Build nunchuck-client-qt

Open Qt Creator
Open nunchuck-client-qt project via CMakeLists.txt
Select your Kit (include compiler) : Desktop Qt %{Qt:Version} GCC 64bit, (such as Desktop Qt 5.12.8 GCC 64bit)
Run qmake
Build
...
Run the application

Linux - Notes

udev rules

This directory contains all of the udev rules for the supported devices as retrieved from vendor websites and repositories.

These are necessary for the devices to be reachable on Linux environments.

In certain versions of Linux, Nunchuk may not be able to run. Here are a few tips:

  1. There is no libfuse2 package by default. The AppImage distribution (and more generally, all existing AppImages) are built expecting libfuse2 support. This means that the AppImage will not run on Ubuntu 22.04 by default. You can try installing libfuse2 manually before running nunchuk:
    sudo apt install libfuse2*

  2. Certain Linux version needs to update their SSL package. libssl1.1 is recommended. Try running the AppImage from the terminal with LD_DEBUG=libs and see what libraries it complains about before the segfault. (Suggestion by a Nunchuk user)

  3. Ubuntu update, should keep all the old repositories (end of the update process, when prompted to delete old repositories, files or keep them, just clicked no, keep old files) (Suggestion by a Nunchuk user)

MacOS - Notes

Prerequisites

Python 3, libusb are required.

Commands:

brew install libusb
brew install python