From d8a71720058d71192a2ec24ba156f0497566c062 Mon Sep 17 00:00:00 2001 From: R4SAS Date: Mon, 12 Feb 2018 08:55:17 +0300 Subject: [PATCH] Updated Bulding wallet on Windows (MSYS) (markdown) --- Bulding-wallet-on-Windows-(MSYS).md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Bulding-wallet-on-Windows-(MSYS).md b/Bulding-wallet-on-Windows-(MSYS).md index eca5baa..22c1461 100644 --- a/Bulding-wallet-on-Windows-(MSYS).md +++ b/Bulding-wallet-on-Windows-(MSYS).md @@ -49,10 +49,10 @@ $ export PATH="$PATH:/c/devel/Python27" #### Building QT ```bash cd /c/devel/ -$ wget http://download.qt.io/official_releases/qt/5.9/5.9.4/single/qt-everywhere-opensource-src-5.9.4.zip -$ unzip qt-everywhere-opensource-src-5.9.4.zip -$ cd qt-everywhere-opensource-src-5.9.4 -$ CXXFLAGS="--Wno-deprecated-declarations" ./configure -static -release -opensource -confirm-license -platform win32-g++ -prefix "C:\devel\qt5.9.4-static" -nomake examples -nomake tests -nomake tools -opengl desktop -no-angle -make libs -qt-zlib -qt-libpng -qt-libjpeg -qt-freetype -qt-pcre -sql-sqlite +$ wget http://download.qt.io/official_releases/qt/5.9/5.9.2/single/qt-everywhere-opensource-src-5.9.2.zip +$ unzip qt-everywhere-opensource-src-5.9.2.zip +$ cd qt-everywhere-opensource-src-5.9.2 +$ CXXFLAGS="--Wno-deprecated-declarations" ./configure -static -release -opensource -confirm-license -platform win32-g++ -prefix "C:\devel\qt5.9.2-static" -nomake examples -nomake tests -nomake tools -opengl desktop -no-angle -make libs -qt-zlib -qt-libpng -qt-libjpeg -qt-freetype -qt-pcre -sql-sqlite $ make -j && make install ``` @@ -69,7 +69,7 @@ $ make -j && make install ### Build wallet with QT ```bash $ cd ../gostcoin -$ export PATH="$PATH:/c/devel/qt5.9.4-static/bin" +$ export PATH="$PATH:/c/devel/qt5.9.2-static/bin" $ qmake RELEASE=1 USE_QRCODE=1 USE_IPV6=1 USE_BUILD_INFO=1 $ make -j ```