Actinium-project / Actinium

Cryptocurrency (PoW, Lyra2z) - Legacy Version

Home Page:https://actinium.org

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

macOS - Missing libboost_system-mt.dylib

Webmasterdevil opened this issue · comments

Hi, the dmg wallet don't run in MacOS Sierra V.10.13.6
Dyld Error Message:
Library not loaded: @loader_path/libboost_system-mt.dylib
Referenced from: /private/var/folders/_s/lwswz6s56m71jdqzr_0s9zp40000gn/T/AppTranslocation/87E00C35-75C1-4DE1-82C2-7F29B29AD9C0/d/Actinium-Qt.app/Contents/Frameworks/libboost_thread-mt.dylib
Reason: image not found

You must copy libboost_system.dylib to libboost_system-mt.dylib to make it work.
Hope you can solve ASAP for others ;)

Install boost with brew:

brew install boost

If you don't know what brew is, visit this page: https://brew.sh

@Webmasterdevil ,

btw. you are simply renaming a non-threaded version into a multi-threaded version.
This is not a solution. And is highly problematic.
The problem with libbost_system-mt.dylib is present in many other coin projects, like Litecoin and even Bitcoin.

There is no general solution that can be applied everywhere.
The most safe way is to install boost libs locally. This has only to be done once, independently from future versions of the wallet.

Thanks for the solution Harris.