Re: remove libstdc++ dependency from libc++ on freebsd 9.x

2016-05-23 Thread Dimitry Andric
On 23 May 2016, at 11:02, kang joni  wrote:
> 
> I need to backport c++11project to BSD 9.x. How to remove libstdc++
> dependency from libc++ and libc++abi as freebsd 10.x did?
> I'm stuck on this. The llvm docs is unclear.

On FreeBSD 9.x, C++11 is not supported out of the box.  As I mentioned
in another thread, currently the only easy way is to build and install
world with the following in /etc/src.conf:

WITH_CLANG_IS_CC=y
WITH_LIBCPLUSPLUS=y

This will make clang the default compiler, and install libc++ headers
and libraries on the system.

Afterwards, you can use -stdlib=libc++ -std=c++11 in the CXXFLAGS for
your project.

-Dimitry



signature.asc
Description: Message signed with OpenPGP using GPGMail


remove libstdc++ dependency from libc++ on freebsd 9.x

2016-05-23 Thread kang joni
I need to backport c++11project to BSD 9.x. How to remove libstdc++
dependency from libc++ and libc++abi as freebsd 10.x did?
I'm stuck on this. The llvm docs is unclear.
___
freebsd-ports@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"