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. New to Qt.

New to Qt.

Scheduled Pinned Locked Moved Unsolved General and Desktop
71 Posts 6 Posters 43.9k Views 4 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.
  • EddyE Offline
    EddyE Offline
    Eddy
    wrote on last edited by Eddy
    #6

    can you show us all the errors? there must be more than 1 line...

    Qt Certified Specialist
    www.edalsolutions.be

    1 Reply Last reply
    1
    • I Offline
      I Offline
      ijnuj.aicrag
      wrote on last edited by ijnuj.aicrag
      #7

      Yes, it is more than 1 line.. actually the project has 19 errors.

      C:\Users\irish_ElEveN\Desktop\build-SimulIDE-Desktop_Qt_5_5_1_MinGW_32bit-Debug\Makefile.Debug:182: warning: overriding recipe for target 'build/*.o' line 182
      C:\Users\irish_ElEveN\Desktop\build-SimulIDE-Desktop_Qt_5_5_1_MinGW_32bit-Debug\Makefile.Debug:179: warning: ignoring old recipe for target 'build/*.o' line 179 and so on.. till 18th error

      The 19th error was :-1: error: No rule to make target 'src/simulator/elements/processors/*.cpp', needed by 'build/*.o'. Stop.

      1 Reply Last reply
      0
      • EddyE Offline
        EddyE Offline
        Eddy
        wrote on last edited by
        #8

        @ijnuj.aicrag said:

        line 182

        what's on that line, and what is it's context?

        Qt Certified Specialist
        www.edalsolutions.be

        1 Reply Last reply
        1
        • I Offline
          I Offline
          ijnuj.aicrag
          wrote on last edited by
          #9

          @Eddy line 178 build/*.o: src/*.cpp
          line 179 $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build\*.o src\*.cpp

          181 build/*.o: src/gui/*.cpp
          182 $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build\*.o src\gui\*.cpp

          184 build/*.o: src/gui/circuitwidget/*.cpp
          $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build\*.o src\gui\circuitwidget\*.cpp

          187 build/*.o: src/gui/circuitwidget/components/*.cpp
          188 $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build\*.osrc\gui\circuitwidget\components\*.cpp

          190 build/*.o: src/gui/circuitwidget/components/mcu/*.cpp
          191 $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build\*.o src\gui\circuitwidget\components\mcu\*.cpp

          193 build/*.o: src/gui/oscopewidget/*.cpp
          194 $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build\*.o src\gui\oscopewidget\*.cpp

          196 build/*.o: src/gui/QPropertyEditor/*.cpp
          197 $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build\*.o src\gui\QPropertyEditor\*.cpp

          199 build/*.o: src/simulator/*.cpp
          200 $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build\*.o src\simulator\*.cpp

          202 build/*.o: src/simulator/elements/*.cpp
          203 $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build\*.o src\simulator\elements\*.cpp

          205 build/*.o: src/simulator/elements/processors/*.cpp
          206 $(CXX) -c $(CXXFLAGS) $(INCPATH) -o build\*.o src\simulator\elements\processors\*.cpp

          19th error is :-1: error: No rule to make target 'src/simulator/elements/processors/*.cpp', needed by 'build/*.o' Stop.

          1 Reply Last reply
          0
          • I ijnuj.aicrag

            I'm working on my Windows 7. I'm having problem with compiling this project I found.

            EddyE Offline
            EddyE Offline
            Eddy
            wrote on last edited by
            #10

            @ijnuj.aicrag
            can you compile a simple application using Qt or do you have the same problems?

            Qt Certified Specialist
            www.edalsolutions.be

            I 1 Reply Last reply
            0
            • EddyE Eddy

              @ijnuj.aicrag
              can you compile a simple application using Qt or do you have the same problems?

              I Offline
              I Offline
              ijnuj.aicrag
              wrote on last edited by
              #11

              @Eddy No, I actually want to run that project for school purposes. Please, help me :(

              1 Reply Last reply
              0
              • EddyE Offline
                EddyE Offline
                Eddy
                wrote on last edited by
                #12

                @ijnuj.aicrag said:

                @Eddy No, I actually want to run that project for school purposes. Please, help me :(

                Hi,

                It's difficult to help you if we can't see the sources. Do you have an installed Qt Creator and are you able to run a simple example. We need to know to see if your environment is ok.

                Qt Certified Specialist
                www.edalsolutions.be

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

                  @Eddy You can find the source on sourceforge.
                  The thing is: it's a Qt 4 project which has seen its last commit 3 years ago. So the first thing that must done is to remove all modules from the includes and add QT += widgets to the main .pro file and then the rest.

                  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
                  • I Offline
                    I Offline
                    ijnuj.aicrag
                    wrote on last edited by
                    #14

                    I ran some examples on Qt Creator so I think it is definitely working. I'm just having trouble compiling the project.. Thanks.

                    JKSHJ 1 Reply Last reply
                    0
                    • I ijnuj.aicrag

                      I ran some examples on Qt Creator so I think it is definitely working. I'm just having trouble compiling the project.. Thanks.

                      JKSHJ Offline
                      JKSHJ Offline
                      JKSH
                      Moderators
                      wrote on last edited by
                      #15

                      @ijnuj.aicrag said:

                      @Eddy No, I actually want to run that project for school purposes. Please, help me :(

                      Are other people in your school using that project? Did they manage to compile it?

                      I ran some examples on Qt Creator so I think it is definitely working. I'm just having trouble compiling the project..

                      The project is written in Qt 4, so you will have better luck if you download Qt 4.

                      Qt Doc Search for browsers: forum.qt.io/topic/35616/web-browser-extension-for-improved-doc-searches

                      I 1 Reply Last reply
                      0
                      • JKSHJ JKSH

                        @ijnuj.aicrag said:

                        @Eddy No, I actually want to run that project for school purposes. Please, help me :(

                        Are other people in your school using that project? Did they manage to compile it?

                        I ran some examples on Qt Creator so I think it is definitely working. I'm just having trouble compiling the project..

                        The project is written in Qt 4, so you will have better luck if you download Qt 4.

                        I Offline
                        I Offline
                        ijnuj.aicrag
                        wrote on last edited by
                        #16

                        @JKSH I am just the one who's working on this project.

                        Yep, I gotta give it a try. Just having trouble with the version of the compiler for Qt 4.8.7. Is it okay to put MinGW-w64 32 bit on it?

                        JKSHJ 1 Reply Last reply
                        0
                        • I ijnuj.aicrag

                          @JKSH I am just the one who's working on this project.

                          Yep, I gotta give it a try. Just having trouble with the version of the compiler for Qt 4.8.7. Is it okay to put MinGW-w64 32 bit on it?

                          JKSHJ Offline
                          JKSHJ Offline
                          JKSH
                          Moderators
                          wrote on last edited by
                          #17

                          @ijnuj.aicrag said:

                          @JKSH I am just the one who's working on this project.

                          Do you want to use SimulIDE, or modify SimulIDE?

                          Yep, I gotta give it a try. Just having trouble with the version of the compiler for Qt 4.8.7. Is it okay to put MinGW-w64 32 bit on it?

                          See https://wiki.qt.io/MinGW . Qt 4.8.7 uses the same compiler as Qt 4.8.6 (mingw-builds i686-4.8.2-release-posix-dwarf-rt_v3-rev3)

                          Qt Doc Search for browsers: forum.qt.io/topic/35616/web-browser-extension-for-improved-doc-searches

                          I 1 Reply Last reply
                          0
                          • JKSHJ JKSH

                            @ijnuj.aicrag said:

                            @JKSH I am just the one who's working on this project.

                            Do you want to use SimulIDE, or modify SimulIDE?

                            Yep, I gotta give it a try. Just having trouble with the version of the compiler for Qt 4.8.7. Is it okay to put MinGW-w64 32 bit on it?

                            See https://wiki.qt.io/MinGW . Qt 4.8.7 uses the same compiler as Qt 4.8.6 (mingw-builds i686-4.8.2-release-posix-dwarf-rt_v3-rev3)

                            I Offline
                            I Offline
                            ijnuj.aicrag
                            wrote on last edited by
                            #18

                            @JKSH I'm gonna modify it (change some objects on UI, etc) then I'm gonna use it, that's all.
                            Thank you so much for the link of the compiler you sent!

                            JKSHJ 1 Reply Last reply
                            0
                            • I ijnuj.aicrag

                              @JKSH I'm gonna modify it (change some objects on UI, etc) then I'm gonna use it, that's all.
                              Thank you so much for the link of the compiler you sent!

                              JKSHJ Offline
                              JKSHJ Offline
                              JKSH
                              Moderators
                              wrote on last edited by
                              #19

                              @ijnuj.aicrag said:

                              @JKSH I'm gonna modify it (change some objects on UI, etc) then I'm gonna use it, that's all.

                              If you want to modify it to let other people use it, then I suggest you try to port it to Qt 5 (if you can). Qt 4 will no longer be supported after this year.

                              Thank you so much for the link of the compiler you sent!

                              You're welcome. I just realized that the page I posted had a broken download link. I've fixed it now.

                              Qt Doc Search for browsers: forum.qt.io/topic/35616/web-browser-extension-for-improved-doc-searches

                              I 1 Reply Last reply
                              0
                              • JKSHJ JKSH

                                @ijnuj.aicrag said:

                                @JKSH I'm gonna modify it (change some objects on UI, etc) then I'm gonna use it, that's all.

                                If you want to modify it to let other people use it, then I suggest you try to port it to Qt 5 (if you can). Qt 4 will no longer be supported after this year.

                                Thank you so much for the link of the compiler you sent!

                                You're welcome. I just realized that the page I posted had a broken download link. I've fixed it now.

                                I Offline
                                I Offline
                                ijnuj.aicrag
                                wrote on last edited by
                                #20

                                @JKSH I've downloaded the (qt-opensource-windows-x86-vs2010-4.8.7.exe) to have Qt4 Version. Is it okay despite my system unit is on 32-bit?

                                JKSHJ 1 Reply Last reply
                                0
                                • I ijnuj.aicrag

                                  @JKSH I've downloaded the (qt-opensource-windows-x86-vs2010-4.8.7.exe) to have Qt4 Version. Is it okay despite my system unit is on 32-bit?

                                  JKSHJ Offline
                                  JKSHJ Offline
                                  JKSH
                                  Moderators
                                  wrote on last edited by
                                  #21

                                  @ijnuj.aicrag said:

                                  @JKSH I've downloaded the (qt-opensource-windows-x86-vs2010-4.8.7.exe) to have Qt4 Version. Is it okay despite my system unit is on 32-bit?

                                  That's ok. x86 is 32-bit.

                                  Qt Doc Search for browsers: forum.qt.io/topic/35616/web-browser-extension-for-improved-doc-searches

                                  1 Reply Last reply
                                  0
                                  • B Offline
                                    B Offline
                                    bruakerche
                                    wrote on last edited by
                                    #22

                                    Would it be better if you could provide the source code of the project

                                    I 1 Reply Last reply
                                    0
                                    • B bruakerche

                                      Would it be better if you could provide the source code of the project

                                      I Offline
                                      I Offline
                                      ijnuj.aicrag
                                      wrote on last edited by
                                      #23

                                      @bruakerche http://sourceforge.net/p/simulide/svnrepo/HEAD/tree/ here's the link of the source code. Download snapshot.

                                      1 Reply Last reply
                                      0
                                      • I Offline
                                        I Offline
                                        ijnuj.aicrag
                                        wrote on last edited by
                                        #24

                                        Error became 1 when I changed something I don't know.

                                        Here's the syntax:
                                        c:\Qt\4.8.7\bin\rcc.exe -name application ..\simulide-svnrepo-27-trunk\application.qrc -o debug\qrc_application.cpp

                                        error: missing separator (did you mean TAB instead of 8 spaces?). Stop.

                                        1 Reply Last reply
                                        0
                                        • I Offline
                                          I Offline
                                          ijnuj.aicrag
                                          wrote on last edited by
                                          #25

                                          14:47:06: Running steps for project SimulIDE...
                                          14:47:06: Configuration unchanged, skipping qmake step.
                                          14:47:06: Starting: "C:\Users\irish_ElEveN\Desktop\mingw32\bin\mingw32-make.exe"
                                          C:/Users/irish_ElEveN/Desktop/mingw32/bin/mingw32-make -f Makefile.Debug
                                          mingw32-make[1]: Entering directory 'C:/Users/irish_ElEveN/Desktop/build-SimulIDE-Unnamed-Debug'
                                          Makefile.Debug:159: *** missing separator. Stop.
                                          mingw32-make[1]: Leaving directory 'C:/Users/irish_ElEveN/Desktop/build-SimulIDE-Unnamed-Debug'
                                          Makefile:34: recipe for target 'debug' failed
                                          mingw32-make: *** [debug] Error 2
                                          14:47:06: The process "C:\Users\irish_ElEveN\Desktop\mingw32\bin\mingw32-make.exe" exited with code 2.
                                          Error while building/deploying project SimulIDE (kit: Desktop Qt 4.8.7)
                                          When executing step "Make"
                                          14:47:06: Elapsed time: 00:00.

                                          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