win10+minGW+cmake问题记录

问题记录:

采用cmake . -G"MinGW Makefiles"指令编译一直出问题。The C compiler identification is unknown
-- The CXX compiler identification is unknow。看了好多网上的答案。尝试卸载重装两次都不行。

最后将原装在c:/mingw的MinGW装到D:/mingw就没有了问题。下面是知乎上看到的贴子链接。猜想,难道是我的用户名是中文的原因???不得其解。

作者:sunnylinner
链接:https://www.zhihu.com/question/41740860/answer/101785912
来源:知乎
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。
 

We suppose that it's not CLion problem, but problem with using CMake + MinGW, because they don't support non-latin symbols (such as C:/Users/瀛欓湒/.CLion2016.1/system/cmake/generated/untitled-588b870d/588b870d/default/CMakeFiles/CMakeTmp).

To solve the problem you can
1) change usage of MinGW to Cygwin
or
2) сhange idea.system.path in the IDE_HOME\bin\idea.properties file so it won't contain non-latin symbols (please see JetBrains Account and https://www.jetbrains.com/idea/help/project-and-ide-settings.html for more details).
Does that help?

Also we have an article in our web help about configuring CLion on Windows: https://www.jetbrains.com/help/clion/2016.1/quick-tutorial-on-configuring-clion-on-windows.html.

你可能感兴趣的:(win10+minGW+cmake问题记录)