[Webkit-unassigned] [Bug 59107] [Qt] Unaligned access error on browser application with SH4 CPU

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Thu Jun 16 11:24:23 PDT 2011


https://bugs.webkit.org/show_bug.cgi?id=59107





--- Comment #5 from Konstantin Tokarev <annulen at yandex.ru>  2011-06-16 11:24:23 PST ---
ssseintr: Thank you very much for your advice! I've experienced the same problem with STLinux2.3 toolchain, and your solution works perfectly.

Here is my patch (not sure if it should be submitted to main tree though):

diff --git a/WebCore/WebCore.pro b/WebCore/WebCore.pro
index 46d0db8..ccf87d1 100644
--- a/WebCore/WebCore.pro
+++ b/WebCore/WebCore.pro
@@ -90,8 +90,8 @@ unix {
     QMAKE_PKGCONFIG_REQUIRES = QtCore QtGui QtNetwork
 }

-unix:!mac:*-g++*:QMAKE_CXXFLAGS += -ffunction-sections -fdata-sections 
-unix:!mac:*-g++*:QMAKE_LFLAGS += -Wl,--gc-sections
+unix:!mac:*-g++*:!*-sh4-*:QMAKE_CXXFLAGS += -ffunction-sections -fdata-sections 
+unix:!mac:*-g++*:!*-sh4-*:QMAKE_LFLAGS += -Wl,--gc-sections
 linux*-g++*:QMAKE_LFLAGS += $$QMAKE_LFLAGS_NOUNDEF

 CONFIG(release):!CONFIG(standalone_package) {

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list