Browse Source

Always disable ASLR for debug builds - otherwise debugging will fail

adaptive-webui-19844
Nick Tiskov 10 years ago
parent
commit
2df2b6f4eb
  1. 5
      winconf-mingw.pri

5
winconf-mingw.pri

@ -10,6 +10,11 @@ strace_win:{ @@ -10,6 +10,11 @@ strace_win:{
LIBS += libdbghelp
}
CONFIG(debug, debug|release) {
# Make sure binary is not relocatable, otherwise debugging will fail
QMAKE_LFLAGS -= -Wl,--dynamicbase
}
RC_FILE = qbittorrent_mingw.rc
#You need to link with libtorrent > 0.15.5 (or svn) and you must

Loading…
Cancel
Save