I cloned the git repository and I'm trying to compile on Ubuntu 12.04, but get the following compile error:
/usr/bin/rcc -name bitcoin src/qt/bitcoin.qrc -o qrc_bitcoin.cpp
RCC: Error in 'src/qt/bitcoin.qrc': Cannot find file 'res/icons/microCoin-128.png'
make: *** [qrc_bitcoin.cpp] Error 1
Does anyone have any ideas?
Also, can this be mined on Linux? I only see a Windows miner.
Thanks.
1. is linux wallet on first page not working for you?
2. after cloned git edit
src/qt/bitcoin.qrc
replace "micro
Coin-*.png" with "micro
coin-*.png"
then edit microcoin-qt.pro
add comment (#) from line 10 to 23
---snip---
#windows:LIBS += -lshlwapi
#LIBS += $$join(BOOST_LIB_PATH,,-L,) $$join(BDB_LIB_PATH,,-L,) $$join(OPENSSL_LIB_PATH,,-L,) $$join(QRENCODE_LIB_PATH,,-L,)
#LIBS += -lssl -lcrypto -ldb_cxx$$BDB_LIB_SUFFIX
#windows:LIBS += -lws2_32 -lole32 -loleaut32 -luuid -lgdi32
#LIBS += -lboost_system-mgw46-mt-sd-1_53 -lboost_filesystem-mgw46-mt-sd-1_53 -lboost_program_options-mgw46-mt-sd-1_53 -lboost_thread-mgw46-mt-sd-1_53
#BOOST_LIB_SUFFIX=-mgw46-mt-sd-1_53
#BOOST_INCLUDE_PATH=C:/deps/boost
#BOOST_LIB_PATH=C:/deps/boost/stage/lib
#BDB_INCLUDE_PATH=c:/deps/db/build_unix
#BDB_LIB_PATH=c:/deps/db/build_unix
#OPENSSL_INCLUDE_PATH=c:/deps/ssl/include
#OPENSSL_LIB_PATH=c:/deps/ssl
#MINIUPNPC_LIB_PATH=c:/deps/miniupnpc
#MINIUPNPC_INCLUDE_PATH=c:/deps
---snip---
then run
qmake USE_QRCODE=1 USE_UPNP=1
make clean
make
please note on arch linux qmake for qt4 is called "qmake-qt4", change to reflect your distro