-
Notifications
You must be signed in to change notification settings - Fork 51
/
Copy pathmeson.build
224 lines (193 loc) · 5.85 KB
/
meson.build
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
# libmemory src/ meson build
common_files = [
'aligned_malloc.c',
'posix_memalign.c'
]
clangtidy_files = files(
'aligned_malloc.c',
'malloc_freelist.c',
'malloc_threadx.c',
'malloc_freertos.c',
'posix_memalign.c',
'malloc_assert.c'
)
rtos_includes = include_directories('../dependencies/rtos/', is_system: true)
##################################
# System Already Provides Malloc #
##################################
# Pick up extra functions, but don't redefine malloc
libmemory = static_library(
'memory',
[
common_files,
'malloc_addblock_init_assert.c'
],
include_directories: libmemory_includes,
dependencies: libc_dep,
# Do not built by default if we are a subproject
build_by_default: (meson.is_subproject() == false)
)
# Pick up extra functions, but don't redefine malloc
libmemory_native = static_library(
'memory_native',
[
common_files,
'malloc_addblock_init_assert.c'
],
include_directories: libmemory_includes,
dependencies: libc_native_dep,
native: true,
# Do not built by default if we are a subproject
build_by_default: (meson.is_subproject() == false)
)
# Pick up extra functions, but don't redefine malloc, and don't use external libc
libmemory_hosted = static_library(
'memory_hosted',
[
common_files,
'malloc_addblock_init_assert.c'
],
include_directories: libmemory_includes,
# Do not built by default if we are a subproject
build_by_default: (meson.is_subproject() == false)
)
# Pick up extra functions, but don't redefine malloc, and don't use external libc
libmemory_hosted_native = static_library(
'memory_hosted_native',
[
common_files,
'malloc_addblock_init_assert.c'
],
include_directories: libmemory_includes,
native: true,
# Do not built by default if we are a subproject
build_by_default: (meson.is_subproject() == false)
)
# Pick up extra functions, but don't redefine malloc
libmemory_dep = declare_dependency(
link_with: libmemory,
include_directories: libmemory_system_includes,
)
# Pick up extra functions, but don't redefine malloc
libmemory_native_dep = declare_dependency(
link_with: libmemory_native,
include_directories: libmemory_system_includes,
)
# Pick up extra functions, but don't redefine malloc
libmemory_hosted_dep = declare_dependency(
link_with: libmemory_hosted,
include_directories: libmemory_system_includes,
)
# Pick up extra functions, but don't redefine malloc, and don't use external libc
libmemory_hosted_native_dep = declare_dependency(
link_with: libmemory_hosted_native,
include_directories: libmemory_system_includes,
)
#######################
# Malloc Calls Assert #
#######################
libmemory_assert = static_library('memory_assert',
[common_files, 'malloc_assert.c'],
c_args: '-Wno-missing-noreturn',
include_directories: libmemory_includes,
dependencies: libc_dep,
# Do not built by default if we are a subproject
build_by_default: (meson.is_subproject() == false)
)
libmemory_assert_native = static_library('memory_assert_native',
[common_files, 'malloc_assert.c'],
include_directories: libmemory_includes,
c_args: '-Wno-missing-noreturn',
dependencies: libc_native_dep,
native: true,
# Do not built by default if we are a subproject
build_by_default: (meson.is_subproject() == false),
)
libmemory_assert_dep = declare_dependency(
link_with: libmemory_assert,
include_directories: libmemory_system_includes,
)
libmemory_assert_native_dep = declare_dependency(
link_with: libmemory_assert_native,
include_directories: libmemory_system_includes,
)
############
# Freelist #
############
freelist_compile_args = []
if get_option('freelist-declared-static') == false
# Remove the static declaration option from the free list struct
# The = with an empty string is needed to prevent the compiler
# from unhelpfully making it FREELIST_DECL_SPECIFIERS=1 on our behalf
freelist_compile_args += '-DFREELIST_DECL_SPECIFIERS='
endif
libmemory_freelist = static_library(
'memory_freelist',
[common_files, 'malloc_freelist.c'],
c_args: freelist_compile_args,
include_directories: libmemory_includes,
dependencies: [
libc_dep,
c_linked_list_dep
],
# Do not built by default if we are a subproject
build_by_default: (meson.is_subproject() == false)
)
libmemory_freelist_native = static_library(
'memory_freelist_native',
[common_files, 'malloc_freelist.c'],
c_args: freelist_compile_args,
include_directories: [libmemory_includes],
dependencies: [
libc_native_dep,
c_linked_list_dep
],
native: true,
# Do not built by default if we are a subproject
build_by_default: (meson.is_subproject() == false)
)
libmemory_freelist_dep = declare_dependency(
link_with: libmemory_freelist,
include_directories: libmemory_system_includes,
)
libmemory_freelist_native_dep = declare_dependency(
link_with: libmemory_freelist_native,
include_directories: libmemory_system_includes,
)
###########
# ThreadX #
###########
libmemory_threadx = static_library(
'memory_threadx',
[common_files, 'malloc_threadx.c'],
include_directories: [libmemory_includes, rtos_includes],
dependencies: libc_dep,
# Do not built by default if we are a subproject
build_by_default: (meson.is_subproject() == false)
)
libmemory_threadx_dep = declare_dependency(
link_with: libmemory_threadx,
include_directories: libmemory_system_includes,
)
############
# FreeRTOS #
############
libmemory_freertos = static_library(
'memory_freertos',
[common_files, 'malloc_freertos.c'],
include_directories: [libmemory_includes, rtos_includes],
dependencies: libc_dep,
# Do not built by default if we are a subproject
build_by_default: (meson.is_subproject() == false)
)
libmemory_freertos_dep = declare_dependency(
link_with: libmemory_freertos,
include_directories: libmemory_system_includes,
)
#########################
# Framework RTOS Malloc #
#########################
libmemory_framework_rtos_dep = declare_dependency(
sources: files('malloc_framework_rtos.cpp'),
include_directories: libmemory_system_includes
)