]> git.ipfire.org Git - thirdparty/glibc.git/blame - malloc/Makefile
Add reallocarray function
[thirdparty/glibc.git] / malloc / Makefile
CommitLineData
bfff8b1b 1# Copyright (C) 1991-2017 Free Software Foundation, Inc.
f65fd747
UD
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
41bdb6e2
AJ
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.
f65fd747
UD
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
41bdb6e2 12# Lesser General Public License for more details.
f65fd747 13
41bdb6e2 14# You should have received a copy of the GNU Lesser General Public
59ba27a6
PE
15# License along with the GNU C Library; if not, see
16# <http://www.gnu.org/licenses/>.
f65fd747
UD
17
18#
19# Makefile for malloc routines
20#
33a934a3 21subdir := malloc
f65fd747 22
a5f891ac 23include ../Makeconfig
f65fd747
UD
24
25dist-headers := malloc.h
bd355af0 26headers := $(dist-headers) obstack.h mcheck.h
fa8d436c 27tests := mallocbug tst-malloc tst-valloc tst-calloc tst-obstack \
7c3018f9 28 tst-mcheck tst-mallocfork tst-trim1 \
2e0bbbfb 29 tst-malloc-usable tst-realloc tst-reallocarray tst-posix_memalign \
7c3018f9 30 tst-pvalloc tst-memalign tst-mallopt \
1bd5483e 31 tst-malloc-backtrace tst-malloc-thread-exit \
56290d6e 32 tst-malloc-thread-fail tst-malloc-fork-deadlock \
ef4f9764
FW
33 tst-mallocfork2 \
34 tst-interpose-nothread \
35 tst-interpose-thread \
ef4f9764
FW
36
37tests-static := \
38 tst-interpose-static-nothread \
39 tst-interpose-static-thread \
9dd409a5 40 tst-malloc-usable-static \
34a63b09 41
7c3018f9
ZW
42tests-internal := tst-mallocstate tst-scratch_buffer
43
34a63b09
FW
44ifneq (no,$(have-tunables))
45tests += tst-malloc-usable-tunables
46tests-static += tst-malloc-usable-static-tunables
47endif
ef4f9764 48
0f9317dc 49tests += $(tests-static)
199d6eb0 50test-srcs = tst-mtrace
f65fd747 51
2e0bbbfb 52routines = malloc morecore mcheck mtrace obstack reallocarray \
cfcfd461
FW
53 scratch_buffer_grow scratch_buffer_grow_preserve \
54 scratch_buffer_set_array_size
f65fd747 55
6d52618b
UD
56install-lib := libmcheck.a
57non-lib.a := libmcheck.a
58
c8f3e6db 59# Additional library.
e5874a42 60extra-libs = libmemusage
c8f3e6db
UD
61extra-libs-others = $(extra-libs)
62
ef4f9764
FW
63# Helper objects for some tests.
64extra-tests-objs += \
65 tst-interpose-aux-nothread.o \
66 tst-interpose-aux-thread.o \
67
68test-extras = \
69 tst-interpose-aux-nothread \
70 tst-interpose-aux-thread \
71
e5874a42
UD
72libmemusage-routines = memusage
73libmemusage-inhibit-o = $(filter-out .os,$(object-suffixes))
c8f3e6db 74
b87e4137
ST
75$(objpfx)tst-malloc-backtrace: $(shared-thread-library)
76$(objpfx)tst-malloc-thread-exit: $(shared-thread-library)
77$(objpfx)tst-malloc-thread-fail: $(shared-thread-library)
29d79486 78$(objpfx)tst-malloc-fork-deadlock: $(shared-thread-library)
fff94fa2 79
e863cce5
FW
80# Export the __malloc_initialize_hook variable to libc.so.
81LDFLAGS-tst-mallocstate = -rdynamic
82
6d52618b 83# These should be removed by `make clean'.
469e977f 84extra-objs = mcheck-init.o libmcheck.a
6d52618b 85
a5a0310d 86# Include the cleanup handler.
e8783fd5 87aux := set-freeres thread-freeres
a5a0310d 88
eacde9d0 89# The Perl script to analyze the output of the mtrace functions.
a2b08ee5 90ifneq ($(PERL),no)
6c3ebebd 91install-bin-script = mtrace
f08e9a26 92generated += mtrace
a2b08ee5
UD
93
94# The Perl script will print addresses and to do this nicely we must know
95# whether we are on a 32 or 64 bit machine.
737547be 96ifneq ($(findstring wordsize-32,$(config-sysdirs)),)
a2b08ee5
UD
97address-width=10
98else
99address-width=18
100endif
101endif
102
48d99185
UD
103# Unless we get a test for the availability of libgd which also works
104# for cross-compiling we disable the memusagestat generation in this
105# situation.
106ifneq ($(cross-compiling),yes)
e5874a42 107# If the gd library is available we build the `memusagestat' program.
c8f3e6db 108ifneq ($(LIBGD),no)
f50fa10c 109others: $(objpfx)memusage
f8d8a265
UD
110install-bin = memusagestat
111install-bin-script += memusage
991dca90 112generated += memusagestat memusage
469e977f 113extra-objs += memusagestat.o
c843e065 114
cb8a6dbd 115# The configure.ac check for libgd and its headers did not use $SYSINCLUDES.
c843e065
RM
116# The directory specified by --with-headers usually contains only the basic
117# kernel interface headers, not something like libgd. So the simplest thing
118# is to presume that the standard system headers will be ok for this file.
119$(objpfx)memusagestat.o: sysincludes = # nothing
c8f3e6db 120endif
48d99185 121endif
c8f3e6db
UD
122
123# Another goal which can be used to override the configure decision.
e5874a42
UD
124.PHONY: do-memusagestat
125do-memusagestat: $(objpfx)memusagestat
c8f3e6db 126
e5874a42 127memusagestat-modules = memusagestat
9cd47470
SP
128
129cpp-srcs-left := $(memusagestat-modules)
130lib := memusagestat
2bfdaedd 131include $(patsubst %,$(..)libof-iterator.mk,$(cpp-srcs-left))
9cd47470 132
e5874a42 133$(objpfx)memusagestat: $(memusagestat-modules:%=$(objpfx)%.o)
580ca83f 134 $(LINK.o) -o $@ $^ $(libgd-LDFLAGS) -lgd -lpng -lz -lm
c8f3e6db 135
f214606a
JM
136ifeq ($(run-built-tests),yes)
137ifeq (yes,$(build-shared))
138ifneq ($(PERL),no)
139tests-special += $(objpfx)tst-mtrace.out
140endif
141endif
142endif
143
f65fd747
UD
144include ../Rules
145
c6359097 146CFLAGS-mcheck-init.c = $(PIC-ccflag)
1877ea16 147CFLAGS-obstack.c = $(uses-callbacks)
c6359097 148
6d52618b
UD
149$(objpfx)libmcheck.a: $(objpfx)mcheck-init.o
150 -rm -f $@
e7c5513d
UD
151 $(patsubst %/,cd % &&,$(objpfx)) \
152 $(LN_S) $(<F) $(@F)
6d52618b
UD
153
154lib: $(objpfx)libmcheck.a
155
03ac099f 156ifeq ($(run-built-tests),yes)
02ba6e61 157ifeq (yes,$(build-shared))
9317ba7c 158ifneq ($(PERL),no)
3f36c563 159$(objpfx)tst-mtrace.out: tst-mtrace.sh $(objpfx)tst-mtrace
8540f6d2
JM
160 $(SHELL) $< $(common-objpfx) '$(test-program-prefix-before-env)' \
161 '$(run-program-env)' '$(test-program-prefix-after-env)' ; \
f0881698 162 $(evaluate-test)
02ba6e61 163endif
77e4b6fe 164endif
9317ba7c 165endif
199d6eb0 166
bfc832cc 167tst-mcheck-ENV = MALLOC_CHECK_=3
6ef9cc37 168tst-malloc-usable-ENV = MALLOC_CHECK_=3
67e58f39 169tst-malloc-usable-static-ENV = $(tst-malloc-usable-ENV)
9dd409a5
SP
170tst-malloc-usable-tunables-ENV = GLIBC_TUNABLES=glibc.malloc.check=3
171tst-malloc-usable-static-tunables-ENV = $(tst-malloc-usable-tunables-ENV)
bfc832cc 172
831372e7 173# Uncomment this for test releases. For public releases it is too expensive.
fa8d436c 174#CPPFLAGS-malloc.o += -DMALLOC_DEBUG=1
a2b08ee5 175
f50fa10c
UD
176sLIBdir := $(shell echo $(slibdir) | sed 's,lib\(\|64\)$$,\\\\$$LIB,')
177
a2b08ee5 178$(objpfx)mtrace: mtrace.pl
dfd2257a 179 rm -f $@.new
a2b08ee5 180 sed -e 's|@PERL@|$(PERL)|' -e 's|@XXX@|$(address-width)|' \
8b748aed
JM
181 -e 's|@VERSION@|$(version)|' \
182 -e 's|@PKGVERSION@|$(PKGVERSION)|' \
183 -e 's|@REPORT_BUGS_TO@|$(REPORT_BUGS_TO)|' $^ > $@.new \
43fc8f18
UD
184 && rm -f $@ && mv $@.new $@ && chmod +x $@
185
e5874a42 186$(objpfx)memusage: memusage.sh
43fc8f18 187 rm -f $@.new
926de5eb 188 sed -e 's|@BASH@|$(BASH)|' -e 's|@VERSION@|$(version)|' \
8b748aed
JM
189 -e 's|@SLIBDIR@|$(sLIBdir)|' -e 's|@BINDIR@|$(bindir)|' \
190 -e 's|@PKGVERSION@|$(PKGVERSION)|' \
191 -e 's|@REPORT_BUGS_TO@|$(REPORT_BUGS_TO)|' $^ > $@.new \
43fc8f18
UD
192 && rm -f $@ && mv $@.new $@ && chmod +x $@
193
8f48bfcc
UD
194
195# The implementation uses `dlsym'
79520f4b 196$(objpfx)libmemusage.so: $(libdl)
fa8d436c
UD
197
198# Extra dependencies
199$(foreach o,$(all-object-suffixes),$(objpfx)malloc$(o)): arena.c hooks.c
f690b569
FW
200
201# Compile the tests with a flag which suppresses the mallopt call in
202# the test skeleton.
203$(tests:%=$(objpfx)%.o): CPPFLAGS += -DTEST_NO_MALLOPT
ef4f9764
FW
204
205$(objpfx)tst-interpose-nothread: $(objpfx)tst-interpose-aux-nothread.o
206$(objpfx)tst-interpose-thread: \
207 $(objpfx)tst-interpose-aux-thread.o $(shared-thread-library)
208$(objpfx)tst-interpose-static-nothread: $(objpfx)tst-interpose-aux-nothread.o
209$(objpfx)tst-interpose-static-thread: \
210 $(objpfx)tst-interpose-aux-thread.o $(static-thread-library)