39674fa8e3
libc++ is a new implementation of the C++ standard library, targeting C++11. Features and Goals * Correctness as defined by the C++11 standard. * Fast execution. * Minimal memory use. * Fast compile times. * ABI compatibility with gcc's libstdc++ for some low-level features such as exception objects, rtti and memory allocation. * Extensive unit tests.
14 lines
340 B
Makefile
14 lines
340 B
Makefile
# $NetBSD: buildlink3.mk,v 1.1 2018/08/09 14:16:08 jperkin Exp $
|
|
|
|
BUILDLINK_TREE+= libcxx
|
|
|
|
.if !defined(LIBCXX_BUILDLINK3_MK)
|
|
LIBCXX_BUILDLINK3_MK:=
|
|
|
|
BUILDLINK_API_DEPENDS.libcxx+= libcxx>=6.0.1
|
|
BUILDLINK_PKGSRCDIR.libcxx?= ../../lang/libcxx
|
|
|
|
.include "../../lang/llvm/buildlink3.mk"
|
|
.endif # LIBCXX_BUILDLINK3_MK
|
|
|
|
BUILDLINK_TREE+= -libcxx
|