]> git.ipfire.org Git - thirdparty/glibc.git/blob - malloc/Makefile
Initialize tunable list with the GLIBC_TUNABLES environment variable
[thirdparty/glibc.git] / malloc / Makefile
1 # Copyright (C) 1991-2016 Free Software Foundation, Inc.
2 # This file is part of the GNU C Library.
3
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.
8
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.
13
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/>.
17
18 #
19 # Makefile for malloc routines
20 #
21 subdir := malloc
22
23 include ../Makeconfig
24
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-mallocstate tst-mcheck tst-mallocfork tst-trim1 \
29 tst-malloc-usable tst-realloc tst-posix_memalign \
30 tst-pvalloc tst-memalign tst-mallopt tst-scratch_buffer \
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-malloc-usable-tunables
37
38 tests-static := \
39 tst-interpose-static-nothread \
40 tst-interpose-static-thread \
41 tst-malloc-usable-static \
42 tst-malloc-usable-static-tunables
43
44 tests += $(tests-static)
45 test-srcs = tst-mtrace
46
47 routines = malloc morecore mcheck mtrace obstack \
48 scratch_buffer_grow scratch_buffer_grow_preserve \
49 scratch_buffer_set_array_size
50
51 install-lib := libmcheck.a
52 non-lib.a := libmcheck.a
53
54 # Additional library.
55 extra-libs = libmemusage
56 extra-libs-others = $(extra-libs)
57
58 # Helper objects for some tests.
59 extra-tests-objs += \
60 tst-interpose-aux-nothread.o \
61 tst-interpose-aux-thread.o \
62
63 test-extras = \
64 tst-interpose-aux-nothread \
65 tst-interpose-aux-thread \
66
67 libmemusage-routines = memusage
68 libmemusage-inhibit-o = $(filter-out .os,$(object-suffixes))
69
70 $(objpfx)tst-malloc-backtrace: $(shared-thread-library)
71 $(objpfx)tst-malloc-thread-exit: $(shared-thread-library)
72 $(objpfx)tst-malloc-thread-fail: $(shared-thread-library)
73 $(objpfx)tst-malloc-fork-deadlock: $(shared-thread-library)
74
75 # Export the __malloc_initialize_hook variable to libc.so.
76 LDFLAGS-tst-mallocstate = -rdynamic
77
78 # These should be removed by `make clean'.
79 extra-objs = mcheck-init.o libmcheck.a
80
81 # Include the cleanup handler.
82 aux := set-freeres thread-freeres
83
84 # The Perl script to analyze the output of the mtrace functions.
85 ifneq ($(PERL),no)
86 install-bin-script = mtrace
87 generated += mtrace
88
89 # The Perl script will print addresses and to do this nicely we must know
90 # whether we are on a 32 or 64 bit machine.
91 ifneq ($(findstring wordsize-32,$(config-sysdirs)),)
92 address-width=10
93 else
94 address-width=18
95 endif
96 endif
97
98 # Unless we get a test for the availability of libgd which also works
99 # for cross-compiling we disable the memusagestat generation in this
100 # situation.
101 ifneq ($(cross-compiling),yes)
102 # If the gd library is available we build the `memusagestat' program.
103 ifneq ($(LIBGD),no)
104 others: $(objpfx)memusage
105 install-bin = memusagestat
106 install-bin-script += memusage
107 generated += memusagestat memusage
108 extra-objs += memusagestat.o
109
110 # The configure.ac check for libgd and its headers did not use $SYSINCLUDES.
111 # The directory specified by --with-headers usually contains only the basic
112 # kernel interface headers, not something like libgd. So the simplest thing
113 # is to presume that the standard system headers will be ok for this file.
114 $(objpfx)memusagestat.o: sysincludes = # nothing
115 endif
116 endif
117
118 # Another goal which can be used to override the configure decision.
119 .PHONY: do-memusagestat
120 do-memusagestat: $(objpfx)memusagestat
121
122 memusagestat-modules = memusagestat
123
124 cpp-srcs-left := $(memusagestat-modules)
125 lib := memusagestat
126 include $(patsubst %,$(..)cppflags-iterator.mk,$(cpp-srcs-left))
127
128 $(objpfx)memusagestat: $(memusagestat-modules:%=$(objpfx)%.o)
129 $(LINK.o) -o $@ $^ $(libgd-LDFLAGS) -lgd -lpng -lz -lm
130
131 ifeq ($(run-built-tests),yes)
132 ifeq (yes,$(build-shared))
133 ifneq ($(PERL),no)
134 tests-special += $(objpfx)tst-mtrace.out
135 endif
136 endif
137 endif
138
139 include ../Rules
140
141 CFLAGS-mcheck-init.c = $(PIC-ccflag)
142 CFLAGS-obstack.c = $(uses-callbacks)
143
144 $(objpfx)libmcheck.a: $(objpfx)mcheck-init.o
145 -rm -f $@
146 $(patsubst %/,cd % &&,$(objpfx)) \
147 $(LN_S) $(<F) $(@F)
148
149 lib: $(objpfx)libmcheck.a
150
151 ifeq ($(run-built-tests),yes)
152 ifeq (yes,$(build-shared))
153 ifneq ($(PERL),no)
154 $(objpfx)tst-mtrace.out: tst-mtrace.sh $(objpfx)tst-mtrace
155 $(SHELL) $< $(common-objpfx) '$(test-program-prefix-before-env)' \
156 '$(run-program-env)' '$(test-program-prefix-after-env)' ; \
157 $(evaluate-test)
158 endif
159 endif
160 endif
161
162 tst-mcheck-ENV = MALLOC_CHECK_=3
163 tst-malloc-usable-ENV = MALLOC_CHECK_=3
164 tst-malloc-usable-static-ENV = $(tst-malloc-usable-ENV)
165 tst-malloc-usable-tunables-ENV = GLIBC_TUNABLES=glibc.malloc.check=3
166 tst-malloc-usable-static-tunables-ENV = $(tst-malloc-usable-tunables-ENV)
167
168 # Uncomment this for test releases. For public releases it is too expensive.
169 #CPPFLAGS-malloc.o += -DMALLOC_DEBUG=1
170
171 sLIBdir := $(shell echo $(slibdir) | sed 's,lib\(\|64\)$$,\\\\$$LIB,')
172
173 $(objpfx)mtrace: mtrace.pl
174 rm -f $@.new
175 sed -e 's|@PERL@|$(PERL)|' -e 's|@XXX@|$(address-width)|' \
176 -e 's|@VERSION@|$(version)|' \
177 -e 's|@PKGVERSION@|$(PKGVERSION)|' \
178 -e 's|@REPORT_BUGS_TO@|$(REPORT_BUGS_TO)|' $^ > $@.new \
179 && rm -f $@ && mv $@.new $@ && chmod +x $@
180
181 $(objpfx)memusage: memusage.sh
182 rm -f $@.new
183 sed -e 's|@BASH@|$(BASH)|' -e 's|@VERSION@|$(version)|' \
184 -e 's|@SLIBDIR@|$(sLIBdir)|' -e 's|@BINDIR@|$(bindir)|' \
185 -e 's|@PKGVERSION@|$(PKGVERSION)|' \
186 -e 's|@REPORT_BUGS_TO@|$(REPORT_BUGS_TO)|' $^ > $@.new \
187 && rm -f $@ && mv $@.new $@ && chmod +x $@
188
189
190 # The implementation uses `dlsym'
191 $(objpfx)libmemusage.so: $(libdl)
192
193 # Extra dependencies
194 $(foreach o,$(all-object-suffixes),$(objpfx)malloc$(o)): arena.c hooks.c
195
196 # Compile the tests with a flag which suppresses the mallopt call in
197 # the test skeleton.
198 $(tests:%=$(objpfx)%.o): CPPFLAGS += -DTEST_NO_MALLOPT
199
200 $(objpfx)tst-interpose-nothread: $(objpfx)tst-interpose-aux-nothread.o
201 $(objpfx)tst-interpose-thread: \
202 $(objpfx)tst-interpose-aux-thread.o $(shared-thread-library)
203 $(objpfx)tst-interpose-static-nothread: $(objpfx)tst-interpose-aux-nothread.o
204 $(objpfx)tst-interpose-static-thread: \
205 $(objpfx)tst-interpose-aux-thread.o $(static-thread-library)