summaryrefslogtreecommitdiff
path: root/lib/libcxxabi/Makefile
blob: 9d57c27d15e35a82cdaa256bf0481c54f1d6a2ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
# $OpenBSD: Makefile,v 1.12 2019/03/14 08:44:46 robert Exp $

.include <bsd.own.mk>

.if ${COMPILER_VERSION:L} != "clang"
CC=		clang
CXX=		clang++
.endif

.if ${BUILD_CLANG:L} == "yes"

HDRDIR=		${.CURDIR}/include
SRCDIR=		${.CURDIR}/src
SHDRDIR=	${.CURDIR}/../libcxx/include
UHDRDIR=	${.CURDIR}/../libunwind/include
CXXINCLUDEDIR=	/usr/include/c++/v1

.PATH: ${SRCDIR} ${.CURDIR}/../libunwind/src

LIB=		c++abi


SRCS+=		abort_message.cpp \
		cxa_aux_runtime.cpp \
		cxa_default_handlers.cpp \
		cxa_demangle.cpp \
		cxa_exception.cpp \
		cxa_exception_storage.cpp \
		cxa_guard.cpp \
		cxa_handlers.cpp \
		cxa_personality.cpp \
		cxa_thread_atexit.cpp \
		cxa_unexpected.cpp \
		cxa_vector.cpp \
		cxa_virtual.cpp \
		fallback_malloc.cpp \
		private_typeinfo.cpp \
		stdlib_exception.cpp \
		stdlib_new_delete.cpp \
		stdlib_stdexcept.cpp \
		stdlib_typeinfo.cpp \
		Unwind-EHABI.cpp \
		Unwind-sjlj.c \
		UnwindLevel1-gcc-ext.c \
		UnwindLevel1.c \
		UnwindRegistersRestore.S \
		UnwindRegistersSave.S \
		libunwind.cpp

CPPFLAGS+=	-Wall -I${SHDRDIR} -I${HDRDIR} -I${UHDRDIR}
CPPFLAGS+=	-D_LIBUNWIND_IS_NATIVE_ONLY
CPPFLAGS+=	-D_LIBCXXABI_BUILDING_LIBRARY
CPPFLAGS+=	-DNDEBUG
CFLAGS+=	-nostdlib -funwind-tables
CXXFLAGS+=	-nostdlib -nostdinc++ -funwind-tables
.if empty(CXXFLAGS:M-std=*)
CXXFLAGS+=	-std=c++11
.endif

STD_HEADERS=	cxxabi.h \
		__cxxabi_config.h

.for hdr in ${STD_HEADERS}
STD+=		${hdr} ${HDRDIR}/${hdr}
.endfor
STDDIR=		${CXXINCLUDEDIR}

STD_UHEADERS=	libunwind.h \
		__libunwind_config.h \
		unwind.h

.for hdr in ${STD_UHEADERS}
USTD+=		${hdr} ${UHDRDIR}/${hdr}
.endfor
USTDDIR=	${CXXINCLUDEDIR}

MACHO_HEADERS=compact_unwind_encoding.h

.for hdr in ${MACHO_HEADERS}
MACHO+=		${hdr} ${UHDRDIR}/mach-o/${hdr}
.endfor
MACHODIR=	${CXXINCLUDEDIR}/mach-o

includes:
	@echo installing ${STD_HEADERS}
	${INSTALL} -d -m 755 ${DESTDIR}/${STDDIR};
.	for hdr src in ${STD}
		cmp -s ${src} ${DESTDIR}/${STDDIR}/${hdr} || \
		${INSTALL} ${INSTALL_COPY} -m 444 ${src} ${DESTDIR}/${STDDIR}/${hdr};
.	endfor
	${INSTALL} -d -m 755 ${DESTDIR}/${USTDDIR};
.	for hdr src in ${USTD}
		cmp -s ${src} ${DESTDIR}/${USTDDIR}/${hdr} || \
		${INSTALL} ${INSTALL_COPY} -m 444 ${src} ${DESTDIR}/${USTDDIR}/${hdr};
.	endfor
	${INSTALL} -d -m 755 ${DESTDIR}/${MACHODIR};
.	for hdr src in ${MACHO}
		cmp -s ${src} ${DESTDIR}/${MACHODIR}/${hdr} || \
		${INSTALL} ${INSTALL_COPY} -m 444 ${src} ${DESTDIR}/${MACHODIR}/${hdr};
.	endfor

.include <bsd.lib.mk>

.else
NOPROG=
.include <bsd.prog.mk>
.endif