diff options
| -rw-r--r-- | Source/WebCore/ChangeLog | 13 | ||||
| -rw-r--r-- | Source/WebCore/WebCore.pri | 2 |
2 files changed, 14 insertions, 1 deletions
diff --git a/Source/WebCore/ChangeLog b/Source/WebCore/ChangeLog index 156d9c468..845bc1d97 100644 --- a/Source/WebCore/ChangeLog +++ b/Source/WebCore/ChangeLog @@ -1,3 +1,16 @@ +2013-07-30 Simon Hausmann <simon.hausmann@digia.com> + + [Qt][Win] Extend disabling of whole-program-optimizations to MSVC 2012 + https://bugs.webkit.org/show_bug.cgi?id=119238 + + Reviewed by Jocelyn Turcotte. + + As suggested in https://bugreports.qt-project.org/browse/QTBUG-20556, + the WebKit build with MSVC 2012 is affected by the same size + limitations. + + * WebCore.pri: + 2013-01-08 Zan Dobersek <zandobersek@gmail.com> [GTK] Build failures when building with python 3.3 diff --git a/Source/WebCore/WebCore.pri b/Source/WebCore/WebCore.pri index cb9452356..cc347ce4b 100644 --- a/Source/WebCore/WebCore.pri +++ b/Source/WebCore/WebCore.pri @@ -267,7 +267,7 @@ win32 { } # Remove whole program optimizations due to miscompilations -win32-msvc2005|win32-msvc2008|win32-msvc2010|wince*:{ +win32-msvc2005|win32-msvc2008|win32-msvc2010|win32-msvc2012|wince*:{ QMAKE_CFLAGS_LTCG -= -GL QMAKE_CXXFLAGS_LTCG -= -GL |
