Fix abmon for bem_ZM
[glibc.git] / malloc / Makefile
blob50b487eeb574efa4011f321ac6c2c71a35726cd0
1 # Copyright (C) 1991-2017 Free Software Foundation, Inc.
2 # This file is part of the GNU C Library.
4 # The GNU C Library is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU Lesser General Public
6 # License as published by the Free Software Foundation; either
7 # version 2.1 of the License, or (at your option) any later version.
9 # The GNU C Library is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 # Lesser General Public License for more details.
14 # You should have received a copy of the GNU Lesser General Public
15 # License along with the GNU C Library; if not, see
16 # <http://www.gnu.org/licenses/>.
19 # Makefile for malloc routines
21 subdir := malloc
23 include ../Makeconfig
25 dist-headers := malloc.h
26 headers := $(dist-headers) obstack.h mcheck.h
27 tests := mallocbug tst-malloc tst-valloc tst-calloc tst-obstack \
28 tst-mcheck tst-mallocfork tst-trim1 \
29 tst-malloc-usable tst-realloc tst-reallocarray tst-posix_memalign \
30 tst-pvalloc tst-memalign tst-mallopt \
31 tst-malloc-backtrace tst-malloc-thread-exit \
32 tst-malloc-thread-fail tst-malloc-fork-deadlock \
33 tst-mallocfork2 \
34 tst-interpose-nothread \
35 tst-interpose-thread \
36 tst-alloc_buffer \
38 tests-static := \
39 tst-interpose-static-nothread \
40 tst-interpose-static-thread \
41 tst-malloc-usable-static \
43 tests-internal := tst-mallocstate tst-scratch_buffer
45 # The dynarray framework is only available inside glibc.
46 tests-internal += \
47 tst-dynarray \
48 tst-dynarray-fail \
49 tst-dynarray-at-fail \
51 ifneq (no,$(have-tunables))
52 tests += tst-malloc-usable-tunables
53 tests-static += tst-malloc-usable-static-tunables
54 endif
56 tests += $(tests-static)
57 test-srcs = tst-mtrace
59 routines = malloc morecore mcheck mtrace obstack reallocarray \
60 scratch_buffer_grow scratch_buffer_grow_preserve \
61 scratch_buffer_set_array_size \
62 dynarray_at_failure \
63 dynarray_emplace_enlarge \
64 dynarray_finalize \
65 dynarray_resize \
66 dynarray_resize_clear \
67 alloc_buffer_alloc_array \
68 alloc_buffer_allocate \
69 alloc_buffer_copy_bytes \
70 alloc_buffer_copy_string \
71 alloc_buffer_create_failure \
73 install-lib := libmcheck.a
74 non-lib.a := libmcheck.a
76 # Additional library.
77 extra-libs = libmemusage
78 extra-libs-others = $(extra-libs)
80 # Helper objects for some tests.
81 extra-tests-objs += \
82 tst-interpose-aux-nothread.o \
83 tst-interpose-aux-thread.o \
85 test-extras = \
86 tst-interpose-aux-nothread \
87 tst-interpose-aux-thread \
89 libmemusage-routines = memusage
90 libmemusage-inhibit-o = $(filter-out .os,$(object-suffixes))
92 $(objpfx)tst-malloc-backtrace: $(shared-thread-library)
93 $(objpfx)tst-malloc-thread-exit: $(shared-thread-library)
94 $(objpfx)tst-malloc-thread-fail: $(shared-thread-library)
95 $(objpfx)tst-malloc-fork-deadlock: $(shared-thread-library)
97 # Export the __malloc_initialize_hook variable to libc.so.
98 LDFLAGS-tst-mallocstate = -rdynamic
100 # These should be removed by `make clean'.
101 extra-objs = mcheck-init.o libmcheck.a
103 # Include the cleanup handler.
104 aux := set-freeres thread-freeres
106 # The Perl script to analyze the output of the mtrace functions.
107 ifneq ($(PERL),no)
108 install-bin-script = mtrace
109 generated += mtrace
111 # The Perl script will print addresses and to do this nicely we must know
112 # whether we are on a 32 or 64 bit machine.
113 ifneq ($(findstring wordsize-32,$(config-sysdirs)),)
114 address-width=10
115 else
116 address-width=18
117 endif
118 endif
120 # Unless we get a test for the availability of libgd which also works
121 # for cross-compiling we disable the memusagestat generation in this
122 # situation.
123 ifneq ($(cross-compiling),yes)
124 # If the gd library is available we build the `memusagestat' program.
125 ifneq ($(LIBGD),no)
126 others: $(objpfx)memusage
127 install-bin = memusagestat
128 install-bin-script += memusage
129 generated += memusagestat memusage
130 extra-objs += memusagestat.o
132 # The configure.ac check for libgd and its headers did not use $SYSINCLUDES.
133 # The directory specified by --with-headers usually contains only the basic
134 # kernel interface headers, not something like libgd. So the simplest thing
135 # is to presume that the standard system headers will be ok for this file.
136 $(objpfx)memusagestat.o: sysincludes = # nothing
137 endif
138 endif
140 # Another goal which can be used to override the configure decision.
141 .PHONY: do-memusagestat
142 do-memusagestat: $(objpfx)memusagestat
144 memusagestat-modules = memusagestat
146 cpp-srcs-left := $(memusagestat-modules)
147 lib := memusagestat
148 include $(patsubst %,$(..)libof-iterator.mk,$(cpp-srcs-left))
150 $(objpfx)memusagestat: $(memusagestat-modules:%=$(objpfx)%.o)
151 $(LINK.o) -o $@ $^ $(libgd-LDFLAGS) -lgd -lpng -lz -lm
153 ifeq ($(run-built-tests),yes)
154 ifeq (yes,$(build-shared))
155 ifneq ($(PERL),no)
156 tests-special += $(objpfx)tst-mtrace.out
157 tests-special += $(objpfx)tst-dynarray-mem.out
158 tests-special += $(objpfx)tst-dynarray-fail-mem.out
159 endif
160 endif
161 endif
163 include ../Rules
165 CFLAGS-mcheck-init.c = $(PIC-ccflag)
166 CFLAGS-obstack.c = $(uses-callbacks)
168 $(objpfx)libmcheck.a: $(objpfx)mcheck-init.o
169 -rm -f $@
170 $(patsubst %/,cd % &&,$(objpfx)) \
171 $(LN_S) $(<F) $(@F)
173 lib: $(objpfx)libmcheck.a
175 ifeq ($(run-built-tests),yes)
176 ifeq (yes,$(build-shared))
177 ifneq ($(PERL),no)
178 $(objpfx)tst-mtrace.out: tst-mtrace.sh $(objpfx)tst-mtrace
179 $(SHELL) $< $(common-objpfx) '$(test-program-prefix-before-env)' \
180 '$(run-program-env)' '$(test-program-prefix-after-env)' > $@; \
181 $(evaluate-test)
182 endif
183 endif
184 endif
186 tst-mcheck-ENV = MALLOC_CHECK_=3
187 tst-malloc-usable-ENV = MALLOC_CHECK_=3
188 tst-malloc-usable-static-ENV = $(tst-malloc-usable-ENV)
189 tst-malloc-usable-tunables-ENV = GLIBC_TUNABLES=glibc.malloc.check=3
190 tst-malloc-usable-static-tunables-ENV = $(tst-malloc-usable-tunables-ENV)
192 ifeq ($(experimental-malloc),yes)
193 CPPFLAGS-malloc.c += -DUSE_TCACHE=1
194 else
195 CPPFLAGS-malloc.c += -DUSE_TCACHE=0
196 endif
197 # Uncomment this for test releases. For public releases it is too expensive.
198 #CPPFLAGS-malloc.o += -DMALLOC_DEBUG=1
200 sLIBdir := $(shell echo $(slibdir) | sed 's,lib\(\|64\)$$,\\\\$$LIB,')
202 $(objpfx)mtrace: mtrace.pl
203 rm -f $@.new
204 sed -e 's|@PERL@|$(PERL)|' -e 's|@XXX@|$(address-width)|' \
205 -e 's|@VERSION@|$(version)|' \
206 -e 's|@PKGVERSION@|$(PKGVERSION)|' \
207 -e 's|@REPORT_BUGS_TO@|$(REPORT_BUGS_TO)|' $^ > $@.new \
208 && rm -f $@ && mv $@.new $@ && chmod +x $@
210 $(objpfx)memusage: memusage.sh
211 rm -f $@.new
212 sed -e 's|@BASH@|$(BASH)|' -e 's|@VERSION@|$(version)|' \
213 -e 's|@SLIBDIR@|$(sLIBdir)|' -e 's|@BINDIR@|$(bindir)|' \
214 -e 's|@PKGVERSION@|$(PKGVERSION)|' \
215 -e 's|@REPORT_BUGS_TO@|$(REPORT_BUGS_TO)|' $^ > $@.new \
216 && rm -f $@ && mv $@.new $@ && chmod +x $@
219 # The implementation uses `dlsym'
220 $(objpfx)libmemusage.so: $(libdl)
222 # Extra dependencies
223 $(foreach o,$(all-object-suffixes),$(objpfx)malloc$(o)): arena.c hooks.c
225 # Compile the tests with a flag which suppresses the mallopt call in
226 # the test skeleton.
227 $(tests:%=$(objpfx)%.o): CPPFLAGS += -DTEST_NO_MALLOPT
229 $(objpfx)tst-interpose-nothread: $(objpfx)tst-interpose-aux-nothread.o
230 $(objpfx)tst-interpose-thread: \
231 $(objpfx)tst-interpose-aux-thread.o $(shared-thread-library)
232 $(objpfx)tst-interpose-static-nothread: $(objpfx)tst-interpose-aux-nothread.o
233 $(objpfx)tst-interpose-static-thread: \
234 $(objpfx)tst-interpose-aux-thread.o $(static-thread-library)
236 tst-dynarray-ENV = MALLOC_TRACE=$(objpfx)tst-dynarray.mtrace
237 $(objpfx)tst-dynarray-mem.out: $(objpfx)tst-dynarray.out
238 $(common-objpfx)malloc/mtrace $(objpfx)tst-dynarray.mtrace > $@; \
239 $(evaluate-test)
241 tst-dynarray-fail-ENV = MALLOC_TRACE=$(objpfx)tst-dynarray-fail.mtrace
242 $(objpfx)tst-dynarray-fail-mem.out: $(objpfx)tst-dynarray-fail.out
243 $(common-objpfx)malloc/mtrace $(objpfx)tst-dynarray-fail.mtrace > $@; \
244 $(evaluate-test)