我该如何解决 CLion 上的这个编译错误?

How can I solve this compiling error on CLion?

我使用一个名为 CLionProjects 的主目录,上面有几个目录。最近我添加了这些目录来组织我的文件。自从我第一次安装 CLion 以来,我使用了一个名为“Boletin1”的目录,它位于主目录中,后来当我创建“Boletin2”时(在这些目录中,我有名为 Ejercicio1、Ejercicio2 等的项目)问题开始出现,我收到此错误消息: 我必须明确指出,编译器问题仅出现在“Boletin2”目录中,而名为“Boletin1”的目录工作正常。

我输入调试:

"C:\Program Files\JetBrains\Nueva carpeta\CLion 2020.2.3\bin\cmake\win\bin\cmake.exe" -DCMAKE_BUILD_TYPE=Debug -G "CodeBlocks - MinGW Makefiles" C:\Users\usuario\Desktop\CLionProjects\Boletín2\Ejercicio1
-- The C compiler identification is GNU 8.1.0
-- Check for working C compiler: C:/mingw64/bin/gcc.exe
-- Check for working C compiler: C:/mingw64/bin/gcc.exe - broken
CMake Error at C:/Program Files/JetBrains/Nueva carpeta/CLion 2020.2.3/bin/cmake/win/share/cmake-3.17/Modules/CMakeTestCCompiler.cmake:60 (message):
  The C compiler

    "C:/mingw64/bin/gcc.exe"

  is not able to compile a simple test program.

  It fails with the following output:

    Change Dir: C:/Users/usuario/Desktop/CLionProjects/Boletín2/Ejercicio1/cmake-build-debug/CMakeFiles/CMakeTmp
    
    Run Build Command(s):C:/mingw64/bin/mingw32-make.exe cmTC_a9874/fast && C:/mingw64/bin/mingw32-make.exe  -f CMakeFiles\cmTC_a9874.dir\build.make CMakeFiles/cmTC_a9874.dir/build
    mingw32-make.exe[1]: Entering directory 'C:/Users/usuario/Desktop/CLionProjects/Bolet�n2/Ejercicio1/cmake-build-debug/CMakeFiles/CMakeTmp'
    Building C object CMakeFiles/cmTC_a9874.dir/testCCompiler.c.obj
    C:\mingw64\bin\gcc.exe    -o CMakeFiles\cmTC_a9874.dir\testCCompiler.c.obj   -c C:\Users\usuario\Desktop\CLionProjects\Boletín2\Ejercicio1\cmake-build-debug\CMakeFiles\CMakeTmp\testCCompiler.c
    gcc.exe: error: C:\Users\usuario\Desktop\CLionProjects\Boletín2\Ejercicio1\cmake-build-debug\CMakeFiles\CMakeTmp\testCCompiler.c: No such file or directory
    gcc.exe: fatal error: no input files
    compilation terminated.
    mingw32-make.exe[1]: *** [CMakeFiles\cmTC_a9874.dir\build.make:85: CMakeFiles/cmTC_a9874.dir/testCCompiler.c.obj] Error 1
    mingw32-make.exe[1]: Leaving directory 'C:/Users/usuario/Desktop/CLionProjects/Bolet�n2/Ejercicio1/cmake-build-debug/CMakeFiles/CMakeTmp'
    mingw32-make.exe: *** [Makefile:140: cmTC_a9874/fast] Error 2
    
    

  

  CMake will not be able to correctly generate this project.
Call Stack (most recent call first):
  CMakeLists.txt:2 (project)


-- Configuring incomplete, errors occurred!
See also "C:/Users/usuario/Desktop/CLionProjects/Boletín2/Ejercicio1/cmake-build-debug/CMakeFiles/CMakeOutput.log".
See also "C:/Users/usuario/Desktop/CLionProjects/Boletín2/Ejercicio1/cmake-build-debug/CMakeFiles/CMakeError.log".

[Failed to reload]

感谢 4 的支持甚至阅读此文。

尝试将您的目录重命名为 Boletin1Boletin2
删除所有重音符号 并用无聊的 i 字母书写,即使拼写在您的语言中是错误的。
这是一个编码问题,它的发生是因为在这种情况下,您有 3 个程序(此处为 cmakegcc.exemingw64-make.exe)解析相同字符但结果不同(BoletÃ�n2Boletín2Boletín2).
您可能还需要重置 clion 的缓存 and/or 从 IDE 中删除项目并重新导入它们。它可能在缓存中保留了一些路径,并可能尝试将它们提供给 cmake.