Changeset 56715 in webkit


Ignore:
Timestamp:
Mar 29, 2010 4:14:27 AM (14 years ago)
Author:
Simon Hausmann
Message:

[Qt] Make it possible to build using both Windows and Linux for Symbian
https://bugs.webkit.org/show_bug.cgi?id=36748

Patch by Thomas Zander <t.zander@nokia.com> on 2010-03-29
Reviewed by Simon Hausmann.

  • WebCore.pro: don't assume Windows buildsystem is the only one

and exclude the windows-only setters from the linux builds.

Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r56714 r56715  
     12010-03-29  Thomas Zander  <t.zander@nokia.com>
     2
     3        Reviewed by Simon Hausmann.
     4
     5        [Qt] Make it possible to build using both Windows and Linux for Symbian
     6        https://bugs.webkit.org/show_bug.cgi?id=36748
     7
     8        * WebCore.pro: don't assume Windows buildsystem is the only one
     9        and exclude the windows-only setters from the linux builds.
     10
    1112010-03-29  Thomas Zander  <t.zander@nokia.com>
    212
  • trunk/WebCore/WebCore.pro

    r56714 r56715  
    3131    MMP_RULES += "USERINCLUDE rendering"
    3232    MMP_RULES += "USERINCLUDE platform/text"
    33     # RO text (code) section in qtwebkit.dll exceeds allocated space for gcce udeb target.
    34     # Move RW-section base address to start from 0xE00000 instead of the toolchain default 0x400000.
    35     QMAKE_LFLAGS.ARMCC += --rw-base 0xE00000
    36     MMP_RULES += ALWAYS_BUILD_AS_ARM
     33    symbian-abld|symbian-sbsv2 {
     34        # RO text (code) section in qtwebkit.dll exceeds allocated space for gcce udeb target.
     35        # Move RW-section base address to start from 0xE00000 instead of the toolchain default 0x400000.
     36        QMAKE_LFLAGS.ARMCC += --rw-base 0xE00000
     37        MMP_RULES += ALWAYS_BUILD_AS_ARM
     38    }
    3739    CONFIG(release, debug|release): QMAKE_CXXFLAGS.ARMCC += -OTime -O3
    3840}
Note: See TracChangeset for help on using the changeset viewer.