Hello every one,

I just install the latest version of Qt, that
includes QtCreator.
So far the debugging works well for simple
applications, such as:
#include <QtCore/QCoreApplication>
int main(int argc, char
*argv[])
{
    
    int I;
    I = 15;
    printf
("%d\n",I);
    fflush(stdout);
    
}

but if you use any advance library ( I have tested QTextStrea, QList
and 

#include <QtCore/QCoreApplication>
int main(int argc, char
*argv[])
{
                     
   QCoreApplication a(argc, argv);
    int I;
    I = 15;
    printf
("%d\n",I);
    fflush(stdout);
                      
   return a.exec();
}
the debugger starts properly to
jump to a "Stop" to continue after some type and not stopping in
any of the breakpoints, ending with the message "Debugging assitants
not found".
 
Any idea of what I did not
install propoerly? or missing parameters? 

The .pro file contents is:
 
QT       += testlib 
QT       -= gui
TARGET = Listas3
CONFIG   += console
CONFIG   -= app_bundle
CONFIG  += qt debug
TEMPLATE = app
SOURCES += main.cpp
 
Thanks in advance.





Jose San Leandro Ros
ACM SL
+34 605876613
Skype: "jose.san.leandro.ros"
www.acm-sl.com

===============================================================
Este mensaje se dirige exclusivamente a su destinatario. Los datos
incluidos en el presente correo son confidenciales y sometidos a secreto
profesional, especialmente en lo que respecta a los datos personales, se
prohibe divulgarlos, en virtud de las leyes vigentes. Si usted no lo es y
lo ha recibido por error o tiene conocimiento del mismo por cualquier
motivo, le rogamos que nos lo comunique por este medio y proceda a
destruirlo o borrarlo, y que en todo caso se abstenga de utilizar,
reproducir, alterar, archivar o comunicar a terceros el presente mensaje y
ficheros anexos, todo ello bajo pena de incurrir en responsabilidades
legales. Cualquier idea contenida en este correo es exclusiva de su autor
y no representa necesariamente el criterio de ACM SL. El emisor no
garantiza la integridad, rapidez o seguridad del presente correo, ni se
responsabiliza de posibles perjuicios derivados de la captura,
incorporaciones de virus o cualesquiera otras manipulaciones efectuadas
por terceros.


This message is intended for the exclusive
attention of the address(es) indicated. Any information contained herein
is strictly confidential and privileged, especially as regards personal
data, which must not be disclosed, in accordance with legislation
currently in force. If you are not the intended recipient and have
received it by mistake or learn about it in any other way, please notify
us by return e-mail and delete this message from your computer system. Any
unauthorised use, reproduction, alteration, filing or sending of this
message and/or any attached files to third parties may lead to legal
proceedings being taken. Any opinion expressed herein is solely that of
the author(s) and does not necessarily represent the opinion of ACM SL.
The sender does not guarantee the integrity, speed or safety of this
message, not accept responsibility for any possible damage arising from
the interception, incorporation of virus or any other manipulation carried
out by third parties.
===============================================================

_______________________________________________
Qt-creator mailing list
[email protected]
http://lists.trolltech.com/mailman/listinfo/qt-creator

Reply via email to