Post
Topic
Board Announcements (Altcoins)
Re: [ANN] [ASIC-RESISTANT] UltraCoin (UTC) - Ultrafast 6 second transactions!!
by
Demontager
on 08/04/2014, 18:22:41 UTC
Guys, please help to compile working Ultracoin-qt client for Debian Linux. One which posted in start topic just doesn't work.
Code:
./Ultracoin-qt
error while loading shared libraries: libminiupnpc.so.9: cannot open shared object file: No such file or directory
I checked all linked libraries with
Code:
ldd ./Ultracoin-qt|grep found
libminiupnpc.so.9 =>not found
libboost_filesystem.so.1.49.0 => not found
libboost_program_options.so.1.49.0 => not found
libboost_thread.so.1.49.0 => not found


and then created symlinks which are not found, for example
Code:
ln -s /usr/lib/x86_64-linux-gnu/libboost_thread.so.1.53.0 /usr/lib/x86_64-linux-gnu/libboost_thread.so.1.49.0
but then got
Code:
$ ./Ultracoin-qt
./Ultracoin-qt: Symbol `_ZTVN5boost6detail16thread_data_baseE' has different size in shared object, consider re-linking
./Ultracoin-qt: symbol lookup error: ./Ultracoin-qt: undefined symbol: _ZN5boost11filesystem34path21wchar_t_codecvt_facetEv

UPD.
Done. Successfully compiled Ultracoin wallet from source. Consider adding these steps to start post.

1. apt-get install qt4-qmake libqt4-dev build-essential libboost-dev libboost-system-dev \
    libboost-filesystem-dev libboost-program-options-dev libboost-thread-dev \
    libssl-dev libdb++-dev libminiupnpc-dev

2. git clone https://github.com/dx11/ultracoin

3. cd ultracoin

4. qmake "USE_UPNP=1" && make  (compiling should take around 5 - 10 mins, depending from CPU speed)

5. ./Ultracoin-qt