Re: [Qt-creator] Disassemble output with source code?

2010-06-08 Thread André Pönitz
On Tuesday 08 June 2010 06:05:15 ext Stephen Chu wrote: On 6/7/2010 6:05 PM, Andre Poenitz wrote: On Mon, Jun 07, 2010 at 05:07:57PM -0400, Stephen Chu wrote: Is there a way in Creator to display disassemble output mixed with C++ source? It tries to do so fairly hard, but it finally

Re: [Qt-creator] Deploying multiple files to Maemo device?

2010-06-08 Thread Christian Kandeler
On 06/07/2010 11:16 PM, ext Christoph Keller wrote: I tried the latest QtCreator snapshot. Like you wrote, it allows me to deploy the package the the device. Unfortunately QtCreator only builds new packages. I already have my package settings which I don't want to change. Will there be a way

Re: [Qt-creator] Debugger interruptions

2010-06-08 Thread André Pönitz
On Tuesday 08 June 2010 13:15:49 ext Gena Cid wrote: #include string 2 3 int main() 4 { 5 int i = 10; 6 std::string str(boo); 7 return 0; 8 } Works here, also with gdb 7.0.1. The log indicates you've switched on 'Enable reverse debugging'. Does it make a difference if you switch

Re: [Qt-creator] Debugger interruptions

2010-06-08 Thread Gena Cid
Tue, 8 Jun 2010 14:15:47 +0200 письмо от AndrИ PЖnitz andre.poen...@nokia.com: On Tuesday 08 June 2010 13:15:49 ext Gena Cid wrote: #include string 2 3 int main() 4 { 5 int i = 10; 6 std::string str(boo); 7 return 0; 8 } Works here, also with gdb 7.0.1. The log

Re: [Qt-creator] 64-bit debugging helper on OS X 10.5?

2010-06-08 Thread Eike Ziller
Hi, On Jun 2, 2010, at 4:23 PM, ext Stephen Chu wrote: Now I can't debug 64-bit code with the last few snapshots, even without debugger helper. It looks like gdb is not set to x86_64 when debugging. I got this error: A handler for the OS ABI Darwin is not built into this configuration

[Qt-creator] Exception debugging

2010-06-08 Thread Laurent Desmecht
Hi everybody I am debugging some code in qtcreator, this issue is that the debugger don't stop when an exception is thrown. Because of this it's quite difficult to debug one crash. In gdb, it is possible to add a break point with the command catch throw but I have not found any way to do this in

Re: [Qt-creator] Debugger interruptions

2010-06-08 Thread André Pönitz
On Tuesday 08 June 2010 14:55:14 ext Gena Cid wrote: Tue, 8 Jun 2010 14:15:47 +0200 письмо от AndrИ PЖnitz andre.poen...@nokia.com: On Tuesday 08 June 2010 13:15:49 ext Gena Cid wrote: #include string 2 3 int main() 4 { 5 int i = 10; 6 std::string str(boo); 7

Re: [Qt-creator] Exception debugging

2010-06-08 Thread André Pönitz
On Tuesday 08 June 2010 15:07:38 ext Laurent Desmecht wrote: Hi everybody I am debugging some code in qtcreator, this issue is that the debugger don't stop when an exception is thrown. Because of this it's quite difficult to debug one crash. In gdb, it is possible to add a break point

Re: [Qt-creator] Disassemble output with source code?

2010-06-08 Thread André Pönitz
On Tuesday 08 June 2010 15:28:11 ext Stephen Chu wrote: Here's the debugger log. It's done with snapshot 201006070030 in OS X 10.5.8. It says Apple version gdb-967. Does this support mixed disassembler/source code at all? I.e. can you get such output from this version of gdb when run

Re: [Qt-creator] Exception debugging

2010-06-08 Thread Laurent Desmecht
On Tue, 8 Jun 2010 16:37:54 +0200 André_Pönitz andre.poen...@nokia.com wrote On Tuesday 08 June 2010 15:07:38 ext Laurent Desmecht wrote: Hi everybody I am debugging some code in qtcreator, this issue is that the debugger don't stop when an exception is thrown. Because of this it's

Re: [Qt-creator] Disassemble output with source code?

2010-06-08 Thread Stephen Chu
On 6/8/10 10:54 AM, André Pönitz wrote: On Tuesday 08 June 2010 15:28:11 ext Stephen Chu wrote: Here's the debugger log. It's done with snapshot 201006070030 in OS X 10.5.8. It says Apple version gdb-967. Does this support mixed disassembler/source code at all? I don't know if it supports

Re: [Qt-creator] Qt Creator portable for Windows

2010-06-08 Thread Coda Highland
Qt looks for plugins in a path predetermined at build time. I think you can override this behavior with a qt.conf file in the same directory as the .exe file, but I don't know the syntax of this file and you'd have to put that file alongside every .exe generated by Creator as well. (It may be

Re: [Qt-creator] Qt Creator portable for Windows

2010-06-08 Thread M. Bashir Al-Noimi
Hello, As Coda said, it's easy to make Qt Creator portable but what about Qt? Qt installer in windows needs absolute paths (at the end of installing process you'll find that the installer execute patches for absolute paths) so making Qt it self portable is exhausted procedure but I fixed this

Re: [Qt-creator] Qt Creator portable for Windows

2010-06-08 Thread Coda Highland
Holy crap, I forgot all about subst. It's been forever since I've used it. Yeah, that'll work. That'll work beautifully. Just create a subst'ed virtual drive, install Qt on it, and then modify qtvars.bat to make sure the subst is in place. /s/ Adam On Tue, Jun 8, 2010 at 7:08 PM, M. Bashir