commit f4bce814e5445e19f77a327f9124e050e216c24e
Author: Shankar Giri Venkita Giri <[email protected]>
Date: Thu May 5 13:36:51 2016 +0200
Document MinGW64 autotools build
Update INSTALL.Win32 to describe compiling with GCC with
MinGW64 + MSYS2 Environment using autotools (see bug 10053)
diff --git a/INSTALL.Win32 b/INSTALL.Win32
index bba8c04..e36e559 100644
--- a/INSTALL.Win32
+++ b/INSTALL.Win32
@@ -107,3 +107,17 @@ Creating the Installer
- Copy the 3 dll-files from there to the DLL folder of the NSIS
installation
- Check whether the file locations/paths in settings.nsh match your
setup.
- Right-click on lyx.nsi and click "Compile NSIS Script".
+
+
+Compiling with GCC with MinGW64 + MSYS2 Environment using autotools
+===================================================================
+1 Install MSYS2, MINGW64, Qt5+
+ https://wiki.qt.io/MSYS2
+2 Install bc (Bench calculater), which autotools uses for some reason to
compile LyX
+ pacman -S bc
+3 Run the standard autotools install (Adapt paths and arguments
accordingly)
+ ./autogen.sh
+ ./configure --without-x --enable-qt5 --disable-debug
--enable-optimization --prefix=/mingw64
+ make
+ make install
+