
Emptying out the 'CMake Configuration' options. Restoring the 'CMake Generator' to 'Unix Makefiles',ģ. In the end, I had to forcefully kill the Qt Creator process after going back and cleaning up the default kit by:Ģ. So I think this is colliding with the new arguments set by Qt Creator. Normally, cmake would be run by invoking it with no command line parameters for this project I'm not sure why Qt Creator has added new defaults + changed the generated Makefile type.įor reference, we do have a CMake script that sets the CXX compiler (specifically for OS X): Running "/usr/local/bin/cmake /Users/kevinushey/git/rstudio/src/cpp '-GCodeBlocks - Unix Makefiles' -DCMAKE_CXX_COMPILER:STRING=/usr/bin/clang++ -DQT_QMAKE_EXECUTABLE:STRING=/usr/bin/qmake" in /var/folders/m7/_xnnz_b53kjgggkb1drc1f8c0000gn/T/qtc-cmake-u4VpbY.Įven though I never opted into using CodeBlocks Makefiles for this project, nor explicitly setting a CXX compiler for a command line invocation. I think the relevant bit is that Qt Creator, or CMake, is detecting that the CMAKE_CXX_COMPILER has changed, and hence attempts to re-run CMake again to resolve the issue however, it doesn't, and so we get stuck. You have changed variables that require your cache to be deleted.Ĭonfigure will be re-run and you may have to reset some variables. – The CXX compiler identification is AppleClang 7.029 – The C compiler identification is AppleClang 7.029 – Performing Test LIBR_MINIMUM_VERSION - Success – Found R: /Library/Frameworks/R.framework/Resources – Found LibR: /Library/Frameworks/R.framework/Resources – Found PAM: /usr/lib/libpam.dylib /usr/lib/libdl.dylib – Performing Test PAM_MESSAGE_CONST - Success – Performing Test HAVE_SCANDIR_POSIX - Success – Check for working CXX compiler: /usr/bin/c++ – works – Check for working CXX compiler: /usr/bin/c++ – Check for working C compiler: /usr/bin/cc – works – Check for working C compiler: /usr/bin/cc

This has worked in the past with previous versions of Qt Creator however, with the 4.0.0 release candidate Qt Creator gets stuck in an infinite loop running CMake: In particular, by opening the C++ portion of the project, by opening the CMakeLists.txt file at: I'm attempting to use Qt Creator to work with RStudio, at
