what is the default location for boost library when installed using macport on mac ?

前端 未结 4 792
一生所求
一生所求 2021-02-05 06:37

I just now installed boost on mac, using macport with following command

sudo port install boost

It\'s installed fine, but I have no idea where

4条回答
  •  [愿得一人]
    2021-02-05 07:10

    Default is /usr/local/lib /usr/local/include

    You might want to rebuild the libs using the clang toolchain

    ./bjam toolset=clang
    

    and then do a manual install in a specific location especially if you want to switch between versions (for source control or testing etc)

    > find . -name boost
    

    also works

提交回复
热议问题