]> git.lyx.org Git - lyx.git/commitdiff
Document MinGW64 autotools build
authorShankar Giri Venkita Giri <girivs@gmx.com>
Thu, 5 May 2016 11:36:51 +0000 (13:36 +0200)
committerRichard Heck <rgheck@lyx.org>
Sun, 29 May 2016 21:55:43 +0000 (17:55 -0400)
Update INSTALL.Win32 to describe compiling with GCC with
MinGW64 + MSYS2 Environment using autotools (see bug 10053)

INSTALL.Win32

index 3b71427200fd9f6be1e17cd7b81de8dc746e68d2..abd3601d503f9100b8b05a50e33171ee9fff794f 100644 (file)
@@ -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
+