]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - lib/libcompiler_rt/Makefile
amd64: use register macros for gdb_cpu_getreg()
[FreeBSD/FreeBSD.git] / lib / libcompiler_rt / Makefile
1 # $FreeBSD$
2
3 .include <src.opts.mk>
4
5 PACKAGE=        lib${LIB}
6 LIB=            compiler_rt
7 NO_PIC=
8 WARNS?=         2
9
10 CFLAGS+=        ${PICFLAG}
11 CFLAGS+=        -fvisibility=hidden
12 CFLAGS+=        -DVISIBILITY_HIDDEN
13 CFLAGS+=        -I${SRCTOP}/contrib/libcxxrt
14
15 # gcc has incompatible internal declarations for __divtc3 and __multc3, but has
16 # no option to silence its warning, so make warnings non-fatal.
17 NO_WERROR.gcc=
18
19 .include "Makefile.inc"
20
21 .if ${MK_INSTALLLIB} != "no"
22 SYMLINKS+=      libcompiler_rt.a ${LIBDIR}/libgcc.a
23 .endif
24 .if ${MK_PROFILE} != "no"
25 SYMLINKS+=      libcompiler_rt_p.a ${LIBDIR}/libgcc_p.a
26 .endif
27
28 .include <bsd.lib.mk>