Support for Windows 32 bit hardware

0 votes

Is there any work around to make Multichain run in 32 bit hardware with Windows OS.
I am aware that the system requirement for installation is Windows: 64-bit, supports Windows 7, 8, 10, Server 2008 or later ..

Thanks.

asked Mar 29, 2017 by saravana
edited Mar 29, 2017 by saravana

1 Answer

+1 vote

This is completely unsupported, but you can try following these instructions to compile 32-bit Windows on Ubuntu (apply the install dependencies on https://github.com/MultiChain/multichain as for 64-bit Windows first):

./autogen.sh

cd depends

make HOST=i686-w64-mingw32 -j4

cd ..

./configure --prefix=`pwd`/depends/i686-w64-mingw32 --enable-cxx --disable-shared --enable-static --with-pic

make

answered Mar 29, 2017 by MultiChain
Thanks I will try this...
...