On 05/03/2012 02:34 PM, /dev/ammo42 wrote:
On Thu, 3 May 2012 21:26:50 +0200 "Mag. Dr. Nikolaus Klepp"office@klepp.biz wrote:
> What's the trick for tqt3?
If you can mandate custom CXXFLAGS, just adding "-g" to them should suffice.
and turn any optimisation off :-)
According to the GCC manual pages -O1 implies -fomit-frame-pointer only if it doesn't interfere with debugging, so it should be safe. Also -fomit-frame-pointer can be reversed by -fno-omit-frame-pointer.
nik
OK, got it CXXFLAGS="${CXXFLAGS} -g -01"
Any other tweaks yo can think of and I'll add them. Thanks.