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