This repository has been archived by the owner on Jul 11, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 457
/
tcmalloc.m4
64 lines (58 loc) · 1.98 KB
/
tcmalloc.m4
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
dnl
dnl tcmalloc.m4: tfs's tcmalloc autoconf macros
dnl TCMALLOC_LDFLAGS
AC_DEFUN([TS_CHECK_TCMALLOC],
[
AC_ARG_WITH([tcmalloc],
AS_HELP_STRING([--with-tcmalloc=DIR],
[use tcmalloc (default is no) specify the root directory for tcmalloc library (optional)]),
[
if test "$withval" = "no"; then
want_tcmalloc="no"
elif test "$withval" = "yes"; then
want_tcmalloc="yes"
ac_tcmalloc_path=""
else
want_tcmalloc="yes"
ac_tcmalloc_path="$withval"
fi
],
[want_tcmalloc="yes"]
)
if test "x$want_tcmalloc" = "xyes"; then
if test "$ac_tcmalloc_path" != ""; then
ax_tclib="tcmalloc -L$ac_tcmalloc_path/lib"
else
ax_tclib="tcmalloc"
fi
AC_CHECK_LIB($ax_tclib, tc_cfree,TCMALLOC_LDFLAGS="-l$ax_tclib" AC_SUBST(TCMALLOC_LDFLAGS),
[AC_MSG_FAILURE([tcmalloc link failed (--without-tcmalloc to disable)])]
)
fi
AC_ARG_WITH([tcmalloc_minimal],
AS_HELP_STRING([--with-tcmalloc_minimal=DIR],
[use tcmalloc_minimal(default is no) specify the root directory for tcmalloc_minimal library (optional)]),
[
if test "$withval" = "no"; then
want_tcmalloc_minimal="no"
elif test "$withval" = "yes"; then
want_tcmalloc_minimal="yes"
ac_tcmalloc_minimal_path=""
else
want_tcmalloc_minimal="yes"
ac_tcmalloc_minimal_path="$withval"
fi
],
[want_tcmalloc_minimal="no"]
)
if test "x$want_tcmalloc_minimal" = "xyes"; then
if test "$ac_tcmalloc_minimal_path" != ""; then
ax_tclib="tcmalloc_minimal -L$ac_tcmalloc_minimal_path/lib"
else
ax_tclib="tcmalloc_minimal"
fi
AC_CHECK_LIB($ax_tclib, tc_cfree,TCMALLOC_LDFLAGS="-l$ax_tclib" AC_SUBST(TCMALLOC_LDFLAGS),
[AC_MSG_FAILURE([tcmalloc_minimal link failed (--without-tcmalloc_minimal to disable)])]
)
fi
])