Is the Linux wallet up to date for the fork?
Yes it is. V1.3.3 is the latest classic wallet version.
Is the github up to date for linux wallet?
I can't launch the wallet from the website in archlinux (too many old dependencies for my distro), first time I've to compile from github to launch the linux wallet
Yes everything is up to date. If u can compile it yourself, then please do share it with us.
Compilation of the classic Linux Wallet done in ArchLinux.
I've to comment 3 lines from the saffroncoin-qt.pro to make it possible :
23 #BOOST_LIB_SUFFIX=-mgw48-mt-s-1_55
24 #BOOST_INCLUDE_PATH=C:/depsnew/boost_1_55_0
25 #BOOST_LIB_PATH=C:/depsnew/boost_1_55_0/stage/lib
And install "boost boost-libs miniupnpc" if I remember correctly what dependencies I needed.
Then in the sources's directory :
qmake && make -j4
(-j4 is used for parallelisation with 4 CPU cores)
What file I've to share? Only "saffroncoin-qt" generated after compilation?
This new wallet is faster than the 1.3.2 version at launch , good point!
After that I wan't to compile the "wallet20-master" from github, but I've an error I don't understand :
[sylvain@aellyce Wallet20-master]$ make -j4
cd /media/truecrypt1/Téléchargements/coins/saffron/Wallet20-master/src/leveldb && CC=gcc CXX=g++ make OPT="-pipe -fstack-protector-all -D_FORTIFY_SOURCE=2 -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong --param=ssp-buffer-size=4" libleveldb.a libmemenv.a
cd /media/truecrypt1/Téléchargements/coins/saffron/Wallet20-master; /bin/sh share/genbuild.sh /media/truecrypt1/Téléchargements/coins/saffron/Wallet20-master/build/build.h
/usr/lib/qt/bin/uic src/qt/forms/sendcoinsdialog.ui -o build/ui_sendcoinsdialog.h
/usr/lib/qt/bin/uic src/qt/forms/sendbitcoinsdialog.ui -o build/ui_sendbitcoinsdialog.h
make[1]: Entering directory '/media/truecrypt1/Téléchargements/coins/saffron/Wallet20-master/src/leveldb'
make[1]: *** No rule to make target 'libleveldb.a'. Arrêt.
make[1]: Leaving directory '/media/truecrypt1/Téléchargements/coins/saffron/Wallet20-master/src/leveldb'
Makefile:747: recipe for target '/media/truecrypt1/Téléchargements/coins/saffron/Wallet20-master/src/leveldb/libleveldb.a' failed
make: *** [/media/truecrypt1/Téléchargements/coins/saffron/Wallet20-master/src/leveldb/libleveldb.a] Error 2
make: *** Attente des tâches non terminées....
fatal: Not a git repository (or any parent up to mount point /media/truecrypt1)
Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set).
Any idea to help me?