【发布时间】:2018-06-22 02:20:26
【问题描述】:
我正在尝试安装 CLion 并让我的编译器工作,但无论我做什么,它都会不断给我上述错误。它能够很好地检测到clang,但它不能检测到clang++。这是什么原因?
完整的错误如下所示:
Check for working CXX compiler: /cygdrive/c/cygwin64/bin/clang++ -- broken
CMake Error at /cygdrive/c/.CLion2018.1/system/cygwin_cmake/share/cmake-3.10.3/Modules/CMakeTestCXXCompiler.cmake:45 (message):
The C++ compiler
"/cygdrive/c/cygwin64/bin/clang++"
is not able to compile a simple test program.
It fails with the following output:
Change Dir: /cygdrive/c/CLionProjects/trivialtest/cmake-build-debug/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make.exe" "cmTC_79d96/fast"
/usr/bin/make -f CMakeFiles/cmTC_79d96.dir/build.make CMakeFiles/cmTC_79d96.dir/build
make[1]: Entering directory '/cygdrive/c/CLionProjects/trivialtest/cmake-build-debug/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_79d96.dir/testCXXCompiler.cxx.o
/cygdrive/c/cygwin64/bin/clang++ -o CMakeFiles/cmTC_79d96.dir/testCXXCompiler.cxx.o -c /cygdrive/c/CLionProjects/trivialtest/cmake-build-debug/CMakeFiles/CMakeTmp/testCXXCompiler.cxx
Linking CXX executable cmTC_79d96.exe
/cygdrive/c/.CLion2018.1/system/cygwin_cmake/bin/cmake.exe -E cmake_link_script CMakeFiles/cmTC_79d96.dir/link.txt --verbose=1
/cygdrive/c/cygwin64/bin/clang++ -Wl,--enable-auto-import CMakeFiles/cmTC_79d96.dir/testCXXCompiler.cxx.o -o cmTC_79d96.exe -Wl,--out-implib,libcmTC_79d96.dll.a -Wl,--major-image-version,0,--minor-image-version,0
/cygdrive/c/cygwin64/bin/ld: cannot find -liconv
clang-5.0: error: linker command failed with exit code 1 (use -v to see invocation)
make[1]: *** [CMakeFiles/cmTC_79d96.dir/build.make:98: cmTC_79d96.exe] Error 1
make[1]: Leaving directory '/cygdrive/c/CLionProjects/trivialtest/cmake-build-debug/CMakeFiles/CMakeTmp'
make: *** [Makefile:126: cmTC_79d96/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 "/cygdrive/c/CLionProjects/trivialtest/cmake-build-debug/CMakeFiles/CMakeOutput.log".
See also "/cygdrive/c/CLionProjects/trivialtest/cmake-build-debug/CMakeFiles/CMakeError.log".
这是 CMakeError.log:
Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" failed.
Compiler: /cygdrive/c/cygwin64/bin/clang++
Build flags:
Id flags:
The output was:
1
/cygdrive/c/cygwin64/bin/ld: cannot find -liconv
clang-5.0: error: linker command failed with exit code 1 (use -v to see invocation)
Determining if the CXX compiler works failed with the following output:
Change Dir: /cygdrive/c/CLionProjects/trivialtest/cmake-build-debug/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make.exe" "cmTC_79d96/fast"
/usr/bin/make -f CMakeFiles/cmTC_79d96.dir/build.make CMakeFiles/cmTC_79d96.dir/build
make[1]: Entering directory '/cygdrive/c/CLionProjects/trivialtest/cmake-build-debug/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_79d96.dir/testCXXCompiler.cxx.o
/cygdrive/c/cygwin64/bin/clang++ -o CMakeFiles/cmTC_79d96.dir/testCXXCompiler.cxx.o -c /cygdrive/c/CLionProjects/trivialtest/cmake-build-debug/CMakeFiles/CMakeTmp/testCXXCompiler.cxx
Linking CXX executable cmTC_79d96.exe
/cygdrive/c/.CLion2018.1/system/cygwin_cmake/bin/cmake.exe -E cmake_link_script CMakeFiles/cmTC_79d96.dir/link.txt --verbose=1
/cygdrive/c/cygwin64/bin/clang++ -Wl,--enable-auto-import CMakeFiles/cmTC_79d96.dir/testCXXCompiler.cxx.o -o cmTC_79d96.exe -Wl,--out-implib,libcmTC_79d96.dll.a -Wl,--major-image-version,0,--minor-image-version,0
/cygdrive/c/cygwin64/bin/ld: cannot find -liconv
clang-5.0: error: linker command failed with exit code 1 (use -v to see invocation)
make[1]: *** [CMakeFiles/cmTC_79d96.dir/build.make:98: cmTC_79d96.exe] Error 1
make[1]: Leaving directory '/cygdrive/c/CLionProjects/trivialtest/cmake-build-debug/CMakeFiles/CMakeTmp'
make: *** [Makefile:126: cmTC_79d96/fast] Error 2
【问题讨论】:
-
我知道这有点牵强。但是,您是否考虑过发布他们说要查看详细信息的日志?
-
使用
edit,并将其作为引用源代码添加到问题中。 -
@Yakk-AdamNevraumont 完成!输出日志我没有放,因为太长了
-
在
>之后添加 5 个空格。引用代码,而不仅仅是引用。我正在打电话或会自己编辑。 -
@Yakk-AdamNevraumont 喜欢这样吗?
标签: c++ cmake cygwin clang++ iconv