Hi, does anyone have the step-by-step instructions for installing the mooncoin wallet on the computer?
You have 3 choices in Windows:
1) Download the wallet exe and just run it!
2) Download the wallet installer with miner and just run it!
3) Download the wallet installer without miner and just run it!
And for every choice you can select between 3 themes: Blue Moon, Discord and Original Yellow.
You can find all the files in github release
https://github.com/mooncoincore/wallet/releases/tag/0.13.9-segwitIf you have linux, arm or mac for now try the instructions in github repository
https://github.com/mooncoincore/walletInstructions for compiling
---------------------------------------
Cross-compilation
These steps can be performed on, for example, an Ubuntu VM. The depends system will also work on other Linux distributions, however the commands for installing the toolchain will be different.
Make sure you install the build requirements mentioned in build-unix.md. Then, install the toolchains and curl:
sudo apt-get install g++-mingw-w64-i686 mingw-w64-i686-dev g++-mingw-w64-x86-64 mingw-w64-x86-64-dev curl
To build executables for Windows 32-bit:
cd depends
make HOST=i686-w64-mingw32 -j4
cd ..
./configure --prefix=`pwd`/depends/i686-w64-mingw32
make
To build executables for Windows 64-bit:
cd depends
make HOST=x86_64-w64-mingw32 -j4
cd ..
./configure --prefix=`pwd`/depends/x86_64-w64-mingw32
make
Usage
To build dependencies for the current arch+OS:
make
To build for another arch/OS:
make HOST=host-platform-triplet
For example:
make HOST=x86_64-w64-mingw32 -j4
A prefix will be generated that's suitable for plugging into Mooncoin's configure. In the above example, a dir named x86_64-w64-mingw32 will be created. To use it for Mooncoin:
./configure --prefix=`pwd`/depends/x86_64-w64-mingw32
Common host-platform-triplets for cross compilation are:
i686-w64-mingw32 for Win32
x86_64-w64-mingw32 for Win64
x86_64-apple-darwin11 for MacOSX
arm-linux-gnueabihf for Linux ARM 32 bit
aarch64-linux-gnu for Linux ARM 64 bit