diff options
author | Bill King <bking@trolltech.com> | 2009-09-08 22:21:47 (GMT) |
---|---|---|
committer | Bill King <bking@trolltech.com> | 2009-09-08 22:21:47 (GMT) |
commit | d0b29a5238def992bf7946d5c3eb36129b0cc44b (patch) | |
tree | 59346c6ca424fc185a4d05b34e4a01c11c895f70 | |
parent | 381c17536c4fdf1a7fc3ee47c7d1d29cdce4b1f2 (diff) | |
download | Qt-d0b29a5238def992bf7946d5c3eb36129b0cc44b.zip Qt-d0b29a5238def992bf7946d5c3eb36129b0cc44b.tar.gz Qt-d0b29a5238def992bf7946d5c3eb36129b0cc44b.tar.bz2 |
Fixes "Out of heap space" error when compiling on some setups.
The original fix was for "out of stack space" due to to low a value,
this one is for too high a value.
-rw-r--r-- | demos/boxes/boxes.pro | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/demos/boxes/boxes.pro b/demos/boxes/boxes.pro index 59c9132..4963fb9 100644 --- a/demos/boxes/boxes.pro +++ b/demos/boxes/boxes.pro @@ -44,6 +44,6 @@ wince*: { win32-msvc* { QMAKE_CXXFLAGS -= -Zm200 QMAKE_CFLAGS -= -Zm200 - QMAKE_CXXFLAGS += -Zm1200 - QMAKE_CFLAGS += -Zm1200 + QMAKE_CXXFLAGS += -Zm500 + QMAKE_CFLAGS += -Zm500 } |