Navigation

    Qt Forum

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

    • UNSOLVED debugger/lldbbridge.py used with xcode 11.6 issues from Qt Creator 4.13 ,
      Tools • xcode clang lldbbridge issues • • bklove  

      1
      0
      Votes
      1
      Posts
      34
      Views

      No one has replied

    • UNSOLVED How to enable ClangRefactoring and ClangPchManager plugin ?
      Installation and Deployment • qtcreator plugins clang building build steps • • TBRZ  

      1
      0
      Votes
      1
      Posts
      64
      Views

      No one has replied

    • UNSOLVED Running clang tidy for a qmake project from the command line
      General and Desktop • linux qmake clang clang-tidy • • bepzi  

      1
      0
      Votes
      1
      Posts
      209
      Views

      No one has replied

    • Qt Creator Clang Code Model problems collection
      Tools • qt creator clang • • aha_1980  

      25
      7
      Votes
      25
      Posts
      4511
      Views

      Hi @rsacchettini, Clang is a double-sided sword. If it works, it gives you fantastic insight in your code - but if not, you often have no idea why. I'd recommend you nevertheless to start an own discussion topic here, we might be able to help you get it at least running. Can you at least work on a small example project? Also note that the CMake integration is in flow currently, so there might be regressions in .0 releases. You might want to try the last stable or the next snapshot release. Regards Edit: Ah, you alread did: https://forum.qt.io/topic/111067/symbols-parsing-and-finding-stops-working-qtcreator-v4-11-0-cmake-on-linux-x64
    • UNSOLVED QtCreator - Clang Code Model Version
      Tools • qtcreator clang macro version • • andreaplanet  

      1
      0
      Votes
      1
      Posts
      210
      Views

      No one has replied

    • SOLVED New Errors when moving C++ code to QT Creator
      General and Desktop • c++ qtcreator gcc clang • • A123  

      6
      0
      Votes
      6
      Posts
      1048
      Views

      @A123 said in New Errors when moving C++ code to QT Creator: its been used by others for years and it worked perfectly AFAIK with gcc and clang before I started using qtcreator which complained. Here's my guess: Previously, the assert() macro was disabled. This caused the illegal code to be effectively "commented out", so the compiler didn't detect it. After the migration, the assert() macro was no longer disabled, so the compiler now sees the bad code and (correctly) complains. See http://www.cplusplus.com/reference/cassert/assert/. You could make your code work again by defining the NDEBUG macro, but be careful: This will disable all assert()s which might cause other errors to go undetected. P.S. The compiler is the one that complained, not Qt Creator.
    • UNSOLVED Android build and deploy. 64bit, Clang, new app store developer console rules [2018 & 2019]
      Installation and Deployment • android build deploy clang ndk • • BINALECTRUM  

      3
      0
      Votes
      3
      Posts
      721
      Views

      @BINALECTRUM said in Android build and deploy. 64bit, Clang, new app store developer console rules [2018 & 2019]: Is Qt going more in embedded/car side and just slowly drops Android/mobile platform? In Roadmap 2018 there is nothing new about mobile platform. i heavily doubt that. I guess the reason is more because Qt runs more or less stable on Android. There are no bigger features which need to be implemented, mostly bug fixing. What is your move Qt team on new app store rules in developer console: minimal platform-26 in August 2018 and 64-bit apk in 2019? Some new changes in build and deploy area? i asked this at the beginning of the year, but unfortunately haven't received an answer.
    • UNSOLVED Not able to set the compiler for Qt
      Installation and Deployment • mac clang kit setup • • roshKrish  

      7
      0
      Votes
      7
      Posts
      1995
      Views

      Did you install Xcode 8 ? Your other error comes from the fact that you are calling xcodebuild in the folder where it's located and not where a Xcode project can be found.
    • UNSOLVED Why clang message does not show?
      Tools • qt creator clang clang analyser • • Vitek  

      1
      0
      Votes
      1
      Posts
      360
      Views

      No one has replied

    • UNSOLVED How to configure a pure C project?
      General and Desktop • qtcreator clang c language • • Hugo_y  

      1
      0
      Votes
      1
      Posts
      565
      Views

      No one has replied

    • SOLVED Is it possible to build Qt libraries with clang?
      Installation and Deployment • windows qt5.5.1 clang • • ZenitFan219  

      3
      0
      Votes
      3
      Posts
      1266
      Views

      @SGaist Thank you.
    • UNSOLVED QtCreator: Use clang code model for refactoring
      Tools • qtcreator clang code model refactor • • a.samii  

      1
      0
      Votes
      1
      Posts
      1049
      Views

      No one has replied

    • Using Clang with Qt on Windows
      General and Desktop • windows clang • • walking.in.the.air  

      6
      0
      Votes
      6
      Posts
      7024
      Views

      Yes, I'm newbie in C++ and didn't know the problem with different libraries and compilers. Now it is clear. Thank you very much!
    • Strange issue on Qt 5.5.0 when compile a project.
      General and Desktop • c++ osx clang • • shav  

      3
      0
      Votes
      3
      Posts
      1085
      Views

      @SGaist Thanks! I'll waiting for next release!
    • Qt Creator missing autocomplete when using clang
      Tools • qtcreator clang autocomplete stl • • Marius_Linux  

      1
      0
      Votes
      1
      Posts
      654
      Views

      No one has replied

    • Mac OSX QT-Creator Static Library *.a (clang-Compiler) in Eclipse CDT (JNI) *.jnilib (cpp-Compiler) einbinden (Download Projekte)
      German • static mac os x cpp clang static library jni java jni eclipse cdt eclipse jnilib llvm cdt • • moozoom  

      1
      0
      Votes
      1
      Posts
      892
      Views

      No one has replied

    • build error:invalid deployment target for -stdlib=libc++ (requires OS X 10.7 or later)
      Installation and Deployment • build osx clang libc++ stdlib • • theize  

      2
      0
      Votes
      2
      Posts
      1503
      Views

      ok finally: modifying Qt/5.3/clang_64/mkspecs/macx-clang/qmake.conf this way: #QMAKE_MACOSX_DEPLOYMENT_TARGET = 10.6 QMAKE_MACOSX_DEPLOYMENT_TARGET = 10.7 did the job. just in case anybody needs this again. seems easy afterwards -.-
    • Qt Creator 3.3.2 + clang + lldb on OS X Yosemite - breakpoints don't work when using "-save-temps"
      Tools • qt creator mac clang lldb • • Mamegohan  

      3
      0
      Votes
      3
      Posts
      1159
      Views

      Hi and welcome to devnet, You should bring this topic on the Qt Creator maling list You'll find there Qt Creator's developers/maintainers (this forum is more user oriented)