Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. General and Desktop
  4. Problem in debugging qt program
Forum Updated to NodeBB v4.3 + New Features

Problem in debugging qt program

Scheduled Pinned Locked Moved General and Desktop
28 Posts 3 Posters 8.2k Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • A Offline
    A Offline
    Amirhosein
    wrote on last edited by
    #5

    of course I have.

    Something may be useful for solving the problem. I added "c:\program files\microsoft visual studio 9.0\VC\bin" to the Paths. maybe I should add something more.

    1 Reply Last reply
    0
    • K Offline
      K Offline
      koahnig
      wrote on last edited by
      #6

      where do you run nmake?
      Outside of the msvc using a simple command prompt?

      Vote the answer(s) that helped you to solve your issue(s)

      1 Reply Last reply
      0
      • A Offline
        A Offline
        Amirhosein
        wrote on last edited by
        #7

        yes
        I use simple command prompt and not VS command prompt

        1 Reply Last reply
        0
        • SGaistS Offline
          SGaistS Offline
          SGaist
          Lifetime Qt Champion
          wrote on last edited by
          #8

          I might be wrong, but I think that using a MSVC2010 Qt with VS2008 might be problematic

          Interested in AI ? www.idiap.ch
          Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

          1 Reply Last reply
          0
          • K Offline
            K Offline
            koahnig
            wrote on last edited by
            #9

            This is probably the reason for your problem.
            When you are compiling Qt libs with nmake and msvc compiler you have to start the command prompt through VS. It will not work with the standard command prompt. VS is setting apparently something in the environment.

            I have never tried, but I would guess that the same rules apply when use nmake directly. Give it a try.
            AFAIK there is no way around the VS command prompt.

            Vote the answer(s) that helped you to solve your issue(s)

            1 Reply Last reply
            0
            • K Offline
              K Offline
              koahnig
              wrote on last edited by
              #10

              [quote author="SGaist" date="1376077649"]I might be wrong, but I think that using a MSVC2010 Qt with VS2008 might be problematic[/quote]
              That is for sure too. You cannot mix different msvc versions.

              Vote the answer(s) that helped you to solve your issue(s)

              1 Reply Last reply
              0
              • SGaistS Offline
                SGaistS Offline
                SGaist
                Lifetime Qt Champion
                wrote on last edited by
                #11

                [quote author="koahnig" date="1376077876"]
                I have never tried, but I would guess that the same rules apply when use nmake directly. Give it a try.
                AFAIK there is no way around the VS command prompt. [/quote]

                You can if you setup the environment by hand, it can even work from an msys prompt (i.e. installed with git for windows) but that's not for the faint hearted.

                IIRC, there are several batch files you can use to setup a command prompt. They can be found in the VS install, or the quick way is to check the properties of the various command prompt shortcut in the Start menu

                Interested in AI ? www.idiap.ch
                Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

                1 Reply Last reply
                0
                • K Offline
                  K Offline
                  koahnig
                  wrote on last edited by
                  #12

                  [quote author="SGaist" date="1376078503"]
                  [quote author="koahnig" date="1376077876"]
                  I have never tried, but I would guess that the same rules apply when use nmake directly. Give it a try.
                  AFAIK there is no way around the VS command prompt. [/quote]

                  You can if you setup the environment by hand, it can even work from an msys prompt (i.e. installed with git for windows) but that's not for the faint hearted.

                  IIRC, there are several batch files you can use to setup a command prompt. They can be found in the VS install, or the quick way is to check the properties of the various command prompt shortcut in the Start menu[/quote]

                  Well, I was never digging as deep. I was doing a couple of compilations of Qt 4 versions. All I know is that one had to use msvc command prompt. That was the officially recommended way to do the compilation based on msvc for quite some time. However, that might have changed over the time.

                  However, the problem or an additional problem is probably the mix of different msvc versions. The libs of msvc were always dependent of the compiler versions.

                  Since msvc2008 is used and no pre-build of msvc2008 is on the official page, that is for sure the next thing to check.

                  Vote the answer(s) that helped you to solve your issue(s)

                  1 Reply Last reply
                  0
                  • SGaistS Offline
                    SGaistS Offline
                    SGaist
                    Lifetime Qt Champion
                    wrote on last edited by
                    #13

                    [quote author="koahnig" date="1376082086"]
                    Well, I was never digging as deep. I was doing a couple of compilations of Qt 4 versions. All I know is that one had to use msvc command prompt. That was the officially recommended way to do the compilation based on msvc for quite some time. However, that might have changed over the time. [/quote]

                    IFAIK, it hasn't changed a bit, I did that to automate release builds and I like bash better.

                    [quote author="koahnig" date="1376082086"]
                    However, the problem or an additional problem is probably the mix of different msvc versions. The libs of msvc were always dependent of the compiler versions.

                    Since msvc2008 is used and no pre-build of msvc2008 is on the official page, that is for sure the next thing to check. [/quote]

                    Completely agree

                    Interested in AI ? www.idiap.ch
                    Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

                    1 Reply Last reply
                    0
                    • A Offline
                      A Offline
                      Amirhosein
                      wrote on last edited by
                      #14

                      Thank you very much for your help

                      I will try to solve the problem with your solution on Monday at work and then if I still have this problem, we can try to find another solution.

                      As your information, I tried the later versions of visual studio but the result was same. I prefer to use MSVC 2008 because it is in English and others are in german. anyway, thanks again for your help.

                      1 Reply Last reply
                      0
                      • K Offline
                        K Offline
                        koahnig
                        wrote on last edited by
                        #15

                        [quote author="Amirhosein" date="1376086468"]Thank you very much for your help

                        I will try to solve the problem with your solution on Monday at work and then if I still have this problem, we can try to find another solution.

                        As your information, I tried the later versions of visual studio but the result was same. I prefer to use MSVC 2008 because it is in English and others are in german. anyway, thanks again for your help.[/quote]

                        The open question at the time is whether you have installed the correct Qt lib version. The version has to be compiled with the same MSVC version as you are trying to do your application.

                        Which version of Qt are you using?
                        Is it Qt5 or Qt4?
                        Where did you download from?

                        Vote the answer(s) that helped you to solve your issue(s)

                        1 Reply Last reply
                        0
                        • A Offline
                          A Offline
                          Amirhosein
                          wrote on last edited by
                          #16

                          I use Qt v4,8,4 (VS2010 Opensource). I don't know from where it is downloaded.

                          when I call nmake in command prompt, it gives me same fatal error for both of MSVC that I have. Maybe my MSVCs have a problem.

                          These are the errors:

                          C:\Program Files\Microsoft Visual Studio 9.0\VC>nmake

                          Microsoft (R) Program Maintenance Utility Version 9.00.21022.08
                          Copyright (C) Microsoft Corporation. All rights reserved.

                          NMAKE : fatal error U1064: MAKEFILE not found and no target specified
                          Stop.

                          C:\Program Files\Microsoft Visual Studio 10.0\VC>nmake

                          Microsoft (R) Program Maintenance Utility, Version 10.00.30319.01
                          Copyright (C) Microsoft Corporation. Alle Rechte vorbehalten.

                          NMAKE : fatal error U1064: MAKEFILE nicht gefunden und kein Ziel angegeben
                          Stop.

                          1 Reply Last reply
                          0
                          • SGaistS Offline
                            SGaistS Offline
                            SGaist
                            Lifetime Qt Champion
                            wrote on last edited by
                            #17

                            You have both Visual Studio 2008 and 2010 installed ?

                            Interested in AI ? www.idiap.ch
                            Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

                            1 Reply Last reply
                            0
                            • A Offline
                              A Offline
                              Amirhosein
                              wrote on last edited by
                              #18

                              yes I have the both.

                              1 Reply Last reply
                              0
                              • K Offline
                                K Offline
                                koahnig
                                wrote on last edited by
                                #19

                                If you want to use Qt libs 4.8.4 (VS2010 Opensource) you must use the compiler tool chain shipped with msvc2010 for compilation.

                                "According to this":http://de.wikipedia.org/wiki/Microsoft_Visual_Studio#Version_2010 it would be the second one you have tried.
                                [quote author="Amirhosein" date="1376313350"]
                                C:\Program Files\Microsoft Visual Studio 10.0\VC>nmake

                                Microsoft (R) Program Maintenance Utility, Version 10.00.30319.01
                                Copyright (C) Microsoft Corporation. Alle Rechte vorbehalten.

                                NMAKE : fatal error U1064: MAKEFILE nicht gefunden und kein Ziel angegeben
                                Stop.
                                [/quote]
                                This seems to be correct nmake, but the makefile is missing.

                                Do you use msvc2010 as IDE (integrated development environment) or Qt creator?

                                I got the feeling that you are working on command prompt only. Is that true?

                                Anyway a qmake run is missing. This would create the missing makefile.

                                Vote the answer(s) that helped you to solve your issue(s)

                                1 Reply Last reply
                                0
                                • A Offline
                                  A Offline
                                  Amirhosein
                                  wrote on last edited by
                                  #20

                                  I don't have Qt creator, so I only use command prompt.

                                  so you think that my Qt has a problem?

                                  1 Reply Last reply
                                  0
                                  • SGaistS Offline
                                    SGaistS Offline
                                    SGaist
                                    Lifetime Qt Champion
                                    wrote on last edited by
                                    #21

                                    No, what koahnig said is that you probably didn't run qmake, so you don't don't have a Makefile because of that.

                                    To build your project (and I recommend a shadow build)

                                    make a shadow build folder besides your source folder

                                    cd into that folder

                                    call qmake ..\mycoolprogram\mycoolprogram.pro

                                    call nmake

                                    Interested in AI ? www.idiap.ch
                                    Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

                                    1 Reply Last reply
                                    0
                                    • A Offline
                                      A Offline
                                      Amirhosein
                                      wrote on last edited by
                                      #22

                                      of course I built my project with qmake, but I got an error that I posted before,
                                      I think I should try the new versions of Qt which has also Qt creator but does Qt5,1 that released recently work with MSVC 2010 or I should also install the later version of VC?

                                      1 Reply Last reply
                                      0
                                      • SGaistS Offline
                                        SGaistS Offline
                                        SGaist
                                        Lifetime Qt Champion
                                        wrote on last edited by
                                        #23

                                        What do you have in the folder where you ran qmake ?

                                        Interested in AI ? www.idiap.ch
                                        Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

                                        1 Reply Last reply
                                        0
                                        • A Offline
                                          A Offline
                                          Amirhosein
                                          wrote on last edited by
                                          #24

                                          Hello.cpp
                                          Hello.pro
                                          Makefile
                                          Makefile.debug
                                          Makefile.release
                                          release and debug folder which are emoty.

                                          1 Reply Last reply
                                          0

                                          • Login

                                          • Login or register to search.
                                          • First post
                                            Last post
                                          0
                                          • Categories
                                          • Recent
                                          • Tags
                                          • Popular
                                          • Users
                                          • Groups
                                          • Search
                                          • Get Qt Extensions
                                          • Unsolved