Navigation

    Qt Forum

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Search
    • Unsolved
    1. Home
    2. Tags
    3. linking
    Log in to post

    • UNSOLVED Mac - Qt Dylib locations... ?
      General and Desktop • cmake mac linking bundle dylib • • Dariusz  

      6
      0
      Votes
      6
      Posts
      135
      Views

      @Dariusz You should use macdeployqt for all things qt, possibly your custom solutions for your custom stuff (additional libs, etc).
    • SOLVED Forced lib linkage for its resources
      General and Desktop • resource linking librabries • • 0...-5  

      3
      0
      Votes
      3
      Posts
      65
      Views

      @Christian-Ehrlicher many thanks for fast response
    • UNSOLVED Fresh windows, cant link QT...
      Tools • qtcreator visual studio linking clion-ide • • Dariusz  

      1
      0
      Votes
      1
      Posts
      121
      Views

      No one has replied

    • UNSOLVED Disable jpeg in .pro file? (Linux problem)
      General and Desktop • linux linking jpeg • • FrankE  

      2
      0
      Votes
      2
      Posts
      57
      Views

      Hi https://doc.qt.io/qt-5/qtimageformats-index.html The core Qt Gui library contains the code for JPEG so recompile is needed to get rid of it. However, are you sure its a clash ? I mean the JPEG is wrapped into Qt and classes so clashing with a free function seems unlikely.
    • SOLVED SUBDIRS - Dependencies
      General and Desktop • linking subdirs subproject • • rtavakko  

      10
      0
      Votes
      10
      Posts
      712
      Views

      @rtavakko I'm so pleased to hear the working solution! Thanks for sharing the good news :)
    • SOLVED Link / Build Error QtCreator 4.10.2, Qt 5.13, OpenCV, Ubuntu 18.04.
      General and Desktop • opencv linking ubuntu 18.04 • • Pl45m4  

      6
      0
      Votes
      6
      Posts
      814
      Views

      I still don't know what exactly went wrong, but after I removed all of the OpenCV stuff and re-installed a fresh v4.1, it worked. So even though I checked all lib-files, there must have been something wrong with the linked libs (Pointing to different versions?! Links not working?!, etc.) Thanks @SGaist, your answer made me remove everthing and try the OCV version that is provided by Ubuntu 18.04. I got 3.X.X from there... After I removed this version again (because I want a newer one) and installed 4.1 from OCV page, it worked :-)
    • SOLVED Linking against Openssl 1.1.2-dev Libs
      General and Desktop • library openssl linking librabries • • Opa114  

      13
      0
      Votes
      13
      Posts
      1756
      Views

      @Opa114 Thanks for the feedback. So please mark this topic as SOLVED now.
    • SOLVED HOW TO Read exceptions
      Installation and Deployment • qtcreator libraries linking exceptions • • Sillimon  

      9
      0
      Votes
      9
      Posts
      2397
      Views

      @JonB I think i won't be able to understand something more detailled and that answer the whole questions =) Thanks a lot, you ma real expert ! ;D
    • UNSOLVED Procedure entry point not located when deploying Qt MinGW application
      Installation and Deployment • mingw linker errors windeployqt linking mingw32bit • • Vagabond  

      8
      0
      Votes
      8
      Posts
      3640
      Views

      @Vagabond please don't forget to mark your post as solved... thanks.
    • UNSOLVED Licensing question, dynamic linking inside self-extracting containers
      Installation and Deployment • licensing linking • • ZeBe  

      2
      0
      Votes
      2
      Posts
      715
      Views

      @ZeBe Does the open-source licensing allow packaging a dynamically linked application and the required Qt libraries inside a single-file container Yes, as far as I understand it, but I'm no lawyer.
    • UNSOLVED Error linking custom Qt Creator plugin with other plugins
      Tools • qtcreator plugin linking • • Evolix  

      1
      0
      Votes
      1
      Posts
      601
      Views

      No one has replied

    • UNSOLVED Can't link static freetype library in Qt
      General and Desktop • qmake error linking linker freetype • • Row_Rebel  

      1
      0
      Votes
      1
      Posts
      1140
      Views

      No one has replied

    • Troubles setting up Curl
      Tools • qt 5.4.2 linking curl • • RaJiska  

      12
      0
      Votes
      12
      Posts
      5921
      Views

      Hello' Again, I've decided to try it over MinGW compiler and a static build, apparently it got better but still have some errors. Here is my .pro file: QT += core gui widgets TARGET = Launcher TEMPLATE = app SOURCES += main.cpp mainwindow.cpp HEADERS += mainwindow.h FORMS += mainwindow.ui DEFINES += CURL_STATICLIB LIBS += -L"C:/Users/Banzai/Desktop/C++/QtPgrm/Mingw Real/includes/curl" -lcurl LIBS += "C:/Users/Banzai/Desktop/C++/QtPgrm/Mingw Real/includes/curl/libcurl.a" LIBS += "C:/Users/Banzai/Desktop/C++/QtPgrm/Mingw Real/includes/curl/libcurldll.a" INCLUDEPATH += "C:/Users/Banzai/Desktop/C++/QtPgrm/Mingw Real/includes" Also '#define CURL_STATICLIB' is declared in the header before the include of cURL. Here is the error I got: error: undefined reference to `curl_easy_init'. Not too sure what it could be. (I am using the 64 bits version while the compiler is 32 bits). When I've been using the 32 bits version, here is what I got: undefined reference to {WSAStartup@8,WSACleanup@0} <path>/curl/libcurl.a(easy.o): bad reloc address 0x0 in section `.data'. Apparently I've ready somewhere that I had to include something with -lwsock32, which I did this way: LIBS += -lwsock32 Unfortunately it did not seem to change anything. Thank you for your help.
    • [solved] Trying to link my own static libarry
      General and Desktop • library static linking • • Tapsa  

      23
      0
      Votes
      23
      Posts
      5707
      Views

      Thank you. I'll be subclassing text/combo/check boxes as well.
    • [SOLVED] Using Armadillo library on QT creator
      General and Desktop • library compile linking armadillo • • RDiGuida  

      7
      0
      Votes
      7
      Posts
      5885
      Views

      You're welcome ! Since you have it working now, please update the thread title prepending [solved] so other forum users may know a solution has been found :) Up voting the answers that helped you will also allow other users to more easily find them.
    • Problem with application launch
      Installation and Deployment • compilation linking undefined symbo • • Nara  

      3
      0
      Votes
      3
      Posts
      986
      Views

      I finally made it, thanks to your link. I was indeed using the wrong library. I also missed the libxcb plugin but I added it to the project "package" and it now works fine. I was ready to bang my head against the walls.