CMake无法使用brew在OS X上找到Boost

时间:2014-09-24 19:25:15

标签: macos boost cmake homebrew

我正在尝试使用CMake编译另一个库,它需要Boost。

我在OS X 10.10 Yosemite上使用brew安装了CMake和Boost,但CMake拒绝找到它。 Boost位于/usr/local/Cellar/boost/1.55.0_2

我尝试了以下内容:

  • 使用上述路径设置-DBoost_DIR-DBOOST_ROOT
  • 使用上述路径+ -DBoost_INCLUDE_DIR
  • 设置-DBOOST_INCLUDEDIR/include
  • 在CMakeLists.txt文件中设置所有这些选项
  • 自己编译Boost,并将上述变量指向我自己的构建
  • 针对同一问题hereherehere尝试类似的解决方案。我在OS X上发现提到brew的唯一答案是this one,同样的解决方案对我不起作用。

为什么CMake公然无视我的指示? :(

修改: CMake output from -DBoost_DEBUG=ON

3 个答案:

答案 0 :(得分:8)

我找到了一个单独的自制软件包boost-python。安装完成后,CMake确实找到了Boost:

brew install boost-python

给了我

> mkdir build ; ( cd build ; cmake .. )
-- The C compiler identification is AppleClang 6.0.0.6000056
-- The CXX compiler identification is AppleClang 6.0.0.6000056
-- Check for working C compiler: /usr/bin/cc
-- Check for working C compiler: /usr/bin/cc -- works
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- 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
-- Found PythonInterp: /usr/local/bin/python (found version "2.7.9")
-- Found PythonLibs: /usr/lib/libpython2.7.dylib (found version "2.7.5")
-- Boost version: 1.56.0
-- Found the following Boost libraries:
--   python
-- Configuring done
-- Generating done

(链接有问题,但这是另一个故事)

答案 1 :(得分:5)

我在使用C ++ / Python / Boost / CMake进行编译时遇到了麻烦(具体来说,我正在尝试构建https://github.com/mapillary/OpenSfM)。

我收到了这样的错误

Linking CXX shared library .../OpenSfM/opensfm/csfm.so
Undefined symbols for architecture x86_64:
  "boost::python::instance_holder::deallocate(_object*, void*)", referenced from:
Undefined symbols for architecture x86_64:
"boost::python::instance_holder::deallocate(_object*, void*)", referenced from:
...

受到上述评论的启发,我试图找到这个神话般的" boost-python",但它并不存在。相反,我结束了使用自制软件重新安装python正常的提升。

brew install boost --with-python

那很有用。 CMake现在可以找到提升和任何python提升所需的东西,并且编译成功。

答案 2 :(得分:0)

就我而言,将cmake和boost升级到最新版本都可以解决问题

brew upgrade boost cmake