Need help in install boost 1.39 on Mac OSX
Hi, I am following the step here to install boost 1.39 on Mac OSX: http://www.boost.org/doc/libs/1_39_0/more/getting_started/unix-variants.html... I did: $ ./bootstrap.sh $ ./bjam install After the build is done. I do see boost-1_39 under /usr/local/include But, i don't see any boost related stuff in /usr/local/lib? So can you please tell me how to link to boost library? Where are the .a/.so files for boost libraries? Thank you.
n179911 wrote:
Hi,
I am following the step here to install boost 1.39 on Mac OSX:
http://www.boost.org/doc/libs/1_39_0/more/getting_started/unix-variants.html...
I did: $ ./bootstrap.sh $ ./bjam install
After the build is done. I do see boost-1_39 under /usr/local/include
But, i don't see any boost related stuff in /usr/local/lib?
Please do: ./bootstrap.sh --prefix=/usr/local --libdir=/usr/local/lib ./bjam install This will not rebuild libraries, just install them properly. This was a bug in 1.39, and is fixed for upcoming 1.40. HTH, Volodya
Thanks. Can you please tell me how to uninstall on Mac OSX?
I tried:
./bjam uninstall
notice: could not find main target uninstall
notice: assuming it is a name of file to create.
On Fri, Aug 14, 2009 at 12:13 AM, Vladimir
Prus
n179911 wrote:
Hi,
I am following the step here to install boost 1.39 on Mac OSX:
http://www.boost.org/doc/libs/1_39_0/more/getting_started/unix-variants.html...
I did: $ ./bootstrap.sh $ ./bjam install
After the build is done. I do see boost-1_39 under /usr/local/include
But, i don't see any boost related stuff in /usr/local/lib?
Please do:
./bootstrap.sh --prefix=/usr/local --libdir=/usr/local/lib ./bjam install
This will not rebuild libraries, just install them properly. This was a bug in 1.39, and is fixed for upcoming 1.40.
HTH, Volodya
_______________________________________________ Boost-users mailing list Boost-users@lists.boost.org http://lists.boost.org/mailman/listinfo.cgi/boost-users
n179911 wrote:
Thanks. Can you please tell me how to uninstall on Mac OSX?
I tried:
./bjam uninstall notice: could not find main target uninstall notice: assuming it is a name of file to create.
You need to remove the include directory and libboost* files in the lib directory by hand. - Volodya
participants (2)
-
n179911
-
Vladimir Prus