Changeset 64657 in webkit


Ignore:
Timestamp:
Aug 4, 2010 11:08:46 AM (14 years ago)
Author:
commit-queue@webkit.org
Message:

2010-08-04 Siddharth Mathur <siddharth.mathur@nokia.com>

Reviewed by Laszlo Gombos.

[Qt][Symbian] Variable max heap size between target/emulator
https://bugs.webkit.org/show_bug.cgi?id=41480

  • WebKit.pri: Symbian-only code block for EPOCHEAPSIZE configuration
Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r64630 r64657  
     12010-08-04  Siddharth Mathur  <siddharth.mathur@nokia.com>
     2
     3        Reviewed by Laszlo Gombos.
     4
     5        [Qt][Symbian] Variable max heap size between target/emulator
     6        https://bugs.webkit.org/show_bug.cgi?id=41480
     7
     8        * WebKit.pri: Symbian-only code block for EPOCHEAPSIZE configuration
     9
    1102010-08-03  Eric Seidel  <eric@webkit.org>
    211
  • trunk/WebKit.pri

    r62266 r64657  
    3131                symbian {
    3232                    TARGET.EPOCSTACKSIZE = 0x14000 // 80 kB
    33                     TARGET.EPOCHEAPSIZE = 0x20000 0x6000000 // Min 128kB, Max 96MB
     33                    # For EXEs only: set heap to usable value
     34                    TARGET.EPOCHEAPSIZE =
     35                    heapSizeRule = \
     36                    "$${LITERAL_HASH}ifdef WINSCW" \
     37                        "EPOCHEAPSIZE  0x40000 0x2000000 // Min 256kB, Max 32MB" \
     38                    "$${LITERAL_HASH}else" \
     39                        "EPOCHEAPSIZE  0x40000 0x6000000 // Min 256kB, Max 96MB" \
     40                    "$${LITERAL_HASH}endif"
     41                    MMP_RULES += heapSizeRule
    3442                }
    3543            }
Note: See TracChangeset for help on using the changeset viewer.