blob: 1e3420600a7993422eeb6197ee75bb567a05a501 (
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
|
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>voyageur@gentoo.org</email>
<name>Bernard Cafarelli</name>
</maintainer>
<use>
<flag name="largepages">
Use (experimental) larger pages for tcmalloc, this increases
memory usage, but should speed up the allocation/free
operations.
</flag>
<flag name="largepages64k">
Use (experimental) 64K pages for tcmalloc, this increases
memory usage, but should speed up the allocation/free
operations.
</flag>
<flag name="pagesize-16k">
Use 16K page size for tcmalloc. Larger size makes tcmalloc faster,
at the cost of using more space (due to internal fragmentation)
</flag>
<flag name="pagesize-32k">
Use 32K page size for tcmalloc. Larger size makes tcmalloc faster,
at the cost of using more space (due to internal fragmentation)
</flag>
<flag name="pagesize-64k">
Use 64K page size for tcmalloc. Larger size makes tcmalloc faster,
at the cost of using more space (due to internal fragmentation)
</flag>
<flag name="pagesize-128k">
Use 128K page size for tcmalloc. Larger size makes tcmalloc faster,
at the cost of using more space (due to internal fragmentation)
</flag>
<flag name="pagesize-256k">
Use 256K page size for tcmalloc. Larger size makes tcmalloc faster,
at the cost of using more space (due to internal fragmentation)
</flag>
<flag name="debug">
Build a set of libraries with debug support (so-called
debugalloc). These are available by default but are not needed
unless you're actually developing using tcmalloc.
</flag>
<flag name="minimal">
Only build the tcmalloc_minimal library, ignoring the heap
checker and the profilers.
</flag>
<flag name="optimisememory">
To build libtcmalloc with smaller internal caches.
</flag>
</use>
<upstream>
<remote-id type="github">gperftools/gperftools</remote-id>
</upstream>
</pkgmetadata>
|