mirror of
https://github.com/GOSTSec/gostcoin
synced 2025-01-17 02:00:57 +00:00
Created Bulding for Windows (MSYS) (markdown)
parent
5045bb6906
commit
a5f1b2c823
21
Bulding-for-Windows-(MSYS).md
Normal file
21
Bulding-for-Windows-(MSYS).md
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
Get install file `msys2-$ARCH-*.exe` from `https://msys2.github.io`
|
||||||
|
|
||||||
|
Where $ARCH is `i686` or `x86_64` (matching your system).
|
||||||
|
|
||||||
|
- Open MSYS2 Shell (from Start menu).
|
||||||
|
- Install all prerequisites:
|
||||||
|
|
||||||
|
export ARCH='i686' # or 'x86_64'
|
||||||
|
export MINGW='mingw32' # or 'mingw64'
|
||||||
|
pacman -S mingw-w64-$ARCH-boost mingw-w64-$ARCH-openssl mingw-w64-$ARCH-gcc git make
|
||||||
|
|
||||||
|
- Build gostcoin
|
||||||
|
mkdir -p /c/dev/gostcoin
|
||||||
|
cd /c/dev/gostcoin
|
||||||
|
git clone https://github.com/GOSTSec/gostcoin.git
|
||||||
|
# we need compiler on PATH which is usually heavily cluttered on Windows
|
||||||
|
export PATH=/$MINGW/bin:/usr/bin
|
||||||
|
cd gostcoin/i2psam
|
||||||
|
make -f makefile.mingw
|
||||||
|
cd ../src
|
||||||
|
make -f makefile.mingw
|
Loading…
x
Reference in New Issue
Block a user