Some tuning for MinGW 4.8 build

This commit is contained in:
Abs62 2013-09-17 18:11:27 +04:00
parent b567dd4d37
commit 7916cc5a87
2 changed files with 6 additions and 1 deletions

1
.gitignore vendored
View file

@ -10,6 +10,7 @@ build/
release/
tmp/
goldendict
winlibs/lib32-48/
Makefile
Makefile.Debug

View file

@ -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
}