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 # Common rules for making the GNU C library. This file is included
20 # by the top-level Makefile and by all subdirectory makefiles
24 This makefile requires GNU Make.
27 REQUIRED_MAKE_VERSION = 3.74
28 REAL_MAKE_VERSION = $(firstword $(MAKE_VERSION))
30 ifneq ($(REQUIRED_MAKE_VERSION), \
31 $(firstword $(sort $(REAL_MAKE_VERSION) $(REQUIRED_MAKE_VERSION))))
32 Wrong GNU Make version. See above for the version needed.
40 # If `sources' was defined by the parent makefile, undefine it so
41 # we will later get it from wildcard search in this directory.
42 ifneq "$(findstring env,$(origin sources))" ""
47 PATH := this definition should take precedence over $(oPATH)
48 ifeq ($(PATH),$(oPATH))
49 You must not use the -e flag when building the GNU C library.
54 ifndef +included-Makeconfig
55 include $(..)Makeconfig
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.
62 o-iterator = $(patsubst %,$(..)o-iterator.mk,$(object-suffixes-left))
64 # Include any system-specific makefiles.
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.
69 vpath %.h $(subst $(empty) ,:,$(strip $(common-objpfx) $(objpfx) \
70 $(+sysdep_dirs) $(..)))
72 # The same is true for RPC source files.
73 vpath %.x $(subst $(empty) ,:,$(strip $(common-objpfx) $(objpfx) \
74 $(+sysdep_dirs) $(..)))
76 # Some sysdep makefiles use this to distinguish being included here from
77 # being included individually by a subdir makefile (hurd/Makefile needs this).
80 sysdep-makefiles := $(wildcard $(sysdirs:=/Makefile))
81 ifneq (,$(sysdep-makefiles))
82 include $(sysdep-makefiles)
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).
90 before-compile := $(filter $(common-objpfx)mach% $(common-objpfx)hurd%,\
92 $(filter-out $(common-objpfx)mach% $(common-objpfx)hurd%,\
95 # Even before that, we need abi-versions.h which is generated right here.
96 ifeq ($(versioning),yes)
97 ifndef avoid-generated
98 before-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
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
108 endif # avoid-generated
109 endif # $(versioning) = yes
111 ifndef avoid-generated
112 before-compile := $(common-objpfx)libc-abis.h $(before-compile)
113 $(common-objpfx)libc-abis.h: $(common-objpfx)libc-abis.stamp; @:
114 $(common-objpfx)libc-abis.stamp: $(..)scripts/gen-libc-abis \
115 $(firstword $(wildcard $(sysdirs:=/libc-abis)) \
119 $(base-machine)-$(config-vendor)-$(config-os) \
120 < $(word 2,$^) > $(@:.stamp=.h)T
121 $(move-if-change) $(@:.stamp=.h)T $(@:.stamp=.h)
123 common-generated += $(common-objpfx)libc-abis.h
124 endif # avoid-generated
126 # Make sure the subdirectory for object files gets created.
128 ifeq (,$(wildcard $(objpfx).))
129 before-compile += $(objpfx).
131 $(make-target-directory)
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
140 before-compile := $(filter-out $(wildcard $(before-compile)),$(before-compile))
142 # Don't let any before-compile file be an intermediate and get removed.
147 # We don't want $(common-objpfx) files to depend on miscellaneous stuff
150 common-before-compile := $(filter-out $(objpfx)%,$(before-compile))
152 common-before-compile = $(before-compile)
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.
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.
163 $(common-objpfx)%.make: $(..)%.make.c $(..)Makerules $(common-before-compile)
165 (echo '# Generated from $*.make.c by Makerules.'; \
166 $(CC) $(CFLAGS) $(CPPFLAGS) -E -DASSEMBLER $< \
167 -MD -MP -MT '$$(common-objpfx)$*.make' -MF $@.dT \
168 | sed -n '/@@@/{s/@@@[ ]*\(.*\)@@@/\1/;s/[ ]*$$//p;}'; \
169 echo 'common-generated += $(@F)'; \
170 sed $(sed-remove-objpfx) $(sed-remove-dotdot) $@.dT; \
176 sed-remove-dotdot := -e 's@ *\.\.\/\([^ \]*\)@ $$(..)\1@g' \
177 -e 's@^\.\.\/\([^ \]*\)@$$(..)\1@g'
179 sed-remove-dotdot := -e 's@ *\([^ \/$$][^ \]*\)@ $$(..)\1@g' \
180 -e 's@^\([^ \/$$][^ \]*\)@$$(..)\1@g'
184 ifdef gen-as-const-headers
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,$^) \
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
196 sed $(sed-remove-objpfx) $(sed-remove-dotdot) \
197 $(@:.h=.h.d)T > $(@:.h=.h.d)T2
199 mv -f $(@:.h=.h.d)T2 $(@:.h=.h.d)
200 mv -f $(@:.h.d=.h)T $(@:.h.d=.h)
201 vpath %.sym $(sysdirs)
202 before-compile += $(gen-as-const-headers:%.sym=$(common-objpfx)%.h)
204 tests += $(gen-as-const-headers:%.sym=test-as-const-%)
205 generated += $(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
208 ($(AWK) '{ sub(/^/, "asconst_", $$2); print; }' $(filter %.h,$^); \
209 $(AWK) -v test=1 -f $< $(filter %.sym,$^); \
210 echo '#include "$(..)test-skeleton.c"') > $@T
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.
220 # System-dependent makefiles can put in `inhibit-sysdep-asm' wildcard
221 # patterns matching sysdep directories whose assembly source files should
223 ifdef inhibit-sysdep-asm
224 define check-inhibit-asm
225 case $$sysdir in $(subst $(empty) ,|,$(inhibit-sysdep-asm))) asm= ;; esac;
229 -include $(common-objpfx)sysd-rules
230 ifneq ($(sysd-rules-sysdirs),$(config-sysdirs))
231 # The value of $(+sysdep_dirs) the sysd-rules was computed for
232 # differs from the one we are using now. So force a rebuild of sysd-rules.
233 sysd-rules-force = FORCE
236 $(common-objpfx)sysd-rules: $(common-objpfx)config.make $(..)Makerules \
237 $(sysdep-makefiles) $(sysdep-makeconfigs) \
240 (echo 'sysd-rules-sysdirs := $(config-sysdirs)'; \
241 for dir in $(config-sysdirs); do \
244 *) dir="\$$(..)$$dir" ;; \
247 $(check-inhibit-asm) \
248 for o in $(all-object-suffixes); do \
249 set $(subst :, ,$(sysd-rules-patterns)); \
250 while [ $$# -ge 2 ]; do \
253 v=$${t%%%}; [ x"$$v" = x ] || v="\$$($${v}CPPFLAGS)"; \
254 for s in $$asm .c; do \
255 echo "\$$(objpfx)$$t$$o: $$dir/$$d$$s \$$(before-compile)"; \
256 echo " \$$(compile-command$$s) $$v"; \
260 echo "\$$(inst_includedir)/%.h: $$dir/%.h \$$(+force)"; \
261 echo " \$$(do-install)"; \
263 echo 'sysd-rules-done = t') > $@T
266 ifndef sysd-rules-done
267 # Don't do deps until this exists, because it provides rules to make the deps.
271 define o-iterator-doit
272 $(objpfx)%$o: %.S $(before-compile); $$(compile-command.S)
274 object-suffixes-left := $(all-object-suffixes)
275 include $(o-iterator)
277 define o-iterator-doit
278 $(objpfx)%$o: %.c $(before-compile); $$(compile-command.c)
280 object-suffixes-left := $(all-object-suffixes)
281 include $(o-iterator)
283 define o-iterator-doit
284 $(objpfx)%$o: %.cc $(before-compile); $$(compile-command.cc)
286 object-suffixes-left := $(all-object-suffixes)
287 include $(o-iterator)
289 # Omit the objpfx rules when building in the source tree, because
290 # objpfx is empty and so these rules just override the ones above.
292 # Define first rules to find the source files in $(objpfx).
293 # Generated source files will end up there.
294 define o-iterator-doit
295 $(objpfx)%$o: $(objpfx)%.S $(before-compile); $$(compile-command.S)
297 object-suffixes-left := $(all-object-suffixes)
298 include $(o-iterator)
300 define o-iterator-doit
301 $(objpfx)%$o: $(objpfx)%.c $(before-compile); $$(compile-command.c)
303 object-suffixes-left := $(all-object-suffixes)
304 include $(o-iterator)
307 # Generate version maps, but wait until sysdep-subdirs is known
308 ifeq ($(sysd-sorted-done),t)
309 ifeq ($(versioning),yes)
310 -include $(common-objpfx)sysd-versions
311 $(addprefix $(common-objpfx),$(version-maps)): $(common-objpfx)sysd-versions
312 common-generated += $(version-maps)
313 postclean-generated += sysd-versions Versions.all abi-versions.h \
314 Versions.def.v.i Versions.def.v Versions.v.i Versions.v
316 ifndef avoid-generated
317 ifneq ($(sysd-versions-subdirs),$(sorted-subdirs) $(config-sysdirs))
318 sysd-versions-force = FORCE
321 # See %.v/%.v.i implicit rules in Makeconfig.
322 $(common-objpfx)Versions.def.v.i: $(..)Versions.def \
323 $(wildcard $(add-ons:%=$(..)%/Versions.def))
324 $(common-objpfx)Versions.all: $(..)scripts/firstversions.awk \
325 $(common-objpfx)soversions.i \
326 $(common-objpfx)Versions.def.v
327 { while read which lib version setname; do \
328 test x"$$which" = xDEFAULT || continue; \
329 test -z "$$setname" || echo "$$lib : $$setname"; \
330 done < $(word 2,$^); \
332 } | LC_ALL=C $(AWK) -f $< > $@T
334 # See %.v/%.v.i implicit rules in Makeconfig.
335 $(common-objpfx)Versions.v.i: $(wildcard $(subdirs:%=$(..)%/Versions)) \
336 $(wildcard $(sysdirs:%=%/Versions)) \
337 $(common-objpfx)abi-versions.h \
338 $(sysd-versions-force)
339 $(common-objpfx)sysd-versions: $(common-objpfx)Versions.all \
340 $(common-objpfx)Versions.v \
341 $(..)scripts/versions.awk
342 ( echo 'sysd-versions-subdirs = $(subdirs) $(config-sysdirs)' ; \
344 | LC_ALL=C $(AWK) -v buildroot=$(common-objpfx) -v defsfile=$< \
345 -v move_if_change='$(move-if-change)' \
349 endif # avoid-generated
350 endif # $(versioning) = yes
351 endif # sysd-sorted-done
353 # Generate .dT files as we compile.
354 compile-mkdep-flags = -MD -MP -MF $@.dt -MT $@
355 compile-command.S = $(compile.S) $(OUTPUT_OPTION) $(compile-mkdep-flags)
356 compile-command.c = $(compile.c) $(OUTPUT_OPTION) $(compile-mkdep-flags)
357 compile-command.cc = $(compile.cc) $(OUTPUT_OPTION) $(compile-mkdep-flags)
359 # Like compile-mkdep-flags, but for use with $(BUILD_CC). We don't want to
360 # track system includes here, they may spuriously trigger an install rule,
361 # and would cause the check-local-headers test to fail.
362 native-compile-mkdep-flags = -MMD -MP -MF $@.dt -MT $@
364 # GCC can grok options after the file name, and it looks nicer that way.
365 compile.c = $(CC) $< -c $(CFLAGS) $(CPPFLAGS)
366 compile.cc = $(CXX) $< -c $(CXXFLAGS) $(CPPFLAGS)
367 compile.S = $(CC) $< -c $(CPPFLAGS) $(S-CPPFLAGS) \
368 $(ASFLAGS) $(ASFLAGS-$(suffix $@))
369 COMPILE.c = $(CC) -c $(CFLAGS) $(CPPFLAGS)
370 COMPILE.S = $(CC) -c $(CPPFLAGS) $(S-CPPFLAGS) \
371 $(ASFLAGS) $(ASFLAGS-$(suffix $@))
373 # We need this for the output to go in the right place. It will default to
374 # empty if make was configured to work with a cc that can't grok -c and -o
375 # together. You can't compile the C library with such a compiler.
376 OUTPUT_OPTION = -o $@
378 # This is the end of the pipeline for compiling generated C code.
379 compile-stdin.c = $(COMPILE.c) -o $@ -x c - $(compile-mkdep-flags)
381 # We need the $(CFLAGS) to be in there to have the right predefines during
382 # the dependency run for C sources. But having it for assembly sources can
383 # get the wrong predefines.
384 S-CPPFLAGS = -DASSEMBLER $(asm-CPPFLAGS)
387 $(make-target-directory)
388 $(+mkdep) $< $(if $(filter %.c,$<),$(CFLAGS)) \
389 $(CPPFLAGS) $($(patsubst .%,%,$(suffix $(<F)))-CPPFLAGS) | sed -e\
390 's,$(subst .,\.,$(@F:.d=.o)),$(foreach o,$(all-object-suffixes),$(@:.d=$o)) $@,' \
391 $(sed-remove-objpfx) $(sed-remove-dotdot) > $(@:.d=.T)
392 mv -f $(@:.d=.T) $@ $(generate-md5)
396 # Continuation lines here are dangerous because they introduce spaces!
397 define sed-remove-objpfx
398 -e 's@ $(subst .,\.,$(subst @,\@,$(common-objpfx)))@ $$(common-objpfx)@g' \
399 -e 's@^$(subst .,\.,$(subst @,\@,$(common-objpfx)))@$$(common-objpfx)@g'
403 # Modify the list of routines we build for different targets
405 ifeq (yes,$(build-shared))
406 ifndef libc.so-version
407 # Undefine this because it can't work when we libc.so is unversioned.
408 static-only-routines =
412 elide-routines.oS += $(filter-out $(static-only-routines),\
413 $(routines) $(aux) $(sysdep_routines))
414 elide-routines.os += $(static-only-routines)
416 # If we have versioned code we don't need the old versions in any of the
418 elide-routines.o += $(shared-only-routines)
419 elide-routines.op += $(shared-only-routines)
420 elide-routines.og += $(shared-only-routines)
421 elide-routines.ob += $(shared-only-routines)
423 # Shared library building.
425 ifeq (yes,$(build-shared))
427 # Reference map file only when versioning is selected and a map file name
429 ifeq ($(versioning),yes)
430 map-file = $(firstword $($(@F:.so=-map)) \
431 $(addprefix $(common-objpfx), \
432 $(filter $(@F:.so=.map),$(version-maps))))
433 load-map-file = $(map-file:%=-Wl,--version-script=%)
436 # Pattern rule to build a shared object from an archive of PIC objects.
437 # This must come after the installation rules so Make doesn't try to
438 # build shared libraries in place from the installed *_pic.a files.
439 # $(LDLIBS-%.so) may contain -l switches to generate run-time dependencies
440 # on other shared objects.
441 lib%.so: lib%_pic.a $(+preinit) $(+postinit) $(+interp)
444 define build-shlib-helper
445 $(LINK.o) -shared $(static-libgcc) -Wl,-O1 $(sysdep-LDFLAGS) \
446 $(if $($(@F)-no-z-defs)$(no-z-defs),,-Wl,-z,defs) $(rtld-LDFLAGS) \
447 $(extra-B-$(@F:lib%.so=%).so) -B$(csu-objpfx) \
448 $(extra-B-$(@F:lib%.so=%).so) $(load-map-file) \
449 -Wl,-soname=lib$(libprefix)$(@F:lib%.so=%).so$($(@F)-version) \
450 $(LDFLAGS.so) $(LDFLAGS-$(@F:lib%.so=%).so) \
451 -L$(subst :, -L,$(rpath-link)) -Wl,-rpath-link=$(rpath-link)
454 ifeq (yes,$(use-default-link))
455 # If the linker is good enough, we can let it use its default linker script.
459 # binutils only position loadable notes into the first page for binaries,
460 # not for shared objects
461 $(common-objpfx)shlib.lds: $(common-objpfx)config.make $(..)Makerules
462 $(LINK.o) -shared -Wl,-O1 \
463 -nostdlib -nostartfiles \
464 $(sysdep-LDFLAGS) $(rtld-LDFLAGS) $(LDFLAGS.so) \
465 -Wl,--verbose 2>&1 | \
467 -e '/^=========/,/^=========/!d;/^=========/d' \
468 $(if $(filter yes,$(have-hash-style)), \
469 -e 's/^.*\.gnu\.hash[ ]*:.*$$/ .note.ABI-tag : { *(.note.ABI-tag) } &/' \
470 -e '/^[ ]*\.hash[ ]*:.*$$/{h;d;}' \
471 -e '/DATA_SEGMENT_ALIGN/{H;g}' \
473 -e 's/^.*\.hash[ ]*:.*$$/ .note.ABI-tag : { *(.note.ABI-tag) } &/' \
475 -e 's/^.*\*(\.dynbss).*$$/& \
476 PROVIDE(__start___libc_freeres_ptrs = .); \
477 *(__libc_freeres_ptrs) \
478 PROVIDE(__stop___libc_freeres_ptrs = .);/'\
479 -e 's@^.*\*(\.jcr).*$$@& \
480 PROVIDE(__start___libc_subfreeres = .);\
481 __libc_subfreeres : { *(__libc_subfreeres) }\
482 PROVIDE(__stop___libc_subfreeres = .);\
483 PROVIDE(__start___libc_atexit = .);\
484 __libc_atexit : { *(__libc_atexit) }\
485 PROVIDE(__stop___libc_atexit = .);\
486 PROVIDE(__start___libc_thread_subfreeres = .);\
487 __libc_thread_subfreeres : { *(__libc_thread_subfreeres) }\
488 PROVIDE(__stop___libc_thread_subfreeres = .);\
489 /DISCARD/ : { *(.gnu.glibc-stub.*) }@'
492 common-generated += shlib.lds
494 shlib-lds = $(common-objpfx)shlib.lds
495 shlib-lds-flags = -T $(shlib-lds)
499 $(build-shlib-helper) -o $@ $(shlib-lds-flags) \
500 $(csu-objpfx)abi-note.o $(build-shlib-objlist)
503 define build-module-helper
504 $(LINK.o) -shared $(static-libgcc) $(sysdep-LDFLAGS) $(rtld-LDFLAGS) \
505 $(if $($(@F)-no-z-defs)$(no-z-defs),,-Wl,-z,defs) \
506 -B$(csu-objpfx) $(load-map-file) \
507 $(LDFLAGS.so) $(LDFLAGS-$(@F:%.so=%).so) \
508 -L$(subst :, -L,$(rpath-link)) -Wl,-rpath-link=$(rpath-link)
511 # This macro is similar to build-shlib but it does not define a soname
512 # and it does not depend on the destination name to start with `lib'.
513 # binutils only position loadable notes into the first page for binaries,
514 # not for shared objects
516 $(build-module-helper) -o $@ $(shlib-lds-flags) \
517 $(csu-objpfx)abi-note.o $(build-module-objlist)
519 define build-module-asneeded
520 $(build-module-helper) -o $@ $(shlib-lds-flags) \
521 $(csu-objpfx)abi-note.o \
522 -Wl,--as-needed $(build-module-objlist) -Wl,--no-as-needed
525 build-module-helper-objlist = \
526 $(patsubst %_pic.a,$(whole-archive) %_pic.a $(no-whole-archive),\
527 $(filter-out %.lds $(map-file) $(+preinit) $(+postinit),$^))
529 build-module-objlist = $(build-module-helper-objlist) $(LDLIBS-$(@F:%.so=%).so)
530 build-shlib-objlist = $(build-module-helper-objlist) \
531 $(LDLIBS-$(@F:lib%.so=%).so)
533 # Don't try to use -lc when making libc.so itself.
534 # Also omits crti.o and crtn.o, which we do not want
535 # since we define our own `.init' section specially.
536 LDFLAGS-c.so = -nostdlib -nostartfiles
537 # But we still want to link libc.so against $(libc.so-gnulib).
538 LDLIBS-c.so += $(libc.so-gnulib)
539 # Give libc.so an entry point and make it directly runnable itself.
540 LDFLAGS-c.so += -e __libc_main
541 # If lazy relocation is disabled add the -z now flag.
542 ifeq ($(bind-now),yes)
543 LDFLAGS-c.so += -Wl,-z,now
545 # Pre-link the objects of libc_pic.a so that we can locally resolve
546 # COMMON symbols before we link against ld.so. This is because ld.so
547 # contains some of libc_pic.a already, which will prevent the COMMONs
548 # from being allocated in libc.so, which introduces evil dependencies
549 # between libc.so and ld.so, which can make it impossible to upgrade.
550 $(common-objpfx)libc_pic.os: $(common-objpfx)libc_pic.a
551 $(LINK.o) -nostdlib -nostartfiles -r -o $@ \
552 $(LDFLAGS-c_pic.os) -Wl,-d $(whole-archive) $^ -o $@
554 ifeq (,$(strip $(shlib-lds-flags)))
555 # Generate a list of -R options to excise .gnu.glibc-stub.* sections.
556 $(common-objpfx)libc_pic.opts: $(common-objpfx)libc_pic.os
558 $(AWK) '$$2 ~ /\.gnu\.glibc-stub\./ { print "-R", $$2 }' \
561 # Apply those -R options.
562 $(common-objpfx)libc_pic.os.clean: $(common-objpfx)libc_pic.opts \
563 $(common-objpfx)libc_pic.os
565 generated += libc_pic.opts libc_pic.os.clean
567 libc_pic_clean := .clean
570 # Use our own special initializer and finalizer files for libc.so.
571 $(common-objpfx)libc.so: $(elfobjdir)/soinit.os \
572 $(common-objpfx)libc_pic.os$(libc_pic_clean) \
573 $(elfobjdir)/sofini.os \
574 $(elfobjdir)/interp.os $(elfobjdir)/ld.so \
577 ifeq ($(versioning),yes)
578 $(common-objpfx)libc.so: $(common-objpfx)libc.map
580 common-generated += libc.so libc_pic.os
581 ifdef libc.so-version
582 $(common-objpfx)libc.so$(libc.so-version): $(common-objpfx)libc.so
584 common-generated += libc.so$(libc.so-version)
588 # Figure out the source filenames in this directory.
590 override sources := $(addsuffix .c,\
591 $(filter-out $(elided-routines),\
594 sysdep_routines := $(sysdep_routines)
596 headers := $(headers) $(sysdep_headers)
598 # This is the list of all object files, gotten by
599 # replacing every ".c" in `sources' with a ".o".
600 override objects := $(addprefix $(objpfx),$(sources:.c=.o))
603 # The makefile may define $(extra-libs) with `libfoo libbar'
604 # to build libfoo.a et al from the modules listed in $(libfoo-routines).
606 # extra-lib.mk is included once for each extra lib to define rules
607 # to build it, and to add its objects to the various variables.
608 # During its evaluation, $(lib) is set to the name of the library.
609 extra-libs-left := $(extra-libs)
610 include $(patsubst %,$(..)extra-lib.mk,$(extra-libs))
614 # The makefile may define $(modules-names) to build additional modules.
615 # These are built with $(build-module), except any in $(modules-names-nobuild).
617 # extra-lib.mk is included once for each extra lib to define rules
618 # to build it, and to add its objects to the various variables.
619 # During its evaluation, $(lib) is set to the name of the library.
620 extra-modules-left := $(modules-names)
621 include $(patsubst %,$(..)extra-modules.mk,$(modules-names))
623 extra-modules-build := $(filter-out $(modules-names-nobuild),$(modules-names))
624 $(extra-modules-build:%=$(objpfx)%.so): $(objpfx)%.so: \
625 $(objpfx)%.os $(shlib-lds) \
626 $(common-objpfx)libc.so $(common-objpfx)libc_nonshared.a
630 +depfiles := $(sources:.c=.d) \
631 $(patsubst %.o,%.d,$(filter %.o,$(extra-objs:.os=.o))) \
632 $(patsubst %.oS,%.d,$(filter %.oS,$(extra-objs))) \
633 $(patsubst %.o,%.d,$(filter %.o,$(extra-test-objs:.os=.o))) \
634 $(addsuffix .d,$(tests) $(xtests) $(test-srcs))
635 ifeq ($(build-programs),yes)
636 +depfiles += $(addsuffix .d,$(others) $(sysdep-others))
638 +depfiles := $(addprefix $(objpfx),\
639 $(filter-out $(addsuffix .d,$(omit-deps)),\
641 all-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))
645 # This is a funny rule in that it removes its input file.
647 @sed $(sed-remove-objpfx) $< > $(@:.d=.T) && \
648 mv -f $(@:.d=.T) $@ && \
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)),\
659 -include $(+depfiles)
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.
666 MAKEFLAGS := $(MAKEFLAGS)r
668 # Generic rule for making directories.
670 # mkdir isn't smart enough to strip a trailing /.
671 # We always require a mkdir which supports the -p option to avoid error
672 # messages in case of races.
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))
679 # Make sure that the parent library archive is never removed.
680 .PRECIOUS: $(foreach l,$(libtypes),$(patsubst %,$(common-objpfx)$l,c))
682 # Use the verbose option of ar and tar when not running silently.
683 ifeq "$(findstring s,$(MAKEFLAGS))" "" # if not -s
689 ARFLAGS := r$(verbose)
690 CREATE_ARFLAGS := cru$(verbose)
692 # This makes all the object files in the parent library archive.
694 .PHONY: lib lib-noranlib
695 lib: lib-noranlib $(foreach l,$(libtypes),$(patsubst %,$(common-objpfx)$l,c))
696 lib-noranlib: libobjs
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.
700 o-objects = $(patsubst %.o,%$o,$(filter-out $(patsubst %,$(objpfx)%.o,\
701 $(elide-routines$o)),\
703 $(addprefix $(objpfx),$(o-objects$o))
705 others: $(addprefix $(objpfx),$(install-lib))
709 # Create the stamp$o files to keep the parent makefile happy.
710 subdir_lib: $(foreach o,$(object-suffixes-for-libc),$(objpfx)stamp$o)
711 $(foreach o,$(object-suffixes-for-libc),$(objpfx)stamp$o):
712 $(make-target-directory)
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.
721 define o-iterator-doit
722 $(objpfx)stamp$o: $(o-objects); $$(do-stamp)
725 $(make-target-directory)
726 echo '$(patsubst $(objpfx)%,$(addsuffix /,$(subdir))%,$^)' > $@T
729 object-suffixes-left := $(object-suffixes-for-libc)
730 include $(o-iterator)
734 # Now define explicit rules to build the library archives; these depend
735 # on the stamp files built above.
736 define o-iterator-doit
737 $(common-objpfx)$(patsubst %,$(libtype$o),c): \
738 $(subdirs-stamp-o) $(common-objpfx)stamp$o; $$(do-makelib)
741 cd $(common-objdir) && \
742 $(AR) $(CREATE_ARFLAGS) $(@F) `cat $(patsubst $(common-objpfx)%,%,$^)`
744 subdirs-stamps := $(foreach d,$(subdirs),$(common-objpfx)$d/stamp%)
745 subdirs-stamp-o = $(subst %,$o,$(subdirs-stamps))
747 $(subdirs-stamps): subdir_lib;
749 object-suffixes-left = $(object-suffixes-for-libc)
750 include $(o-iterator)
753 # This makes all the object files.
754 .PHONY: objects objs libobjs extra-objs
755 objects objs: libobjs extra-objs
756 libobjs: $(foreach o,$(object-suffixes-for-libc),$(objpfx)stamp$o)
757 extra-objs: $(addprefix $(objpfx),$(extra-objs))
759 # Canned sequence for building an extra library archive.
760 define build-extra-lib
761 $(patsubst %/,cd % &&,$(objpfx)) \
762 $(AR) $(CREATE_ARFLAGS) $(@:$(objpfx)%=%) \
763 $(patsubst $(objpfx)%,%,$^)
768 .PHONY: force-install
771 # $(install-lib) are installed from the object directory into $(libdir);
772 # files in $(install-lib) matching `lib%.a' are ranlib'd after installation
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
775 # $(includedir). $(install-bin), $(install-bin-script) and $(install-sbin)
776 # are installed from the object directory into $(bindir), $(bindir) and
777 # $(sbindir), respectively. $(install-others) and $(install-others-programs)
778 # are absolute path names of files to install; rules to install them are
781 # The simple library name to install libc.a under.
782 # This could be defined by a sysdep Makefile.
788 $(make-target-directory)
789 $(INSTALL_DATA) $< $@
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.
794 define make-target-directory
795 $(addprefix $(..)./scripts/mkinstalldirs ,\
796 $(filter-out $(wildcard $(@D:%/=%)),$(@D:%/=%)))
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.
801 installed-libcs := $(foreach o,$(filter-out .os,$(object-suffixes-for-libc)),\
802 $(inst_libdir)/$(patsubst %,$(libtype$o),\
803 $(libprefix)$(libc-name)))
804 install: $(installed-libcs)
805 $(installed-libcs): $(inst_libdir)/lib$(libprefix)%: lib $(+force)
806 $(make-target-directory)
807 $(INSTALL_DATA) $(common-objpfx)lib$(*:$(libc-name)%=c%) $@
809 define do-install-program
810 $(make-target-directory)
811 $(INSTALL_PROGRAM) $< $@.new
815 define do-install-script
816 $(make-target-directory)
817 $(INSTALL_SCRIPT) $< $@.new
821 install-lib.so := $(filter %.so,$(install-lib:%_pic.a=%.so))
822 install-lib := $(filter-out %.so %_pic.a,$(install-lib))
824 ifeq (yes,$(build-shared))
825 # Find which .so's have versions.
826 versioned := $(strip $(foreach so,$(install-lib.so),\
827 $(patsubst %,$(so),$($(so)-version))))
829 install-lib.so-versioned := $(filter $(versioned), $(install-lib.so))
830 install-lib.so-unversioned := $(filter-out $(versioned), $(install-lib.so))
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
836 lib-version := $(firstword $($(subdir)-version) $(version))
837 install-lib-nosubdir: $(install-lib.so-unversioned:%=$(inst_slibdir)/%) \
838 $(foreach L,$(install-lib.so-versioned),\
840 $(inst_slibdir)/$(L:.so=)-$(lib-version).so \
841 $(inst_slibdir)/$L$($L-version))
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)
848 ifneq ($(findstring -s,$(LN_S)),)
851 $(SHELL) $(..)scripts/rellns-sh $< $@.new
855 # If we have no symbolic links don't bother with rellns-sh.
863 ifeq (yes,$(build-shared))
864 ifeq (no,$(cross-compiling))
865 symbolic-link-prog := $(common-objpfx)elf/sln
866 symbolic-link-list := $(common-objpfx)elf/symlink.list
867 define make-shlib-link
868 echo $(<F) $@ >> $(symbolic-link-list)
870 else # cross-compiling
871 # We need a definition that can be used by elf/Makefile's install rules.
872 symbolic-link-prog = $(LN_S)
875 ifndef make-shlib-link
876 define make-shlib-link
882 ifdef 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)
887 $(inst_slibdir)/libc.so$(libc.so-version): $(inst_slibdir)/libc-$(version).so \
890 $(inst_slibdir)/libc-$(version).so: $(common-objpfx)libc.so $(+force)
891 $(do-install-program)
892 install: $(inst_slibdir)/libc.so$(libc.so-version)
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
901 ifneq (unknown,$(output-format))
902 echo > $@.new 'OUTPUT_FORMAT($(output-format))'
904 $(LINK.o) -shared $(sysdep-LDFLAGS) $(rtld-LDFLAGS) $(LDFLAGS.so) \
905 -x c /dev/null -o $@.so -Wl,--verbose -v 2>&1 \
906 | sed -n -f $< > $@.new
911 common-generated += format.lds
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.
920 install: $(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)) \
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. */';\
930 echo 'GROUP ( $(slibdir)/libc.so$(libc.so-version)' \
931 '$(libdir)/$(patsubst %,$(libtype.oS),$(libprefix)$(libc-name))'\
932 ' AS_NEEDED (' $(slibdir)/$(rtld-installed-name) ') )' \
939 install: $(inst_slibdir)/libc.so
940 $(inst_slibdir)/libc.so: $(common-objpfx)libc.so $(+force)
941 $(do-install-program)
944 ifneq (,$(versioned))
945 # Produce three sets of rules as above for all the smaller versioned libraries.
947 define o-iterator-doit
948 $(inst_libdir)/$o: $(inst_slibdir)/$o$($o-version) $(+force); $$(make-link)
950 object-suffixes-left := $(filter-out $(install-lib-ldscripts),$(versioned))
951 ifneq (,$(object-suffixes-left))
952 include $(o-iterator)
955 # Make symlinks in the build directory, because the versioned names might
956 # be referenced by a DT_NEEDED in another library.
957 define o-iterator-doit
958 $(objpfx)$o$($o-version): $(objpfx)$o; $$(make-link)
960 object-suffixes-left := $(versioned)
961 include $(o-iterator)
963 generated += $(foreach o,$(versioned),$o$($o-version))
965 ifeq (,$($(subdir)-version))
966 define o-iterator-doit
967 $(inst_slibdir)/$o$($o-version): $(inst_slibdir)/$(o:.so=)-$(version).so \
971 object-suffixes-left := $(versioned)
972 include $(o-iterator)
974 define o-iterator-doit
975 $(inst_slibdir)/$(o:.so=)-$(version).so: $(objpfx)$o $(+force);
976 $$(do-install-program)
978 object-suffixes-left := $(versioned)
979 include $(o-iterator)
981 define o-iterator-doit
982 $(inst_slibdir)/$o$($o-version): \
983 $(inst_slibdir)/$(o:.so=)-$($(subdir)-version).so $(+force);
986 object-suffixes-left := $(versioned)
987 include $(o-iterator)
989 define o-iterator-doit
990 $(inst_slibdir)/$(o:.so=)-$($(subdir)-version).so: $(objpfx)$o $(+force);
991 $$(do-install-program)
993 object-suffixes-left := $(versioned)
994 include $(o-iterator)
999 $(do-install-program)
1000 $(patsubst %,ln -s -f $(@F) $(@D)/$(patsubst %$*.so,%,$(<F))$(libprefix)$*.so,\
1001 $(filter-out %.so,$@))
1004 so-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 \
1009 $(foreach v,$(so-versions),\
1010 $(inst_slibdir)/$(libprefix)%$v): $(common-objpfx)%.so $(+force)
1015 $(addprefix $(inst_bindir)/,$(install-bin)): \
1016 $(inst_bindir)/%: $(objpfx)% $(+force)
1017 $(do-install-program)
1019 ifdef install-bin-script
1020 $(addprefix $(inst_bindir)/,$(install-bin-script)): \
1021 $(inst_bindir)/%: $(objpfx)% $(+force)
1022 $(do-install-script)
1024 ifdef install-rootsbin
1025 $(addprefix $(inst_rootsbindir)/,$(install-rootsbin)): \
1026 $(inst_rootsbindir)/%: $(objpfx)% $(+force)
1027 $(do-install-program)
1030 $(addprefix $(inst_sbindir)/,$(install-sbin)): \
1031 $(inst_sbindir)/%: $(objpfx)% $(+force)
1032 $(do-install-program)
1035 install-lib.a := $(filter lib%.a,$(install-lib))
1036 install-lib-non.a := $(filter-out lib%.a,$(install-lib))
1037 ifdef install-lib-non.a
1038 $(addprefix $(inst_libdir)/$(libprefix),$(install-lib-non.a)): \
1039 $(inst_libdir)/$(libprefix)%: $(objpfx)% $(+force)
1043 $(install-lib.a:lib%.a=$(inst_libdir)/lib$(libprefix)%.a): \
1044 $(inst_libdir)/lib$(libprefix)%.a: $(objpfx)lib%.a $(+force)
1049 $(addprefix $(inst_datadir)/,$(install-data)): $(inst_datadir)/%: % $(+force)
1052 headers := $(strip $(headers))
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)
1059 $(inst_includedir)/%.h: $(common-objpfx)%.h $(+force)
1061 $(inst_includedir)/%.h: %.h $(+force)
1063 $(inst_includedir)/%.h: $(..)include/%.h $(+force)
1065 headers-nonh := $(filter-out %.h,$(headers))
1067 $(addprefix $(inst_includedir)/,$(headers-nonh)): $(inst_includedir)/%: \
1070 endif # headers-nonh
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
1076 install-bin-nosubdir: $(addprefix $(inst_bindir)/,$(install-bin))
1077 install-bin-script-nosubdir: $(addprefix $(inst_bindir)/,$(install-bin-script))
1078 install-rootsbin-nosubdir: \
1079 $(addprefix $(inst_rootsbindir)/,$(install-rootsbin))
1080 install-sbin-nosubdir: $(addprefix $(inst_sbindir)/,$(install-sbin))
1081 install-lib-nosubdir: $(addprefix $(inst_libdir)/,\
1082 $(patsubst lib%.a,lib$(libprefix)%.a,$(install-lib.a)) \
1083 $(addprefix $(libprefix),$(install-lib-non.a)))
1084 install-data-nosubdir: $(addprefix $(inst_datadir)/,$(install-data))
1085 install-headers-nosubdir: $(addprefix $(inst_includedir)/,$(headers))
1086 install-others-nosubdir: $(install-others)
1087 install-others-programs-nosubdir: $(install-others-programs)
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.
1093 install-%:: install-%-nosubdir ;
1095 .PHONY: install install-no-libc.a-nosubdir
1096 install-no-libc.a-nosubdir: install-headers-nosubdir install-data-nosubdir \
1097 install-lib-nosubdir install-others-nosubdir
1098 ifeq ($(build-programs),yes)
1099 install-no-libc.a-nosubdir: install-bin-nosubdir install-bin-script-nosubdir \
1100 install-rootsbin-nosubdir install-sbin-nosubdir \
1101 install-others-programs-nosubdir
1103 install: install-no-libc.a-nosubdir
1105 # Command to compile $< using the native libraries.
1106 define native-compile
1107 $(make-target-directory)
1108 $(BUILD_CC) $($(basename $(<F))-CFLAGS) $(ALL_BUILD_CFLAGS) \
1109 $< $(OUTPUT_OPTION) $(BUILD_LDFLAGS)
1112 # We always want to use configuration definitions.
1113 ALL_BUILD_CFLAGS = $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) -D_GNU_SOURCE \
1114 -DIS_IN_build -include $(common-objpfx)config.h
1116 # Support the GNU standard name for this target.
1119 # Special target to run tests which cannot be run unconditionally.
1120 # Maintainers should use this target.
1124 all-nonlib = $(strip $(tests) $(xtests) $(test-srcs) $(test-extras) $(others))
1125 ifneq (,$(all-nonlib))
1126 cpp-srcs-left = $(all-nonlib:=.c) $(all-nonlib:=.cc)
1128 include $(patsubst %,$(..)cppflags-iterator.mk,$(cpp-srcs-left))
1131 # The include magic above causes those files to use this variable for flags.
1132 CPPFLAGS-nonlib = -DNOT_IN_libc=1
1135 ifeq ($(versioning),yes)
1136 # Generate normalized lists of symbols, versions, and data sizes.
1137 # This is handy for checking against existing library binaries.
1139 %.symlist: $(..)scripts/abilist.awk %.dynsym
1140 LC_ALL=C $(AWK) -f $^ > $@T
1144 LC_ALL=C $(OBJDUMP) --dynamic-syms $< > $@T
1147 vpath %.abilist $(+sysdep_dirs)
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
1154 generated += $(extra-libs:=.symlist)
1156 check-abi-%: $(common-objpfx)config.make %.abilist $(objpfx)%.symlist
1158 check-abi-%: $(common-objpfx)config.make %.abilist $(common-objpfx)%.symlist
1161 diff -p -U 0 $(filter %.abilist,$^) $(filter %.symlist,$^)
1164 update-abi-%: $(objpfx)%.symlist %.abilist
1166 update-abi-%: $(common-objpfx)%.symlist %.abilist
1169 @if cmp -s $^ 2> /dev/null; \
1171 echo '+++ $(filter %.abilist,$^) is unchanged'; \
1173 echo '*** Now check $(filter %.abilist,$^) changes for correctness ***'; \
1177 .PHONY: update-abi check-abi
1178 update-abi: $(patsubst %.so,update-abi-%,$(install-lib.so-versioned))
1179 check-abi: $(patsubst %.so,check-abi-%,$(install-lib.so-versioned))
1181 subdir_check-abi: check-abi
1182 subdir_update-abi: update-abi
1184 check-abi: subdir_check-abi
1185 update-abi: subdir_update-abi
1188 ifeq ($(subdir),elf)
1189 check-abi: check-abi-libc
1190 update-abi: update-abi-libc
1191 common-generated += libc.symlist
1194 ifeq ($(build-shared),yes)
1202 # These will have been set by sysdeps/posix/Makefile.
1208 stdio_lim = $(common-objpfx)bits/stdio_lim.h
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)
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)' \
1218 $(CPPUNDEFS) $(+includes) -xc - -o $(@:st=hT)
1219 sed $(sed-remove-objpfx) $(sed-remove-dotdot) \
1220 $(@:st=dT) > $(@:st=dt)
1221 mv -f $(@:st=dt) $(@:st=d)
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}; \
1227 if [ -z "$$iov_max" ]; then \
1228 define_iov_max="# undef IOV_MAX"; \
1230 define_iov_max="# define IOV_MAX $$iov_max"; \
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/" \
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)
1246 -include $(stdio_lim:h=d)
1248 common-generated += bits/stdio_lim.h bits/stdio_lim.d bits/stdio_lim.st
1252 .PHONY: echo-headers
1256 %.bz2: %; bzip2 -9vk $<
1257 %.gz: %; gzip -9vnc $< > $@.new && mv -f $@.new $@
1258 %.xz: %; xz -9evk $<
1260 # Common cleaning targets.
1262 .PHONY: common-mostlyclean common-clean mostlyclean clean do-tests-clean
1264 mostlyclean: common-mostlyclean
1267 -rm -f $(addprefix $(objpfx),$(addsuffix .out,$(tests) $(xtests) \
1269 $(addsuffix -bp.out,$(tests) $(xtests) \
1272 # Remove the object files.
1274 -rm -f $(addprefix $(objpfx),$(tests) $(xtests) $(test-srcs) \
1275 $(others) $(sysdep-others) stubs \
1276 $(addsuffix .o,$(tests) $(xtests) \
1277 $(test-srcs) $(others) \
1279 $(addsuffix -bp,$(tests) $(xtests) \
1281 $(addsuffix .out,$(tests) $(xtests) \
1283 $(addsuffix -bp.out,$(tests) $(xtests) \
1285 -rm -f $(addprefix $(objpfx),$(extra-objs) $(extra-test-objs) \
1286 $(install-lib) $(install-lib.so) \
1287 $(install-lib.so:%.so=%_pic.a))
1289 -rm -f $(objpfx)rtld-*.os
1292 $(foreach o,$(object-suffixes-for-libc),
1293 -rm -f $(objpfx)stamp$o $(o-objects))
1296 # Also remove the dependencies and generated source files.
1297 common-clean: common-mostlyclean
1298 -rm -f $(addprefix $(objpfx),$(generated))
1299 -rm -f $(objpfx)*.d $(objpfx)*.dt
1300 -rm -fr $(addprefix $(objpfx),$(generated-dirs))
1301 -rm -f $(addprefix $(common-objpfx),$(common-generated))
1302 -rm -f $(gen-as-const-headers:%.sym=$(common-objpfx)%.h)
1304 # Produce a file `stubs' which contains `#define __stub_FUNCTION'
1305 # for each function which is a stub.
1308 .PHONY: stubs # The parent Makefile calls this target.
1309 stubs: $(objpfx)stubs
1311 objs-for-stubs := $(foreach o,$(object-suffixes-for-libc),$(o-objects)) \
1312 $(addprefix $(objpfx),$(extra-objs))
1313 $(objpfx)stubs: $(objs-for-stubs)
1314 ifneq (,$(strip $(objs-for-stubs)))
1315 (cd $(objpfx).; $(OBJDUMP) -h $(patsubst $(objpfx)%,%,$^)) | \
1316 $(AWK) '/\.gnu\.glibc-stub\./ { \
1317 sub(/\.gnu\.glibc-stub\./, "", $$2); \
1319 END { for (s in stubs) print "#define __stub_" s }' > $@T
1325 ifneq (,$(strip $(gpl2lgpl)))
1326 ifneq (,$(wildcard $(..)gpl2lgpl.sed))
1327 # Snarf from the master source and frob the copying notice.
1328 $(gpl2lgpl): %: $(..)gpl2lgpl.sed /home/gd/gnu/lib/%
1330 # So I don't edit them by mistake.