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. Qt Creator error “No such file or directory” when using boost in mongocxx
Forum Updated to NodeBB v4.3 + New Features

Qt Creator error “No such file or directory” when using boost in mongocxx

Scheduled Pinned Locked Moved Solved General and Desktop
28 Posts 7 Posters 3.4k Views 2 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.
  • S Offline
    S Offline
    SimonR
    wrote on last edited by
    #10

    The compiler used for building the driver was MSVC, so that might be an issue because Qt Creator uses MinGW. How can I change the compiler?

    mrjjM 1 Reply Last reply
    0
    • S SimonR

      The compiler used for building the driver was MSVC, so that might be an issue because Qt Creator uses MinGW. How can I change the compiler?

      mrjjM Offline
      mrjjM Offline
      mrjj
      Lifetime Qt Champion
      wrote on last edited by
      #11

      @SimonR
      Hi
      Use Qt maintenance tool to install the visual studio version of Qt for 2017/2019 32/64 VS
      and then go and download the compiler from Microsoft site.

      1 Reply Last reply
      0
      • S Offline
        S Offline
        SimonR
        wrote on last edited by
        #12

        @mrjj
        Can you please provide me better guide how to change the compiler? I've looked it up in the internet but I haven't found anything useful. Ans can I still compile QML applications with MSVC?

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

          Well: go to the Microsoft website, download the Visual Studio installer, then execute it.

          As for Qt Quick, the compiler has no role here. As long as you have the modules built, it will work.

          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
          • S Offline
            S Offline
            SimonR
            wrote on last edited by
            #14

            So, I have Visual Studio now, anything else I have to do? The compiler is still MinGW.

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

              As @mrjj already suggested, did you install the MSVC build of Qt ?

              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
              • S Offline
                S Offline
                SimonR
                wrote on last edited by
                #16

                When I open Qt Maintenance Tool, it looks like this:
                38cedf62-5358-438d-b3b4-0e3f8b27bcfd-image.png

                jsulmJ 1 Reply Last reply
                0
                • S SimonR

                  When I open Qt Maintenance Tool, it looks like this:
                  38cedf62-5358-438d-b3b4-0e3f8b27bcfd-image.png

                  jsulmJ Offline
                  jsulmJ Offline
                  jsulm
                  Lifetime Qt Champion
                  wrote on last edited by
                  #17

                  @SimonR Did you select Kit configured for MSVC compiler/Qt to build you project?

                  https://forum.qt.io/topic/113070/qt-code-of-conduct

                  1 Reply Last reply
                  0
                  • S Offline
                    S Offline
                    SimonR
                    wrote on last edited by SimonR
                    #18

                    I've selected the right compiler now,
                    40fa38e3-8282-4101-ad3d-f6958120265c-image.png
                    but when I try to run the program, I get an error.
                    1f000937-a8e5-4c5e-8ff6-d61d251da9d9-image.png
                    When I open the kits section, it shows some warnings:
                    07d09771-b8c0-44aa-aa74-d29089de6514-image.png
                    Is this normal? Or do I have to set up something else? Also, I found out that you can change it compiler, but it only shows amd64 and x86 architecture. I have an Intel processor, can I still use the amd64 because I haven't found the right settings for Intel processors?
                    b812af3a-963f-4931-8966-50c00457d3e6-image.png

                    jsulmJ 1 Reply Last reply
                    0
                    • S SimonR

                      I've selected the right compiler now,
                      40fa38e3-8282-4101-ad3d-f6958120265c-image.png
                      but when I try to run the program, I get an error.
                      1f000937-a8e5-4c5e-8ff6-d61d251da9d9-image.png
                      When I open the kits section, it shows some warnings:
                      07d09771-b8c0-44aa-aa74-d29089de6514-image.png
                      Is this normal? Or do I have to set up something else? Also, I found out that you can change it compiler, but it only shows amd64 and x86 architecture. I have an Intel processor, can I still use the amd64 because I haven't found the right settings for Intel processors?
                      b812af3a-963f-4931-8966-50c00457d3e6-image.png

                      jsulmJ Offline
                      jsulmJ Offline
                      jsulm
                      Lifetime Qt Champion
                      wrote on last edited by
                      #19

                      @SimonR Run it through debugger - looks like it is crashing.

                      https://forum.qt.io/topic/113070/qt-code-of-conduct

                      1 Reply Last reply
                      1
                      • S Offline
                        S Offline
                        SimonR
                        wrote on last edited by
                        #20

                        So I've set up the compiler now, but when I run the application I get errors:
                        4ba8dbb8-adb6-4ec1-9dec-bce6b42e8574-image.png

                        I don't know why the language is German, because it's set to English. But as far as I know, those errors are linking errors, so I guess the libraries are not included correctly.

                        Here is my .pro file:

                        QT += quick
                        
                        CONFIG += c++17
                        
                        DEFINES += QT_DEPRECATED_WARNINGS
                        
                        SOURCES += \
                                main.cpp \
                                signIn.cpp \
                                signUp.cpp
                        
                        INCLUDEPATH += C:/mongo-cxx-driver-3.4.1/include/bsoncxx/v_noabi \
                                       C:/mongo-cxx-driver-3.4.1/include/mongocxx/v_noabi \
                                       D:/boost_1_72_0
                        
                        RESOURCES += qml.qrc
                        
                        TRANSLATIONS += \
                            LogIn_en_CA.ts
                        
                        QML_IMPORT_PATH =
                        
                        QML_DESIGNER_IMPORT_PATH =
                        
                        qnx: target.path = /tmp/$${TARGET}/bin
                        else: unix:!android: target.path = /opt/$${TARGET}/bin
                        !isEmpty(target.path): INSTALLS += target
                        
                        HEADERS += \
                            signIn.h \
                            signUp.h
                        
                        LIBS += -LC:/mongo-cxx-driver-3.4.1/lib -lbsoncxx \
                                -LC:/mongo-cxx-driver-3.4.1/lib -lmongocxx
                        
                        jsulmJ 1 Reply Last reply
                        0
                        • S SimonR

                          So I've set up the compiler now, but when I run the application I get errors:
                          4ba8dbb8-adb6-4ec1-9dec-bce6b42e8574-image.png

                          I don't know why the language is German, because it's set to English. But as far as I know, those errors are linking errors, so I guess the libraries are not included correctly.

                          Here is my .pro file:

                          QT += quick
                          
                          CONFIG += c++17
                          
                          DEFINES += QT_DEPRECATED_WARNINGS
                          
                          SOURCES += \
                                  main.cpp \
                                  signIn.cpp \
                                  signUp.cpp
                          
                          INCLUDEPATH += C:/mongo-cxx-driver-3.4.1/include/bsoncxx/v_noabi \
                                         C:/mongo-cxx-driver-3.4.1/include/mongocxx/v_noabi \
                                         D:/boost_1_72_0
                          
                          RESOURCES += qml.qrc
                          
                          TRANSLATIONS += \
                              LogIn_en_CA.ts
                          
                          QML_IMPORT_PATH =
                          
                          QML_DESIGNER_IMPORT_PATH =
                          
                          qnx: target.path = /tmp/$${TARGET}/bin
                          else: unix:!android: target.path = /opt/$${TARGET}/bin
                          !isEmpty(target.path): INSTALLS += target
                          
                          HEADERS += \
                              signIn.h \
                              signUp.h
                          
                          LIBS += -LC:/mongo-cxx-driver-3.4.1/lib -lbsoncxx \
                                  -LC:/mongo-cxx-driver-3.4.1/lib -lmongocxx
                          
                          jsulmJ Offline
                          jsulmJ Offline
                          jsulm
                          Lifetime Qt Champion
                          wrote on last edited by
                          #21

                          @SimonR Looks like you're not linking properly against mongocxx. Which compiler was used to build those libraries and are they 32bit or 64bit?

                          https://forum.qt.io/topic/113070/qt-code-of-conduct

                          1 Reply Last reply
                          1
                          • S Offline
                            S Offline
                            SimonR
                            wrote on last edited by
                            #22

                            I've played with the setting a bit and now, it compiles, but it doesn't run and shows an error:
                            200de448-d179-49ab-88a2-548f494b1f64-image.png

                            And when it try do run the debugger, it also shows an error:
                            bf60b637-3af4-462b-83a2-97be35929eb7-image.png

                            jsulmJ 1 Reply Last reply
                            0
                            • S SimonR

                              I've played with the setting a bit and now, it compiles, but it doesn't run and shows an error:
                              200de448-d179-49ab-88a2-548f494b1f64-image.png

                              And when it try do run the debugger, it also shows an error:
                              bf60b637-3af4-462b-83a2-97be35929eb7-image.png

                              jsulmJ Offline
                              jsulmJ Offline
                              jsulm
                              Lifetime Qt Champion
                              wrote on last edited by
                              #23

                              @SimonR The last error says what is wrong and what needs to be done

                              https://forum.qt.io/topic/113070/qt-code-of-conduct

                              1 Reply Last reply
                              2
                              • S Offline
                                S Offline
                                SimonR
                                wrote on last edited by SimonR
                                #24

                                So, i can compile the project now with MSVC, but when I try to make an connection using

                                mongocxx::instance inst{};
                                mongocxx::client conn{ mongocxx::uri{"my connection string"} };
                                bsoncxx::builder::stream::document document{};
                                

                                it throws the same error as before:
                                ea7b3506-a3a1-45be-9308-b87dce103316-image.png
                                When I delete the libs part in the .pro file, it works again and keeps working, until I include the libs again and try to use something from mongocxx.

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

                                  As a test, copy the dlls from that library in the same folder as your executable.

                                  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
                                  • S Offline
                                    S Offline
                                    SimonR
                                    wrote on last edited by
                                    #26

                                    @SGaist no, that didn't help. Still the same error.

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

                                      Then check that you have all the related dependencies available.

                                      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
                                      1
                                      • S Offline
                                        S Offline
                                        SimonR
                                        wrote on last edited by SimonR
                                        #28

                                        I've created a project in Visual Studio 2019 now with the same settings as in Qt Creator, and it works. Included all the header files, libs and dlls and it works. Don't know why this isn't working in Qt Creator. I've tried this but I get the same error. I have to delete the LIBS part and then it runs again. All the dlls are in the folder, but it crashes all the time.

                                        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