gpt4 book ai didi

c - OS X 下损坏的 CMake 和 GCC

转载 作者:太空狗 更新时间:2023-10-29 15:36:08 27 4
gpt4 key购买 nike

在我的 OS X 平台上的 cmake-gui 中运行 configure 时,出现以下错误:

The C compiler identification is GNU
The CXX compiler identification is GNU
Checking whether C compiler has -isysroot
Checking whether C compiler has -isysroot - yes
Checking whether C compiler supports OSX deployment target flag
Checking whether C compiler supports OSX deployment target flag - yes
Check for working C compiler: /usr/bin/gcc-4.0
Check for working C compiler: /usr/bin/gcc-4.0 -- broken
CMake Error at /Applications/CMake 2.8-2.app/Contents/share/cmake-2.8/Modules/CMakeTestCCompiler.cmake:52 (MESSAGE):
The C compiler "/usr/bin/gcc-4.0" is not able to compile a simple test
program.

It fails with the following output:

Change Dir: /Users/bill/Desktop/cmake_test/build/CMakeFiles/CMakeTmp

Run Build Command:/opt/local/bin/gmake "cmTryCompileExec/fast"

/opt/local/bin/gmake -f CMakeFiles/cmTryCompileExec.dir/build.make
CMakeFiles/cmTryCompileExec.dir/build

gmake[1]: Entering directory
`/Users/bill/Desktop/cmake_test/build/CMakeFiles/CMakeTmp'

"/Applications/CMake 2.8-2.app/Contents/bin/cmake" -E cmake_progress_report
/Users/bill/Desktop/cmake_test/build/CMakeFiles/CMakeTmp/CMakeFiles 1

Building C object CMakeFiles/cmTryCompileExec.dir/testCCompiler.c.o

/usr/bin/gcc-4.0 -isysroot -o
CMakeFiles/cmTryCompileExec.dir/testCCompiler.c.o -c
/Users/bill/Desktop/cmake_test/build/CMakeFiles/CMakeTmp/testCCompiler.c

i686-apple-darwin10-gcc-4.0.1:
CMakeFiles/cmTryCompileExec.dir/testCCompiler.c.o: No such file or
directory

<snip>

通过查看 Internet 上的论坛等,我确定这可能与我的 PATH 变量有关。这是我用于分析的 PATH 变量:

! echo $PATH
/Library/Frameworks/Python.framework/Versions/Current/bin:/Library/Frameworks/Python.framework/Versions/2.7/bin:/sw/bin:/sw/sbin:/Applications/MATLAB_R2012a.app/bin:/opt/local/bin:/opt/local/sbin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/texbin:/usr/X11/bin:/usr/X11R6/bin

这个路径变量最近在我配置 Python 时发生了变化,我认为 GCC 问题一定是在同一时间出现的。发生这种情况可能是我的系统安装出了什么问题?


更多细节。 CMAKE_MAKE_PROGRAM指定的构建程序是/opt/local/bin/gmake

我还发现,只有在 cmake-gui 中运行 Configure 时才会抛出这些错误。在命令行上(从构建文件夹运行 cmake ..),配置完成:

! cmake ..
-- The C compiler identification is GNU 4.0.1
-- The CXX compiler identification is GNU 4.2.1
-- Checking whether C compiler has -isysroot
-- Checking whether C compiler has -isysroot - yes
-- Checking whether C compiler supports OSX deployment target flag
-- Checking whether C compiler supports OSX deployment target flag - yes
-- Check for working C compiler: /usr/bin/gcc-4.0
-- Check for working C compiler: /usr/bin/gcc-4.0 -- works
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Checking whether CXX compiler has -isysroot
-- Checking whether CXX compiler has -isysroot - yes
-- Checking whether CXX compiler supports OSX deployment target flag
-- Checking whether CXX compiler supports OSX deployment target flag - yes
-- Check for working CXX compiler: /usr/bin/c++
-- Check for working CXX compiler: /usr/bin/c++ -- works
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Configuring done
-- Generating done

但是,使用某些库时编译并不总是成功 - 例如参见 this question I have asked here .因此,我认为 cmake 过程中可能仍然存在问题。

最佳答案

对您的问题的一些观察,可能会引导您找到解决方案...

您使用的是 CMake 2.8.2,就 CMake 版本而言,它相当旧。尝试使用 2.8.11 或即将发布的 2.8.12 的候选版本,看看问题是否仍然存在。如果不出意外,也许您会收到更好的错误消息。

查看此问答及其链接,了解在命令行环境和通过其他方式在 Mac 上启动的 GUI 应用程序之间保证一致的 PATH 值的各种方法: How do I set the global PATH environment variable on OS X?

CMake GUI 不一定继承与您在终端中看到的相同的 PATH 值,除非您使用打开命令从终端启动它。

我突然想到了另外两件事:GCC 4.0 是 C 编译器,而 g++ 4.2 是 C++ 编译器。为什么这些不同?

此外,CMAKE_MAKE_PROGRAM 指向 /opt/local/bin/gmake。在你的两个构建树中都是这样吗? (命令行一个和 GUI 一个?)我似乎很好奇 CMake 会从 /usr/bin 中获取 C 和 C++ 编译器,但是 gmake 来自 /opt/local/bin...

您的命令行环境是否经过精心设置,可以准确地使用这些路径中的这些工具?或者这也是你意想不到的?

您根本没有提及您使用的 Xcode 工具的版本。也许将其添加到您的问题中将有助于更好的答案出现在某人的大脑中。

最后一个观察:您的 PATH 中有很多东西。最小化构建环境中使用的 PATH 值将大大有助于避免此类问题。我衷心建议将其剥离到您需要的最低限度,至少对于软件构建环境而言。

很抱歉没有回答,但是这么多评论对于 Stack Overflow 评论来说似乎有点过分......:-)

关于c - OS X 下损坏的 CMake 和 GCC,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16465856/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com