Coder Social home page Coder Social logo

ipbc-dev / bittube-wallet-gui Goto Github PK

View Code? Open in Web Editor NEW
44.0 16.0 36.0 18.26 MB

Legacy BitTube 3 Wallet GUI

Home Page: https://github.com/BitTubeCash/bittube-wallet-gui

License: Other

QML 56.28% C++ 28.91% QMake 1.01% Shell 1.40% Inno Setup 1.12% HTML 0.54% Batchfile 0.01% JavaScript 0.80% Makefile 0.35% C 4.78% CMake 4.33% Dockerfile 0.32% Objective-C++ 0.15%
bittube cryptonote cryptocurrency p2p wallet bittube-gui

bittube-wallet-gui's Introduction

BitTube GUI

Copyright (c) 2014-2019, The Monero Project

Development resources

Vulnerability response

Introduction

BitTube is a private, secure, untraceable, decentralised digital currency. You are your bank, you control your funds, and nobody can trace your transfers unless you allow them to do so.

Privacy: BitTube uses a cryptographically sound system to allow you to send and receive funds without your transactions being easily revealed on the blockchain (the ledger of transactions that everyone has). This ensures that your purchases, receipts, and all transfers remain absolutely private by default.

Security: Using the power of a distributed peer-to-peer consensus network, every transaction on the network is cryptographically secured. Individual wallets have a 25 word mnemonic seed that is only displayed once, and can be written down to backup the wallet. Wallet files are encrypted with a passphrase to ensure they are useless if stolen.

Untraceability: By taking advantage of ring signatures, a special property of a certain type of cryptography, BitTube is able to ensure that transactions are not only untraceable, but have an optional measure of ambiguity that ensures that transactions cannot easily be tied back to an individual user or computer.

About this project

This is the GUI for the core BitTube implementation. It is open source and completely free to use without restrictions, except for those specified in the license agreement below. There are no restrictions on anyone creating an alternative implementation of BitTube that uses the protocol and network in a compatible manner.

As with many development projects, the repository on Github is considered to be the "staging" area for the latest changes. Before changes are merged into that branch on the main repository, they are tested by individual developers in their own branches, submitted as a pull request, and then subsequently tested by contributors who focus on testing and code reviews. That having been said, the repository should be carefully considered before using it in a production environment, unless there is a patch in the repository for a particular show-stopping issue you are experiencing. It is generally a better idea to use a tagged release for stability.

Supporting the project

BitTube is a 100% community-sponsored endeavor. If you want to join our efforts, the easiest thing you can do is support the project financially. Both BitTube and Bitcoin donations can be made to donate.bittube.app if using a client that supports the OpenAlias standard.

GUI development funding and/or some supporting services are also graciously provided by sponsors:

There are also several mining pools that kindly donate a portion of their fees, a list of them can be found on our Bitcointalk post.

License

See LICENSE.

Translations

Do you speak a second language and would like to help translate the BitTube GUI? Check out Weblate, our localization platform, at translate.bittube.app. Choose the language and suggest a translation for a string or review an existing one. The Localization Workgroup made a guide with step-by-step instructions for Weblate.

If you need help/support or any info you can contact the localization workgroup on the IRC channel #bittube-translations (relayed on matrix/riot and MatterMost) or by email at translate[at]getbittube[dot]org. For more info about the Localization workgroup: github.com/bittube-ecosystem/bittube-translations

Installing the BitTube GUI from a package

Packages are available for

  • Arch Linux: pacman -S bittube-gui
  • Void Linux: xbps-install -S bittube-core
  • GuixSD: guix package -i bittube-core

Packaging for your favorite distribution would be a welcome contribution!

Compiling the BitTube GUI from source

Note: Qt 5.9.7 is the minimum version required to build the GUI.

On Linux:

(Tested on Ubuntu 17.10 x64, Ubuntu 18.04 x64 and Gentoo x64)

  1. Install BitTube dependencies
  • For Debian distributions (Debian, Ubuntu, Mint, Tails...)

    sudo apt install build-essential cmake libboost-all-dev miniupnpc libunbound-dev graphviz doxygen libunwind8-dev pkg-config libssl-dev libzmq3-dev libsodium-dev libhidapi-dev libnorm-dev libusb-1.0-0-dev libpgm-dev

  • For Gentoo

    sudo emerge app-arch/xz-utils app-doc/doxygen dev-cpp/gtest dev-libs/boost dev-libs/expat dev-libs/openssl dev-util/cmake media-gfx/graphviz net-dns/unbound net-libs/ldns net-libs/miniupnpc net-libs/zeromq sys-libs/libunwind dev-libs/libsodium dev-libs/hidapi

  • For Fedora

    sudo dnf install make automake cmake gcc-c++ boost-devel miniupnpc-devel graphviz doxygen unbound-devel libunwind-devel pkgconfig openssl-devel libcurl-devel hidapi-devel libusb-devel zeromq-devel

  1. Install Qt:

Note: The Qt 5.9.7 or newer requirement makes some distributions (mostly based on debian, like Ubuntu 16.x or Linux Mint 18.x) obsolete due to their repositories containing an older Qt version.

The recommended way is to install 5.9.7 from the official Qt installer or compiling it yourself. This ensures you have the correct version. Higher versions can work but as it differs from our production build target, slight differences may occur.

The following instructions will fetch Qt from your distribution's repositories instead. Take note of what version it installs. Your mileage may vary.

  • For Ubuntu 17.10+

    sudo apt install qtbase5-dev qt5-default qtdeclarative5-dev qml-module-qtquick-controls qml-module-qtquick-controls2 qml-module-qtquick-dialogs qml-module-qtquick-xmllistmodel qml-module-qt-labs-settings qml-module-qt-labs-folderlistmodel qttools5-dev-tools qml-module-qtquick-templates2 libqt5svg5-dev

  • For Gentoo

    sudo emerge dev-qt/qtcore:5 dev-qt/qtdeclarative:5 dev-qt/qtquickcontrols:5 dev-qt/qtquickcontrols2:5 dev-qt/qtgraphicaleffects:5

  • Optional : To build the flag WITH_SCANNER

    • For Ubuntu

      sudo apt install qtmultimedia5-dev qml-module-qtmultimedia libzbar-dev

    • For Gentoo

      The qml USE flag must be enabled.

      emerge dev-qt/qtmultimedia:5 media-gfx/zbar

  1. Clone repository

    git clone https://github.com/ipbc-dev/bittube-wallet-gui.git

  2. Build

    cd bittube-gui
    QT_SELECT=5 ./build.sh
    

The executable can be found in the build/release/bin folder.

On OS X:

  1. Install Xcode from AppStore

  2. Install homebrew

  3. Install bittube dependencies:

brew install boost

brew install openssl - to install openssl headers

brew install pkgconfig

brew install cmake

brew install zeromq

Note: If cmake can not find zmq.hpp file on OS X, installing zmq.hpp from https://github.com/zeromq/cppzmq to /usr/local/include should fix that error.

  1. Install Qt:

brew install qt5 (or download QT 5.9.7+ from qt.io)

If you have an older version of Qt installed via homebrew, you can force it to use 5.x like so:

brew link --force --overwrite qt5

  1. Add the Qt bin directory to your path
  • Example for Qt: export PATH=$PATH:$HOME/Qt/5.9.7/clang_64/bin
  • Example for Homebrew: export PATH=$PATH:/usr/local/opt/qt/bin
  1. Grab an up-to-date copy of the bittube-gui repository

git clone https://github.com/ipbc-dev/bittube-wallet-gui.git

  1. Go into the repository

cd bittube-gui

  1. Start the build

./build.sh

The executable can be found in the build/release/bin folder.

Note: Workaround for "ERROR: Xcode not set up properly"

Edit $HOME/Qt/5.9.7/clang_64/mkspecs/features/mac/default_pre.prf

replace isEmpty($$list($$system("/usr/bin/xcrun -find xcrun 2>/dev/null")))

with isEmpty($$list($$system("/usr/bin/xcrun -find xcodebuild 2>/dev/null")))

More info: http://stackoverflow.com/a/35098040/1683164

On Windows:

The BitTube GUI on Windows is 64 bits only; 32-bit Windows GUI builds are not officially supported anymore.

  1. Install MSYS2, follow the instructions on that page on how to update system and packages to the latest versions

  2. Open an 64-bit MSYS2 shell: Use the MSYS2 MinGW 64-bit shortcut, or use the msys2_shell.cmd batch file with a -mingw64 parameter

  3. Install MSYS2 packages for BitTube dependencies; the needed 64-bit packages have x86_64 in their names

    pacman -S mingw-w64-x86_64-toolchain make mingw-w64-x86_64-cmake mingw-w64-x86_64-boost mingw-w64-x86_64-openssl mingw-w64-x86_64-zeromq mingw-w64-x86_64-libsodium mingw-w64-x86_64-hidapi mingw-w64-x86_64-protobuf-c mingw-w64-x86_64-libusb
    

    Optional : To build the flag WITH_SCANNER

    pacman -S mingw-w64-x86_64-zbar
    

    You find more details about those dependencies in the BitTube documentation. Note that that there is no more need to compile Boost from source; like everything else, you can install it now with a MSYS2 package.

  4. Install Qt5

    pacman -S mingw-w64-x86_64-qt5
    

    There is no more need to download some special installer from the Qt website, the standard MSYS2 package for Qt will do in almost all circumstances.

  5. Install git

    pacman -S git
    
  6. Clone repository

    git clone https://github.com/ipbc-dev/bittube-wallet-gui.git
    
  7. Build

    cd bittube-gui
    source ./build.sh release-static
    cd build
    make deploy
    

    Note: The use of source above is a dirty workaround for a suspected bug in the current QT version 5.11.2-3 available in the MSYS2 packaging system, see https://github.com/ipbc-dev/bittube-wallet-gui/issues/1559 for more info.

The executable can be found in the .\release\bin directory.

bittube-wallet-gui's People

Contributors

cryptochangements34 avatar debruyne-1 avatar erciccione avatar fluffypony avatar glv2 avatar ilie1988 avatar jaqueeee avatar jonathancross avatar krzysztoff7 avatar lafudoci avatar luigi1111 avatar mandrill-pie avatar maxxor avatar mbg033 avatar mmbyday avatar moneromooo-monero avatar moroccanmalinois avatar pazos avatar ph4r05 avatar rating89us avatar rbrunner7 avatar rpcjacobs avatar sanderfoobar avatar selsta avatar signo88 avatar stoffu avatar szogun1987 avatar taushet avatar tobtoht avatar xiphon avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

bittube-wallet-gui's Issues

Linux AppImage download missing from releases page

It seems all that's available is the source code, which must be compiled before it can be run...

I recommend talking to the LBRY app devs for info pertaining to how they build their appimages to run on both old and new kernels. ;)

or you can also build a zipped portable executable like Blender does if you don't want to build an appimage :)
(personally I find appimages easier to manage than portable executables)

Precompiled wallet not work on Ubuntu 16.04

./bittubed: error while loading shared libraries: libboost_chrono.so.1.62.0: cannot open shared object file: No such file or directory

libboost_chrono.so.1.62.0 from zesty repo???

"Illegal instruction" error

I have the latest v2.0.0.1 on Debian Testing, it has been synching properly until block 109995

$ ./bittubed 
2018-07-03 06:22:58.924	    7f774318cc40	INFO 	global	src/daemon/main.cpp:280	BitTube 'Titanium Tube' (v2.0.0.1-master-release)
2018-07-03 06:22:58.924	    7f774318cc40	INFO 	global	src/daemon/protocol.h:54	Initializing cryptonote protocol...
2018-07-03 06:22:58.924	    7f774318cc40	INFO 	global	src/daemon/protocol.h:59	Cryptonote protocol initialized OK
2018-07-03 06:22:58.939	    7f774318cc40	INFO 	global	src/daemon/p2p.h:64	Initializing p2p server...
2018-07-03 06:23:11.378	    7f774318cc40	INFO 	global	src/daemon/p2p.h:69	p2p server initialized OK
2018-07-03 06:23:11.379	    7f774318cc40	INFO 	global	src/daemon/rpc.h:64	Initializing core RPC server...
2018-07-03 06:23:11.379	    7f774318cc40	INFO 	global	contrib/epee/include/net/http_server_impl_base.h:76	Binding on 127.0.0.1:24182
2018-07-03 06:23:11.379	    7f774318cc40	INFO 	global	src/daemon/rpc.h:70	core RPC server initialized OK on port: 24182
2018-07-03 06:23:11.379	    7f774318cc40	INFO 	global	src/daemon/core.h:87	Initializing core...
2018-07-03 06:23:11.380	    7f774318cc40	INFO 	global	src/cryptonote_core/cryptonote_core.cpp:428	Loading blockchain from folder /home/username/.bittube/lmdb ...
2018-07-03 06:23:11.991	    7f774318cc40	INFO 	global	src/cryptonote_core/cryptonote_core.cpp:526	Loading checkpoints
2018-07-03 06:23:12.399	    7f774318cc40	INFO 	global	src/daemon/core.h:93	Core initialized OK
2018-07-03 06:23:12.399	    7f774318cc40	INFO 	global	src/daemon/rpc.h:75	Starting core RPC server...
2018-07-03 06:23:12.399	[SRV_MAIN]	INFO 	global	src/daemon/rpc.h:80	core RPC server started ok
2018-07-03 06:23:12.424	[SRV_MAIN]	INFO 	global	src/daemon/p2p.h:79	Starting p2p net loop...
2018-07-03 06:23:13.424	[P2P1]	INFO 	global	src/cryptonote_core/cryptonote_core.cpp:1354	
**********************************************************************
The daemon will start synchronizing with the network. This may take a long time to complete.

You can set the level of process detailization through "set_log <level|categories>" command,
where <level> is between 0 (no details) and 4 (very verbose), or custom category based levels (eg, *:WARNING).

Use the "help" command to see the list of available commands.
Use "help <command>" to see a command's documentation.
**********************************************************************

2018-07-03 06:23:14.788	[P2P8]	INFO 	global	src/cryptonote_protocol/cryptonote_protocol_handler.inl:311	[174.20.19.50:24181 OUT] Sync data returned a new top block candidate: 109995 -> 110708 [Your node is 713 blocks (0 days) behind] 
SYNCHRONIZATION started
Illegal instruction

After that, the GUI app crashes after I enter my wallet's password.

$ ./bittube-wallet-gui 
[MinerManager] - Error: miner binary app, not found.
2018-07-03 06:26:02.239	    7feaafbb4800	WARN 	frontend	src/wallet/api/wallet.cpp:328	app startd (log: /home/username/bittube-wallet-gui.log)
2018-07-03 06:26:02.239	    7feaafbb4800	WARN 	frontend	src/wallet/api/wallet.cpp:328	Qt:5.9.1 | screen: 1366x768 - dpi: 96.1032 - ratio:0.87908
2018-07-03 06:26:02.599	    7feaafbb4800	WARN 	frontend	src/wallet/api/wallet.cpp:328	Empty filename passed to function
2018-07-03 06:26:02.600	    7feaafbb4800	WARN 	frontend	src/wallet/api/wallet.cpp:328	Empty filename passed to function
2018-07-03 06:26:02.604	    7feaafbb4800	WARN 	frontend	src/wallet/api/wallet.cpp:328	Empty filename passed to function
2018-07-03 06:26:02.702	    7feaafbb4800	WARN 	frontend	src/wallet/api/wallet.cpp:328	qrc:///components/TitleBar.qml:71:9: QML Image: Cannot anchor to an item that isn't a parent or sibling.
2018-07-03 06:26:02.782	    7feaafbb4800	WARN 	frontend	src/wallet/api/wallet.cpp:328	qrc:///pages/Mining.qml:705:25: QML ColumnLayout: Cannot anchor to an item that isn't a parent or sibling.
2018-07-03 06:26:02.785	    7feaafbb4800	WARN 	net.http	src/common/util.cpp:670	Failed to determine whether address '' is local, assuming not
2018-07-03 06:26:03.075	    7feaafbb4800	WARN 	frontend	src/wallet/api/wallet.cpp:328	<Unknown File>: QML QQuickLayoutAttached: Binding loop detected for property "preferredWidth"
2018-07-03 06:26:03.075	    7feaafbb4800	WARN 	frontend	src/wallet/api/wallet.cpp:328	<Unknown File>: QML QQuickLayoutAttached: Binding loop detected for property "preferredWidth"
2018-07-03 06:26:03.075	    7feaafbb4800	WARN 	frontend	src/wallet/api/wallet.cpp:328	<Unknown File>: QML QQuickLayoutAttached: Binding loop detected for property "preferredWidth"
2018-07-03 06:26:03.159	    7feaafbb4800	WARN 	frontend	src/wallet/api/wallet.cpp:328	file:///usr/lib/x86_64-linux-gnu/qt5/qml/QtQuick/Controls/ApplicationWindow.qml:240:9: QML ContentItem: Binding loop detected for property "implicitWidth"
2018-07-03 06:26:03.161	    7feaafbb4800	WARN 	frontend	src/wallet/api/wallet.cpp:328	qrc:///components/InputDialog.qml:69: ReferenceError: bg is not defined
Illegal instruction

I have tried to rename the folder /home/username/.bittube to something else but the wallet still crashes, so the problem is not from the block data.

Missing libpcsclite on ubuntu 18.04

Hi,
I'm running on Ubuntu 18.04 after installing the needed packages for Ubuntu 17.04+ the libpcsclite is missing.
This command helps :

sudo apt install libpcsclite-dev

[Output error]

-- Checking for module 'libpcsclite'
--   No package 'libpcsclite' found

[Improvement] "Dont ask again" if I want to stop the Daemon

[Improvement]
Add an option of "Dont ask again" if I want to close the daemon, when Iam closing the wallet.
Also for when I wanna always keep it running.

Also.
There should be an explanation about what it means to keep it running, or to close it.

Wrong sold of wallet and missing transaction

After 3 full synchronisation (3 reinstall) it's impossible to have the correct sold and all transaction. Can have only on the online wallet (bit.tube)

Online version
2018-07-05_103852

Offline version
2018-07-05_103830

For information this address was created before the fork

2018-07-05_104607

The miner starts itself even if the wallet fails to start

At first wallet launch on a fresh windows system the wallet failed to start due to missing dependencies. It lacked:

  • c++ runtime
  • opengl

After installing c++ runtime the wallet silently crashes at start but the miner however start without anyone starting it. after starting the wallet without opengl the miner still starts and cannot be stopped from the wallet as the button is grayed out. Killing the miner only reastarts it.

unknown 1

[Bug] Text colliding in default size window

[Bug]
Seems if I open something bigger in the left side menu, the text will "collide/clip through" with the synchronizing info:

Doesnt look too good.
Window is the default size I opened it, at 1080p 100%DPI

Daemon ends himself

Daemon stores in an incorrectly named profile if the windows user profil has the letter รผ,รถ,รค inside the name!

Mac wallet wont launch

MacOS 10.13.5. First issue is that the contents of bittube-wallet-gui/Contents/MacOS do not have +x. After fixing that, wallet starts to open, then quits.

Sending Transaction Stalls

Tried to send 2 TUBE to my Bit.Tube Web Wallet as a test, but the "Creating Transaction" box sits (stalls) with the circling icon. I'm using the macOS v.2.0.0.2-13-ga51f190 (Qt 5.71) [Embedded BitTube Version 2.0.0.3] GUI wallet since I can't use the latest GUI v.2.0.0.4 since it is only for High Sierra (macOS 10.13). Will it be possible to make a Sierra (macOS 10.12) version of the latest GUI v.2.0.0.4 wallet? Or, fix the problem with the v.2.0.0.3?

Network status
Remote node
Wallet is synchronized
Daemon is synchronized (163009)

Checked the log and got this message:
2018-09-14 05:01:07.549 0x10d0ec3c0 ERROR frontend src/wallet/api/wallet.cpp:366 Can't create transaction: no connection to daemon. Please make sure daemon is running.

Checked the bittube.log and saw this message:
2018-09-14 06:47:35.004 0x11113a3c0 ERROR msgwriter src/common/scoped_message_writer.h:103 Error: Couldn't connect to daemon: 127.0.0.1:24182

Don't know why it says that since everything is synced.

Build fails under Ubuntu 18.04

Any ideas?

``zcopley@chupa:~/bittube-wallet-gui$ ./build.sh
Building release
~/bittube-wallet-gui ~/bittube-wallet-gui
./build.sh: line 75: ./get_libwallet_api.sh: Permission denied
make: Entering directory '/home/zcopley/bittube-wallet-gui/src/zxcvbn-c'
make: Nothing to be done for 'all'.
make: Leaving directory '/home/zcopley/bittube-wallet-gui/src/zxcvbn-c'
You are currently on commit 56b04d6
The most recent tag was at 63e5ed9
You are ahead of or behind a tagged release
~/bittube-wallet-gui/bittube ~/bittube-wallet-gui ~/bittube-wallet-gui
You are currently on commit 0d053d86
The most recent tag was at 0c6d50f0
You are ahead of or behind a tagged release
~/bittube-wallet-gui ~/bittube-wallet-gui
Project MESSAGE: Building without libunwind
Updating '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_ar.qm'...
Removing translations equal to source text in '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_ar.qm'...
Generated 257 translation(s) (257 finished and 0 unfinished)
Ignored 207 untranslated source text(s)
Updating '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_cat.qm'...
Removing translations equal to source text in '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_cat.qm'...
Generated 241 translation(s) (241 finished and 0 unfinished)
Ignored 166 untranslated source text(s)
Updating '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_cs.qm'...
Removing translations equal to source text in '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_cs.qm'...
Generated 476 translation(s) (476 finished and 0 unfinished)
Updating '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_da.qm'...
Removing translations equal to source text in '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_da.qm'...
Generated 442 translation(s) (442 finished and 0 unfinished)
Updating '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_de.qm'...
Removing translations equal to source text in '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_de.qm'...
Generated 483 translation(s) (483 finished and 0 unfinished)
Ignored 21 untranslated source text(s)
Updating '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_eo.qm'...
Removing translations equal to source text in '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_eo.qm'...
Generated 479 translation(s) (479 finished and 0 unfinished)
Ignored 2 untranslated source text(s)
Updating '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_es.qm'...
Removing translations equal to source text in '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_es.qm'...
Generated 480 translation(s) (480 finished and 0 unfinished)
Updating '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_fi.qm'...
Removing translations equal to source text in '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_fi.qm'...
Generated 126 translation(s) (126 finished and 0 unfinished)
Ignored 315 untranslated source text(s)
Updating '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_fr.qm'...
Removing translations equal to source text in '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_fr.qm'...
Generated 453 translation(s) (453 finished and 0 unfinished)
Updating '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_he.qm'...
Removing translations equal to source text in '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_he.qm'...
Generated 467 translation(s) (467 finished and 0 unfinished)
Ignored 20 untranslated source text(s)
Updating '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_hi.qm'...
Removing translations equal to source text in '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_hi.qm'...
Generated 49 translation(s) (49 finished and 0 unfinished)
Ignored 424 untranslated source text(s)
Updating '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_hr.qm'...
Removing translations equal to source text in '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_hr.qm'...
Generated 365 translation(s) (365 finished and 0 unfinished)
Ignored 104 untranslated source text(s)
Updating '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_id.qm'...
Removing translations equal to source text in '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_id.qm'...
Generated 257 translation(s) (257 finished and 0 unfinished)
Ignored 194 untranslated source text(s)
Updating '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_it.qm'...
Removing translations equal to source text in '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_it.qm'...
Generated 466 translation(s) (466 finished and 0 unfinished)
Updating '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_ja.qm'...
Removing translations equal to source text in '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_ja.qm'...
Generated 480 translation(s) (480 finished and 0 unfinished)
Updating '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_ko.qm'...
Removing translations equal to source text in '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_ko.qm'...
Generated 276 translation(s) (276 finished and 0 unfinished)
Ignored 170 untranslated source text(s)
Updating '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_nl.qm'...
Removing translations equal to source text in '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_nl.qm'...
Generated 478 translation(s) (478 finished and 0 unfinished)
Updating '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_pl.qm'...
Removing translations equal to source text in '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_pl.qm'...
Generated 476 translation(s) (476 finished and 0 unfinished)
Updating '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_pt-br.qm'...
Removing translations equal to source text in '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_pt-br.qm'...
Generated 472 translation(s) (472 finished and 0 unfinished)
Updating '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_pt-pt.qm'...
Removing translations equal to source text in '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_pt-pt.qm'...
Generated 464 translation(s) (464 finished and 0 unfinished)
Updating '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_ro.qm'...
Removing translations equal to source text in '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_ro.qm'...
Generated 466 translation(s) (466 finished and 0 unfinished)
Updating '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_ru.qm'...
Removing translations equal to source text in '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_ru.qm'...
Generated 479 translation(s) (479 finished and 0 unfinished)
Ignored 12 untranslated source text(s)
Updating '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_sk.qm'...
Removing translations equal to source text in '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_sk.qm'...
Generated 439 translation(s) (439 finished and 0 unfinished)
Ignored 33 untranslated source text(s)
Updating '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_sl.qm'...
Removing translations equal to source text in '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_sl.qm'...
Generated 318 translation(s) (318 finished and 0 unfinished)
Ignored 132 untranslated source text(s)
Updating '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_sr.qm'...
Removing translations equal to source text in '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_sr.qm'...
Generated 461 translation(s) (461 finished and 0 unfinished)
Updating '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_sv.qm'...
Removing translations equal to source text in '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_sv.qm'...
Generated 468 translation(s) (468 finished and 0 unfinished)
Updating '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_tr.qm'...
Removing translations equal to source text in '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_tr.qm'...
Generated 472 translation(s) (472 finished and 0 unfinished)
Updating '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_ua.qm'...
Removing translations equal to source text in '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_ua.qm'...
Generated 369 translation(s) (369 finished and 0 unfinished)
Ignored 114 untranslated source text(s)
Updating '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_zh-cn.qm'...
Removing translations equal to source text in '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_zh-cn.qm'...
Generated 478 translation(s) (478 finished and 0 unfinished)
Updating '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_zh-tw.qm'...
Removing translations equal to source text in '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_zh-tw.qm'...
Generated 481 translation(s) (481 finished and 0 unfinished)
/usr/lib/qt5/bin/lrelease -compress -nounfinished -removeidentical ../translations/bittube-core_ar.ts -qm /home/zcopley/bittube-wallet-gui/build/translations/bittube-core_ar.qm
Updating '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_ar.qm'...
Removing translations equal to source text in '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_ar.qm'...
Generated 257 translation(s) (257 finished and 0 unfinished)
Ignored 207 untranslated source text(s)
/usr/lib/qt5/bin/lrelease -compress -nounfinished -removeidentical ../translations/bittube-core_cat.ts -qm /home/zcopley/bittube-wallet-gui/build/translations/bittube-core_cat.qm
Updating '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_cat.qm'...
Removing translations equal to source text in '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_cat.qm'...
Generated 241 translation(s) (241 finished and 0 unfinished)
Ignored 166 untranslated source text(s)
/usr/lib/qt5/bin/lrelease -compress -nounfinished -removeidentical ../translations/bittube-core_cs.ts -qm /home/zcopley/bittube-wallet-gui/build/translations/bittube-core_cs.qm
Updating '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_cs.qm'...
Removing translations equal to source text in '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_cs.qm'...
Generated 476 translation(s) (476 finished and 0 unfinished)
/usr/lib/qt5/bin/lrelease -compress -nounfinished -removeidentical ../translations/bittube-core_da.ts -qm /home/zcopley/bittube-wallet-gui/build/translations/bittube-core_da.qm
Updating '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_da.qm'...
Removing translations equal to source text in '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_da.qm'...
Generated 442 translation(s) (442 finished and 0 unfinished)
/usr/lib/qt5/bin/lrelease -compress -nounfinished -removeidentical ../translations/bittube-core_de.ts -qm /home/zcopley/bittube-wallet-gui/build/translations/bittube-core_de.qm
Updating '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_de.qm'...
Removing translations equal to source text in '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_de.qm'...
Generated 483 translation(s) (483 finished and 0 unfinished)
Ignored 21 untranslated source text(s)
/usr/lib/qt5/bin/lrelease -compress -nounfinished -removeidentical ../translations/bittube-core_eo.ts -qm /home/zcopley/bittube-wallet-gui/build/translations/bittube-core_eo.qm
Updating '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_eo.qm'...
Removing translations equal to source text in '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_eo.qm'...
Generated 479 translation(s) (479 finished and 0 unfinished)
Ignored 2 untranslated source text(s)
/usr/lib/qt5/bin/lrelease -compress -nounfinished -removeidentical ../translations/bittube-core_es.ts -qm /home/zcopley/bittube-wallet-gui/build/translations/bittube-core_es.qm
Updating '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_es.qm'...
Removing translations equal to source text in '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_es.qm'...
Generated 480 translation(s) (480 finished and 0 unfinished)
/usr/lib/qt5/bin/lrelease -compress -nounfinished -removeidentical ../translations/bittube-core_fi.ts -qm /home/zcopley/bittube-wallet-gui/build/translations/bittube-core_fi.qm
Updating '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_fi.qm'...
Removing translations equal to source text in '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_fi.qm'...
Generated 126 translation(s) (126 finished and 0 unfinished)
Ignored 315 untranslated source text(s)
/usr/lib/qt5/bin/lrelease -compress -nounfinished -removeidentical ../translations/bittube-core_fr.ts -qm /home/zcopley/bittube-wallet-gui/build/translations/bittube-core_fr.qm
Updating '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_fr.qm'...
Removing translations equal to source text in '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_fr.qm'...
Generated 453 translation(s) (453 finished and 0 unfinished)
/usr/lib/qt5/bin/lrelease -compress -nounfinished -removeidentical ../translations/bittube-core_he.ts -qm /home/zcopley/bittube-wallet-gui/build/translations/bittube-core_he.qm
Updating '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_he.qm'...
Removing translations equal to source text in '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_he.qm'...
Generated 467 translation(s) (467 finished and 0 unfinished)
Ignored 20 untranslated source text(s)
/usr/lib/qt5/bin/lrelease -compress -nounfinished -removeidentical ../translations/bittube-core_hi.ts -qm /home/zcopley/bittube-wallet-gui/build/translations/bittube-core_hi.qm
Updating '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_hi.qm'...
Removing translations equal to source text in '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_hi.qm'...
Generated 49 translation(s) (49 finished and 0 unfinished)
Ignored 424 untranslated source text(s)
/usr/lib/qt5/bin/lrelease -compress -nounfinished -removeidentical ../translations/bittube-core_hr.ts -qm /home/zcopley/bittube-wallet-gui/build/translations/bittube-core_hr.qm
Updating '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_hr.qm'...
Removing translations equal to source text in '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_hr.qm'...
Generated 365 translation(s) (365 finished and 0 unfinished)
Ignored 104 untranslated source text(s)
/usr/lib/qt5/bin/lrelease -compress -nounfinished -removeidentical ../translations/bittube-core_id.ts -qm /home/zcopley/bittube-wallet-gui/build/translations/bittube-core_id.qm
Updating '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_id.qm'...
Removing translations equal to source text in '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_id.qm'...
Generated 257 translation(s) (257 finished and 0 unfinished)
Ignored 194 untranslated source text(s)
/usr/lib/qt5/bin/lrelease -compress -nounfinished -removeidentical ../translations/bittube-core_it.ts -qm /home/zcopley/bittube-wallet-gui/build/translations/bittube-core_it.qm
Updating '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_it.qm'...
Removing translations equal to source text in '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_it.qm'...
Generated 466 translation(s) (466 finished and 0 unfinished)
/usr/lib/qt5/bin/lrelease -compress -nounfinished -removeidentical ../translations/bittube-core_ja.ts -qm /home/zcopley/bittube-wallet-gui/build/translations/bittube-core_ja.qm
Updating '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_ja.qm'...
Removing translations equal to source text in '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_ja.qm'...
Generated 480 translation(s) (480 finished and 0 unfinished)
/usr/lib/qt5/bin/lrelease -compress -nounfinished -removeidentical ../translations/bittube-core_ko.ts -qm /home/zcopley/bittube-wallet-gui/build/translations/bittube-core_ko.qm
Updating '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_ko.qm'...
Removing translations equal to source text in '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_ko.qm'...
Generated 276 translation(s) (276 finished and 0 unfinished)
Ignored 170 untranslated source text(s)
/usr/lib/qt5/bin/lrelease -compress -nounfinished -removeidentical ../translations/bittube-core_nl.ts -qm /home/zcopley/bittube-wallet-gui/build/translations/bittube-core_nl.qm
Updating '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_nl.qm'...
Removing translations equal to source text in '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_nl.qm'...
Generated 478 translation(s) (478 finished and 0 unfinished)
/usr/lib/qt5/bin/lrelease -compress -nounfinished -removeidentical ../translations/bittube-core_pl.ts -qm /home/zcopley/bittube-wallet-gui/build/translations/bittube-core_pl.qm
Updating '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_pl.qm'...
Removing translations equal to source text in '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_pl.qm'...
Generated 476 translation(s) (476 finished and 0 unfinished)
/usr/lib/qt5/bin/lrelease -compress -nounfinished -removeidentical ../translations/bittube-core_pt-br.ts -qm /home/zcopley/bittube-wallet-gui/build/translations/bittube-core_pt-br.qm
Updating '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_pt-br.qm'...
Removing translations equal to source text in '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_pt-br.qm'...
Generated 472 translation(s) (472 finished and 0 unfinished)
/usr/lib/qt5/bin/lrelease -compress -nounfinished -removeidentical ../translations/bittube-core_pt-pt.ts -qm /home/zcopley/bittube-wallet-gui/build/translations/bittube-core_pt-pt.qm
Updating '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_pt-pt.qm'...
Removing translations equal to source text in '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_pt-pt.qm'...
Generated 464 translation(s) (464 finished and 0 unfinished)
/usr/lib/qt5/bin/lrelease -compress -nounfinished -removeidentical ../translations/bittube-core_ro.ts -qm /home/zcopley/bittube-wallet-gui/build/translations/bittube-core_ro.qm
Updating '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_ro.qm'...
Removing translations equal to source text in '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_ro.qm'...
Generated 466 translation(s) (466 finished and 0 unfinished)
/usr/lib/qt5/bin/lrelease -compress -nounfinished -removeidentical ../translations/bittube-core_ru.ts -qm /home/zcopley/bittube-wallet-gui/build/translations/bittube-core_ru.qm
Updating '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_ru.qm'...
Removing translations equal to source text in '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_ru.qm'...
Generated 479 translation(s) (479 finished and 0 unfinished)
Ignored 12 untranslated source text(s)
/usr/lib/qt5/bin/lrelease -compress -nounfinished -removeidentical ../translations/bittube-core_sk.ts -qm /home/zcopley/bittube-wallet-gui/build/translations/bittube-core_sk.qm
Updating '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_sk.qm'...
Removing translations equal to source text in '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_sk.qm'...
Generated 439 translation(s) (439 finished and 0 unfinished)
Ignored 33 untranslated source text(s)
/usr/lib/qt5/bin/lrelease -compress -nounfinished -removeidentical ../translations/bittube-core_sl.ts -qm /home/zcopley/bittube-wallet-gui/build/translations/bittube-core_sl.qm
Updating '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_sl.qm'...
Removing translations equal to source text in '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_sl.qm'...
Generated 318 translation(s) (318 finished and 0 unfinished)
Ignored 132 untranslated source text(s)
/usr/lib/qt5/bin/lrelease -compress -nounfinished -removeidentical ../translations/bittube-core_sr.ts -qm /home/zcopley/bittube-wallet-gui/build/translations/bittube-core_sr.qm
Updating '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_sr.qm'...
Removing translations equal to source text in '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_sr.qm'...
Generated 461 translation(s) (461 finished and 0 unfinished)
/usr/lib/qt5/bin/lrelease -compress -nounfinished -removeidentical ../translations/bittube-core_sv.ts -qm /home/zcopley/bittube-wallet-gui/build/translations/bittube-core_sv.qm
Updating '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_sv.qm'...
Removing translations equal to source text in '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_sv.qm'...
Generated 468 translation(s) (468 finished and 0 unfinished)
/usr/lib/qt5/bin/lrelease -compress -nounfinished -removeidentical ../translations/bittube-core_tr.ts -qm /home/zcopley/bittube-wallet-gui/build/translations/bittube-core_tr.qm
Updating '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_tr.qm'...
Removing translations equal to source text in '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_tr.qm'...
Generated 472 translation(s) (472 finished and 0 unfinished)
/usr/lib/qt5/bin/lrelease -compress -nounfinished -removeidentical ../translations/bittube-core_ua.ts -qm /home/zcopley/bittube-wallet-gui/build/translations/bittube-core_ua.qm
Updating '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_ua.qm'...
Removing translations equal to source text in '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_ua.qm'...
Generated 369 translation(s) (369 finished and 0 unfinished)
Ignored 114 untranslated source text(s)
/usr/lib/qt5/bin/lrelease -compress -nounfinished -removeidentical ../translations/bittube-core_zh-cn.ts -qm /home/zcopley/bittube-wallet-gui/build/translations/bittube-core_zh-cn.qm
Updating '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_zh-cn.qm'...
Removing translations equal to source text in '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_zh-cn.qm'...
Generated 478 translation(s) (478 finished and 0 unfinished)
/usr/lib/qt5/bin/lrelease -compress -nounfinished -removeidentical ../translations/bittube-core_zh-tw.ts -qm /home/zcopley/bittube-wallet-gui/build/translations/bittube-core_zh-tw.qm
Updating '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_zh-tw.qm'...
Removing translations equal to source text in '/home/zcopley/bittube-wallet-gui/build/translations/bittube-core_zh-tw.qm'...
Generated 481 translation(s) (481 finished and 0 unfinished)
/usr/lib/qt5/bin/rcc -name translations translations/translations.qrc -o qrc_translations.cpp
g++ -c -pipe -fPIC -fstack-protector -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Wformat -Wformat-security -fstack-protector -fstack-protector-strong -O2 -std=gnu++11 -pthread -Wall -W -D_REENTRANT -fPIC -DQT_NO_DEBUG -DQT_QUICK_LIB -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../bittube-wallet-gui -I. -I../bittube/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../bittube/src -isystem /usr/include/PCSC -isystem /usr/include/x86_64-linux-gnu/qt5 -isystem /usr/include/x86_64-linux-gnu/qt5/QtQuick -isystem /usr/include/x86_64-linux-gnu/qt5/QtWidgets -isystem /usr/include/x86_64-linux-gnu/qt5/QtGui -isystem /usr/include/x86_64-linux-gnu/qt5/QtQml -isystem /usr/include/x86_64-linux-gnu/qt5/QtNetwork -isystem /usr/include/x86_64-linux-gnu/qt5/QtCore -I. -isystem /usr/include/libdrm -I/usr/lib/x86_64-linux-gnu/qt5/mkspecs/linux-g++ -o qrc_translations.o qrc_translations.cpp
/usr/lib/qt5/bin/rcc -name qml ../qml.qrc -o qrc_qml.cpp
g++ -c -pipe -fPIC -fstack-protector -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Wformat -Wformat-security -fstack-protector -fstack-protector-strong -O2 -std=gnu++11 -pthread -Wall -W -D_REENTRANT -fPIC -DQT_NO_DEBUG -DQT_QUICK_LIB -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I../../bittube-wallet-gui -I. -I../bittube/include -I../src/libwalletqt -I../src/QR-Code-generator -I../src -I../bittube/src -isystem /usr/include/PCSC -isystem /usr/include/x86_64-linux-gnu/qt5 -isystem /usr/include/x86_64-linux-gnu/qt5/QtQuick -isystem /usr/include/x86_64-linux-gnu/qt5/QtWidgets -isystem /usr/include/x86_64-linux-gnu/qt5/QtGui -isystem /usr/include/x86_64-linux-gnu/qt5/QtQml -isystem /usr/include/x86_64-linux-gnu/qt5/QtNetwork -isystem /usr/include/x86_64-linux-gnu/qt5/QtCore -I. -isystem /usr/include/libdrm -I/usr/lib/x86_64-linux-gnu/qt5/mkspecs/linux-g++ -o qrc_qml.o qrc_qml.cpp
g++ -fstack-protector -pie -Wl,-z,relro -Wl,-z,now -Wl,-z,noexecstack -Wl,-O1 -o release/bin/bittube-wallet-gui main.o filter.o clipboardAdapter.o oscursor.o WalletManager.o Wallet.o PendingTransaction.o TransactionHistory.o TransactionInfo.o QRCodeImageProvider.o oshelper.o TranslationManager.o TransactionHistoryModel.o TransactionHistorySortFilterModel.o BitBuffer.o QrCode.o QrSegment.o AddressBookModel.o AddressBook.o SubaddressModel.o Subaddress.o zxcvbn.o UnsignedTransaction.o httpservice.o minermanager.o Logger.o MainApp.o DaemonManager.o qrc_translations.o qrc_qml.o moc_filter.o moc_clipboardAdapter.o moc_oscursor.o moc_WalletManager.o moc_Wallet.o moc_PendingTransaction.o moc_TransactionHistory.o moc_TransactionInfo.o moc_Transfer.o moc_NetworkType.o moc_oshelper.o moc_TranslationManager.o moc_TransactionHistoryModel.o moc_TransactionHistorySortFilterModel.o moc_AddressBookModel.o moc_AddressBook.o moc_SubaddressModel.o moc_Subaddress.o moc_UnsignedTransaction.o moc_httpservice.o moc_minermanager.o moc_MainApp.o moc_DaemonManager.o -L/home/zcopley/bittube-wallet-gui/bittube/lib -lwallet_merged -lepee -lunbound -leasylogging -ldl -lboost_serialization -lboost_thread -lboost_system -lboost_date_time -lboost_filesystem -lboost_regex -lboost_chrono -lboost_program_options -lssl -llmdb -lcrypto -Wl,-Bdynamic -lpcsclite -lQt5Quick -lQt5Widgets -lQt5Gui -lQt5Qml -lQt5Network -lQt5Core -lGL -lpthread
/usr/bin/x86_64-linux-gnu-ld: cannot find -lwallet_merged
/usr/bin/x86_64-linux-gnu-ld: cannot find -lepee
/usr/bin/x86_64-linux-gnu-ld: cannot find -leasylogging
/usr/bin/x86_64-linux-gnu-ld: cannot find -llmdb
collect2: error: ld returned 1 exit status
Makefile:307: recipe for target 'release/bin/bittube-wallet-gui' failed

macOS Dyld Error Message: Symbol not found: ____chkstk_darwin

I get the following crash error when I try to run the bittube gui wallet on macOS 10.13.6 on early 2011 MacBook Pro.

Process:               bittube-wallet-gui [4814]
Path:                  /Applications/bittube-wallet-gui.app/Contents/MacOS/bittube-wallet-gui
Identifier:            org.ipbc-dev.bittube-wallet-gui
Version:               3.1.0.1 (3.1.0.1)
Code Type:             X86-64 (Native)
Parent Process:        ??? [1]
Responsible:           bittube-wallet-gui [4814]
User ID:               501

Date/Time:             2020-08-12 10:32:40.054 -0700
OS Version:            Mac OS X 10.13.6 (17G14019)
Report Version:        12
Anonymous UUID:        D92A76BF-2D14-3704-C85F-1B419627BC41

Sleep/Wake UUID:       7A06CA06-EE6D-44CB-92D4-3C0433EFADC6

Time Awake Since Boot: 17000 seconds
Time Since Wake:       1300 seconds

System Integrity Protection: disabled

Crashed Thread:        0

Exception Type:        EXC_CRASH (SIGABRT)
Exception Codes:       0x0000000000000000, 0x0000000000000000
Exception Note:        EXC_CORPSE_NOTIFY

Termination Reason:    DYLD, [0x4] Symbol missing

Application Specific Information:
dyld: launch, loading dependent libraries

Dyld Error Message:
  Symbol not found: ____chkstk_darwin
  Referenced from: /Applications/bittube-wallet-gui.app/Contents/MacOS/bittube-wallet-gui
  Expected in: /usr/lib/libSystem.B.dylib
 in /Applications/bittube-wallet-gui.app/Contents/MacOS/bittube-wallet-gui

Binary Images:
       0x10c6f6000 -        0x10d72dfc7 +org.ipbc-dev.bittube-wallet-gui (3.1.0.1 - 3.1.0.1) <7C1A8FDB-693C-3FB2-BB8D-5C3602D92B40> /Applications/bittube-wallet-gui.app/Contents/MacOS/bittube-wallet-gui
       0x10de11000 -        0x10de32fff +libboost_serialization.dylib (0) <981B972E-0413-3598-B9CC-1AF8B699D1A3> /Applications/bittube-wallet-gui.app/Contents/Frameworks/libboost_serialization.dylib
       0x10de4c000 -        0x10de59ff3 +libboost_thread-mt.dylib (0) <694E5E5D-420B-35FD-A3E6-76223EE4DB28> /Applications/bittube-wallet-gui.app/Contents/Frameworks/libboost_thread-mt.dylib
       0x10de63000 -        0x10de74ff7 +libboost_filesystem.dylib (0) <F7A4E10E-552F-3A49-8F96-DF5D3C1CA4BA> /Applications/bittube-wallet-gui.app/Contents/Frameworks/libboost_filesystem.dylib
       0x10de7f000 -        0x10df0aff3 +libboost_regex.dylib (0) <5F01C1C1-1101-3821-9D74-3667FD896F3C> /Applications/bittube-wallet-gui.app/Contents/Frameworks/libboost_regex.dylib
       0x10df1c000 -        0x10df20fff +libboost_chrono.dylib (0) <7F7A0E4B-BA0D-3E5A-9C3C-9BBAEA279666> /Applications/bittube-wallet-gui.app/Contents/Frameworks/libboost_chrono.dylib
       0x10df28000 -        0x10df5cff7 +libboost_program_options.dylib (0) <83688944-5156-34AA-87F9-9FF8D1AEFA79> /Applications/bittube-wallet-gui.app/Contents/Frameworks/libboost_program_options.dylib
       0x10df7f000 -        0x10df81fff +libhidapi.0.dylib (0) <A03F881B-3B32-3C82-8688-21130093E522> /Applications/bittube-wallet-gui.app/Contents/Frameworks/libhidapi.0.dylib
       0x10df88000 -        0x10dfd7fff +libssl.1.1.dylib (0) <CB98AFA7-D014-3D75-80FD-84EEB607EC1A> /Applications/bittube-wallet-gui.app/Contents/Frameworks/libssl.1.1.dylib
       0x10e000000 -        0x10e03fffb +libsodium.23.dylib (0) <D8777AB1-B4BA-324E-8E40-FEF56A1E7955> /Applications/bittube-wallet-gui.app/Contents/Frameworks/libsodium.23.dylib
       0x10e053000 -        0x10e1edc2f +libcrypto.1.1.dylib (0) <9D836867-F469-3417-97DC-31B074FCB6F4> /Applications/bittube-wallet-gui.app/Contents/Frameworks/libcrypto.1.1.dylib
       0x10e270000 -        0x10e3b0ff3 +libprotobuf.23.dylib (0) <21CF90D6-B618-34C9-A9FA-E529485B9BA5> /Applications/bittube-wallet-gui.app/Contents/Frameworks/libprotobuf.23.dylib
       0x10e462000 -        0x10e8abffb +org.qt-project.QtWidgets (5.15 - 5.15.0) <9BA9A047-55C0-3D36-9126-4E3C7E68AE4D> /Applications/bittube-wallet-gui.app/Contents/Frameworks/QtWidgets.framework/Versions/5/QtWidgets
       0x10ea11000 -        0x10eb21ff3 +org.qt-project.QtNetwork (5.15 - 5.15.0) <DB297D85-1B62-3B2E-87B5-960A3E3138FD> /Applications/bittube-wallet-gui.app/Contents/Frameworks/QtNetwork.framework/Versions/5/QtNetwork
       0x10eb6c000 -        0x10ebc4ffb +org.qt-project.QtQmlModels (5.15 - 5.15.0) <A9F09A9A-F694-3E9E-82E5-039AA18D4E21> /Applications/bittube-wallet-gui.app/Contents/Frameworks/QtQmlModels.framework/Versions/5/QtQmlModels
       0x10ebe9000 -        0x10ec33adf  dyld (551.5) <CB9BFB56-4511-36F1-A546-891FF770C01C> /usr/lib/dyld
       0x10ec87000 -        0x10efc7ff3 +org.qt-project.QtQuick (5.15 - 5.15.0) <A1C90409-B9B8-3B50-85B6-D2870FD1CCBB> /Applications/bittube-wallet-gui.app/Contents/Frameworks/QtQuick.framework/Versions/5/QtQuick
       0x10f0f9000 -        0x10f5e6fff +org.qt-project.QtGui (5.15 - 5.15.0) <7FBC94E9-9374-30A0-B0C0-0649760BF0C6> /Applications/bittube-wallet-gui.app/Contents/Frameworks/QtGui.framework/Versions/5/QtGui
       0x10f702000 -        0x10fa61fff +org.qt-project.QtQml (5.15 - 5.15.0) <D243750A-FD3C-34A1-9D47-DBFC99283726> /Applications/bittube-wallet-gui.app/Contents/Frameworks/QtQml.framework/Versions/5/QtQml
       0x10fb0b000 -        0x11005b957 +org.qt-project.QtCore (5.15 - 5.15.0) <6D3CABA8-8EC9-35D8-BAEA-8D134CE032CB> /Applications/bittube-wallet-gui.app/Contents/Frameworks/QtCore.framework/Versions/5/QtCore
       0x110123000 -        0x111c38fff +libicudata.67.dylib (0) <4D04E1B3-5271-36F3-9ADD-23C7B9E0D708> /Applications/bittube-wallet-gui.app/Contents/Frameworks/libicudata.67.dylib
       0x111c3a000 -        0x111daefff +libicui18n.67.dylib (0) <418F7DFA-C746-380F-BD2B-2D36F26BC5AE> /Applications/bittube-wallet-gui.app/Contents/Frameworks/libicui18n.67.dylib
       0x111e6a000 -        0x111f81fff +libicuuc.67.dylib (0) <975157FC-5816-3E99-80BA-C11E8D7D8C3E> /Applications/bittube-wallet-gui.app/Contents/Frameworks/libicuuc.67.dylib
    0x7fff50919000 -     0x7fff5091dffb  com.apple.agl (3.3.1 - AGL-3.3.1) <60370135-B4DB-3BF6-B184-61B04BD802B0> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x7fff50cbe000 -     0x7fff50cbefff  com.apple.Accelerate (1.11 - Accelerate 1.11) <2EF00EFE-06E8-3082-85C3-2988B422A19D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x7fff50cd7000 -     0x7fff51425ffb  com.apple.vImage (8.1 - ???) <56C275C1-459F-37CD-BF29-2E6D81C29E53> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
    0x7fff51426000 -     0x7fff515c6ff3  libBLAS.dylib (1211.50.2) <93259222-2D94-333D-A1EB-09C6FC4A64B4> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
    0x7fff515c7000 -     0x7fff51601fef  libBNNS.dylib (38.1) <0AAE0109-71D5-3B26-8401-3E62DDF97624> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBNNS.dylib
    0x7fff51602000 -     0x7fff519dbff7  libLAPACK.dylib (1211.50.2) <70781D0B-AEAD-33EB-9900-10DC30F37D61> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
    0x7fff519dc000 -     0x7fff519f2ff7  libLinearAlgebra.dylib (1211.50.2) <FB5A35EA-D636-3D69-AB53-B67E1EB8134C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib
    0x7fff519f3000 -     0x7fff519f8ff3  libQuadrature.dylib (3) <E936BDAF-8492-34D9-8C5C-AFBFCDAD8318> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libQuadrature.dylib
    0x7fff519f9000 -     0x7fff51a79fff  libSparse.dylib (79.50.2) <0DC25CDD-F8C1-3D6E-B472-8B060708424F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparse.dylib
    0x7fff51a7a000 -     0x7fff51a8cff7  libSparseBLAS.dylib (1211.50.2) <994A7D7E-FA3B-3943-A59C-8150B9AF86BE> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparseBLAS.dylib
    0x7fff51a8d000 -     0x7fff51c00fe7  libvDSP.dylib (622.50.5) <4BF310F4-31A3-3DA5-80E4-7F8014AD380B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
    0x7fff51c01000 -     0x7fff51cb7fef  libvMisc.dylib (622.50.5) <88143A88-4FDE-35A1-85FE-54FF0C2A9E43> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
    0x7fff51cb8000 -     0x7fff51cb8fff  com.apple.Accelerate.vecLib (3.11 - vecLib 3.11) <880DEF40-389A-3F56-ACA1-B62A5BC57E59> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
    0x7fff51fac000 -     0x7fff52e0afff  com.apple.AppKit (6.9 - 1561.61.100) <B3CADDD5-C978-37C6-BC72-ADE2DCA97057> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x7fff52e5c000 -     0x7fff52e5cfff  com.apple.ApplicationServices (48 - 50) <2B5B76E7-0AB2-31F9-BE58-B963BF1EC2E8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
    0x7fff52e5d000 -     0x7fff52ec3fff  com.apple.ApplicationServices.ATS (377 - 445.5) <60176327-F757-308E-B61A-D43394E87CC5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
    0x7fff52f5c000 -     0x7fff5307eff7  libFontParser.dylib (222.1.9) <FFF2AC1A-D4D2-3AD3-BFF2-F3649ECB02AC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x7fff5307f000 -     0x7fff530caff7  libFontRegistry.dylib (221.6) <30C6D1DE-C0E3-3447-A0EF-829443D95F0E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x7fff5320c000 -     0x7fff53210ff3  com.apple.ColorSyncLegacy (4.13.0 - 1) <04764FB2-22D8-36F0-9647-2D21562E28D5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSyncLegacy.framework/Versions/A/ColorSyncLegacy
    0x7fff532b0000 -     0x7fff53302ffb  com.apple.HIServices (1.22 - 625) <3C059A55-1409-373E-BF0B-C3299AFABDCF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
    0x7fff53303000 -     0x7fff53311fff  com.apple.LangAnalysis (1.7.0 - 1.7.0) <8BB267F4-D5AA-3D35-8269-1A3CEA054ACD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
    0x7fff53312000 -     0x7fff5335efff  com.apple.print.framework.PrintCore (13.4 - 503.2) <2EA98448-9D6A-3912-9933-F7703CB01B6E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
    0x7fff5335f000 -     0x7fff53399fff  com.apple.QD (3.12 - 404.2) <525E9518-DFF3-3D8D-BD48-E0D63EEDBD16> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
    0x7fff5339a000 -     0x7fff533a6fff  com.apple.speech.synthesis.framework (7.8.1 - 7.8.1) <CD09019C-569B-3A56-B84C-26F2A6223455> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x7fff533a7000 -     0x7fff53635ff7  com.apple.audio.toolbox.AudioToolbox (1.14 - 1.14) <C7BE1645-BE23-3427-8650-1CEFDAF86710> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x7fff53637000 -     0x7fff53637fff  com.apple.audio.units.AudioUnit (1.14 - 1.14) <294802B9-E24D-34EB-973F-6D2B8E2E86CB> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x7fff5395a000 -     0x7fff53cf7fff  com.apple.CFNetwork (902.6 - 902.6) <46168F79-CCFA-349A-8508-B8CBCE27D440> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x7fff53d0c000 -     0x7fff53d0cfff  com.apple.Carbon (158 - 158) <F8B370D9-2103-3276-821D-ACC756167F86> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x7fff53d0d000 -     0x7fff53d10ffb  com.apple.CommonPanels (1.2.6 - 98) <075486A5-8E39-3F72-BED7-752517379C55> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels
    0x7fff53d11000 -     0x7fff54016fff  com.apple.HIToolbox (2.1.1 - 911.10) <8D2EBE85-9AF0-38BC-ACD3-1ED978643907> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
    0x7fff54017000 -     0x7fff5401affb  com.apple.help (1.3.8 - 66) <7F210C1C-D7D3-3C97-A2E4-D3CC35F91807> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help
    0x7fff5401b000 -     0x7fff54020fff  com.apple.ImageCapture (9.0 - 9.0) <3993E094-AB86-3B22-BC18-4550F23854FF> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture
    0x7fff54021000 -     0x7fff540b6ffb  com.apple.ink.framework (10.9 - 221) <83976BB8-A423-3AA5-8221-6EB04B3DEF0A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink
    0x7fff540b7000 -     0x7fff540d1ff7  com.apple.openscripting (1.7 - 174) <C282DFBB-4BF2-3222-87E0-0B560D5B4B2F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting
    0x7fff540f2000 -     0x7fff540f3fff  com.apple.print.framework.Print (12 - 267) <DFC4CE94-F6E6-3DFA-AB88-A13E4C5A7701> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print
    0x7fff540f4000 -     0x7fff540f6ff7  com.apple.securityhi (9.0 - 55006) <1AB48F32-D1CB-3657-A30C-40A7E718A71D> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI
    0x7fff540f7000 -     0x7fff540fdfff  com.apple.speech.recognition.framework (6.0.3 - 6.0.3) <2A07BB54-438B-34C9-8061-45403E197ACA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
    0x7fff5422c000 -     0x7fff542e5fff  com.apple.ColorSync (4.13.0 - 3325) <EAD2D314-E810-33FB-B105-BD30ABB912AD> /System/Library/Frameworks/ColorSync.framework/Versions/A/ColorSync
    0x7fff54472000 -     0x7fff54505ff7  com.apple.audio.CoreAudio (4.3.0 - 4.3.0) <AF2B41CC-DD7A-34EB-A842-00DC3B8F2E9F> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x7fff5456c000 -     0x7fff54595ffb  com.apple.CoreBluetooth (1.0 - 1) <ED48840B-A80A-32C1-8E4B-DEB7A7CD3C1A> /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth
    0x7fff54596000 -     0x7fff548faff3  com.apple.CoreData (120 - 851) <283AF401-07BC-3D50-9B8C-7990E64F66BA> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x7fff548fb000 -     0x7fff549defff  com.apple.CoreDisplay (99.14 - 99.14) <9B2B211D-EC0A-3569-BB37-887768CD6105> /System/Library/Frameworks/CoreDisplay.framework/Versions/A/CoreDisplay
    0x7fff549df000 -     0x7fff54e7bfff  com.apple.CoreFoundation (6.9 - 1455.300) <D9D5D50D-5DA3-34B6-8077-DD24315A4B1E> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff54e7d000 -     0x7fff554acff7  com.apple.CoreGraphics (2.0 - 1161.21.5) <C8BAA8C0-3DF0-37C3-8FB4-AB90BA8D4D56> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
    0x7fff554ae000 -     0x7fff5579dfff  com.apple.CoreImage (13.0.0 - 579.5) <B2B60A80-2E10-3EDF-920C-94288E55AE25> /System/Library/Frameworks/CoreImage.framework/Versions/A/CoreImage
    0x7fff55b72000 -     0x7fff55b72fff  com.apple.CoreServices (822.37 - 822.37) <CE816EF2-2B89-3F54-A5C6-D3080B1EFB00> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x7fff55b73000 -     0x7fff55be7ffb  com.apple.AE (735.2 - 735.2) <0938A72B-6A4A-36F1-95B3-5EF6B915CEEE> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
    0x7fff55be8000 -     0x7fff55ebffff  com.apple.CoreServices.CarbonCore (1178.4.2 - 1178.4.2) <4692EE3A-11FE-31FD-AF5B-30F892E87A05> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
    0x7fff55ec0000 -     0x7fff55ef4fff  com.apple.DictionaryServices (1.2 - 284.2) <F1F3EFAE-2562-394D-8FB3-BE22F16CD75A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
    0x7fff55ef5000 -     0x7fff55efdffb  com.apple.CoreServices.FSEvents (1239.50.2 - 1239.50.2) <FE465894-4235-3CE2-9A97-32D6C6C7D9AD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents
    0x7fff55efe000 -     0x7fff560bcff7  com.apple.LaunchServices (822.37 - 822.37) <0DB4679F-AE39-3BF3-B39B-549322E355AF> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
    0x7fff560bd000 -     0x7fff5616dfff  com.apple.Metadata (10.7.0 - 1191.8) <F3BD3FD7-208A-31E9-85CD-6E607DDAFEF0> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
    0x7fff5616e000 -     0x7fff561cefff  com.apple.CoreServices.OSServices (822.37 - 822.37) <564DDE70-0250-346B-B5CC-4AFAC11A7373> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
    0x7fff561cf000 -     0x7fff5623dfff  com.apple.SearchKit (1.4.0 - 1.4.0) <97DD9E7D-3567-382B-ACF7-CE0E4FE78D36> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
    0x7fff5623e000 -     0x7fff56262ffb  com.apple.coreservices.SharedFileList (71.21 - 71.21) <88991F51-0A75-34FF-8C91-ED0F3C270B7B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList
    0x7fff56503000 -     0x7fff56653fff  com.apple.CoreText (352.0 - 578.23) <10DAF601-85A8-3F9C-8B0B-69DC16B95E47> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x7fff56654000 -     0x7fff5668efff  com.apple.CoreVideo (1.8 - 0.0) <0DD4FFDF-E1F1-39D1-8246-5D0D9869F1EA> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x7fff5668f000 -     0x7fff5671aff3  com.apple.framework.CoreWLAN (13.0 - 1350.2) <EC145FBD-F638-38B8-BE94-F892A2F02550> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
    0x7fff56995000 -     0x7fff5699afff  com.apple.DiskArbitration (2.7 - 2.7) <51DC4AED-6F0C-321F-93E3-20EA4341B768> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x7fff56b5b000 -     0x7fff56f22ffb  com.apple.Foundation (6.9 - 1455.300) <0479E072-1DD0-3881-A9A2-EDAD3EE58C23> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x7fff56f93000 -     0x7fff56fc3ff3  com.apple.GSS (4.0 - 2.0) <7E83A21E-4F90-38F3-9FD3-FAC0E0143243> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x7fff570d5000 -     0x7fff571d9ffb  com.apple.Bluetooth (6.0.7 - 6.0.7f22) <08E33A6B-16A7-3E4E-82C9-E1E5A84300D0> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x7fff57239000 -     0x7fff572d4fff  com.apple.framework.IOKit (2.0.2 - 1445.71.6) <4B5C715C-6A49-366B-9080-ABADE6A3B3BD> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x7fff572d6000 -     0x7fff572ddfff  com.apple.IOSurface (211.15 - 211.15) <08DA3232-805F-304B-80DD-C86B49CC4AAD> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x7fff57334000 -     0x7fff574b2fff  com.apple.ImageIO.framework (3.3.0 - 1739.3.7) <5F5133CC-A33E-3B73-A853-9D9F287B9588> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x7fff574b3000 -     0x7fff574b7ffb  libGIF.dylib (1739.3.7) <362B149F-0B71-3EAB-AB86-ECCB070461CC> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x7fff574b8000 -     0x7fff5759fff7  libJP2.dylib (1739.3.7) <4866E322-62B9-3824-810A-3D470DD015B8> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x7fff575a0000 -     0x7fff575c3fff  libJPEG.dylib (1739.3.7) <8FB432E4-2F14-3F08-BFA1-EA481EFBE38A> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x7fff578b4000 -     0x7fff578daff3  libPng.dylib (1739.3.7) <133CDF23-39D9-3F1B-BAA1-99B2108E0624> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x7fff578db000 -     0x7fff578ddff3  libRadiance.dylib (1739.3.7) <B6154159-17E7-328D-A066-1690589822DA> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x7fff578de000 -     0x7fff5792bffb  libTIFF.dylib (1739.3.7) <3F7F074A-11B1-30CA-BBF7-399A30E289BA> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x7fff587e5000 -     0x7fff587feff7  com.apple.Kerberos (3.0 - 1) <C7CDC1E0-011B-3220-847D-1AC3DA6D5522> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x7fff591e0000 -     0x7fff59261fff  com.apple.Metal (125.30 - 125.30) <67EDA241-80B1-3C67-BB2B-FF83E49FEF8D> /System/Library/Frameworks/Metal.framework/Versions/A/Metal
    0x7fff5927e000 -     0x7fff59299fff  com.apple.MetalPerformanceShaders.MPSCore (1.0 - 1) <8DED0F0C-4A10-36A3-A3E2-7D3CF429ACE1> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSCore.framework/Versions/A/MPSCore
    0x7fff5929a000 -     0x7fff59309fef  com.apple.MetalPerformanceShaders.MPSImage (1.0 - 1) <48F4A97F-143A-3918-AB92-6733E258E25A> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSImage.framework/Versions/A/MPSImage
    0x7fff5930a000 -     0x7fff5932efff  com.apple.MetalPerformanceShaders.MPSMatrix (1.0 - 1) <CD443ADC-07FE-3603-B0C9-60C2AF3616FF> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSMatrix.framework/Versions/A/MPSMatrix
    0x7fff5932f000 -     0x7fff59416ff7  com.apple.MetalPerformanceShaders.MPSNeuralNetwork (1.0 - 1) <40EB0BAE-6DDE-3334-A28C-529AE4C6716A> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNeuralNetwork.framework/Versions/A/MPSNeuralNetwork
    0x7fff59417000 -     0x7fff59417ff7  com.apple.MetalPerformanceShaders.MetalPerformanceShaders (1.0 - 1) <A111E862-43E5-3247-9E98-0A40DC34AD9B> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/MetalPerformanceShaders
    0x7fff5a416000 -     0x7fff5a422ffb  com.apple.NetFS (6.0 - 4.0) <02E09301-324F-3542-875D-B87B144635C8> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x7fff5d214000 -     0x7fff5d26eff7  com.apple.opencl (2.8.24 - 2.8.24) <429B5283-276D-372D-BB0E-EEBE1408C393> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x7fff5d26f000 -     0x7fff5d28bffb  com.apple.CFOpenDirectory (10.13 - 207.50.1) <E9AD4934-5DE3-3DD0-9D7B-9D288D829F15> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
    0x7fff5d28c000 -     0x7fff5d297fff  com.apple.OpenDirectory (10.13 - 207.50.1) <8B54C486-14C9-3FEF-97B8-F4D6F59F75CF> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x7fff5e416000 -     0x7fff5e418fff  libCVMSPluginSupport.dylib (16.7.4) <3E26CF2B-5074-3321-AD9E-6A667D61AA35> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib
    0x7fff5e419000 -     0x7fff5e41effb  libCoreFSCache.dylib (162.12) <D12E1D0E-C0E5-329E-99B4-AB152C9ABBE3> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache.dylib
    0x7fff5e41f000 -     0x7fff5e423fff  libCoreVMClient.dylib (162.12) <39951906-8566-3F9D-9EA8-EBD6084DCF73> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
    0x7fff5e424000 -     0x7fff5e42dff3  libGFXShared.dylib (16.7.4) <81A7875B-103D-3C82-B25C-DE24E57E5C8B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
    0x7fff5e42e000 -     0x7fff5e439fff  libGL.dylib (16.7.4) <2BB333D3-5C61-33DF-8545-06DF2D08B83D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x7fff5e43a000 -     0x7fff5e475fe7  libGLImage.dylib (16.7.4) <4DA003CE-0B74-3FE4-808C-B2FBCE517EB4> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
    0x7fff5e5e4000 -     0x7fff5e622ffb  libGLU.dylib (16.7.4) <BCB09CD8-EB0E-38FA-8B5A-9E29532EE364> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x7fff5ef9a000 -     0x7fff5efa9ff3  com.apple.opengl (16.7.4 - 16.7.4) <77A788F3-8F0C-305C-AEB9-FF258676C599> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x7fff5fdfd000 -     0x7fff60049ff7  com.apple.QuartzCore (1.11 - 584.64.2) <FD9A3180-479E-3DAC-9CF0-0D214C7E46A7> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x7fff60881000 -     0x7fff60bacfff  com.apple.security (7.0 - 58286.70.19) <E118FC23-2E20-3999-826B-58488049A277> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x7fff60bad000 -     0x7fff60c39ff7  com.apple.securityfoundation (6.0 - 55185.50.5) <3D9AD4EF-439C-3AE1-9332-AD291CF96C64> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
    0x7fff60c6b000 -     0x7fff60c6fffb  com.apple.xpc.ServiceManagement (1.0 - 1) <3FCAF325-40C8-3148-9E49-E555F95B2946> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
    0x7fff61014000 -     0x7fff61084ff3  com.apple.SystemConfiguration (1.17 - 1.17) <41D509AB-AED3-30FF-BB00-615BB5A8AC00> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
    0x7fff63f81000 -     0x7fff64014ff3  com.apple.APFS (1.0 - 1) <70034B32-9347-30FB-9DDE-95061F686613> /System/Library/PrivateFrameworks/APFS.framework/Versions/A/APFS
    0x7fff64c41000 -     0x7fff64c69fff  com.apple.framework.Apple80211 (13.0 - 1370.4) <C296CDDB-0A79-3D6B-898A-0FBA1892F5AC> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x7fff64c6b000 -     0x7fff64c7afef  com.apple.AppleFSCompression (96.60.1 - 1.0) <CBE1A092-CE90-36B9-AAA6-0BE2E7921504> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression
    0x7fff64d79000 -     0x7fff64d84ff7  com.apple.AppleIDAuthSupport (1.0 - 1) <924EA55F-1C87-347F-9212-F79EA2B2C84C> /System/Library/PrivateFrameworks/AppleIDAuthSupport.framework/Versions/A/AppleIDAuthSupport
    0x7fff64dbe000 -     0x7fff64e06ff3  com.apple.AppleJPEG (1.0 - 1) <15558577-08E3-3087-86A9-8B6247978BCE> /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG
    0x7fff64e41000 -     0x7fff64e69fff  com.apple.applesauce (1.0 - ???) <9CE4CAE2-30B9-3DF6-9BC0-33D532D7B937> /System/Library/PrivateFrameworks/AppleSauce.framework/Versions/A/AppleSauce
    0x7fff652bc000 -     0x7fff65555ffb  com.apple.AuthKit (1.0 - 1) <C3087797-E472-300E-8B4A-448857ACE8E7> /System/Library/PrivateFrameworks/AuthKit.framework/Versions/A/AuthKit
    0x7fff6568c000 -     0x7fff65693ff7  com.apple.coreservices.BackgroundTaskManagement (1.0 - 57.1) <B2A1EEDF-490A-38E2-A896-41057C0417BF> /System/Library/PrivateFrameworks/BackgroundTaskManagement.framework/Versions/A/BackgroundTaskManagement
    0x7fff65694000 -     0x7fff6571bff7  com.apple.backup.framework (1.9.6 - 1.9.6) <0A54D219-E71B-3BC6-8DFC-11ED47E431BE> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x7fff670d7000 -     0x7fff670e0ff3  com.apple.CommonAuth (4.0 - 2.0) <21AF4AC2-E650-35F9-AB33-3EBA2769FBC0> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x7fff67bf4000 -     0x7fff67c04ff7  com.apple.CoreEmoji (1.0 - 69.3) <DCCF04BB-DA33-3DC0-B7C2-1D34870C0C0A> /System/Library/PrivateFrameworks/CoreEmoji.framework/Versions/A/CoreEmoji
    0x7fff68398000 -     0x7fff683a0ff3  com.apple.CorePhoneNumbers (1.0 - 1) <3B388768-5CDB-341A-BCE2-4047EAD009EA> /System/Library/PrivateFrameworks/CorePhoneNumbers.framework/Versions/A/CorePhoneNumbers
    0x7fff688d6000 -     0x7fff68967fff  com.apple.CoreSymbolication (9.3 - 64026.2) <30652FA5-C731-3A22-864D-DF6D9C77CD4C> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication
    0x7fff689ea000 -     0x7fff68b1ffff  com.apple.coreui (2.1 - 494.1) <5B4F3E9C-A4EF-3908-A035-59B8631C3685> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x7fff68b20000 -     0x7fff68c51fff  com.apple.CoreUtils (5.6 - 560.11) <2C5A0610-1F08-3603-8692-EE03E62EE622> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
    0x7fff68ca6000 -     0x7fff68d0afff  com.apple.framework.CoreWiFi (13.0 - 1350.2) <500CC54F-A6CB-3D36-9BB1-C9C9F6A6E414> /System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi
    0x7fff68d0b000 -     0x7fff68d1bff7  com.apple.CrashReporterSupport (10.13 - 1) <1ADEC140-4838-3976-A14B-6268C5251481> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport
    0x7fff68d9a000 -     0x7fff68da9ff7  com.apple.framework.DFRFoundation (1.0 - 191.7) <F7AB1B29-A4B0-3938-AFDC-DAA204929404> /System/Library/PrivateFrameworks/DFRFoundation.framework/Versions/A/DFRFoundation
    0x7fff68dac000 -     0x7fff68db0ffb  com.apple.DSExternalDisplay (3.1 - 380) <13AA3B17-E649-3B7B-B09D-9AE7C4A60887> /System/Library/PrivateFrameworks/DSExternalDisplay.framework/Versions/A/DSExternalDisplay
    0x7fff68e32000 -     0x7fff68ea8fff  com.apple.datadetectorscore (7.0 - 590.3) <E645FBF0-B47D-3394-84DF-792B85E94CB3> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore
    0x7fff68ef6000 -     0x7fff68f36ff7  com.apple.DebugSymbols (181.0 - 181.0) <702DB951-F5A6-3155-9D84-BBA9A4B4E1BD> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
    0x7fff68f37000 -     0x7fff69066fff  com.apple.desktopservices (1.12.5 - 1.12.5) <96BB57E2-3359-3920-AA7C-BF03C2225485> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
    0x7fff69e7b000 -     0x7fff6a2a9fff  com.apple.vision.FaceCore (3.3.2 - 3.3.2) <06065DA3-4091-3682-A308-BF3F2E3E4AF8> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
    0x7fff6d571000 -     0x7fff6d576fff  com.apple.GPUWrangler (3.20.18 - 3.20.18) <B54A9063-01EC-3D2C-8924-86A1F315DEA2> /System/Library/PrivateFrameworks/GPUWrangler.framework/Versions/A/GPUWrangler
    0x7fff6e2ec000 -     0x7fff6e2fbfff  com.apple.GraphVisualizer (1.0 - 5) <EB42FFAD-2BCA-3DE2-B40E-AFDE6E7FAA4D> /System/Library/PrivateFrameworks/GraphVisualizer.framework/Versions/A/GraphVisualizer
    0x7fff6e37e000 -     0x7fff6e3f2fff  com.apple.Heimdal (4.0 - 2.0) <FF7BC1AE-1BA6-3150-A7CC-B9E0AD5EBE7F> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x7fff6ed05000 -     0x7fff6ed0cff7  com.apple.IOAccelerator (378.28 - 378.28) <F109E4CB-49D9-37FB-974A-8A3E9E8A61DA> /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelerator
    0x7fff6ed10000 -     0x7fff6ed27fff  com.apple.IOPresentment (1.0 - 35.1) <AC89202B-8433-3B62-A7BE-467D1905F6FB> /System/Library/PrivateFrameworks/IOPresentment.framework/Versions/A/IOPresentment
    0x7fff6f0f2000 -     0x7fff6f118ffb  com.apple.IconServices (97.6 - 97.6) <7913A453-8D29-31DC-ADDB-7CEC068C9B86> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices
    0x7fff6f39d000 -     0x7fff6f3b0ff3  com.apple.security.KeychainCircle.KeychainCircle (1.0 - 1) <B999BEF6-F3E7-30EE-9177-FBC8E826659D> /System/Library/PrivateFrameworks/KeychainCircle.framework/Versions/A/KeychainCircle
    0x7fff6f3b1000 -     0x7fff6f4a6ff7  com.apple.LanguageModeling (1.0 - 159.5.3) <FAA236D6-CFB8-37D2-B635-B324E0719E32> /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling
    0x7fff6f4a7000 -     0x7fff6f4e9fff  com.apple.Lexicon-framework (1.0 - 33.5) <F8DD2D09-5CEE-3741-93CF-223FC61FCCA4> /System/Library/PrivateFrameworks/Lexicon.framework/Versions/A/Lexicon
    0x7fff6f4ed000 -     0x7fff6f4f4ff7  com.apple.LinguisticData (1.0 - 238.3) <6F2ED02A-2120-3ABA-8EC1-314E4FFE77F3> /System/Library/PrivateFrameworks/LinguisticData.framework/Versions/A/LinguisticData
    0x7fff70208000 -     0x7fff70271ff7  com.apple.gpusw.MetalTools (1.0 - 1) <F2A47319-0430-3BB5-943E-651A40C127A9> /System/Library/PrivateFrameworks/MetalTools.framework/Versions/A/MetalTools
    0x7fff70401000 -     0x7fff7041afff  com.apple.MobileKeyBag (2.0 - 1.0) <9EA31672-3B83-3ABF-B2D5-8584E159051E> /System/Library/PrivateFrameworks/MobileKeyBag.framework/Versions/A/MobileKeyBag
    0x7fff704a6000 -     0x7fff704d0ffb  com.apple.MultitouchSupport.framework (1614.1 - 1614.1) <A376F2FB-64AE-3B35-88B0-7D2BB4D1CB7C> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport
    0x7fff70737000 -     0x7fff70742fff  com.apple.NetAuth (6.2 - 6.2) <85C5D94D-C67E-36DC-B0EA-02F53AC4FCD3> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x7fff71fde000 -     0x7fff71feeffb  com.apple.PerformanceAnalysis (1.194 - 194) <B6934994-BD69-36F9-914E-6BBDCD797612> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis
    0x7fff73dad000 -     0x7fff73dcbfff  com.apple.ProtocolBuffer (1 - 260) <195906B1-1DB1-3AD2-B2F7-87B867C27F40> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolBuffer
    0x7fff73fa6000 -     0x7fff73fc9ffb  com.apple.RemoteViewServices (2.0 - 125) <695CBF89-C15C-3E4C-8045-B46DCA64E3FB> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices
    0x7fff758ef000 -     0x7fff75a04ff7  com.apple.Sharing (1050.22.9 - 1050.22.9) <CAB71093-B187-363E-BBAA-B0D23D7642AA> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
    0x7fff75a2f000 -     0x7fff75a30ff7  com.apple.performance.SignpostNotification (1.2.6 - 2.6) <E77879A4-B040-3BE0-86F5-98173A4100AD> /System/Library/PrivateFrameworks/SignpostNotification.framework/Versions/A/SignpostNotification
    0x7fff7678e000 -     0x7fff76a2bfff  com.apple.SkyLight (1.600.0 - 312.103.12) <A65B547C-B7CA-3E33-A0C5-58AB436A8467> /System/Library/PrivateFrameworks/SkyLight.framework/Versions/A/SkyLight
    0x7fff771f4000 -     0x7fff77201fff  com.apple.SpeechRecognitionCore (4.6.1 - 4.6.1) <90CDCEAD-5A65-3C35-9370-2B306895E97C> /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/SpeechRecognitionCore
    0x7fff77da7000 -     0x7fff77e30fc7  com.apple.Symbolication (9.3 - 64033) <F576D527-4CB1-34A5-B15E-1130833EEDAB> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
    0x7fff783a1000 -     0x7fff783a9ff7  com.apple.TCC (1.0 - 1) <9D5466C6-A8B6-3C24-A791-6506B81D9998> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x7fff785b6000 -     0x7fff78673ff7  com.apple.TextureIO (3.7 - 3.7) <32C460CD-E93D-3FA5-A4AE-CA648722F5FE> /System/Library/PrivateFrameworks/TextureIO.framework/Versions/A/TextureIO
    0x7fff78724000 -     0x7fff788d4fff  com.apple.UIFoundation (1.0 - 547.9) <D0994333-5EB4-3415-8D18-2A0487AE91E0> /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation
    0x7fff7a050000 -     0x7fff7a052ffb  com.apple.loginsupport (1.0 - 1) <E273A65A-6379-3787-B119-BC6ED94D4A81> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport
    0x7fff7a1b9000 -     0x7fff7a1ecff7  libclosured.dylib (551.5) <112BC241-6626-3848-8DD8-B34B5B6F7ABC> /usr/lib/closure/libclosured.dylib
    0x7fff7a2a6000 -     0x7fff7a2dfff7  libCRFSuite.dylib (41) <14B00FCF-4C67-3736-95B5-76FEA6E4972C> /usr/lib/libCRFSuite.dylib
    0x7fff7a2e0000 -     0x7fff7a2ebfff  libChineseTokenizer.dylib (28) <2237A259-0E59-3DD0-BADC-281C361FAB70> /usr/lib/libChineseTokenizer.dylib
    0x7fff7a37d000 -     0x7fff7a37eff3  libDiagnosticMessagesClient.dylib (104) <3F855622-352B-3EA8-B7C8-94D1DB48C080> /usr/lib/libDiagnosticMessagesClient.dylib
    0x7fff7a3b5000 -     0x7fff7a57fff3  libFosl_dynamic.dylib (17.8) <1A2A9D53-129E-3F7D-AE23-1D6E6D9EA017> /usr/lib/libFosl_dynamic.dylib
    0x7fff7a5b7000 -     0x7fff7a5b7fff  libOpenScriptingUtil.dylib (174) <AC38B2C3-5A37-30EB-A246-CEFABD3DD4E7> /usr/lib/libOpenScriptingUtil.dylib
    0x7fff7a6ee000 -     0x7fff7a6f2ffb  libScreenReader.dylib (562.18.5) <FFB20E40-7669-30F6-8577-B74E18076376> /usr/lib/libScreenReader.dylib
    0x7fff7a6f3000 -     0x7fff7a6f4ffb  libSystem.B.dylib (1252.50.4) <BEE5BC0A-E8F4-323E-AC95-837885EF64DB> /usr/lib/libSystem.B.dylib
    0x7fff7a787000 -     0x7fff7a787fff  libapple_crypto.dylib (109.50.15) <A8DEA8E9-5769-3C78-824D-969A98B94086> /usr/lib/libapple_crypto.dylib
    0x7fff7a788000 -     0x7fff7a79eff7  libapple_nghttp2.dylib (1.24) <24338D88-5D73-3165-9CFB-5A92734C9040> /usr/lib/libapple_nghttp2.dylib
    0x7fff7a79f000 -     0x7fff7a7c9ff3  libarchive.2.dylib (54) <D2B6AD30-18CB-3E3C-ABBF-A0745654350F> /usr/lib/libarchive.2.dylib
    0x7fff7a7ca000 -     0x7fff7a8cdfe7  libate.dylib (1.13.1) <D828353D-3D64-30E3-970F-8D295407610D> /usr/lib/libate.dylib
    0x7fff7a8d1000 -     0x7fff7a8d1ff3  libauto.dylib (187) <92E693DF-D74D-39A0-99AB-8A9F6FFEBA18> /usr/lib/libauto.dylib
    0x7fff7a8d2000 -     0x7fff7a98bffb  libboringssl.dylib (109.50.15) <FC25FE02-6AA8-3F0B-9EF3-56A455C08C0F> /usr/lib/libboringssl.dylib
    0x7fff7a98c000 -     0x7fff7a99cff3  libbsm.0.dylib (39) <18D57879-A717-3466-9637-1704EE59A32A> /usr/lib/libbsm.0.dylib
    0x7fff7a99d000 -     0x7fff7a9aaffb  libbz2.1.0.dylib (38) <0B4321CD-3D6F-3095-A12E-27F66B4321AD> /usr/lib/libbz2.1.0.dylib
    0x7fff7a9ab000 -     0x7fff7aa01fff  libc++.1.dylib (400.9) <142D6292-F30F-3949-9F37-3C97A579F540> /usr/lib/libc++.1.dylib
    0x7fff7aa02000 -     0x7fff7aa26ff7  libc++abi.dylib (400.8.2) <EF5E37D7-11D9-3530-BE45-B986612D13E2> /usr/lib/libc++abi.dylib
    0x7fff7aa28000 -     0x7fff7aa38fff  libcmph.dylib (6) <890DEC4C-4334-393C-8B56-7C8560BBED9D> /usr/lib/libcmph.dylib
    0x7fff7aa39000 -     0x7fff7aa50fd3  libcompression.dylib (47.60.2) <CC7ACB0A-49CD-3564-978F-49F843186F27> /usr/lib/libcompression.dylib
    0x7fff7acfb000 -     0x7fff7ad13ff7  libcoretls.dylib (155.50.1) <087E9F90-21E5-376D-9956-C4E346409682> /usr/lib/libcoretls.dylib
    0x7fff7ad14000 -     0x7fff7ad15ff3  libcoretls_cfhelpers.dylib (155.50.1) <78CCDD10-7D71-365E-A0A5-8524ED5F5BF9> /usr/lib/libcoretls_cfhelpers.dylib
    0x7fff7b1e6000 -     0x7fff7b23bff3  libcups.2.dylib (462.2.10) <590D6ACC-68A0-371E-8646-FC59F814534B> /usr/lib/libcups.2.dylib
    0x7fff7b37b000 -     0x7fff7b37bfff  libenergytrace.dylib (16) <1F11D488-07C6-3D18-BEF2-0B28A992D761> /usr/lib/libenergytrace.dylib
    0x7fff7b3b2000 -     0x7fff7b3b7ff3  libheimdal-asn1.dylib (520.50.9) <EF65C17E-31CD-31DC-876C-BF3EF393099C> /usr/lib/libheimdal-asn1.dylib
    0x7fff7b3e3000 -     0x7fff7b4d4ff7  libiconv.2.dylib (51.50.1) <7965B866-C75A-3450-9891-0500349F7090> /usr/lib/libiconv.2.dylib
    0x7fff7b4d5000 -     0x7fff7b6fcffb  libicucore.A.dylib (59181.0.1) <17767680-09DF-3954-AB6C-B13B41F92A2E> /usr/lib/libicucore.A.dylib
    0x7fff7b749000 -     0x7fff7b74afff  liblangid.dylib (128) <C54A2059-A4BE-364B-94C2-581C548459BC> /usr/lib/liblangid.dylib
    0x7fff7b74b000 -     0x7fff7b764ffb  liblzma.5.dylib (10) <60BEAB81-CE65-3479-90CC-03325AACEC95> /usr/lib/liblzma.5.dylib
    0x7fff7b765000 -     0x7fff7b77bff7  libmarisa.dylib (9) <47540053-02CF-35F8-A75E-074DB3D51812> /usr/lib/libmarisa.dylib
    0x7fff7b82c000 -     0x7fff7ba54ff7  libmecabra.dylib (779.7.6) <B2ACB6A9-91AE-364B-9418-8EB938BF82B6> /usr/lib/libmecabra.dylib
    0x7fff7bc2c000 -     0x7fff7bda7fff  libnetwork.dylib (1229.70.2) <0596A03E-C984-3FE6-B88E-63D5F96EC49A> /usr/lib/libnetwork.dylib
    0x7fff7be2e000 -     0x7fff7c21f3b7  libobjc.A.dylib (723) <616AB826-9179-3924-AA61-AF760363A3F5> /usr/lib/libobjc.A.dylib
    0x7fff7c232000 -     0x7fff7c236fff  libpam.2.dylib (22) <E5840D63-8506-301A-9182-5000031854E1> /usr/lib/libpam.2.dylib
    0x7fff7c239000 -     0x7fff7c271ff7  libpcap.A.dylib (79.20.3) <6A9D27FA-2780-3E96-8B2E-645638AC13AC> /usr/lib/libpcap.A.dylib
    0x7fff7c2f0000 -     0x7fff7c30cffb  libresolv.9.dylib (65.1) <D9BB6307-71E4-3A94-A745-1FCA114C6894> /usr/lib/libresolv.9.dylib
    0x7fff7c35d000 -     0x7fff7c4eaff7  libsqlite3.dylib (274.8.1) <B70A2908-E0F7-364E-952A-1D2D19787B89> /usr/lib/libsqlite3.dylib
    0x7fff7c6be000 -     0x7fff7c71eff3  libusrtcp.dylib (1229.70.2) <1E065228-D0E3-3808-9405-894056C6BEC0> /usr/lib/libusrtcp.dylib
    0x7fff7c71f000 -     0x7fff7c722ffb  libutil.dylib (51.20.1) <A50E15F1-20A2-3EA7-A8CE-A43662E18587> /usr/lib/libutil.dylib
    0x7fff7c723000 -     0x7fff7c730ff3  libxar.1.dylib (417.1) <351781D5-3CCF-320F-BB5A-4DFCC1CCD31D> /usr/lib/libxar.1.dylib
    0x7fff7c734000 -     0x7fff7c81bfff  libxml2.2.dylib (31.19) <3314D6A0-7489-3A3D-90BC-5712926EBD9C> /usr/lib/libxml2.2.dylib
    0x7fff7c81c000 -     0x7fff7c844fff  libxslt.1.dylib (15.16) <57D56366-1E7B-356C-B2B8-F4688FF666E6> /usr/lib/libxslt.1.dylib
    0x7fff7c845000 -     0x7fff7c857ffb  libz.1.dylib (70) <47278BDC-596E-3037-B8DA-05FE9D5DBEF6> /usr/lib/libz.1.dylib
    0x7fff7c8f3000 -     0x7fff7c8f7ff7  libcache.dylib (80) <096D3699-58D2-3D23-9512-BC88DAE7B16C> /usr/lib/system/libcache.dylib
    0x7fff7c8f8000 -     0x7fff7c902ff3  libcommonCrypto.dylib (60118.50.1) <B4E77BD4-A809-37E1-8A79-25955E0F5D9C> /usr/lib/system/libcommonCrypto.dylib
    0x7fff7c903000 -     0x7fff7c90afff  libcompiler_rt.dylib (62) <4CEED002-D00B-35F8-B563-0546A5F71A43> /usr/lib/system/libcompiler_rt.dylib
    0x7fff7c90b000 -     0x7fff7c914ffb  libcopyfile.dylib (146.50.5) <F7A7999F-9509-3C67-8EE9-95BEE6772676> /usr/lib/system/libcopyfile.dylib
    0x7fff7c915000 -     0x7fff7c99affb  libcorecrypto.dylib (562.70.3) <9C6E5CC2-272B-3740-AEDB-9EBEC98EC7F9> /usr/lib/system/libcorecrypto.dylib
    0x7fff7ca22000 -     0x7fff7ca5bff7  libdispatch.dylib (913.60.3) <285526B6-A2A6-316D-A1CC-37803B71E203> /usr/lib/system/libdispatch.dylib
    0x7fff7ca5c000 -     0x7fff7ca79ff7  libdyld.dylib (551.5) <49ABA86D-DD48-3133-9B14-B9A564EEBC66> /usr/lib/system/libdyld.dylib
    0x7fff7ca7a000 -     0x7fff7ca7affb  libkeymgr.dylib (28) <7CC7B5E1-AB7F-3495-A26A-396461BCB66B> /usr/lib/system/libkeymgr.dylib
    0x7fff7ca7b000 -     0x7fff7ca87ff3  libkxld.dylib (4570.71.82.5) <BEC5370B-5CCD-3885-AB48-F5EBA396F1DD> /usr/lib/system/libkxld.dylib
    0x7fff7ca88000 -     0x7fff7ca88ff7  liblaunch.dylib (1205.70.16) <265EE555-E988-3EE5-A39E-028FB3A5FE11> /usr/lib/system/liblaunch.dylib
    0x7fff7ca89000 -     0x7fff7ca8dffb  libmacho.dylib (906) <F5F16E2F-F961-3FF4-B02F-69BBDB57B8DC> /usr/lib/system/libmacho.dylib
    0x7fff7ca8e000 -     0x7fff7ca90fff  libquarantine.dylib (86.70.1) <262CECFE-A493-3EC6-8608-CEA93757265E> /usr/lib/system/libquarantine.dylib
    0x7fff7ca91000 -     0x7fff7ca92ff3  libremovefile.dylib (45) <EA24BFB6-24B7-3841-8AAC-FAF400910706> /usr/lib/system/libremovefile.dylib
    0x7fff7ca93000 -     0x7fff7caaafff  libsystem_asl.dylib (356.70.1) <9481D82D-CFB7-3032-A07F-88F7F59CAC2C> /usr/lib/system/libsystem_asl.dylib
    0x7fff7caab000 -     0x7fff7caabfff  libsystem_blocks.dylib (67) <FA2C3663-9DBB-3AFB-80A3-E77BE0816AD0> /usr/lib/system/libsystem_blocks.dylib
    0x7fff7caac000 -     0x7fff7cb35ff7  libsystem_c.dylib (1244.50.9) <25DD83D8-80CA-3DFF-8626-FE704911F19C> /usr/lib/system/libsystem_c.dylib
    0x7fff7cb36000 -     0x7fff7cb39ffb  libsystem_configuration.dylib (963.50.9) <61B26E1D-FEFF-38C6-AE0E-A6DD90145EB2> /usr/lib/system/libsystem_configuration.dylib
    0x7fff7cb3a000 -     0x7fff7cb3dffb  libsystem_coreservices.dylib (51) <E8FA663F-1B0F-3B12-8F97-31A46E6B4D68> /usr/lib/system/libsystem_coreservices.dylib
    0x7fff7cb3e000 -     0x7fff7cb3ffff  libsystem_darwin.dylib (1244.50.9) <6195EEA1-83A7-35F0-8147-5AB031020CD0> /usr/lib/system/libsystem_darwin.dylib
    0x7fff7cb40000 -     0x7fff7cb46ffb  libsystem_dnssd.dylib (878.70.4) <0D2C9583-5D28-375B-AEB4-F66F18C78322> /usr/lib/system/libsystem_dnssd.dylib
    0x7fff7cb47000 -     0x7fff7cb90ff7  libsystem_info.dylib (517.30.1) <9C2C96F3-638B-34E7-A2BD-24C643EAF957> /usr/lib/system/libsystem_info.dylib
    0x7fff7cb91000 -     0x7fff7cbb7ff7  libsystem_kernel.dylib (4570.71.82.5) <999FCB9D-CBCD-317D-A2ED-034B6D7FB23A> /usr/lib/system/libsystem_kernel.dylib
    0x7fff7cbb8000 -     0x7fff7cc03fcb  libsystem_m.dylib (3147.50.1) <B3172533-77D2-3416-8487-4A505198E9E1> /usr/lib/system/libsystem_m.dylib
    0x7fff7cc04000 -     0x7fff7cc23ff7  libsystem_malloc.dylib (140.50.7) <821E16C8-7A7E-3269-9167-10F4F413BF93> /usr/lib/system/libsystem_malloc.dylib
    0x7fff7cc24000 -     0x7fff7cd54ff7  libsystem_network.dylib (1229.70.2) <07BFD80A-E7EB-3DEB-B765-5E1659453114> /usr/lib/system/libsystem_network.dylib
    0x7fff7cd55000 -     0x7fff7cd5fffb  libsystem_networkextension.dylib (767.70.2) <A90BAFFD-AC3D-3078-90B2-71463DBFD4A5> /usr/lib/system/libsystem_networkextension.dylib
    0x7fff7cd60000 -     0x7fff7cd69ff3  libsystem_notify.dylib (172) <738B3BB0-4F20-3446-A3B6-095D796E5903> /usr/lib/system/libsystem_notify.dylib
    0x7fff7cd6a000 -     0x7fff7cd71ff7  libsystem_platform.dylib (161.50.1) <90A2A62F-8690-3FA7-A4D0-9085BF2FA44A> /usr/lib/system/libsystem_platform.dylib
    0x7fff7cd72000 -     0x7fff7cd7dfff  libsystem_pthread.dylib (301.50.1) <283E64A7-A2B2-3212-95BA-4D21F9AE36CF> /usr/lib/system/libsystem_pthread.dylib
    0x7fff7cd7e000 -     0x7fff7cd81fff  libsystem_sandbox.dylib (765.70.1) <FCF1F844-544E-32D2-9406-FD8ED68F16E2> /usr/lib/system/libsystem_sandbox.dylib
    0x7fff7cd82000 -     0x7fff7cd83ff3  libsystem_secinit.dylib (30) <4E84DF62-57B5-36F9-819F-3C1E7FEDA856> /usr/lib/system/libsystem_secinit.dylib
    0x7fff7cd84000 -     0x7fff7cd8bff7  libsystem_symptoms.dylib (820.60.3) <A45B4D84-2C69-3F19-83C2-2F1EEA73A7B5> /usr/lib/system/libsystem_symptoms.dylib
    0x7fff7cd8c000 -     0x7fff7cda0ff7  libsystem_trace.dylib (829.70.2) <4C4E5351-E370-3226-9B30-61E250DE3B2E> /usr/lib/system/libsystem_trace.dylib
    0x7fff7cda2000 -     0x7fff7cda7ff7  libunwind.dylib (35.3) <BAE12DA3-CF33-32AD-86B0-CCD6705ADFAA> /usr/lib/system/libunwind.dylib
    0x7fff7cda8000 -     0x7fff7cdd5fff  libxpc.dylib (1205.70.16) <26D99819-B813-320E-9E8F-9D57AD2DA63B> /usr/lib/system/libxpc.dylib


Missing windows dependencies

If the Windows wallet is missing dependencies like c++ runtime or opengl it simply crashes in case of opengl or give an unfriendly error message. I suggest:

  1. The wallet should use a launcher
  2. The launcher checks for dependencies, c++ runtime, opengl
  3. if c++ runtime is not found the wallet offers an install before launching
  4. if opengl is not found it offers an install otherwises it flags itself to use QT

unknown

Unable to quit latest version 2.1.0.2 wallet normally.

Using the latest version 2.1.0.2 on macOS 10.12.6 (Sierra) and am unable to quit the wallet normally. Selecting "Quit" from menu bar, CMD-Q from keyboard, and clicking the "X" in the upper right corner of the wallet window all do not work to quit the wallet.

Edit: Got tired of waiting for the fix, so upgraded my OS and installed version 3.0.0.0.

Mac wallet won't launch

My Mac wallet (2.0.0.2) also doesn't open, but when I open the Mac wallet I get:

LSOpenURLsWithRole() failed with error -10810 for the file /Applications/bittube-wallet-gui.app.

Opening 2.0.0.1 does work.

linux wallet does not work on F28

bittube-wallet-gui: error while loading shared libraries: libboost_serialization.so.1.62.0: cannot open shared object file: No such file or directory
please link boost libraries statically - they change frequently. current on F28 is 1.66.0
even on F27 boost is 1.64.0
previous wallet did not require dynamic boost libraries and still launches with no linker errors on latest F28

No message store file found

ERROR wallet.mms src/wallet/message_store.cpp:735 No message store file found: /home/user/BitTube/wallets/wallet_name/wallet_name.mms

arch linux
BitTube Wallet GUI 2.1.0.1

cant read info.json

ERROR frontend src/wallet/api/wallet.cpp:375 cant read info.json

arch linux
BitTube Wallet GUI 2.1.0.1

daemon failed to start

Timed out, local node is not responding after 120 seconds.

Please check your wallet and daemon log for errors. You can also try to start bittubed.exe manually.

[2020/11/6 15:26] 2020-11-06 07:26:15.723 I Bittube 'Corona Tube' (v3.1.0.1-master-release)
2020-11-06 07:26:15.723 I Generating SSL certificate
Error: Couldn't connect to daemon: 127.0.0.1:24182
[2020/11/6 15:26] 2020-11-06 07:26:21.632 I Bittube 'Corona Tube' (v3.1.0.1-master-release)
2020-11-06 07:26:21.632 I Generating SSL certificate
Error: Couldn't connect to daemon: 127.0.0.1:24182
[2020/11/6 15:26] 2020-11-06 07:26:27.257 I Bittube 'Corona Tube' (v3.1.0.1-master-release)
2020-11-06 07:26:27.257 I Generating SSL certificate
Error: Couldn't connect to daemon: 127.0.0.1:24182

Version 3.1.0.0

I see ver 3.0.0.0 on Settings -> Info wallet page and file properties in explorer.

Trojan

Why is windows defender saying there is a trojan -- Sirefef.gen!C ?
Got the latest version: 2.0.0.1

Source fails to build and pre-build will never start

Hello,

First tried running the pre-build binary. It complained about lots of old version libraries.
After some linking I made it to the point where it complained about libssl.1.0.0
I'll write it again: libssl1.0.0
And again! libssl1.0.0 !!?!!! Is this a #$@%$in joke?!?!!!
Nobody should ever use such old version of libssl. It's neither supported or secured.
Even with some old compatible libraries couldn't make it start.

When trying to build it spend about half day and couldn't get further than this:

/usr/include/qt5/QtWidgets -isystem /usr/include/qt5/QtGui -isystem /usr/include/qt5/QtQml -isystem /usr/include/qt5/QtNetwork -isystem /usr/include/qt5/QtCore -I. -isystem /usr/include/libdrm -I/usr/lib64/qt5/mkspecs/linux-g++ -o moc_DaemonManager.o moc_DaemonManager.cpp
g++ -fstack-protector -pie -Wl,-z,relro -Wl,-z,now -Wl,-z,noexecstack -Wl,-O1 -o release/bin/bittube-wallet-gui main.o filter.o clipboardAdapter.o oscursor.o WalletManager.o Wallet.o PendingTransaction.o TransactionHistory.o TransactionInfo.o QRCodeImageProvider.o oshelper.o TranslationManager.o TransactionHistoryModel.o TransactionHistorySortFilterModel.o BitBuffer.o QrCode.o QrSegment.o AddressBookModel.o AddressBook.o SubaddressModel.o Subaddress.o zxcvbn.o UnsignedTransaction.o httpservice.o minermanager.o Logger.o MainApp.o DaemonManager.o qrc_translations.o qrc_qml.o moc_filter.o moc_clipboardAdapter.o moc_oscursor.o moc_WalletManager.o moc_Wallet.o moc_PendingTransaction.o moc_TransactionHistory.o moc_TransactionInfo.o moc_Transfer.o moc_NetworkType.o moc_oshelper.o moc_TranslationManager.o moc_TransactionHistoryModel.o moc_TransactionHistorySortFilterModel.o moc_AddressBookModel.o moc_AddressBook.o moc_SubaddressModel.o moc_Subaddress.o moc_UnsignedTransaction.o moc_httpservice.o moc_minermanager.o moc_MainApp.o moc_DaemonManager.o -L/home/k_georgiev/bittube/bittube-wallet-gui/bittube/lib -lwallet_merged -lepee -lunbound -leasylogging -ldl -lboost_serialization -lboost_thread -lboost_system -lboost_date_time -lboost_filesystem -lboost_regex -lboost_chrono -lboost_program_options -lssl -llmdb -lcrypto -Wl,-Bdynamic -lQt5Quick -lQt5Widgets -lQt5Gui -lQt5Qml -lQt5Network -lQt5Core -lGL -lpthread
/usr/bin/ld: cannot find -lwallet_merged
/usr/bin/ld: cannot find -lepee
/usr/bin/ld: cannot find -lunbound
/usr/bin/ld: cannot find -leasylogging
/usr/bin/ld: cannot find -llmdb
collect2: error: ld returned 1 exit status
make: *** [Makefile:385: release/bin/bittube-wallet-gui] Error 1
[k_georgiev@localhost bittube-wallet-gui]$

Google search said that I should install gcc/g++ version 5. Tried it and didn't work.
No matter what development tools and libraries I installed couldn't make it work.

Error When Compiling on Mac OS High Sierra

I receive the following error while compiling GUI on Mac High Sierra.

library not found for -licudata.63

It happens right at the end of the build, I believe just after the translation files.

Thanks!

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.