mirror of
https://github.com/opnsense/src.git
synced 2026-02-12 07:14:14 -05:00
Apply the changes from upstream jemalloc 048c6679. This is actually not quite a cherry pick due to makefile difference and because FreeBSD does not carry the msvc project files which were also modified in that commit. Approved by: jasone (maintainer), markj (mentor) Sponsored by: Dell EMC Isilon
49 lines
1.3 KiB
Makefile
49 lines
1.3 KiB
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${LIBC_SRCTOP}/stdlib/jemalloc
|
|
|
|
JEMALLOCSRCS:= jemalloc.c arena.c background_thread.c base.c bitmap.c ckh.c \
|
|
ctl.c extent.c extent_dss.c extent_mmap.c hash.c hooks.c large.c \
|
|
malloc_io.c mutex.c mutex_pool.c nstime.c pages.c prng.c prof.c \
|
|
rtree.c stats.c sz.c tcache.c ticker.c tsd.c witness.c
|
|
|
|
SYM_MAPS+=${LIBC_SRCTOP}/stdlib/jemalloc/Symbol.map
|
|
|
|
CFLAGS+=-I${SRCTOP}/contrib/jemalloc/include
|
|
|
|
.for src in ${JEMALLOCSRCS}
|
|
MISRCS+=jemalloc_${src}
|
|
CLEANFILES+=jemalloc_${src}
|
|
jemalloc_${src}: ${SRCTOP}/contrib/jemalloc/src/${src} .NOMETA
|
|
ln -sf ${.ALLSRC} ${.TARGET}
|
|
.endfor
|
|
|
|
MAN+=jemalloc.3
|
|
CLEANFILES+=jemalloc.3
|
|
jemalloc.3: ${SRCTOP}/contrib/jemalloc/doc/jemalloc.3 .NOMETA
|
|
ln -sf ${.ALLSRC} ${.TARGET}
|
|
|
|
MLINKS+= \
|
|
jemalloc.3 malloc.3 \
|
|
jemalloc.3 calloc.3 \
|
|
jemalloc.3 posix_memalign.3 \
|
|
jemalloc.3 aligned_alloc.3 \
|
|
jemalloc.3 realloc.3 \
|
|
jemalloc.3 free.3 \
|
|
jemalloc.3 malloc_usable_size.3 \
|
|
jemalloc.3 malloc_stats_print.3 \
|
|
jemalloc.3 mallctl.3 \
|
|
jemalloc.3 mallctlnametomib.3 \
|
|
jemalloc.3 mallctlbymib.3 \
|
|
jemalloc.3 mallocx.3 \
|
|
jemalloc.3 rallocx.3 \
|
|
jemalloc.3 xallocx.3 \
|
|
jemalloc.3 sallocx.3 \
|
|
jemalloc.3 dallocx.3 \
|
|
jemalloc.3 sdallocx.3 \
|
|
jemalloc.3 nallocx.3 \
|
|
jemalloc.3 malloc.conf.5
|
|
|
|
.if defined(MALLOC_PRODUCTION)
|
|
CFLAGS+= -DMALLOC_PRODUCTION
|
|
.endif
|