diff options
author | Gavin Andresen <gavinandresen@gmail.com> | 2013-01-23 07:00:24 -0800 |
---|---|---|
committer | Gavin Andresen <gavinandresen@gmail.com> | 2013-01-23 07:00:24 -0800 |
commit | 5a4af8f71f527fc7902860aeb0e1b013e0368336 (patch) | |
tree | 1cc2e7345b74dbb91622552c24fe688b2819bc46 /bitcoin-qt.pro | |
parent | a337505bd7d0791fa1123c600ea9295cafa678b3 (diff) | |
parent | 1f0ce2dd68313094af7cf6647bdf5936bee8352c (diff) |
Merge pull request #2167 from Diapolo/Qt_laa_flag
enable GCC large address aware linker flag (Windows only)
Diffstat (limited to 'bitcoin-qt.pro')
-rw-r--r-- | bitcoin-qt.pro | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/bitcoin-qt.pro b/bitcoin-qt.pro index 6a2d7092c2..5274de4265 100644 --- a/bitcoin-qt.pro +++ b/bitcoin-qt.pro @@ -44,6 +44,8 @@ QMAKE_LFLAGS *= -fstack-protector-all QMAKE_CXXFLAGS *= -D_FORTIFY_SOURCE=2 -Wl,-z,relro -Wl,-z,now # for extra security on Windows: enable ASLR and DEP via GCC linker flags win32:QMAKE_LFLAGS *= -Wl,--dynamicbase -Wl,--nxcompat +# on Windows: enable GCC large address aware linker flag +win32:QMAKE_LFLAGS *= -Wl,--large-address-aware # use: qmake "USE_QRCODE=1" # libqrencode (http://fukuchi.org/works/qrencode/index.en.html) must be installed for support |