From 7916cc5a873a83dce8bbcabfd1573b778e9bf4b2 Mon Sep 17 00:00:00 2001 From: Abs62 Date: Tue, 17 Sep 2013 18:11:27 +0400 Subject: [PATCH] Some tuning for MinGW 4.8 build --- .gitignore | 1 + goldendict.pro | 6 +++++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index c2e7be76..f6cdc37a 100644 --- a/.gitignore +++ b/.gitignore @@ -10,6 +10,7 @@ build/ release/ tmp/ goldendict +winlibs/lib32-48/ Makefile Makefile.Debug diff --git a/goldendict.pro b/goldendict.pro index 3864f428..2392f349 100644 --- a/goldendict.pro +++ b/goldendict.pro @@ -53,7 +53,11 @@ win32 { HUNSPELL_LIB = hunspell } else { LIBS += -lhunspell-1.3.2 - LIBS += -L$${PWD}/winlibs/lib + CONFIG(gcc48) { + LIBS += -L$${PWD}/winlibs/lib32-48 + } else { + LIBS += -L$${PWD}/winlibs/lib + } !x64:QMAKE_LFLAGS += -Wl,--large-address-aware }