]> git.ipfire.org Git - thirdparty/glibc.git/blame - Makerules
benchtests: Switch string benchmarks to use bench-timing.h.
[thirdparty/glibc.git] / Makerules
CommitLineData
568035b7 1# Copyright (C) 1991-2013 Free Software Foundation, Inc.
1c68c264
RM
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
59ba27a6
PE
15# License along with the GNU C Library; if not, see
16# <http://www.gnu.org/licenses/>.
1c68c264
RM
17
18#
19# Common rules for making the GNU C library. This file is included
20# by the top-level Makefile and by all subdirectory makefiles
21# (through Rules).
22#
23ifneq (,)
24This makefile requires GNU Make.
25endif
26
27REQUIRED_MAKE_VERSION = 3.74
28REAL_MAKE_VERSION = $(firstword $(MAKE_VERSION))
29
30ifneq ($(REQUIRED_MAKE_VERSION), \
31 $(firstword $(sort $(REAL_MAKE_VERSION) $(REQUIRED_MAKE_VERSION))))
32Wrong GNU Make version. See above for the version needed.
33endif
34
35
36ifdef subdir
37.. := ../
38endif # subdir
39
40# If `sources' was defined by the parent makefile, undefine it so
41# we will later get it from wildcard search in this directory.
42ifneq "$(findstring env,$(origin sources))" ""
43sources :=
44endif
45
46oPATH := $(PATH)
47PATH := this definition should take precedence over $(oPATH)
48ifeq ($(PATH),$(oPATH))
49You must not use the -e flag when building the GNU C library.
50else
51PATH := $(oPATH)
52endif
53\f
54ifndef +included-Makeconfig
55include $(..)Makeconfig
56endif
57
1c68c264
RM
58# This variable is used in ``include $(o-iterator)'' after defining
59# $(o-iterator-doit) to produce some desired rule using $o for the object
60# suffix, and setting $(object-suffixes-left) to $(object-suffixes); a copy
61# is produced for each object suffix in use.
62o-iterator = $(patsubst %,$(..)o-iterator.mk,$(object-suffixes-left))
63\f
64# Include any system-specific makefiles.
65
66# This is here so things in sysdep Makefiles can easily depend on foo.h as
67# appropriate and not worry about where foo.h comes from, which may be
68# system dependent and not known by that Makefile.
69vpath %.h $(subst $(empty) ,:,$(strip $(common-objpfx) $(objpfx) \
70 $(+sysdep_dirs) $(..)))
71
72# The same is true for RPC source files.
73vpath %.x $(subst $(empty) ,:,$(strip $(common-objpfx) $(objpfx) \
74 $(+sysdep_dirs) $(..)))
75
76# Some sysdep makefiles use this to distinguish being included here from
77# being included individually by a subdir makefile (hurd/Makefile needs this).
78in-Makerules := yes
79
e0a3ed4f 80sysdep-makefiles := $(wildcard $(sysdirs:=/Makefile))
1c68c264
RM
81ifneq (,$(sysdep-makefiles))
82include $(sysdep-makefiles)
83endif
84
85
86# Reorder before-compile so that mach things come first, and hurd things
87# second, before all else. The mach and hurd subdirectories have many
88# generated header files which the much of rest of the library depends on,
89# so it is best to build them first (and mach before hurd, at that).
90before-compile := $(filter $(common-objpfx)mach% $(common-objpfx)hurd%,\
91 $(before-compile)) \
92 $(filter-out $(common-objpfx)mach% $(common-objpfx)hurd%,\
93 $(before-compile))
94
95# Even before that, we need abi-versions.h which is generated right here.
96ifeq ($(versioning),yes)
97ifndef avoid-generated
98before-compile := $(common-objpfx)abi-versions.h $(before-compile)
99$(common-objpfx)abi-versions.h: $(..)scripts/abi-versions.awk \
100 $(common-objpfx)Versions.all
101 LC_ALL=C $(AWK) -v oldest_abi=$(oldest-abi) -f $^ > $@T
102 mv -f $@T $@
103
104$(common-objpfx)%.latest: $(common-objpfx)abi-versions.h
105 sed -n '/ VERSION_$*_/{s/^.*_\([A-Z0-9_]*\).*$$/\1/;h;};$${g;p;}' \
106 $(common-objpfx)abi-versions.h > $@T
107 mv -f $@T $@
108endif # avoid-generated
109endif # $(versioning) = yes
110
92ad15a8
UD
111ifndef avoid-generated
112before-compile := $(common-objpfx)libc-abis.h $(before-compile)
17ad3877
RM
113$(common-objpfx)libc-abis.h: $(common-objpfx)libc-abis.stamp; @:
114$(common-objpfx)libc-abis.stamp: $(..)scripts/gen-libc-abis \
df5efd61
RM
115 $(firstword $(wildcard $(sysdirs:=/libc-abis)) \
116 $(..)libc-abis) \
117 $(..)Makerules
118 $(SHELL) $< \
92ad15a8 119 $(base-machine)-$(config-vendor)-$(config-os) \
17ad3877
RM
120 < $(word 2,$^) > $(@:.stamp=.h)T
121 $(move-if-change) $(@:.stamp=.h)T $(@:.stamp=.h)
122 touch $@
92ad15a8
UD
123common-generated += $(common-objpfx)libc-abis.h
124endif # avoid-generated
125
d73f5331 126# Make sure the subdirectory for object files gets created.
1c68c264 127ifdef objpfx
d73f5331 128ifeq (,$(wildcard $(objpfx).))
1c68c264
RM
129before-compile += $(objpfx).
130$(objpfx).:
131 $(make-target-directory)
132endif
133endif
134
135# Remove existing files from `before-compile'. Things are added there when
136# they must exist for dependency generation to work right, but once they
137# exist there is no further need for every single file to depend on them,
138# and those gratuitous dependencies result in many gratuitous
139# recompilations.
140before-compile := $(filter-out $(wildcard $(before-compile)),$(before-compile))
141
142# Don't let any before-compile file be an intermediate and get removed.
143ifdef before-compile
144$(before-compile):
145endif
146
7f3a54bd
RM
147# We don't want $(common-objpfx) files to depend on miscellaneous stuff
148# in subdirs.
149ifdef subdir
150common-before-compile := $(filter-out $(objpfx)%,$(before-compile))
151else
152common-before-compile = $(before-compile)
153endif
154
d73f5331 155ifndef subdir
1c68c264
RM
156# If a makefile needs to do something conditional on something that
157# can only be figured out from headers, write a FOO.make.c input
158# file that uses cpp contructs and contains @@@ LINE @@@ for each LINE
159# to emit in the generated makefile, and use -include $(common-objpfx)FOO.make.
d73f5331
RM
160#
161# We only generate these in the top-level makefile, to avoid any weirdness
162# from subdir-specific makefile tweaks creeping in on an update.
7f3a54bd 163$(common-objpfx)%.make: $(..)%.make.c $(..)Makerules $(common-before-compile)
1c68c264
RM
164 rm -f $@T $@.dT
165 (echo '# Generated from $*.make.c by Makerules.'; \
3192fd8e 166 $(CC) $(CFLAGS) $(CPPFLAGS) -E -DASSEMBLER $< \
7cd72ad3 167 -MD -MP -MT '$$(common-objpfx)$*.make' -MF $@.dT \
1c68c264
RM
168 | sed -n '/@@@/{s/@@@[ ]*\(.*\)@@@/\1/;s/[ ]*$$//p;}'; \
169 echo 'common-generated += $(@F)'; \
9ae10332
RM
170 sed $(sed-remove-objpfx) $(sed-remove-dotdot) $@.dT; \
171 rm -f $@.dT) > $@T
1c68c264 172 mv -f $@T $@
d73f5331 173endif
9ae10332 174
0e56981e 175ifdef subdir
7cd72ad3
RM
176sed-remove-dotdot := -e 's@ *\.\.\/\([^ \]*\)@ $$(..)\1@g' \
177 -e 's@^\.\.\/\([^ \]*\)@$$(..)\1@g'
0e56981e 178else
7cd72ad3
RM
179sed-remove-dotdot := -e 's@ *\([^ \/$$][^ \]*\)@ $$(..)\1@g' \
180 -e 's@^\([^ \/$$][^ \]*\)@$$(..)\1@g'
0e56981e 181endif
7f3a54bd
RM
182
183
0c7c6d53 184ifdef gen-as-const-headers
7f3a54bd
RM
185# Generating headers for assembly constants.
186# We need this defined early to get into before-compile before
187# it's used in sysd-rules, below.
188$(common-objpfx)%.h $(common-objpfx)%.h.d: $(..)scripts/gen-as-const.awk \
189 %.sym $(common-before-compile)
190 $(AWK) -f $< $(filter %.sym,$^) \
1feda3ed
RM
191 | $(CC) -S -o $(@:.h.d=.h)T3 $(CFLAGS) $(CPPFLAGS) -x c - \
192 -MD -MP -MF $(@:.h=.h.d)T -MT '$(@:.h=.h.d) $(@:.h.d=.h)'
193 sed -n 's/^.*@@@name@@@\([^@]*\)@@@value@@@[^0-9Xxa-fA-F-]*\([0-9Xxa-fA-F-][0-9Xxa-fA-F-]*\).*@@@end@@@.*$$/#define \1 \2/p' \
194 $(@:.h.d=.h)T3 > $(@:.h.d=.h)T
195 rm -f $(@:.h.d=.h)T3
7f3a54bd
RM
196 sed $(sed-remove-objpfx) $(sed-remove-dotdot) \
197 $(@:.h=.h.d)T > $(@:.h=.h.d)T2
198 rm -f $(@:.h=.h.d)T
199 mv -f $(@:.h=.h.d)T2 $(@:.h=.h.d)
200 mv -f $(@:.h.d=.h)T $(@:.h.d=.h)
201vpath %.sym $(sysdirs)
202before-compile += $(gen-as-const-headers:%.sym=$(common-objpfx)%.h)
0c7c6d53 203
ba389ce3
RM
204tests += $(gen-as-const-headers:%.sym=test-as-const-%)
205generated += $(gen-as-const-headers:%.sym=test-as-const-%.c)
206$(objpfx)test-as-const-%.c: $(..)scripts/gen-as-const.awk $(..)Makerules \
207 %.sym $(common-objpfx)%.h
0c7c6d53
RM
208 ($(AWK) '{ sub(/^/, "asconst_", $$2); print; }' $(filter %.h,$^); \
209 $(AWK) -v test=1 -f $< $(filter %.sym,$^); \
210 echo '#include "$(..)test-skeleton.c"') > $@T
211 mv -f $@T $@
212endif
1c68c264
RM
213\f
214# Generate an ordered list of implicit rules which find the source files in
215# each sysdep directory. The old method was to use vpath to search all the
216# sysdep directories. However, that had the problem that a .S file in a
217# later directory would be chosen over a .c file in an earlier directory,
218# which does not preserve the desired sysdeps ordering behavior.
219
346d65b3
RM
220# System-dependent makefiles can put in `inhibit-sysdep-asm' regexps
221# matching sysdep directories whose assembly source files should be
222# suppressed.
1c68c264 223
e0a3ed4f 224-include $(common-objpfx)sysd-rules
1c68c264
RM
225ifneq ($(sysd-rules-sysdirs),$(config-sysdirs))
226# The value of $(+sysdep_dirs) the sysd-rules was computed for
227# differs from the one we are using now. So force a rebuild of sysd-rules.
228sysd-rules-force = FORCE
229FORCE:
230endif
346d65b3
RM
231$(common-objpfx)sysd-rules: $(..)scripts/sysd-rules.awk \
232 $(common-objpfx)config.make $(..)Makerules \
708ef8a4
RM
233 $(sysdep-makefiles) $(sysdep-makeconfigs) \
234 $(sysd-rules-force)
1c68c264 235 -@rm -f $@T
346d65b3
RM
236 LC_ALL=C $(AWK) -f $< > $@T \
237 -v all_object_suffixes='$(all-object-suffixes)' \
238 -v inhibit_sysdep_asm='$(inhibit-sysdep-asm)' \
239 -v sysd_rules_patterns='$(sysd-rules-patterns)' \
240 -v config_sysdirs='$(config-sysdirs)'
1c68c264
RM
241 mv -f $@T $@
242
243ifndef sysd-rules-done
244# Don't do deps until this exists, because it provides rules to make the deps.
245no_deps=t
246endif
247
b6ab06ce
UD
248define o-iterator-doit
249$(objpfx)%$o: %.S $(before-compile); $$(compile-command.S)
250endef
251object-suffixes-left := $(all-object-suffixes)
252include $(o-iterator)
253
b6ab06ce
UD
254define o-iterator-doit
255$(objpfx)%$o: %.c $(before-compile); $$(compile-command.c)
256endef
257object-suffixes-left := $(all-object-suffixes)
258include $(o-iterator)
259
7735afa2
UD
260define o-iterator-doit
261$(objpfx)%$o: %.cc $(before-compile); $$(compile-command.cc)
262endef
263object-suffixes-left := $(all-object-suffixes)
264include $(o-iterator)
265
b6ab06ce
UD
266# Omit the objpfx rules when building in the source tree, because
267# objpfx is empty and so these rules just override the ones above.
268ifdef objpfx
269# Define first rules to find the source files in $(objpfx).
270# Generated source files will end up there.
271define o-iterator-doit
272$(objpfx)%$o: $(objpfx)%.S $(before-compile); $$(compile-command.S)
273endef
274object-suffixes-left := $(all-object-suffixes)
275include $(o-iterator)
276
b6ab06ce
UD
277define o-iterator-doit
278$(objpfx)%$o: $(objpfx)%.c $(before-compile); $$(compile-command.c)
279endef
280object-suffixes-left := $(all-object-suffixes)
281include $(o-iterator)
282endif
283
1c68c264
RM
284# Generate version maps, but wait until sysdep-subdirs is known
285ifeq ($(sysd-sorted-done),t)
286ifeq ($(versioning),yes)
287-include $(common-objpfx)sysd-versions
288$(addprefix $(common-objpfx),$(version-maps)): $(common-objpfx)sysd-versions
289common-generated += $(version-maps)
290postclean-generated += sysd-versions Versions.all abi-versions.h \
291 Versions.def.v.i Versions.def.v Versions.v.i Versions.v
292
293ifndef avoid-generated
e0a3ed4f 294ifneq ($(sysd-versions-subdirs),$(sorted-subdirs) $(config-sysdirs))
1c68c264
RM
295sysd-versions-force = FORCE
296FORCE:
297endif
298# See %.v/%.v.i implicit rules in Makeconfig.
299$(common-objpfx)Versions.def.v.i: $(..)Versions.def \
300 $(wildcard $(add-ons:%=$(..)%/Versions.def))
301$(common-objpfx)Versions.all: $(..)scripts/firstversions.awk \
302 $(common-objpfx)soversions.i \
303 $(common-objpfx)Versions.def.v
9d0547ce
RM
304 { while read which lib version setname; do \
305 test x"$$which" = xDEFAULT || continue; \
1c68c264
RM
306 test -z "$$setname" || echo "$$lib : $$setname"; \
307 done < $(word 2,$^); \
308 cat $(word 3,$^); \
309 } | LC_ALL=C $(AWK) -f $< > $@T
310 mv -f $@T $@
311# See %.v/%.v.i implicit rules in Makeconfig.
e0a3ed4f 312$(common-objpfx)Versions.v.i: $(wildcard $(subdirs:%=$(..)%/Versions)) \
1c68c264
RM
313 $(wildcard $(sysdirs:%=%/Versions)) \
314 $(common-objpfx)abi-versions.h \
315 $(sysd-versions-force)
316$(common-objpfx)sysd-versions: $(common-objpfx)Versions.all \
317 $(common-objpfx)Versions.v \
318 $(..)scripts/versions.awk
e0a3ed4f 319 ( echo 'sysd-versions-subdirs = $(subdirs) $(config-sysdirs)' ; \
1c68c264
RM
320 cat $(word 2,$^) \
321 | LC_ALL=C $(AWK) -v buildroot=$(common-objpfx) -v defsfile=$< \
322 -v move_if_change='$(move-if-change)' \
323 -f $(word 3,$^); \
324 ) > $@T
325 mv -f $@T $@
326endif # avoid-generated
327endif # $(versioning) = yes
328endif # sysd-sorted-done
329
d73f5331 330# Generate .dT files as we compile.
b9608428 331compile-mkdep-flags = -MD -MP -MF $@.dt -MT $@
d73f5331 332compile-command.S = $(compile.S) $(OUTPUT_OPTION) $(compile-mkdep-flags)
d73f5331 333compile-command.c = $(compile.c) $(OUTPUT_OPTION) $(compile-mkdep-flags)
7735afa2 334compile-command.cc = $(compile.cc) $(OUTPUT_OPTION) $(compile-mkdep-flags)
1c68c264 335
656416c9
AS
336# Like compile-mkdep-flags, but for use with $(BUILD_CC). We don't want to
337# track system includes here, they may spuriously trigger an install rule,
338# and would cause the check-local-headers test to fail.
339native-compile-mkdep-flags = -MMD -MP -MF $@.dt -MT $@
340
1c68c264
RM
341# GCC can grok options after the file name, and it looks nicer that way.
342compile.c = $(CC) $< -c $(CFLAGS) $(CPPFLAGS)
7735afa2 343compile.cc = $(CXX) $< -c $(CXXFLAGS) $(CPPFLAGS)
073e82bf
RM
344compile.S = $(CC) $< -c $(CPPFLAGS) $(S-CPPFLAGS) \
345 $(ASFLAGS) $(ASFLAGS-$(suffix $@))
c1487492 346COMPILE.c = $(CC) -c $(CFLAGS) $(CPPFLAGS)
073e82bf
RM
347COMPILE.S = $(CC) -c $(CPPFLAGS) $(S-CPPFLAGS) \
348 $(ASFLAGS) $(ASFLAGS-$(suffix $@))
1c68c264 349
1c68c264
RM
350# We need this for the output to go in the right place. It will default to
351# empty if make was configured to work with a cc that can't grok -c and -o
352# together. You can't compile the C library with such a compiler.
353OUTPUT_OPTION = -o $@
354
c1487492
RM
355# This is the end of the pipeline for compiling generated C code.
356compile-stdin.c = $(COMPILE.c) -o $@ -x c - $(compile-mkdep-flags)
357
1c68c264
RM
358# We need the $(CFLAGS) to be in there to have the right predefines during
359# the dependency run for C sources. But having it for assembly sources can
360# get the wrong predefines.
f4281cc4 361S-CPPFLAGS = -DASSEMBLER $(asm-CPPFLAGS)
d73f5331 362
1c68c264
RM
363define +make-deps
364$(make-target-directory)
365$(+mkdep) $< $(if $(filter %.c,$<),$(CFLAGS)) \
b710b53d
RM
366 $(CPPFLAGS) $($(patsubst .%,%,$(suffix $(<F)))-CPPFLAGS) | sed -e\
367's,$(subst .,\.,$(@F:.d=.o)),$(foreach o,$(all-object-suffixes),$(@:.d=$o)) $@,' \
368$(sed-remove-objpfx) $(sed-remove-dotdot) > $(@:.d=.T)
1c68c264
RM
369mv -f $(@:.d=.T) $@ $(generate-md5)
370endef
d73f5331 371
1c68c264
RM
372ifneq (,$(objpfx))
373# Continuation lines here are dangerous because they introduce spaces!
374define sed-remove-objpfx
375-e 's@ $(subst .,\.,$(subst @,\@,$(common-objpfx)))@ $$(common-objpfx)@g' \
376-e 's@^$(subst .,\.,$(subst @,\@,$(common-objpfx)))@$$(common-objpfx)@g'
377endef
378endif
379\f
380# Modify the list of routines we build for different targets
381
0269750c 382ifeq (yes,$(build-shared))
1c68c264
RM
383ifndef libc.so-version
384# Undefine this because it can't work when we libc.so is unversioned.
385static-only-routines =
386endif
387endif
388
1c68c264 389elide-routines.oS += $(filter-out $(static-only-routines),\
c2d54929
JM
390 $(routines) $(aux) $(sysdep_routines))
391elide-routines.os += $(static-only-routines)
1c68c264
RM
392
393# If we have versioned code we don't need the old versions in any of the
394# static libraries.
c2d54929
JM
395elide-routines.o += $(shared-only-routines)
396elide-routines.op += $(shared-only-routines)
397elide-routines.og += $(shared-only-routines)
1c68c264
RM
398\f
399# Shared library building.
400
401ifeq (yes,$(build-shared))
402
403# Reference map file only when versioning is selected and a map file name
404# is given.
405ifeq ($(versioning),yes)
406map-file = $(firstword $($(@F:.so=-map)) \
407 $(addprefix $(common-objpfx), \
408 $(filter $(@F:.so=.map),$(version-maps))))
409load-map-file = $(map-file:%=-Wl,--version-script=%)
410endif
411
fab7ce3f
JM
412# Compiler arguments to use to link a shared object with libc and
413# ld.so. This is intended to be as similar as possible to a default
414# link with an installed libc.
415link-libc-args = -Wl,--start-group \
416 $(libc-for-link) \
417 $(common-objpfx)libc_nonshared.a \
418 $(as-needed) $(elfobjdir)/ld.so $(no-as-needed) \
419 -Wl,--end-group
420
421# The corresponding shared libc to use. This may be modified for a
422# particular target.
423libc-for-link = $(common-objpfx)libc.so
424
425# The corresponding dependencies. As these are used in dependencies,
426# not just commands, they cannot use target-specific variables so need
427# to name both possible libc.so objects.
428link-libc-deps = $(common-objpfx)libc.so $(common-objpfx)linkobj/libc.so \
429 $(common-objpfx)libc_nonshared.a $(elfobjdir)/ld.so
430
1c68c264
RM
431# Pattern rule to build a shared object from an archive of PIC objects.
432# This must come after the installation rules so Make doesn't try to
433# build shared libraries in place from the installed *_pic.a files.
434# $(LDLIBS-%.so) may contain -l switches to generate run-time dependencies
fab7ce3f
JM
435# on other shared objects. The linking with libc and ld.so is intended
436# to be as similar as possible to a default link with an installed libc.
437lib%.so: lib%_pic.a $(+preinit) $(+postinit) $(+interp) $(link-libc-deps)
438 $(build-shlib) $(link-libc-args)
1c68c264 439
1c68c264 440define build-shlib-helper
a7f7b879 441$(LINK.o) -shared $(static-libgcc) -Wl,-O1 $(sysdep-LDFLAGS) \
740b3dbe 442 $(if $($(@F)-no-z-defs)$(no-z-defs),,-Wl,-z,defs) $(rtld-LDFLAGS) \
1c68c264
RM
443 $(extra-B-$(@F:lib%.so=%).so) -B$(csu-objpfx) \
444 $(extra-B-$(@F:lib%.so=%).so) $(load-map-file) \
445 -Wl,-soname=lib$(libprefix)$(@F:lib%.so=%).so$($(@F)-version) \
446 $(LDFLAGS.so) $(LDFLAGS-$(@F:lib%.so=%).so) \
447 -L$(subst :, -L,$(rpath-link)) -Wl,-rpath-link=$(rpath-link)
448endef
1c68c264 449
f781ef40
RM
450ifeq (yes,$(use-default-link))
451# If the linker is good enough, we can let it use its default linker script.
452shlib-lds =
453shlib-lds-flags =
454else
1c68c264
RM
455# binutils only position loadable notes into the first page for binaries,
456# not for shared objects
20792f99 457$(common-objpfx)shlib.lds: $(common-objpfx)config.make $(..)Makerules
358cad7c 458 $(LINK.o) -shared -Wl,-O1 \
c1e781ae 459 -nostdlib -nostartfiles \
740b3dbe 460 $(sysdep-LDFLAGS) $(rtld-LDFLAGS) $(LDFLAGS.so) \
358cad7c
RM
461 -Wl,--verbose 2>&1 | \
462 sed > $@T \
463 -e '/^=========/,/^=========/!d;/^=========/d' \
71213dc2
UD
464 $(if $(filter yes,$(have-hash-style)), \
465 -e 's/^.*\.gnu\.hash[ ]*:.*$$/ .note.ABI-tag : { *(.note.ABI-tag) } &/' \
466 -e '/^[ ]*\.hash[ ]*:.*$$/{h;d;}' \
467 -e '/DATA_SEGMENT_ALIGN/{H;g}' \
468 , \
469 -e 's/^.*\.hash[ ]*:.*$$/ .note.ABI-tag : { *(.note.ABI-tag) } &/' \
470 ) \
358cad7c 471 -e 's/^.*\*(\.dynbss).*$$/& \
20792f99 472 PROVIDE(__start___libc_freeres_ptrs = .); \
358cad7c 473 *(__libc_freeres_ptrs) \
ed20b3d9 474 PROVIDE(__stop___libc_freeres_ptrs = .);/'\
561bcb80 475 -e 's@^.*\*(\.jcr).*$$@& \
db2f05ba
RM
476 PROVIDE(__start___libc_subfreeres = .);\
477 __libc_subfreeres : { *(__libc_subfreeres) }\
478 PROVIDE(__stop___libc_subfreeres = .);\
479 PROVIDE(__start___libc_atexit = .);\
480 __libc_atexit : { *(__libc_atexit) }\
481 PROVIDE(__stop___libc_atexit = .);\
482 PROVIDE(__start___libc_thread_subfreeres = .);\
483 __libc_thread_subfreeres : { *(__libc_thread_subfreeres) }\
561bcb80
RM
484 PROVIDE(__stop___libc_thread_subfreeres = .);\
485 /DISCARD/ : { *(.gnu.glibc-stub.*) }@'
decd4e50 486 test -s $@T
358cad7c
RM
487 mv -f $@T $@
488common-generated += shlib.lds
489
2d4fa81e
RM
490shlib-lds = $(common-objpfx)shlib.lds
491shlib-lds-flags = -T $(shlib-lds)
f781ef40 492endif
2d4fa81e 493
358cad7c 494define build-shlib
2d4fa81e 495$(build-shlib-helper) -o $@ $(shlib-lds-flags) \
1c68c264 496 $(csu-objpfx)abi-note.o $(build-shlib-objlist)
1c68c264 497endef
1c68c264 498
1c68c264 499define build-module-helper
740b3dbe 500$(LINK.o) -shared $(static-libgcc) $(sysdep-LDFLAGS) $(rtld-LDFLAGS) \
1a379ea0 501 $(if $($(@F)-no-z-defs)$(no-z-defs),,-Wl,-z,defs) \
1c68c264
RM
502 -B$(csu-objpfx) $(load-map-file) \
503 $(LDFLAGS.so) $(LDFLAGS-$(@F:%.so=%).so) \
504 -L$(subst :, -L,$(rpath-link)) -Wl,-rpath-link=$(rpath-link)
505endef
1c68c264
RM
506
507# This macro is similar to build-shlib but it does not define a soname
508# and it does not depend on the destination name to start with `lib'.
1c68c264
RM
509# binutils only position loadable notes into the first page for binaries,
510# not for shared objects
511define build-module
2d4fa81e 512$(build-module-helper) -o $@ $(shlib-lds-flags) \
fab7ce3f 513 $(csu-objpfx)abi-note.o $(build-module-objlist) $(link-libc-args)
1c68c264 514endef
d9266ea0 515define build-module-asneeded
2d4fa81e 516$(build-module-helper) -o $@ $(shlib-lds-flags) \
d9266ea0 517 $(csu-objpfx)abi-note.o \
fab7ce3f
JM
518 -Wl,--as-needed $(build-module-objlist) -Wl,--no-as-needed \
519 $(link-libc-args)
d9266ea0 520endef
1c68c264
RM
521
522build-module-helper-objlist = \
523 $(patsubst %_pic.a,$(whole-archive) %_pic.a $(no-whole-archive),\
fab7ce3f
JM
524 $(filter-out %.lds $(map-file) $(+preinit) $(+postinit) \
525 $(link-libc-deps),$^))
1c68c264
RM
526
527build-module-objlist = $(build-module-helper-objlist) $(LDLIBS-$(@F:%.so=%).so)
528build-shlib-objlist = $(build-module-helper-objlist) \
529 $(LDLIBS-$(@F:lib%.so=%).so)
530
531# Don't try to use -lc when making libc.so itself.
532# Also omits crti.o and crtn.o, which we do not want
533# since we define our own `.init' section specially.
534LDFLAGS-c.so = -nostdlib -nostartfiles
cbdb12de
UD
535# But we still want to link libc.so against $(libc.so-gnulib).
536LDLIBS-c.so += $(libc.so-gnulib)
1c68c264
RM
537# Give libc.so an entry point and make it directly runnable itself.
538LDFLAGS-c.so += -e __libc_main
4df8c11d
UD
539# If lazy relocation is disabled add the -z now flag.
540ifeq ($(bind-now),yes)
541LDFLAGS-c.so += -Wl,-z,now
542endif
1c68c264
RM
543# Pre-link the objects of libc_pic.a so that we can locally resolve
544# COMMON symbols before we link against ld.so. This is because ld.so
545# contains some of libc_pic.a already, which will prevent the COMMONs
546# from being allocated in libc.so, which introduces evil dependencies
547# between libc.so and ld.so, which can make it impossible to upgrade.
1c68c264 548$(common-objpfx)libc_pic.os: $(common-objpfx)libc_pic.a
b350afab 549 $(LINK.o) -nostdlib -nostartfiles -r -o $@ \
3ce1f295 550 $(LDFLAGS-c_pic.os) -Wl,-d $(whole-archive) $^ -o $@
1b74661a
RM
551
552ifeq (,$(strip $(shlib-lds-flags)))
553# Generate a list of -R options to excise .gnu.glibc-stub.* sections.
554$(common-objpfx)libc_pic.opts: $(common-objpfx)libc_pic.os
555 $(OBJDUMP) -h $< | \
556 $(AWK) '$$2 ~ /\.gnu\.glibc-stub\./ { print "-R", $$2 }' \
557 > $@T
558 mv -f $@T $@
559# Apply those -R options.
560$(common-objpfx)libc_pic.os.clean: $(common-objpfx)libc_pic.opts \
561 $(common-objpfx)libc_pic.os
562 $(OBJCOPY) @$^ $@
563generated += libc_pic.opts libc_pic.os.clean
564
565libc_pic_clean := .clean
566endif
567
fab7ce3f
JM
568# Do not filter ld.so out of libc.so link.
569$(common-objpfx)libc.so: link-libc-deps = # empty
570
1c68c264
RM
571# Use our own special initializer and finalizer files for libc.so.
572$(common-objpfx)libc.so: $(elfobjdir)/soinit.os \
1b74661a 573 $(common-objpfx)libc_pic.os$(libc_pic_clean) \
1c68c264 574 $(elfobjdir)/sofini.os \
358cad7c 575 $(elfobjdir)/interp.os $(elfobjdir)/ld.so \
2d4fa81e 576 $(shlib-lds)
1c68c264
RM
577 $(build-shlib)
578ifeq ($(versioning),yes)
579$(common-objpfx)libc.so: $(common-objpfx)libc.map
580endif
581common-generated += libc.so libc_pic.os
582ifdef libc.so-version
583$(common-objpfx)libc.so$(libc.so-version): $(common-objpfx)libc.so
584 $(make-link)
585common-generated += libc.so$(libc.so-version)
586endif
587endif
1c68c264
RM
588\f
589# Figure out the source filenames in this directory.
590
591override sources := $(addsuffix .c,\
592 $(filter-out $(elided-routines),\
593 $(routines) $(aux) \
594 $(sysdep_routines)))
595sysdep_routines := $(sysdep_routines)
596
597headers := $(headers) $(sysdep_headers)
598
599# This is the list of all object files, gotten by
600# replacing every ".c" in `sources' with a ".o".
c2d54929 601override objects := $(addprefix $(objpfx),$(sources:.c=.o))
1c68c264
RM
602
603
604# The makefile may define $(extra-libs) with `libfoo libbar'
605# to build libfoo.a et al from the modules listed in $(libfoo-routines).
606ifdef extra-libs
607# extra-lib.mk is included once for each extra lib to define rules
608# to build it, and to add its objects to the various variables.
609# During its evaluation, $(lib) is set to the name of the library.
610extra-libs-left := $(extra-libs)
611include $(patsubst %,$(..)extra-lib.mk,$(extra-libs))
612endif
b30542fb
UD
613
614
aed48a2a
RM
615# The makefile may define $(modules-names) to build additional modules.
616# These are built with $(build-module), except any in $(modules-names-nobuild).
b30542fb
UD
617ifdef modules-names
618# extra-lib.mk is included once for each extra lib to define rules
619# to build it, and to add its objects to the various variables.
620# During its evaluation, $(lib) is set to the name of the library.
621extra-modules-left := $(modules-names)
622include $(patsubst %,$(..)extra-modules.mk,$(modules-names))
aed48a2a
RM
623
624extra-modules-build := $(filter-out $(modules-names-nobuild),$(modules-names))
625$(extra-modules-build:%=$(objpfx)%.so): $(objpfx)%.so: \
fab7ce3f 626 $(objpfx)%.os $(shlib-lds) $(link-libs-deps)
aed48a2a 627 $(build-module)
b30542fb 628endif
1c68c264
RM
629\f
630+depfiles := $(sources:.c=.d) \
631 $(patsubst %.o,%.d,$(filter %.o,$(extra-objs:.os=.o))) \
5bd66283 632 $(patsubst %.oS,%.d,$(filter %.oS,$(extra-objs))) \
376e973a 633 $(patsubst %.o,%.d,$(filter %.o,$(extra-test-objs:.os=.o))) \
1c68c264
RM
634 $(addsuffix .d,$(tests) $(xtests) $(test-srcs))
635ifeq ($(build-programs),yes)
636+depfiles += $(addsuffix .d,$(others) $(sysdep-others))
637endif
638+depfiles := $(addprefix $(objpfx),\
639 $(filter-out $(addsuffix .d,$(omit-deps)),\
9ae10332 640 $(+depfiles)))
d73f5331
RM
641all-dt-files := $(foreach o,$(object-suffixes-for-libc),$(+depfiles:.d=$o.dt))
642+depfiles := $(patsubst %.dt,%.d,$(wildcard $(all-dt-files))) \
643 $(wildcard $(all-dt-files:.dt=.d))
644
645# This is a funny rule in that it removes its input file.
646%.d: %.dt
647 @sed $(sed-remove-objpfx) $< > $(@:.d=.T) && \
648 mv -f $(@:.d=.T) $@ && \
649 rm -f $<
9ae10332
RM
650
651# Avoid the .h.d files for any .sym files whose .h files don't exist yet.
652# They will be generated when they're needed, and trying too early won't work.
653+gen-as-const := $(gen-as-const-headers:%.sym=$(common-objpfx)%.h)
654+depfiles += $(addsuffix .d,$(filter $(wildcard $(+gen-as-const)),\
655 $(+gen-as-const)))
1c68c264
RM
656
657ifdef +depfiles
658ifneq ($(no_deps),t)
659-include $(+depfiles)
660endif
661endif
662\f\f
663# Maximize efficiency by minimizing the number of rules.
664.SUFFIXES: # Clear the suffix list. We don't use suffix rules.
665# Don't define any builtin rules.
666MAKEFLAGS := $(MAKEFLAGS)r
667
668# Generic rule for making directories.
669%/:
670# mkdir isn't smart enough to strip a trailing /.
5dfeae0e
UD
671# We always require a mkdir which supports the -p option to avoid error
672# messages in case of races.
673 mkdir -p $(@:%/=%)
1c68c264
RM
674\f
675# Make sure that object files are not removed
676# when they are intermediates between sources and library members.
677.PRECIOUS: $(addprefix $(objpfx)%,$(all-object-suffixes))
678
679# Make sure that the parent library archive is never removed.
680.PRECIOUS: $(foreach l,$(libtypes),$(patsubst %,$(common-objpfx)$l,c))
681\f
682# Use the verbose option of ar and tar when not running silently.
683ifeq "$(findstring s,$(MAKEFLAGS))" "" # if not -s
684verbose := v
685else # -s
686verbose :=
687endif # not -s
688
689ARFLAGS := r$(verbose)
690CREATE_ARFLAGS := cru$(verbose)
691\f
692# This makes all the object files in the parent library archive.
693
694.PHONY: lib lib-noranlib
695lib: lib-noranlib $(foreach l,$(libtypes),$(patsubst %,$(common-objpfx)$l,c))
696lib-noranlib: libobjs
697
698# For object-suffix $o, the list of objects with that suffix.
699# Makefiles can define `elide-routines.so = foo' to leave foo.so out.
700o-objects = $(patsubst %.o,%$o,$(filter-out $(patsubst %,$(objpfx)%.o,\
701 $(elide-routines$o)),\
702 $(objects))) \
703 $(addprefix $(objpfx),$(o-objects$o))
704
705others: $(addprefix $(objpfx),$(install-lib))
706
707ifndef objects
708
709# Create the stamp$o files to keep the parent makefile happy.
710subdir_lib: $(foreach o,$(object-suffixes-for-libc),$(objpfx)stamp$o)
711$(foreach o,$(object-suffixes-for-libc),$(objpfx)stamp$o):
712 $(make-target-directory)
713 rm -f $@; > $@
714else
715
716# Define explicit rules to update each $(objpfx)stamp.SUFFIX
717# timestamp file; these rules (one explicit rule is generated for each
718# object suffix) write a list of objects to update in the stamp file.
719# The parent will then actually add them all to the archive in the
720# archive rule, below.
721define o-iterator-doit
722$(objpfx)stamp$o: $(o-objects); $$(do-stamp)
723endef
724define do-stamp
d8f6e441 725$(make-target-directory)
1c68c264
RM
726echo '$(patsubst $(objpfx)%,$(addsuffix /,$(subdir))%,$^)' > $@T
727mv -f $@T $@
728endef
729object-suffixes-left := $(object-suffixes-for-libc)
730include $(o-iterator)
731
732endif
733
734# Now define explicit rules to build the library archives; these depend
735# on the stamp files built above.
736define o-iterator-doit
737$(common-objpfx)$(patsubst %,$(libtype$o),c): \
738 $(subdirs-stamp-o) $(common-objpfx)stamp$o; $$(do-makelib)
739endef
740define do-makelib
741cd $(common-objdir) && \
742$(AR) $(CREATE_ARFLAGS) $(@F) `cat $(patsubst $(common-objpfx)%,%,$^)`
1c68c264
RM
743endef
744subdirs-stamps := $(foreach d,$(subdirs),$(common-objpfx)$d/stamp%)
745subdirs-stamp-o = $(subst %,$o,$(subdirs-stamps))
746ifndef subdir
747$(subdirs-stamps): subdir_lib;
748endif
749object-suffixes-left = $(object-suffixes-for-libc)
750include $(o-iterator)
751
752
753# This makes all the object files.
754.PHONY: objects objs libobjs extra-objs
755objects objs: libobjs extra-objs
756libobjs: $(foreach o,$(object-suffixes-for-libc),$(objpfx)stamp$o)
757extra-objs: $(addprefix $(objpfx),$(extra-objs))
758
759# Canned sequence for building an extra library archive.
760define build-extra-lib
761$(patsubst %/,cd % &&,$(objpfx)) \
762$(AR) $(CREATE_ARFLAGS) $(@:$(objpfx)%=%) \
763 $(patsubst $(objpfx)%,%,$^)
1c68c264
RM
764endef
765\f
766# Installation.
767
768.PHONY: force-install
769force-install:
770
771# $(install-lib) are installed from the object directory into $(libdir);
772# files in $(install-lib) matching `lib%.a' are ranlib'd after installation
80d4c3b0
RM
773# unless they also appear in $(non-lib.a). $(install-data) are installed as
774# they are into $(datadir). $(headers) are installed as they are in
1c68c264
RM
775# $(includedir). $(install-bin), $(install-bin-script) and $(install-sbin)
776# are installed from the object directory into $(bindir), $(bindir) and
80d4c3b0
RM
777# $(sbindir), respectively. $(install-others) and $(install-others-programs)
778# are absolute path names of files to install; rules to install them are
779# defined elsewhere.
1c68c264
RM
780
781# The simple library name to install libc.a under.
782# This could be defined by a sysdep Makefile.
783ifndef libc-name
784libc-name := c
785endif
786
787define do-install
788$(make-target-directory)
789$(INSTALL_DATA) $< $@
790endef
791
792# Make the target directory if it doesn't exist, using the `mkinstalldirs'
793# script that does `mkdir -p' even if `mkdir' doesn't support that flag.
794define make-target-directory
795$(addprefix $(..)./scripts/mkinstalldirs ,\
796 $(filter-out $(wildcard $(@D:%/=%)),$(@D:%/=%)))
797endef
798
799# Any directory (parent or subdir) should install libc.a; this way
800# "make install" in a subdir is guaranteed to install everything it changes.
801installed-libcs := $(foreach o,$(filter-out .os,$(object-suffixes-for-libc)),\
802 $(inst_libdir)/$(patsubst %,$(libtype$o),\
803 $(libprefix)$(libc-name)))
804install: $(installed-libcs)
805$(installed-libcs): $(inst_libdir)/lib$(libprefix)%: lib $(+force)
806 $(make-target-directory)
807 $(INSTALL_DATA) $(common-objpfx)lib$(*:$(libc-name)%=c%) $@
1c68c264
RM
808
809define do-install-program
810$(make-target-directory)
811$(INSTALL_PROGRAM) $< $@.new
812mv -f $@.new $@
813endef
814
815define do-install-script
816$(make-target-directory)
817$(INSTALL_SCRIPT) $< $@.new
818mv -f $@.new $@
819endef
820
821install-lib.so := $(filter %.so,$(install-lib:%_pic.a=%.so))
822install-lib := $(filter-out %.so %_pic.a,$(install-lib))
823
824ifeq (yes,$(build-shared))
825# Find which .so's have versions.
826versioned := $(strip $(foreach so,$(install-lib.so),\
827 $(patsubst %,$(so),$($(so)-version))))
828
829install-lib.so-versioned := $(filter $(versioned), $(install-lib.so))
830install-lib.so-unversioned := $(filter-out $(versioned), $(install-lib.so))
831
cc8bfce9
RM
832# For versioned libraries, we install three files:
833# $(inst_libdir)/libfoo.so -- for linking, symlink or ld script
834# $(inst_slibdir)/libfoo.so.NN -- for loading by SONAME, symlink
835# $(inst_slibdir)/libfoo-X.Y.Z.so -- the real shared object file
48da0b21 836lib-version := $(firstword $($(subdir)-version) $(version))
cc8bfce9
RM
837install-lib-nosubdir: $(install-lib.so-unversioned:%=$(inst_slibdir)/%) \
838 $(foreach L,$(install-lib.so-versioned),\
839 $(inst_libdir)/$L \
48da0b21 840 $(inst_slibdir)/$(L:.so=)-$(lib-version).so \
cc8bfce9 841 $(inst_slibdir)/$L$($L-version))
1c68c264
RM
842
843# Install all the unversioned shared libraries.
844$(install-lib.so-unversioned:%=$(inst_slibdir)/%): $(inst_slibdir)/%.so: \
845 $(objpfx)%.so $(+force)
846 $(do-install-program)
847
848ifneq ($(findstring -s,$(LN_S)),)
849define make-link
850rm -f $@.new
851$(SHELL) $(..)scripts/rellns-sh $< $@.new
852mv -f $@.new $@
853endef
854else
855# If we have no symbolic links don't bother with rellns-sh.
856define make-link
857rm -f $@.new
858$(LN_S) $< $@.new
859mv -f $@.new $@
860endef
861endif
862
863ifeq (yes,$(build-shared))
864ifeq (no,$(cross-compiling))
865symbolic-link-prog := $(common-objpfx)elf/sln
866symbolic-link-list := $(common-objpfx)elf/symlink.list
867define make-shlib-link
aaa8cb4b 868echo `$(..)scripts/rellns-sh -p $< $@` $@ >> $(symbolic-link-list)
1c68c264
RM
869endef
870else # cross-compiling
871# We need a definition that can be used by elf/Makefile's install rules.
872symbolic-link-prog = $(LN_S)
873endif
874endif
875ifndef make-shlib-link
876define make-shlib-link
877rm -f $@
aaa8cb4b 878$(LN_S) `$(..)scripts/rellns-sh -p $< $@` $@
1c68c264
RM
879endef
880endif
881
882ifdef libc.so-version
883# For a library specified to be version N, install three files:
884# libc.so -> libc.so.N (e.g. libc.so.6)
885# libc.so.6 -> libc-VERSION.so (e.g. libc-1.10.so)
886
887$(inst_slibdir)/libc.so$(libc.so-version): $(inst_slibdir)/libc-$(version).so \
888 $(+force)
889 $(make-shlib-link)
890$(inst_slibdir)/libc-$(version).so: $(common-objpfx)libc.so $(+force)
891 $(do-install-program)
892install: $(inst_slibdir)/libc.so$(libc.so-version)
893
894# This fragment of linker script gives the OUTPUT_FORMAT statement
895# for the configuration we are building. We put this statement into
896# the linker scripts we install for -lc et al so that they will not be
897# used by a link for a different format on a multi-architecture system.
898$(common-objpfx)format.lds: $(..)scripts/output-format.sed \
899 $(common-objpfx)config.make \
900 $(common-objpfx)config.h $(..)Makerules
5c550700
RM
901ifneq (unknown,$(output-format))
902 echo > $@.new 'OUTPUT_FORMAT($(output-format))'
903else
740b3dbe 904 $(LINK.o) -shared $(sysdep-LDFLAGS) $(rtld-LDFLAGS) $(LDFLAGS.so) \
1c68c264
RM
905 -x c /dev/null -o $@.so -Wl,--verbose -v 2>&1 \
906 | sed -n -f $< > $@.new
5e9b6af4 907 test -s $@.new
1c68c264 908 rm -f $@.so
5c550700 909endif
1c68c264
RM
910 mv -f $@.new $@
911common-generated += format.lds
912
913ifndef subdir
914# What we install as libc.so for programs to link against is in fact a
915# link script. It contains references for the various libraries we need.
916# The libc.so object is not complete since some functions are only defined
917# in libc_nonshared.a.
918# We need to use absolute paths since otherwise local copies (if they exist)
919# of the files are taken by the linker.
920install: $(inst_libdir)/libc.so
921$(inst_libdir)/libc.so: $(common-objpfx)format.lds \
922 $(common-objpfx)libc.so$(libc.so-version) \
923 $(inst_libdir)/$(patsubst %,$(libtype.oS),\
924 $(libprefix)$(libc-name)) \
925 $(+force)
926 (echo '/* GNU ld script';\
927 echo ' Use the shared library, but some functions are only in';\
928 echo ' the static library, so try that secondarily. */';\
929 cat $<; \
930 echo 'GROUP ( $(slibdir)/libc.so$(libc.so-version)' \
931 '$(libdir)/$(patsubst %,$(libtype.oS),$(libprefix)$(libc-name))'\
04eed2b0 932 ' AS_NEEDED (' $(rtlddir)/$(rtld-installed-name) ') )' \
1c68c264
RM
933 ) > $@.new
934 mv -f $@.new $@
935
936endif
937
938else
939install: $(inst_slibdir)/libc.so
940$(inst_slibdir)/libc.so: $(common-objpfx)libc.so $(+force)
941 $(do-install-program)
942endif
943
944ifneq (,$(versioned))
945# Produce three sets of rules as above for all the smaller versioned libraries.
946
947define o-iterator-doit
948$(inst_libdir)/$o: $(inst_slibdir)/$o$($o-version) $(+force); $$(make-link)
949endef
2afbfec4
RM
950object-suffixes-left := $(filter-out $(install-lib-ldscripts),$(versioned))
951ifneq (,$(object-suffixes-left))
1c68c264 952include $(o-iterator)
2afbfec4 953endif
1c68c264
RM
954
955# Make symlinks in the build directory, because the versioned names might
956# be referenced by a DT_NEEDED in another library.
957define o-iterator-doit
958$(objpfx)$o$($o-version): $(objpfx)$o; $$(make-link)
959endef
960object-suffixes-left := $(versioned)
961include $(o-iterator)
962
963generated += $(foreach o,$(versioned),$o$($o-version))
964
965ifeq (,$($(subdir)-version))
966define o-iterator-doit
967$(inst_slibdir)/$o$($o-version): $(inst_slibdir)/$(o:.so=)-$(version).so \
968 $(+force);
969 $$(make-shlib-link)
970endef
971object-suffixes-left := $(versioned)
972include $(o-iterator)
973
974define o-iterator-doit
975$(inst_slibdir)/$(o:.so=)-$(version).so: $(objpfx)$o $(+force);
976 $$(do-install-program)
977endef
978object-suffixes-left := $(versioned)
979include $(o-iterator)
980else
981define o-iterator-doit
982$(inst_slibdir)/$o$($o-version): \
983 $(inst_slibdir)/$(o:.so=)-$($(subdir)-version).so $(+force);
984 $$(make-shlib-link)
985endef
986object-suffixes-left := $(versioned)
987include $(o-iterator)
988
989define o-iterator-doit
990$(inst_slibdir)/$(o:.so=)-$($(subdir)-version).so: $(objpfx)$o $(+force);
991 $$(do-install-program)
992endef
993object-suffixes-left := $(versioned)
994include $(o-iterator)
995endif
996endif
997
998define do-install-so
999$(do-install-program)
1000$(patsubst %,ln -s -f $(@F) $(@D)/$(patsubst %$*.so,%,$(<F))$(libprefix)$*.so,\
1001 $(filter-out %.so,$@))
1002endef
1003
1004so-versions := $(sort $(foreach so,$(install-lib.so),.so$($(so)-version)))
1005$(foreach v,$(so-versions),\
1006 $(inst_slibdir)/lib$(libprefix)%$v): $(common-objpfx)lib%.so \
1007 $(+force)
1008 $(do-install-so)
1009$(foreach v,$(so-versions),\
1010 $(inst_slibdir)/$(libprefix)%$v): $(common-objpfx)%.so $(+force)
1011 $(do-install-so)
1012endif
1013
1014ifdef install-bin
1015$(addprefix $(inst_bindir)/,$(install-bin)): \
1016 $(inst_bindir)/%: $(objpfx)% $(+force)
1017 $(do-install-program)
1018endif
1019ifdef install-bin-script
1020$(addprefix $(inst_bindir)/,$(install-bin-script)): \
1021 $(inst_bindir)/%: $(objpfx)% $(+force)
1022 $(do-install-script)
1023endif
1024ifdef install-rootsbin
1025$(addprefix $(inst_rootsbindir)/,$(install-rootsbin)): \
1026 $(inst_rootsbindir)/%: $(objpfx)% $(+force)
1027 $(do-install-program)
1028endif
1029ifdef install-sbin
1030$(addprefix $(inst_sbindir)/,$(install-sbin)): \
1031 $(inst_sbindir)/%: $(objpfx)% $(+force)
1032 $(do-install-program)
1033endif
1034ifdef install-lib
1035install-lib.a := $(filter lib%.a,$(install-lib))
1036install-lib-non.a := $(filter-out lib%.a,$(install-lib))
1037ifdef install-lib-non.a
1038$(addprefix $(inst_libdir)/$(libprefix),$(install-lib-non.a)): \
1039 $(inst_libdir)/$(libprefix)%: $(objpfx)% $(+force)
1040 $(do-install)
1041endif
1042ifdef install-lib.a
1043$(install-lib.a:lib%.a=$(inst_libdir)/lib$(libprefix)%.a): \
1044 $(inst_libdir)/lib$(libprefix)%.a: $(objpfx)lib%.a $(+force)
1045 $(do-install)
1c68c264
RM
1046endif
1047endif
1048ifdef install-data
1049$(addprefix $(inst_datadir)/,$(install-data)): $(inst_datadir)/%: % $(+force)
1050 $(do-install)
1051endif
1052headers := $(strip $(headers))
1053ifdef headers
f0cf0902
RM
1054# This implicit rule installs headers from the source directory.
1055# It may be ignored in preference to rules from sysd-rules to find
1056# headers in the sysdeps tree.
1057$(inst_includedir)/%.h: $(objpfx)%.h $(+force)
1c68c264 1058 $(do-install)
4962050e
JM
1059$(inst_includedir)/%.h: $(common-objpfx)%.h $(+force)
1060 $(do-install)
f0cf0902
RM
1061$(inst_includedir)/%.h: %.h $(+force)
1062 $(do-install)
1063$(inst_includedir)/%.h: $(..)include/%.h $(+force)
1064 $(do-install)
1065headers-nonh := $(filter-out %.h,$(headers))
1066ifdef headers-nonh
1067$(addprefix $(inst_includedir)/,$(headers-nonh)): $(inst_includedir)/%: \
1068 % $(+force)
1069 $(do-install)
1070endif # headers-nonh
1c68c264
RM
1071endif # headers
1072
1073.PHONY: install-bin-nosubdir install-bin-script-nosubdir \
1074 install-rootsbin-nosubdir install-sbin-nosubdir install-lib-nosubdir \
1075 install-data-nosubdir install-headers-nosubdir
1076install-bin-nosubdir: $(addprefix $(inst_bindir)/,$(install-bin))
1077install-bin-script-nosubdir: $(addprefix $(inst_bindir)/,$(install-bin-script))
1078install-rootsbin-nosubdir: \
1079 $(addprefix $(inst_rootsbindir)/,$(install-rootsbin))
1080install-sbin-nosubdir: $(addprefix $(inst_sbindir)/,$(install-sbin))
1081install-lib-nosubdir: $(addprefix $(inst_libdir)/,\
1082 $(patsubst lib%.a,lib$(libprefix)%.a,$(install-lib.a)) \
1083 $(addprefix $(libprefix),$(install-lib-non.a)))
1084install-data-nosubdir: $(addprefix $(inst_datadir)/,$(install-data))
1085install-headers-nosubdir: $(addprefix $(inst_includedir)/,$(headers))
1086install-others-nosubdir: $(install-others)
80d4c3b0 1087install-others-programs-nosubdir: $(install-others-programs)
1c68c264
RM
1088
1089# We need all the `-nosubdir' targets so that `install' in the parent
1090# doesn't depend on several things which each iterate over the subdirs.
1091# This rule makes `install-FOO' always use `install-FOO-nosubdir' as a
1092# subroutine. Then in the parent `install-FOO' also causes subdir makes.
1093install-%:: install-%-nosubdir ;
1094
1095.PHONY: install install-no-libc.a-nosubdir
80d4c3b0 1096install-no-libc.a-nosubdir: install-headers-nosubdir install-data-nosubdir \
1c68c264 1097 install-lib-nosubdir install-others-nosubdir
80d4c3b0
RM
1098ifeq ($(build-programs),yes)
1099install-no-libc.a-nosubdir: install-bin-nosubdir install-bin-script-nosubdir \
1100 install-rootsbin-nosubdir install-sbin-nosubdir \
1101 install-others-programs-nosubdir
1c68c264
RM
1102endif
1103install: install-no-libc.a-nosubdir
1104\f
c1820385 1105# Command to compile $< using the native libraries.
1c68c264
RM
1106define native-compile
1107$(make-target-directory)
1c68c264 1108$(BUILD_CC) $($(basename $(<F))-CFLAGS) $(ALL_BUILD_CFLAGS) \
2ed8cda2 1109 $< $(OUTPUT_OPTION) $(BUILD_LDFLAGS)
1c68c264
RM
1110endef
1111
1c68c264 1112# We always want to use configuration definitions.
2ed8cda2
JM
1113ALL_BUILD_CFLAGS = $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) -D_GNU_SOURCE \
1114 -DIS_IN_build -include $(common-objpfx)config.h
1c68c264
RM
1115
1116# Support the GNU standard name for this target.
1117.PHONY: check
1118check: tests
1119# Special target to run tests which cannot be run unconditionally.
1120# Maintainers should use this target.
1121.PHONY: xcheck
1122xcheck: xtests
1123
1124all-nonlib = $(strip $(tests) $(xtests) $(test-srcs) $(test-extras) $(others))
1125ifneq (,$(all-nonlib))
7735afa2 1126cpp-srcs-left = $(all-nonlib:=.c) $(all-nonlib:=.cc)
1c68c264 1127lib := nonlib
7735afa2 1128include $(patsubst %,$(..)cppflags-iterator.mk,$(cpp-srcs-left))
1c68c264
RM
1129endif
1130
1131# The include magic above causes those files to use this variable for flags.
1132CPPFLAGS-nonlib = -DNOT_IN_libc=1
1133
1134
1135ifeq ($(versioning),yes)
1136# Generate normalized lists of symbols, versions, and data sizes.
1137# This is handy for checking against existing library binaries.
1138
1139%.symlist: $(..)scripts/abilist.awk %.dynsym
1140 LC_ALL=C $(AWK) -f $^ > $@T
1141 mv -f $@T $@
1142
1143%.dynsym: %.so
55f11534 1144 LC_ALL=C $(OBJDUMP) --dynamic-syms $< > $@T
1c68c264
RM
1145 mv -f $@T $@
1146
8dbd5d7b
DM
1147vpath %.abilist $(+sysdep_dirs)
1148
a65ef2ae
AJ
1149# The .PRECIOUS rule prevents the files built by an implicit rule whose
1150# target pattern is %.symlist from being considered "intermediate files"
1151# and automatically removed. We only want these files to be removed by
1152# 'make clean', which is handled by the 'generated' variable.
1153.PRECIOUS: %.symlist
1154generated += $(extra-libs:=.symlist)
1155
8dbd5d7b 1156check-abi-%: $(common-objpfx)config.make %.abilist $(objpfx)%.symlist
9ae10332 1157 $(check-abi)
8dbd5d7b 1158check-abi-%: $(common-objpfx)config.make %.abilist $(common-objpfx)%.symlist
9ae10332
RM
1159 $(check-abi)
1160define check-abi
ecf0ebfb 1161 diff -p -U 0 $(filter %.abilist,$^) $(filter %.symlist,$^)
9ae10332 1162endef
1c68c264 1163
8dbd5d7b 1164update-abi-%: $(objpfx)%.symlist %.abilist
9ae10332 1165 $(update-abi)
8dbd5d7b 1166update-abi-%: $(common-objpfx)%.symlist %.abilist
9ae10332 1167 $(update-abi)
9ae10332 1168define update-abi
8dbd5d7b
DM
1169@if cmp -s $^ 2> /dev/null; \
1170 then \
1171 echo '+++ $(filter %.abilist,$^) is unchanged'; \
1172 else cp -f $^; \
1173 echo '*** Now check $(filter %.abilist,$^) changes for correctness ***'; \
9ae10332
RM
1174 fi
1175endef
1c68c264
RM
1176
1177.PHONY: update-abi check-abi
1178update-abi: $(patsubst %.so,update-abi-%,$(install-lib.so-versioned))
1179check-abi: $(patsubst %.so,check-abi-%,$(install-lib.so-versioned))
1180ifdef subdir
1181subdir_check-abi: check-abi
1182subdir_update-abi: update-abi
1183else
1184check-abi: subdir_check-abi
1185update-abi: subdir_update-abi
1186endif
1187
1c68c264
RM
1188ifeq ($(subdir),elf)
1189check-abi: check-abi-libc
1190update-abi: update-abi-libc
1191common-generated += libc.symlist
1192endif
1193
fd54683c 1194ifeq ($(build-shared),yes)
94659495
RM
1195ifdef subdir
1196tests: check-abi
1197endif
1198endif
1199
1c68c264 1200endif
aad08dba 1201
e0a3ed4f
RM
1202# These will have been set by sysdeps/posix/Makefile.
1203L_tmpnam ?= 1
1204TMP_MAX ?= 0
1205L_ctermid ?= 1
1206L_cuserid ?= 1
1207
9ae10332
RM
1208stdio_lim = $(common-objpfx)bits/stdio_lim.h
1209
1210$(stdio_lim:lim.h=%.h) $(stdio_lim:lim.h=%.d): $(stdio_lim:lim.h=%.st); @:
1211$(stdio_lim:h=st): $(..)stdio-common/stdio_lim.h.in $(..)Rules \
1212 $(common-objpfx)config.make
1213 $(make-target-directory)
7cd72ad3
RM
1214 { echo '#include "$(..)posix/bits/posix1_lim.h"'; \
1215 echo '#define _LIBC 1'; \
1216 echo '#include "$(..)misc/sys/uio.h"'; } | \
1217 $(CC) -E -dM -MD -MP -MF $(@:st=dT) -MT '$(@:st=h) $(@:st=d)' \
61653dfb 1218 $(CPPUNDEFS) $(+includes) -xc - -o $(@:st=hT)
7cd72ad3
RM
1219 sed $(sed-remove-objpfx) $(sed-remove-dotdot) \
1220 $(@:st=dT) > $(@:st=dt)
1221 mv -f $(@:st=dt) $(@:st=d)
9ae10332
RM
1222 fopen_max=`sed -n 's/^#define OPEN_MAX //1p' $(@:st=hT)`; \
1223 filename_max=`sed -n 's/^#define PATH_MAX //1p' $(@:st=hT)`; \
1224 iov_max=`sed -n 's/^#define UIO_MAXIOV //p' $(@:st=hT)`; \
1225 fopen_max=$${fopen_max:-16}; \
1226 filename_max=$${filename_max:-1024}; \
7cd72ad3 1227 if [ -z "$$iov_max" ]; then \
9ae10332
RM
1228 define_iov_max="# undef IOV_MAX"; \
1229 else \
1230 define_iov_max="# define IOV_MAX $$iov_max"; \
1231 fi; \
1232 sed -e "s/@FOPEN_MAX@/$$fopen_max/" \
1233 -e "s/@FILENAME_MAX@/$$filename_max/" \
1234 -e "s/@L_tmpnam@/$(L_tmpnam)/" \
1235 -e "s/@TMP_MAX@/$(TMP_MAX)/" \
1236 -e "s/@L_ctermid@/$(L_ctermid)/" \
1237 -e "s/@L_cuserid@/$(L_cuserid)/" \
1238 -e "s/@define_IOV_MAX@/$$define_iov_max/" \
1239 $< > $(@:st=h.new)
1240 $(move-if-change) $(@:st=h.new) $(@:st=h)
1241# Remove these last so that they can be examined if something went wrong.
1242 rm -f $(@:st=hT) $(@:st=dT) $(@:st=dt)
1243 touch $@
1244# Get dependencies.
1245ifndef no_deps
1246-include $(stdio_lim:h=d)
1247endif
1248common-generated += bits/stdio_lim.h bits/stdio_lim.d bits/stdio_lim.st
1c68c264 1249\f
1c68c264
RM
1250FORCE:
1251
1c68c264
RM
1252.PHONY: echo-headers
1253echo-headers:
1254 @echo $(headers)
1255
220addf7
RM
1256%.bz2: %; bzip2 -9vk $<
1257%.gz: %; gzip -9vnc $< > $@.new && mv -f $@.new $@
6cfe8609 1258%.xz: %; xz -9evk $<
1c68c264
RM
1259\f
1260# Common cleaning targets.
1261
1262.PHONY: common-mostlyclean common-clean mostlyclean clean do-tests-clean
1263clean: common-clean
1264mostlyclean: common-mostlyclean
1265
1266do-tests-clean:
1267 -rm -f $(addprefix $(objpfx),$(addsuffix .out,$(tests) $(xtests) \
daaa7713 1268 $(test-srcs)))
1c68c264
RM
1269
1270# Remove the object files.
1271common-mostlyclean:
1272 -rm -f $(addprefix $(objpfx),$(tests) $(xtests) $(test-srcs) \
1273 $(others) $(sysdep-others) stubs \
1274 $(addsuffix .o,$(tests) $(xtests) \
1275 $(test-srcs) $(others) \
1276 $(sysdep-others)) \
1c68c264 1277 $(addsuffix .out,$(tests) $(xtests) \
daaa7713 1278 $(test-srcs)))
376e973a
UD
1279 -rm -f $(addprefix $(objpfx),$(extra-objs) $(extra-test-objs) \
1280 $(install-lib) $(install-lib.so) \
1c68c264
RM
1281 $(install-lib.so:%.so=%_pic.a))
1282 -rm -f core
1283 -rm -f $(objpfx)rtld-*.os
1284 $(rmobjs)
1285define rmobjs
1286$(foreach o,$(object-suffixes-for-libc),
1287-rm -f $(objpfx)stamp$o $(o-objects))
1288endef
1289
1290# Also remove the dependencies and generated source files.
1291common-clean: common-mostlyclean
d73f5331
RM
1292 -rm -f $(addprefix $(objpfx),$(generated))
1293 -rm -f $(objpfx)*.d $(objpfx)*.dt
1c68c264
RM
1294 -rm -fr $(addprefix $(objpfx),$(generated-dirs))
1295 -rm -f $(addprefix $(common-objpfx),$(common-generated))
e5a6e567 1296 -rm -f $(gen-as-const-headers:%.sym=$(common-objpfx)%.h)
1c68c264
RM
1297\f
1298# Produce a file `stubs' which contains `#define __stub_FUNCTION'
b830319d 1299# for each function which is a stub.
1c68c264
RM
1300
1301ifdef objpfx
1302.PHONY: stubs # The parent Makefile calls this target.
1303stubs: $(objpfx)stubs
1304endif
561bcb80
RM
1305objs-for-stubs := $(foreach o,$(object-suffixes-for-libc),$(o-objects)) \
1306 $(addprefix $(objpfx),$(extra-objs))
1307$(objpfx)stubs: $(objs-for-stubs)
1308ifneq (,$(strip $(objs-for-stubs)))
ae46b677 1309 (cd $(objpfx).; $(OBJDUMP) -h $(patsubst $(objpfx)%,%,$^)) | \
561bcb80 1310 $(AWK) '/\.gnu\.glibc-stub\./ { \
92ad15a8 1311 sub(/\.gnu\.glibc-stub\./, "", $$2); \
561bcb80
RM
1312 stubs[$$2] = 1; } \
1313 END { for (s in stubs) print "#define __stub_" s }' > $@T
1c68c264 1314 mv -f $@T $@
f291538f
RM
1315else
1316 > $@
1317endif
1c68c264 1318\f
1c68c264
RM
1319ifneq (,$(strip $(gpl2lgpl)))
1320ifneq (,$(wildcard $(..)gpl2lgpl.sed))
1321# Snarf from the master source and frob the copying notice.
1322$(gpl2lgpl): %: $(..)gpl2lgpl.sed /home/gd/gnu/lib/%
1323 sed -f $^ > $@-tmp
1324# So I don't edit them by mistake.
1325 chmod a-w $@-tmp
1326 mv -f $@-tmp $@
1c68c264
RM
1327endif
1328endif
1329
1330# Local Variables:
1331# mode: makefile
1332# End: