Faster strrchr.
[glibc.git] / malloc / Makefile
blobb16dac8deb10f269cc2e0280dce53ed07abd71f4
1 # Copyright (C) 1991-2013 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 all:
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
30 test-srcs = tst-mtrace
32 routines = malloc morecore mcheck mtrace obstack
34 install-lib := libmcheck.a
35 non-lib.a := libmcheck.a
37 # Additional library.
38 extra-libs = libmemusage
39 extra-libs-others = $(extra-libs)
41 libmemusage-routines = memusage
42 libmemusage-inhibit-o = $(filter-out .os,$(object-suffixes))
44 # These should be removed by `make clean'.
45 extra-objs = mcheck-init.o libmcheck.a
47 # Include the cleanup handler.
48 aux := set-freeres thread-freeres
50 include ../Makeconfig
52 CPPFLAGS-memusagestat = -DNOT_IN_libc
54 # The Perl script to analyze the output of the mtrace functions.
55 ifneq ($(PERL),no)
56 install-bin-script = mtrace
57 generated = mtrace
59 # The Perl script will print addresses and to do this nicely we must know
60 # whether we are on a 32 or 64 bit machine.
61 ifneq ($(findstring wordsize-32,$(config-sysdirs)),)
62 address-width=10
63 else
64 address-width=18
65 endif
66 endif
68 # Unless we get a test for the availability of libgd which also works
69 # for cross-compiling we disable the memusagestat generation in this
70 # situation.
71 ifneq ($(cross-compiling),yes)
72 # If the gd library is available we build the `memusagestat' program.
73 ifneq ($(LIBGD),no)
74 others: $(objpfx)memusage
75 install-bin = memusagestat
76 install-bin-script += memusage
77 generated += memusagestat memusage
78 extra-objs += memusagestat.o
80 # The configure.in check for libgd and its headers did not use $SYSINCLUDES.
81 # The directory specified by --with-headers usually contains only the basic
82 # kernel interface headers, not something like libgd. So the simplest thing
83 # is to presume that the standard system headers will be ok for this file.
84 $(objpfx)memusagestat.o: sysincludes = # nothing
85 endif
86 endif
88 # Another goal which can be used to override the configure decision.
89 .PHONY: do-memusagestat
90 do-memusagestat: $(objpfx)memusagestat
92 memusagestat-modules = memusagestat
93 $(objpfx)memusagestat: $(memusagestat-modules:%=$(objpfx)%.o)
94 $(LINK.o) -o $@ $^ $(libgd-LDFLAGS) -lgd -lpng -lz -lm
96 include ../Rules
98 CFLAGS-mcheck-init.c = $(PIC-ccflag)
99 CFLAGS-obstack.c = $(uses-callbacks)
101 $(objpfx)libmcheck.a: $(objpfx)mcheck-init.o
102 -rm -f $@
103 $(patsubst %/,cd % &&,$(objpfx)) \
104 $(LN_S) $(<F) $(@F)
106 lib: $(objpfx)libmcheck.a
108 ifeq ($(run-built-tests),yes)
109 ifeq (yes,$(build-shared))
110 ifneq ($(PERL),no)
111 tests: $(objpfx)tst-mtrace.out
112 $(objpfx)tst-mtrace.out: tst-mtrace.sh $(objpfx)tst-mtrace
113 $(SHELL) $< $(common-objpfx) '$(test-program-prefix)'
114 endif
115 endif
116 endif
118 tst-mcheck-ENV = MALLOC_CHECK_=3
119 tst-malloc-usable-ENV = MALLOC_CHECK_=3
121 CPPFLAGS-malloc.c += -DPER_THREAD
122 # Uncomment this for test releases. For public releases it is too expensive.
123 #CPPFLAGS-malloc.o += -DMALLOC_DEBUG=1
125 sLIBdir := $(shell echo $(slibdir) | sed 's,lib\(\|64\)$$,\\\\$$LIB,')
127 $(objpfx)mtrace: mtrace.pl
128 rm -f $@.new
129 sed -e 's|@PERL@|$(PERL)|' -e 's|@XXX@|$(address-width)|' \
130 -e 's|@VERSION@|$(version)|' \
131 -e 's|@PKGVERSION@|$(PKGVERSION)|' \
132 -e 's|@REPORT_BUGS_TO@|$(REPORT_BUGS_TO)|' $^ > $@.new \
133 && rm -f $@ && mv $@.new $@ && chmod +x $@
135 $(objpfx)memusage: memusage.sh
136 rm -f $@.new
137 sed -e 's|@BASH@|$(BASH)|' -e 's|@VERSION@|$(version)|' \
138 -e 's|@SLIBDIR@|$(sLIBdir)|' -e 's|@BINDIR@|$(bindir)|' \
139 -e 's|@PKGVERSION@|$(PKGVERSION)|' \
140 -e 's|@REPORT_BUGS_TO@|$(REPORT_BUGS_TO)|' $^ > $@.new \
141 && rm -f $@ && mv $@.new $@ && chmod +x $@
144 # The implementation uses `dlsym'
145 $(objpfx)libmemusage.so: $(common-objpfx)dlfcn/libdl.so
147 # Extra dependencies
148 $(foreach o,$(all-object-suffixes),$(objpfx)malloc$(o)): arena.c hooks.c