b4cb0c6f6b
What’s New in Libc++ 10.0.0? Fixes Fixed use of non-default locales on Windows
46 lines
1.4 KiB
Makefile
46 lines
1.4 KiB
Makefile
# $NetBSD: Makefile,v 1.10 2020/04/18 08:03:07 adam Exp $
|
|
|
|
.include "../../lang/llvm/version.mk"
|
|
|
|
DISTNAME= libcxxabi-${LLVM_VERSION}.src
|
|
PKGNAME= ${DISTNAME:S/.src//}
|
|
CATEGORIES= lang devel
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://libcxxabi.llvm.org/
|
|
COMMENT= C++ Standard Library
|
|
LICENSE= apache-2.0
|
|
|
|
# libcxx requires libcxxabi's cxxabi.h to build, but libcxxabi requires
|
|
# libcxx's includes to build, so we have this unholy extra distfiles thing
|
|
# in both of them to get them to build against each other without causing
|
|
# circular dependencies. This must be kept in sync with libcxxabi/Makefile.
|
|
LIBCXX= ${DISTNAME:S/cxxabi/cxx/}
|
|
_EXTRA_DIST= ${LIBCXX}${EXTRACT_SUFX}
|
|
SITES.${_EXTRA_DIST}= ${MASTER_SITES:=${GITHUB_PROJECT}/releases/download/${GITHUB_RELEASE}/}
|
|
|
|
DISTFILES= ${DEFAULT_DISTFILES} ${_EXTRA_DIST}
|
|
|
|
CONFIGURE_DIRS= ${WRKDIR}/build
|
|
CMAKE_ARG_PATH= ${WRKSRC}
|
|
|
|
USE_LANGUAGES= c c++
|
|
USE_CMAKE= yes
|
|
GCC_REQD+= 4.8
|
|
SSP_SUPPORTED= no
|
|
|
|
CMAKE_ARGS+= -DCMAKE_BUILD_TYPE=Release
|
|
CMAKE_ARGS+= -DCMAKE_C_COMPILER=${CC:Q}
|
|
CMAKE_ARGS+= -DCMAKE_CXX_COMPILER=${CXX:Q}
|
|
CMAKE_ARGS+= -DLIBCXXABI_LIBCXX_INCLUDES=${WRKDIR}/${LIBCXX}/include
|
|
CMAKE_ARGS+= -DLIBCXXABI_USE_LLVM_UNWINDER=YES
|
|
|
|
# avoid conflict with stddef.h
|
|
CXXFLAGS.NetBSD+= -D__DEFINED_max_align_t=1
|
|
|
|
post-extract:
|
|
${MKDIR} ${WRKDIR}/build
|
|
|
|
.include "../../lang/libunwind/buildlink3.mk"
|
|
.include "../../lang/llvm/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|