[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-10851-g50815da

commit-queue at webkit.org commit-queue at webkit.org
Wed Dec 22 17:54:20 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit f10db9cd5519d73e4c4046eeba36157101e85da5
Author: commit-queue at webkit.org <commit-queue at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Thu Dec 2 13:58:13 2010 +0000

    2010-12-02  Norbert Leser  <norbert.leser at nokia.com>
    
            Reviewed by Laszlo Gombos.
    
            [Qt] [Symbian] Reintroduce compiler optimizations for JSC
            https://bugs.webkit.org/show_bug.cgi?id=50270
    
            Add compiler optimization (symbian ARM target) which was lost after split from WebCore.
            Tested via Sunspider and V8 - both of which show significant performance improvement.
    
            * JavaScriptCore.pro:
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@73126 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/JavaScriptCore/ChangeLog b/JavaScriptCore/ChangeLog
index b3b0135..3decdfd 100644
--- a/JavaScriptCore/ChangeLog
+++ b/JavaScriptCore/ChangeLog
@@ -1,3 +1,15 @@
+2010-12-02  Norbert Leser  <norbert.leser at nokia.com>
+
+        Reviewed by Laszlo Gombos.
+
+        [Qt] [Symbian] Reintroduce compiler optimizations for JSC
+        https://bugs.webkit.org/show_bug.cgi?id=50270
+
+        Add compiler optimization (symbian ARM target) which was lost after split from WebCore.
+        Tested via Sunspider and V8 - both of which show significant performance improvement.
+
+        * JavaScriptCore.pro:
+
 2010-12-02  Peter Varga  <pvarga at inf.u-szeged.hu>
 
         Reviewed by Gavin Barraclough.
diff --git a/JavaScriptCore/JavaScriptCore.pro b/JavaScriptCore/JavaScriptCore.pro
index 531b22c..d3a1e87 100644
--- a/JavaScriptCore/JavaScriptCore.pro
+++ b/JavaScriptCore/JavaScriptCore.pro
@@ -213,5 +213,14 @@ SOURCES += \
 
 # Generated files, simply list them for JavaScriptCore
 
+symbian: {
+    symbian-abld|symbian-sbsv2 {
+        MMP_RULES += ALWAYS_BUILD_AS_ARM
+    }  else {
+        QMAKE_CFLAGS -= --thumb
+        QMAKE_CXXFLAGS -= --thumb
+    }
+    QMAKE_CXXFLAGS.ARMCC += -OTime -O3
+}
 # Disable C++0x mode in JSC for those who enabled it in their Qt's mkspec
 *-g++*:QMAKE_CXXFLAGS -= -std=c++0x -std=gnu++0x

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list