mirror of
https://github.com/opnsense/src.git
synced 2026-06-06 07:12:52 -04:00
It was disabled by default in fe52b7f60e. We planned to (but did not)
remove the option before FreeBSD 14. Remove it now, for FreeBSD 15.
Relnotes: Yes
Reviewed by: imp
Sponsored by: The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D31558
23 lines
424 B
Makefile
23 lines
424 B
Makefile
.include <src.opts.mk>
|
|
|
|
PACKAGE= clibs
|
|
SRCDIR= ${SRCTOP}/contrib/llvm-project/libcxx
|
|
|
|
LIB= c++experimental
|
|
NO_PIC=
|
|
|
|
.PATH: ${SRCDIR}/src
|
|
|
|
SRCS+= experimental/keep.cpp
|
|
|
|
WARNS?= 0
|
|
CXXFLAGS+= ${PICFLAG}
|
|
CFLAGS+= -isystem ${.CURDIR}/../libc++
|
|
CXXFLAGS+= -isystem ${SRCDIR}/include
|
|
CXXFLAGS+= -nostdinc++
|
|
CXXFLAGS+= -nostdlib
|
|
CXXFLAGS+= -D_LIBCPP_BUILDING_LIBRARY
|
|
CXXFLAGS+= -DLIBCXXRT
|
|
CXXSTD?= c++20
|
|
|
|
.include <bsd.lib.mk>
|