diff options
author | hjk <qtc-committer@nokia.com> | 2010-07-22 11:16:35 (GMT) |
---|---|---|
committer | hjk <qtc-committer@nokia.com> | 2010-07-22 11:40:36 (GMT) |
commit | 6240f4a990d2f0b4a4b24c823f8875ca3b8226a4 (patch) | |
tree | 74c1beaeca8447fdaef8f7d7ec5469f4e50421ee /configure | |
parent | 2da1f6dd814381fde2a365a328de49761c507b3b (diff) | |
download | Qt-6240f4a990d2f0b4a4b24c823f8875ca3b8226a4.zip Qt-6240f4a990d2f0b4a4b24c823f8875ca3b8226a4.tar.gz Qt-6240f4a990d2f0b4a4b24c823f8875ca3b8226a4.tar.bz2 |
Switch the default value for configure's -separate-debug-info to "no".
The "yes" case slows us down on several occasions: (a) the CRC version used
slows down loading debug info when debugging a Qt application significantly,
(b) it does not work wit gdb 7.2's dwarf indexing (again, much slower
startup), and (c) (less important) the stripping takes extra time for each of
us when building Qt.
The flag is still supported for distributions or individuals that want to use it.
Reviewed-by: brad
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -733,7 +733,7 @@ CFG_OPENSSL=auto CFG_PTMALLOC=no CFG_STL=auto CFG_PRECOMPILE=auto -CFG_SEPARATE_DEBUG_INFO=auto +CFG_SEPARATE_DEBUG_INFO=no CFG_SEPARATE_DEBUG_INFO_NOCOPY=no CFG_REDUCE_EXPORTS=auto CFG_MMX=auto @@ -2307,7 +2307,7 @@ fi if [ "$PLATFORM_X11" = "yes" -o "$PLATFORM_QWS" = "yes" ] && [ "$CFG_DEBUG_RELEASE" = "yes" ]; then echo echo "WARNING: -debug-and-release is not supported anymore on Qt/X11 and Qt for Embedded Linux" - echo "By default, Qt is built in release mode with separate debug information, so" + echo "Qt can be built in release mode with separate debug information, so" echo "-debug-and-release is not necessary anymore" echo fi |