-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.uk
95 lines (86 loc) · 4.63 KB
/
Makefile.uk
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
# libmimalloc Makefile.uk
#
# Authors: Hugo Lefeuvre <[email protected]>
#
# Copyright (c) 2020, NEC Laboratories Europe GmbH, NEC Corporation,
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# 1. Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
# 3. Neither the name of the copyright holder nor the names of its
# contributors may be used to endorse or promote products derived from
# this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
#
################################################################################
# Library registration
################################################################################
$(eval $(call addlib_s,libmimalloc,$(CONFIG_LIBMIMALLOC)))
################################################################################
# Sources
################################################################################
LIBMIMALLOC_VERSION=1.6.1
LIBMIMALLOC_URL=https://github.com/microsoft/mimalloc/archive/v$(LIBMIMALLOC_VERSION).zip
LIBMIMALLOC_DIR=mimalloc-$(LIBMIMALLOC_VERSION)
LIBMIMALLOC_PATCHDIR=$(LIBMIMALLOC_BASE)/patches
$(eval $(call fetch,libmimalloc,$(LIBMIMALLOC_URL),v$(LIBMIMALLOC_VERSION).zip))
$(eval $(call patch,libmimalloc,$(LIBMIMALLOC_PATCHDIR),$(LIBMIMALLOC_DIR)))
################################################################################
# Helpers
################################################################################
LIBMIMALLOC=$(LIBMIMALLOC_ORIGIN)/$(LIBMIMALLOC_DIR)
################################################################################
# Library includes
################################################################################
CINCLUDES-$(CONFIG_LIBMIMALLOC) += -I$(LIBMIMALLOC_BASE) \
-I$(LIBMIMALLOC_BASE)/include \
-I$(LIBMIMALLOC)/include
################################################################################
# Global flags
################################################################################
LIBMIMALLOC_GLOBAL_FLAGS-$(CONFIG_MIMALLOC_ASSERT) += -DNDEBUG
LIBMIMALLOC_CFLAGS-y += -Wall -Wextra -Wno-unknown-pragmas -fvisibility=hidden \
-Wno-invalid-memory-model \
-D'MI_DEBUG=${CONFIG_MIMALLOC_DEBUG}'\
${LIBMIMALLOC_GLOBAL_FLAGS-n}
################################################################################
# Glue code
################################################################################
LIBMIMALLOC_SRCS-y += $(LIBMIMALLOC_BASE)/glue.c
################################################################################
# Sources
################################################################################
LIBMIMALLOC_SRCS-y += $(LIBMIMALLOC)/src/stats.c
LIBMIMALLOC_SRCS-y += $(LIBMIMALLOC)/src/random.c
LIBMIMALLOC_SRCS-y += $(LIBMIMALLOC)/src/os.c
LIBMIMALLOC_SRCS-y += $(LIBMIMALLOC)/src/arena.c
LIBMIMALLOC_SRCS-y += $(LIBMIMALLOC)/src/region.c
LIBMIMALLOC_SRCS-y += $(LIBMIMALLOC)/src/segment.c
LIBMIMALLOC_SRCS-y += $(LIBMIMALLOC)/src/page.c
LIBMIMALLOC_SRCS-y += $(LIBMIMALLOC)/src/alloc.c
LIBMIMALLOC_SRCS-y += $(LIBMIMALLOC)/src/alloc-aligned.c
LIBMIMALLOC_SRCS-y += $(LIBMIMALLOC)/src/alloc-posix.c
#LIBMIMALLOC_SRCS-y += $(LIBMIMALLOC)/src/bitmap.inc.c
LIBMIMALLOC_SRCS-y += $(LIBMIMALLOC)/src/heap.c
LIBMIMALLOC_SRCS-y += $(LIBMIMALLOC)/src/options.c
LIBMIMALLOC_SRCS-y += $(LIBMIMALLOC)/src/init.c
#LIBMIMALLOC_SRCS-y += $(LIBMIMALLOC)/src/alloc-override.c
#LIBMIMALLOC_SRCS-y += $(LIBMIMALLOC)/src/page-queue.c