brew link boost to homebrew python -


after installing boost brew using system layout option --layout=system (set using brew edit boost155)

brew install boost155 --with-python --with-mpi --without-single

i discovered boost library talks osx python, not homebrew version

$ otool -l `brew list boost155 | grep python.dylib` | grep -i python  /usr/local/cellar/boost155/1.55.0_1/lib/libboost_mpi_python.dylib:      /usr/local/opt/boost155/lib/libboost_mpi_python.dylib (compatibility version 0.0.0, current version 0.0.0)   @loader_path/libboost_python.dylib (compatibility version 0.0.0, current version 0.0.0)    /usr/local/frameworks/python.framework/versions/2.7/python (compatibility version 2.7.0, current version 2.7.0)     /usr/local/cellar/boost155/1.55.0_1/lib/libboost_python.dylib:   /usr/local/opt/boost155/lib/libboost_python.dylib (compatibility version 0.0.0, current version 0.0.0)     /usr/local/frameworks/python.framework/versions/2.7/python (compatibility version 2.7.0, current version 2.7.0) 

how can link boost homebrew python libraries?

that homebrew python. system python framework in /system/library/frameworks.


Comments

Popular posts from this blog

powershell Start-Process exit code -1073741502 when used with Credential from a windows service environment -

twig - Using Twigbridge in a Laravel 5.1 Package -

c# - LINQ join Entities from HashSet's, Join vs Dictionary vs HashSet performance -