我正在尝试安装CLion并使我的编译器正常工作,但是无论我做什么,都会不断出现上述错误。它能够检测clang很好,但不能检测c ++++。是什么原因呢?
完整错误如下所示:
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
答案 0 :(得分:1)
如果链接器找不到-liconv
,则它正在寻找名为libiconv
的库。您可以尝试在cygwin安装中安装它。
我猜想安装this package会有所帮助。
答案 1 :(得分:0)
在 2018 年的答案中安装 cygwin32-libiconv
的建议似乎没有帮助,因为它与使用 64 位 Cygwin 交叉编译为 32 位有关。
相反,要解决 OP 的问题,或诸如:
clang++ helloworld.cpp
/usr/bin/ld: cannot find -liconv
安装libiconv-devel
。
更详细地说,Cygwin Package Search for a x86_64 libiconv
给出了几十行,但可能的命中归结为三行,所有都具有相同的描述:
libiconv: Unicode iconv() implementation
libiconv2: Unicode iconv() implementation
libiconv-devel: Unicode iconv() implementation
当您查看每个包裹的完整列表时,您会看到第一个为您提供 iconv.exe
,第二个为 cygiconv-2.dll
,最后第三个为您提供 /usr/lib/libiconv.a
。