Unfortunately debug build is impossible on 32 bit long time ago, because linker runs out of 4Gb address space. https://lists.webkit.org/pipermail/webkit-dev/2012-March/020111.html Kov pointed that --no-keep-memory option of ld is what we need. (gold linker doesn't support this option only ld) I think it's time to fix 32 bit debug build. Patch is coming soon.
Created attachment 134044 [details] proposed fix
Comment on attachment 134044 [details] proposed fix View in context: https://bugs.webkit.org/attachment.cgi?id=134044&action=review > Tools/qmake/mkspecs/features/unix/default_pre.prf:-17 > -# Use gold if available > -!scratchbox:!mac:exists(/usr/bin/ld.gold): QMAKE_LFLAGS += -fuse-ld=gold > - I had to move this to default_post.prf, because CONFIG(debug, debug|release) doesn't work here.
Comment on attachment 134044 [details] proposed fix Clearing flags on attachment: 134044 Committed r112282: <http://trac.webkit.org/changeset/112282>
All reviewed patches have been landed. Closing bug.