Changeset 143452 in webkit


Ignore:
Timestamp:
Feb 20, 2013 4:36:45 AM (11 years ago)
Author:
abecsi@webkit.org
Message:

[Qt] Make debug builds possible on 32bit Linux
https://bugs.webkit.org/show_bug.cgi?id=110231

Reviewed by Tor Arne Vestbø.

Use the stabs format for debug builds to make the object files
a bit smaller so that they can be linked on a 32bit system.

  • qmake/mkspecs/features/unix/default_post.prf:
Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r143447 r143452  
     12013-02-20  Andras Becsi  <andras.becsi@digia.com>
     2
     3        [Qt] Make debug builds possible on 32bit Linux
     4        https://bugs.webkit.org/show_bug.cgi?id=110231
     5
     6        Reviewed by Tor Arne Vestbø.
     7
     8        Use the stabs format for debug builds to make the object files
     9        a bit smaller so that they can be linked on a 32bit system.
     10
     11        * qmake/mkspecs/features/unix/default_post.prf:
     12
    1132013-02-20  Takashi Toyoshima  <toyoshim@chromium.org>
    214
  • trunk/Tools/qmake/mkspecs/features/unix/default_post.prf

    r134614 r143452  
    1111    QMAKE_CFLAGS += -march=pentium4 -msse2 -mfpmath=sse
    1212    QMAKE_CXXFLAGS += -march=pentium4 -msse2 -mfpmath=sse
     13
     14    # Use the stabs format for 32 bit debug builds to make the object files a bit smaller.
     15    QMAKE_CXXFLAGS_DEBUG -= -g
     16    QMAKE_CXXFLAGS_DEBUG += -gstabs
    1317}
    1418
Note: See TracChangeset for help on using the changeset viewer.