On 04/25/2012 11:08 PM, Calvin Morrison wrote:
Err but if you're having problem getting line numbers, you should enable debugging with cmake flags. -DCMAKE_BUILD_TYPE i think it is and set it to equal DEBUG. that works for me at least.
Crud, I forgot all about that. I'll check. The x updates make sense. If fonts are rendering differently then some possible buffer overrun... Who knows, but I can't explain the hang causing kwrite CPU use to spike to nearly 90%. That little app?
To build with debug symbols, you need the following:
tqt3:
options=('libtool' '!emptydirs' '!strip') msg "Starting configure..." ./configure \ -prefix ${_prefix} \ -debug \ <snip>
tqt-interface:
options=('libtool' '!emptydirs' '!strip') msg "Starting cmake..." cmake "../tqtinterface" \ -DCMAKE_INSTALL_PREFIX=${_prefix} \ -DCMAKE_BUILD_TYPE=Debug \ <snip>
tdelibs:
options=('libtool' '!makeflags' '!strip') msg "Starting cmake..." cmake ${srcdir}/tdelibs \ -DCMAKE_INSTALL_PREFIX=${TDEDIR} \ -DCMAKE_VERBOSE_MAKEFILE=ON \ -DCMAKE_BUILD_TYPE=Debug \ <snip>
tdebase:
<same as tdelibs>
Will report more in the am....