1 # Copyright (C) 1991-2000, 2001 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, write to the Free
16 # Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
20 # Makefile configuration options for the GNU C library.
23 This makefile requires GNU Make.
26 all: # Make this the default goal
28 ifneq "$(origin +included-Makeconfig)" "file"
30 +included-Makeconfig := yes
36 # If config.make exists, the source directory was configured,
37 # so don't try to be clever and find another directory to build in.
38 ifneq (,$(wildcard $(..)config.make))
41 else # Not configured.
49 # Directory for object files and libc.a. If this is not defined, the
50 # object files live in the subdirectories where their sources live, and
51 # libc.a lives in the parent directory (this probably doesn't work any
54 ifeq ($(filter /%,$(ARCH)),)
55 objdir := $(..)$(ARCH)
61 # $(common-objdir) is the place to put objects and
62 # such that are not specific to a single subdir.
64 objpfx := $(patsubst %//,%/,$(objdir)/$(subdir)/)
65 common-objpfx = $(objdir)/
66 common-objdir = $(objdir)
73 # This is a kludge. make wizards might grok.
74 common-objpfx = sysdeps/../
79 # Root of the sysdeps tree.
80 sysdep_dir := $(..)sysdeps
81 export sysdep_dir := $(sysdep_dir)
83 # Get the values defined by options to `configure'.
84 include $(common-objpfx)config.make
86 # We have a special subdir for each binary format.
87 # For now, only ELF is fully supported.
91 # This is probably better than nothing.
95 # Complete path to sysdep dirs.
96 export full_config_sysdirs := $(addprefix $(..),$(config-sysdirs))
98 # Run config.status to update config.make and config.h. We don't show the
99 # dependence of config.h to Make, because it is only touched when it
100 # changes and so config.status would be run every time; the dependence of
101 # config.make should suffice to force regeneration and re-exec, and the new
102 # image will notice if config.h changed.
103 $(common-objpfx)config.make: $(common-objpfx)config.status \
104 $(..)config.make.in $(..)config.h.in
105 cd $(<D); $(SHELL) $(<F)
107 # Find all the sysdeps configure fragments, to make sure we re-run
108 # configure when any of them changes.
109 $(common-objpfx)config.status: $(..)version.h $(..)configure \
110 $(foreach dir,$(full_config_sysdirs),\
114 $(firstword $(wildcard \
115 $(addprefix $(dir)/,configure configure.in)))))
116 @cd $(@D); if test -f $(@F); then exec $(SHELL) $(@F) --recheck; else \
117 echo The GNU C library has not been configured. >&2; \
118 echo Run \`configure\' to configure it before building. >&2; \
119 echo Try \`configure --help\' for more details. >&2; \
122 # We don't want CPPFLAGS to be exported to the command running configure.
125 # Get the user's configuration parameters.
126 ifneq ($(wildcard $(..)configparms),)
127 include $(..)configparms
130 ifneq ($(wildcard $(common-objpfx)configparms),)
131 include $(common-objpfx)configparms
136 #### These are the configuration variables. You can define values for
137 #### the variables below in the file `configparms'.
138 #### Do NOT edit this file.
142 # Set this to either `stdio' or `libio', to compile in either GNU stdio
148 # Common prefix for machine-independent installation directories.
149 ifeq ($(origin prefix),undefined) # ifndef would override explicit empty value.
153 # Decide whether we shall build the programs or not. We always do this
154 # unless the user tells us (in configparms) or we are building for a
156 ifndef build-programs
157 ifneq ($(config-os),none)
164 # Common prefix for machine-dependent installation directories.
165 ifeq ($(origin exec_prefix),undefined)
166 exec_prefix = $(prefix)
169 # Where to install the library and object files.
171 libdir = $(exec_prefix)/lib
173 inst_libdir = $(install_root)$(libdir)
175 # Where to install the shared library and dynamic linker.
177 slibdir = $(exec_prefix)/lib
179 inst_slibdir = $(install_root)$(slibdir)
181 # Prefix to put on files installed in $(libdir). For libraries `libNAME.a',
182 # the prefix is spliced between `lib' and the name, so the linker switch
183 # `-l$(libprefix)NAME' finds the library; for other files the prefix is
184 # just prepended to the whole file name.
185 ifeq ($(origin libprefix),undefined)
189 # Where to install the header files.
191 includedir = $(exec_prefix)/include
193 inst_includedir = $(install_root)$(includedir)
195 # Where to install machine-independent data files.
196 # These are the timezone database, and the locale database.
198 datadir = $(prefix)/share
200 inst_datadir = $(install_root)$(datadir)
202 # Where to install the timezone data files (which are machine-independent).
204 zonedir = $(datadir)/zoneinfo
206 inst_zonedir = $(install_root)$(zonedir)
208 # Where to install the locale files.
210 localedir = $(libdir)/locale
212 inst_localedir = $(install_root)$(localedir)
214 # Where to install the message catalog data files (which are
215 # machine-independent).
217 msgcatdir = $(datadir)/locale
219 inst_msgcatdir = $(install_root)$(msgcatdir)
221 # Where to install the locale charmap source files.
223 i18ndir = $(datadir)/i18n
225 inst_i18ndir = $(install_root)$(i18ndir)
227 # Where to install the shared object for charset transformation.
229 gconvdir = $(libdir)/gconv
231 inst_gconvdir = $(install_root)$(gconvdir)
233 # Where to install programs.
235 bindir = $(exec_prefix)/bin
237 inst_bindir = $(install_root)$(bindir)
239 # Where to install internal programs.
241 libexecdir = $(exec_prefix)/libexec
243 inst_libexecdir = $(install_root)$(libexecdir)
245 # Where to install administrative programs.
247 rootsbindir = $(exec_prefix)/sbin
249 inst_rootsbindir = $(install_root)$(rootsbindir)
252 sbindir = $(exec_prefix)/sbin
254 inst_sbindir = $(install_root)$(sbindir)
256 # Where to install the Info files.
258 infodir = $(prefix)/info
260 inst_infodir = $(install_root)$(infodir)
262 # Where to install default configuration files. These include the local
263 # timezone specification and network data base files.
265 sysconfdir = $(prefix)/etc
267 inst_sysconfdir = $(install_root)$(sysconfdir)
269 # What timezone should be the installed default (e.g., US/Eastern).
270 # Run `make -C time echo-zonenames' to see a list of available zone names.
271 # The local timezone can be changed with `zic -l TIMEZONE' at any time.
276 # Where to install the "localtime" timezone file; this is the file whose
277 # contents $(localtime) specifies. If this is a relative pathname, it is
278 # relative to $(zonedir). It is a good idea to put this somewhere
279 # other than there, so the zoneinfo directory contains only universal data,
280 # localizing the configuration data elsewhere.
281 ifndef localtime-file
282 localtime-file = $(sysconfdir)/localtime
283 inst_localtime-file = $(install_root)$(localtime-file)
286 # What to use for leap second specifications in compiling the default
287 # timezone files. Set this to `/dev/null' for no leap second handling as
288 # 1003.1 requires, or to `leapseconds' for proper leap second handling.
289 # Both zone flavors are always available as `posix/ZONE' and `right/ZONE'.
290 # This variable determines the default: if it's `/dev/null',
291 # ZONE==posix/ZONE; if it's `leapseconds', ZONE==right/ZONE.
293 leapseconds = /dev/null
296 # What timezone's DST rules should be used when a POSIX-style TZ
297 # environment variable doesn't specify any rules. For 1003.1 compliance
298 # this timezone must use rules that are as U.S. federal law defines DST.
299 # Run `make -C time echo-zonenames' to see a list of available zone names.
300 # This setting can be changed with `zic -p TIMEZONE' at any time.
301 # If you want POSIX.1 compatibility, use `America/New_York'.
303 posixrules = America/New_York
306 # Where to install the "posixrules" timezone file; this is file
307 # whose contents $(posixrules) specifies. If this is a relative
308 # pathname, it is relative to $(zonedir).
309 ifndef posixrules-file
310 posixrules-file = posixrules
314 # Directory where your system's native header files live.
315 # This is used on Unix systems to generate some GNU libc header files.
317 sysincludedir = /usr/include
321 # Commands to install files.
323 INSTALL_DATA = $(INSTALL) -m 644
325 ifndef INSTALL_PROGRAM
326 INSTALL_PROGRAM = $(INSTALL)
333 # The name of the C compiler.
334 # If you've got GCC, and it works, use it.
335 ifeq ($(origin CC),default)
339 # The name of the C compiler to use for compilations of programs to run on
340 # the host that is building the library. If you set CC to a
341 # cross-compiler, you must set this to the normal compiler.
346 # Default flags to pass the C compiler.
347 ifndef default_cflags
348 ifeq ($(release),stable)
349 default_cflags := -g -O2
351 default_cflags := -g -O
355 # Flags to pass the C compiler when assembling preprocessed assembly code
356 # (`.S' files). On some systems the assembler doesn't understand the `#' line
357 # directives the preprocessor produces. If you have troubling compiling
358 # assembly code, try using -P here to suppress these directives.
363 # ELF always supports init/fini sections
368 # Installed name of the startup code.
369 ifneq ($(have-initfini),yes)
370 # When not having init/fini, there is just one startfile, called crt0.o.
371 start-installed-name = crt0.o
373 # On systems having init/fini, crt0.o is called crt1.o, and there are
374 # some additional bizarre files.
375 start-installed-name = crt1.o
377 # On systems that do not need a special startfile for statically linked
378 # binaries, simply set it to the normal name.
379 ifndef static-start-installed-name
380 static-start-installed-name = $(start-installed-name)
383 ifeq (yesyesyes,$(build-shared)$(elf)$(have-z-combreloc))
384 combreloc-LDFLAGS = -Wl,-z,combreloc
385 LDFLAGS.so += $(combreloc-LDFLAGS)
386 LDFLAGS-rtld += $(combreloc-LDFLAGS)
389 # Command for linking programs with the C library.
391 +link = $(CC) -nostdlib -nostartfiles -o $@ \
392 $(sysdep-LDFLAGS) $(config-LDFLAGS) $(LDFLAGS) $(LDFLAGS-$(@F)) \
393 $(combreloc-LDFLAGS) \
394 $(addprefix $(csu-objpfx),$(start-installed-name)) \
395 $(+preinit) $(+prector) \
396 $(filter-out $(addprefix $(csu-objpfx),start.o \
397 $(start-installed-name))\
398 $(+preinit) $(link-extra-libs) \
399 $(common-objpfx)libc% $(+postinit),$^) \
400 $(link-extra-libs) $(link-libc) $(+postctor) $(+postinit)
402 # Command for statically linking programs with the C library.
404 +link-static = $(CC) -nostdlib -nostartfiles -static -o $@ \
405 $(sysdep-LDFLAGS) $(LDFLAGS) \
406 $(addprefix $(csu-objpfx),$(static-start-installed-name)) \
407 $(+preinit) $(+prector) \
408 $(filter-out $(addprefix $(csu-objpfx),start.o \
409 $(start-installed-name))\
410 $(+preinit) $(link-extra-libs-static) \
411 $(common-objpfx)libc% $(+postinit),$^) \
412 $(link-extra-libs-static) $(link-libc-static) $(+postctor) $(+postinit)
414 # Command for statically linking bounded-pointer programs with the C library.
416 +link-bounded = $(CC) -nostdlib -nostartfiles -static -fbounded-pointers -o $@ \
417 $(sysdep-LDFLAGS) $(LDFLAGS) \
418 $(addprefix $(csu-objpfx),b$(static-start-installed-name)) \
419 $(+preinit) $(+prector) \
420 $(filter-out $(addprefix $(csu-objpfx),start.ob \
421 $(start-installed-name))\
422 $(+preinit) $(link-extra-libs-bounded) \
423 $(common-objpfx)libc% $(+postinit),$^) \
424 $(link-extra-libs-bounded) $(link-libc-bounded) $(+postctor) $(+postinit)
426 ifndef config-LDFLAGS
427 ifeq (yesyes,$(build-shared)$(elf))
428 config-LDFLAGS = -Wl,-dynamic-linker=$(slibdir)/$(rtld-installed-name)
432 ifeq (yes,$(build-shared))
434 # We need the versioned name of libc.so in the deps of $(others) et al
435 # so that the symlink to libc.so is created before anything tries to
436 # run the linked programs.
437 link-libc = -Wl,-rpath-link=$(rpath-link) \
438 $(common-objpfx)libc.so$(libc.so-version) \
439 $(common-objpfx)$(patsubst %,$(libtype.oS),c) $(gnulib)
440 # This is how to find at build-time things that will be installed there.
441 rpath-dirs = math elf dlfcn nss nis rt resolv crypt
443 ifneq (,$(findstring aix,$(config-os)))
444 link-libc = $(common-objpfx)libc.a \
445 $(common-objpfx)$(patsubst %,$(libtype.oS),c) $(gnulib)
446 rpath-dirs = math dlfcn nss nis rt resolv crypt
450 $(common-objdir):$(subst $(empty) ,:,$(patsubst ../$(subdir),.,$(rpath-dirs:%=$(common-objpfx)%)))
451 elfobjdir := $(patsubst ../$(subdir),.,$(common-objpfx)elf)
453 nssobjdir := $(patsubst ../$(subdir),.,$(common-objpfx)nss)
454 resolvobjdir := $(patsubst ../$(subdir),.,$(common-objpfx)resolv)
455 link-libc = $(common-objpfx)libc.a $(otherlibs) $(gnulib) $(common-objpfx)libc.a $(gnulib)
459 # Differences in the linkers on the various platforms.
461 LDFLAGS-rpath-ORIGIN = -Wl,-rpath,'$$ORIGIN'
462 LDFLAGS-soname-fname = -Wl,-soname,$(@F)
463 LDFLAGS-rdynamic = -rdynamic
464 LDFLAGS-Bsymbolic = -Bsymbolic
466 ifneq (,$(findstring aix,$(config-os)))
467 LDFLAGS-rpath-ORIGIN =
468 LDFLAGS-soname-fname =
469 LDFLAGS-rdynamic = -Wl,-bdynamic
470 LDFLAGS-Bsymbolic = -Wl,-bsymbolic
474 # Choose the default search path for the dynamic linker based on
475 # where we will install libraries.
476 ifneq ($(libdir),$(slibdir))
477 default-rpath = $(slibdir):$(libdir)
479 default-rpath = $(libdir)
482 ifndef link-extra-libs
483 ifeq (yes,$(build-shared))
484 ifneq ($(common-objpfx),$(objpfx))
485 link-extra-libs = $(foreach lib,$(LDLIBS-$(@F)),\
486 $(wildcard $(common-objpfx)$(lib).so$($(notdir $(lib)).so-version) \
487 $(objpfx)$(lib).so$($(notdir $(lib)).so-version)))
489 link-extra-libs = $(foreach lib,$(LDLIBS-$(@F)),$(common-objpfx)$(lib).so$($(notdir $(lib)).so-version))
492 link-extra-libs = $(foreach lib,$(LDLIBS-$(@F)),$(common-objpfx)$(lib).a)
496 # The static libraries.
497 ifeq (yes,$(build-static))
498 link-libc-static = $(common-objpfx)libc.a $(gnulib) $(common-objpfx)libc.a
499 link-extra-libs-static = $(foreach lib,$(LDLIBS-$(@F)),$(common-objpfx)$(lib).a)
501 ifeq (yes,$(build-shared))
502 # We can try to link the programs with lib*_pic.a...
503 link-libc-static = $(gnulib) $(common-objpfx)libc_pic.a
504 link-extra-libs-static = $(link-extra-libs)
507 link-libc-bounded = $(common-objpfx)libc_b.a $(gnulib) $(common-objpfx)libc_b.a
508 link-extra-libs-bounded = $(foreach lib,$(LDLIBS-$(@F:%-bp=%)),$(common-objpfx)$(lib)_b.a)
514 +preinit = $(addprefix $(csu-objpfx),crti.o)
515 +postinit = $(addprefix $(csu-objpfx),crtn.o)
516 +prector = `$(CC) --print-file-name=crtbegin.o`
517 +postctor = `$(CC) --print-file-name=crtend.o`
518 +interp = $(addprefix $(elf-objpfx),interp.os)
520 csu-objpfx = $(common-objpfx)csu/
521 elf-objpfx = $(common-objpfx)elf/
523 # How to run a program we just linked with our library.
524 # The program binary is assumed to be $(word 2,$^).
525 built-program-file = $(dir $(word 2,$^))$(notdir $(word 2,$^))
526 ifeq (yesyes,$(build-shared)$(elf))
528 sysdep-library-path = \
529 $(subst $(empty) ,:,$(strip $(patsubst -Wl$(comma)-rpath-link=%, %,\
530 $(filter -Wl$(comma)-rpath-link=%,\
531 $(sysdep-LDFLAGS)))))
532 run-program-prefix = $(if $(findstring $(notdir $(built-program-file)), $(tests-static)),, \
533 $(elf-objpfx)$(rtld-installed-name) \
534 --library-path $(rpath-link)$(patsubst %,:%,$(sysdep-library-path)))
538 # Never use $(run-program-prefix) for the statically-linked %-bp test programs
539 built-program-cmd = $(patsubst %,$(run-program-prefix),\
540 $(filter-out %-bp,$(built-program-file))) \
541 $(built-program-file)
551 # Extra flags to pass to GCC.
552 ifeq ($(all-warnings),yes)
553 +gccwarn := -Wall -Wwrite-strings -Winline -Wstrict-prototypes -Wcast-qual -Wbad-function-cast -Wmissing-noreturn -Wmissing-prototypes -Wmissing-declarations -Wcomment -Wcomments -Wtrigraphs -Wsign-compare -Wfloat-equal -Wmultichar
555 +gccwarn := -Wall -Wwrite-strings -Winline -Wstrict-prototypes
558 # This is the program that generates makefile
559 # dependencies from C source files.
564 # The program that makes Emacs-style TAGS files.
567 # The `m4' macro processor; this is used by sysdeps/sparc/Makefile (and
568 # perhaps others) to preprocess assembly code in some cases.
571 # To force installation of files even if they are older than the
572 # installed files. This variable is included in the dependency list
573 # of all installation targets.
574 ifeq ($(force-install),yes)
575 +force = force-install
581 #### End of configuration variables.
584 # This tells some versions of GNU make before 3.63 not to export all variables.
587 # We want to echo the commands we're running without
588 # umpteen zillion filenames along with it (we use `...' instead)
589 # but we don't want this echoing done when the user has said
590 # he doesn't want to see commands echoed by using -s.
591 ifneq "$(findstring s,$(MAKEFLAGS))" "" # if -s
592 +cmdecho := echo >/dev/null
597 # These are the flags given to the compiler to tell
598 # it what sort of optimization and/or debugging output to do.
600 # If `CFLAGS' was defined, use that.
602 +cflags := $(filter-out -I%,$(CFLAGS))
606 # If none of the above worked, default to "-g -O".
607 ifeq "$(strip $(+cflags))" ""
608 +cflags := $(default_cflags)
609 endif # $(+cflags) == ""
611 +cflags := $(+cflags) $(+gccwarn)
614 # Don't duplicate options if we inherited variables from the parent.
615 +cflags := $(sort $(+cflags))
618 # These are flags given to the C compiler to tell it to look for include
619 # files (including ones given in angle brackets) in the current directory,
620 # in the parent library source directory and in the include directory.
621 # `+sysdep-includes' will be defined by Makerules.
622 +includes = -I$(..)include -I. \
623 $(patsubst %/,-I%,$(objpfx)) $(patsubst %/,-I%,$(..)) \
624 $($(stdio)-include) $(includes) \
625 $(+sysdep-includes) $(last-includes) $(sysincludes)
627 # Since libio has several internal header files, we use a -I instead
628 # of many little headers in the include directory.
629 libio-include = -I$(..)libio
631 # These are the variables that the implicit compilation rules use.
632 CPPFLAGS = $($(subdir)-CPPFLAGS) $(+includes) $(defines) \
633 -include $(..)include/libc-symbols.h $(sysdep-CPPFLAGS) \
634 $(CPPFLAGS-$(suffix $@)) $(CPPFLAGS-$(<F)) $(CPPFLAGS-$(@F))
635 override CFLAGS = $(filter-out %frame-pointer,$(+cflags)) $(sysdep-CFLAGS) \
636 $(CFLAGS-$(suffix $@)) $(CFLAGS-$(<F)) $(CFLAGS-$(@F))
638 # If everything is compiled with -fPIC (implicitly) we must tell this by
639 # defining the PIC symbol.
640 ifeq (yes,$(build-pic-default))
644 # Enable object files for different versions of the library.
645 # Various things use $(object-suffixes) to know what all to make.
646 # The compilation rules use $(CPPFLAGS-${SUFFIX}) and $(CFLAGS-${SUFFIX})
647 # to pass different flags for each flavor.
648 libtypes = $(foreach o,$(object-suffixes-for-libc),$(libtype$o))
649 all-object-suffixes := .o .os .op .og .ob .oS
651 CPPFLAGS-.o = $(pic-default)
652 CFLAGS-.o = $(filter %frame-pointer,$(+cflags))
653 ifeq (yes,$(build-static))
655 object-suffixes += .o
657 ifeq (yes,$(build-shared))
658 # Under --enable-shared, we will build a shared library of PIC objects.
659 # The PIC object files are named foo.os.
660 object-suffixes += .os
661 CPPFLAGS-.os = -DPIC -DSHARED
662 CFLAGS-.os = $(filter %frame-pointer,$(+cflags)) $(pic-ccflag)
663 libtype.os := lib%_pic.a
664 # This can be changed by a sysdep makefile
667 ifeq (yes,$(build-profile))
668 # Under --enable-profile, we will build a static library of profiled objects.
669 # The profiled object files are named foo.op.
670 object-suffixes += .op
671 CPPFLAGS-.op = -DPROF $(pic-default)
673 libtype.op = lib%_p.a
675 ifeq (yes,$(build-omitfp))
676 # Under --enable-omitfp, we build the library optimized without
677 # debugging information using -fomit-frame-pointer, and build an extra
678 # library with debugging information. The debuggable objects are named foo.og.
679 object-suffixes += .og
680 CPPFLAGS-.og = $(pic-default)
682 CFLAGS-.o = $(filter %frame-pointer,$(+cflags)) -g0 -O99 -fomit-frame-pointer -D__USE_STRING_INLINES
683 CFLAGS-.os += -g0 -O99 -fomit-frame-pointer -D__USE_STRING_INLINES
684 libtype.og = lib%_g.a
688 ifeq (yes,$(build-bounded))
689 # Under --enable-bounded, we build the library with `-fbounded-pointers -g'
690 # to runtime bounds checking. The bounded-pointer objects are named foo.ob.
691 # We disable sibling-call optimizations so that stack traces will be complete
692 # and thus aid debugging, since after all, BPs are a debugging tool.
693 object-suffixes += .ob
694 CPPFLAGS-.ob = -fbounded-pointers $(pic-default)
695 CFLAGS-.ob = -g -O2 -fno-optimize-sibling-calls -fno-strict-aliasing
696 libtype.ob = lib%_b.a
699 object-suffixes-for-libc := $(object-suffixes)
701 ifeq (yes,$(build-shared))
702 # Build special library that contains the static-only routines for libc.
703 object-suffixes-for-libc += .oS
705 # Must build the routines as PIC, though, because they can end up in (users')
706 # shared objects. We don't want to use CFLAGS-os because users may, for
707 # example, make that processor-specific.
708 CFLAGS-.oS = $(CFLAGS-.o) $(pic-ccflag)
709 CPPFLAGS-.oS = $(CPPFLAGS-.o) -DPIC
710 libtype.oS = lib%_nonshared.a
714 +gnu-stabs = $(shell echo>&2 '*** BARF ON ME')
720 move-if-change = $(SHELL) $(..)scripts/move-if-change
722 -include $(common-objpfx)sysd-dirs
724 ifeq ($(sysd-dirs-done),t)
725 -include $(common-objpfx)sysd-sorted
726 subdirs = $(sorted-subdirs)
729 ifeq (yes, $(build-shared))
731 # Commands to put in a pipeline to preprocess a file with # comments
732 # %ifdef et al based on config.h settings or other %include'd files.
733 define preprocess-versions
734 sed '/^[ ]*#/d;s/^[ ]*%/#/' \
735 | $(CC) -E -undef -I$(common-objdir) -I$(..)include \
736 -include $(common-objpfx)config.h \
737 -x assembler-with-cpp - \
738 | sed '/^[ ]*#/d;/^[ ]*$$/d'
741 # Process the shlib-versions file, which tells us what shared library
742 # version numbers to use when we install shared objects on this system.
743 # We need to wait until $(subdirs) is complete.
744 ifeq ($(sysd-sorted-done),t)
745 -include $(common-objpfx)soversions.mk
746 ifndef avoid-generated
747 $(common-objpfx)soversions.i: $(..)shlib-versions $(..)Makeconfig \
748 $(wildcard $(patsubst %, $(..)%/shlib-versions,\
751 $(common-objpfx)config.make
752 cat $(filter-out $(..)Makeconfig $(common-objpfx)config.make,$^) \
753 | $(preprocess-versions) \
754 | while read conf version setname; do \
755 test -n "$$version" && \
756 test `expr '$(config-machine)-$(config-vendor)-$(config-os)' \
757 : "$$conf"` != 0 || continue; \
758 if test "x$$version" = xDEFAULT; then \
759 default_setname="$$setname"; \
761 lib=`echo $$version | sed 's/=.*$$//'`; \
762 if eval test -z "\$${versioned_$${lib}}"; then \
763 eval versioned_$${lib}=yes; \
764 number=`echo $$version | sed "s/^.*=//"`; \
765 echo $$lib $$number $${setname:-$${default_setname}}; \
770 $(common-objpfx)soversions.mk: $(common-objpfx)soversions.i
771 (while read lib number setname; do \
773 [0-9]*) echo "$$lib.so-version=.$$number"; \
774 echo "all-sonames+=$$lib=$$lib.so\$$($$lib.so-version)";;\
775 *) echo "$$lib.so-version=$$number"; \
776 echo "all-sonames+=$$lib=\$$($$lib.so-version)";;\
779 echo soversions.mk-done = t;) < $< > $@T; exit 0
784 postclean-generated += soversions.mk
786 # Generate the header containing the names of all shared libraries.
787 # We use a stamp file to avoid uncessary recompilations.
788 before-compile += $(common-objpfx)gnu/lib-names.h
789 ifeq ($(soversions.mk-done),t)
790 $(common-objpfx)gnu/lib-names.h: $(common-objpfx)gnu/lib-names.stmp; @:
791 ifneq (,$(findstring aix,$(config-os)))
792 $(common-objpfx)gnu/lib-names.stmp: $(..)sysdeps/unix/sysv/aix/gnu/lib-names.h
793 $(make-target-directory)
794 @rm -f ${@:stmp=T} $@
795 @cp $(..)sysdeps/unix/sysv/aix/gnu/lib-names.h $(common-objpfx)gnu
798 $(common-objpfx)gnu/lib-names.stmp: $(common-objpfx)soversions.mk
799 $(make-target-directory)
800 @rm -f ${@:stmp=T} $@
801 (echo '/* This file is automatically generated.';\
802 echo ' It defines macros to allow user program to find the shared';\
803 echo ' library files which come as part of GNU libc. */';\
804 echo '#ifndef __GNU_LIB_NAMES_H'; \
805 echo '#define __GNU_LIB_NAMES_H 1'; \
807 (libs='$(all-sonames)';\
808 for l in $$libs; do \
809 name=`echo $$l | sed 's/.*=//'`; \
810 upname=`echo $$l | sed 's/=.*//' | \
811 tr 'abcdefghijklmnopqrstuvwxyz-' \
812 'ABCDEFGHIJKLMNOPQRSTUVWXYZ_'`; \
813 upname2=`echo $$name | sed 's/[.]so.*//' | \
814 tr 'abcdefghijklmnopqrstuvwxyz-' \
815 'ABCDEFGHIJKLMNOPQRSTUVWXYZ_'`; \
816 echo "#define $${upname}_SO \"$$name\""; \
817 if test $$upname != $$upname2; then \
818 echo "#define $${upname2}_SO \"$$name\""; \
822 echo '#endif /* gnu/lib-names.h */';) > ${@:stmp=T}
823 $(move-if-change) ${@:stmp=T} ${@:stmp=h}
828 common-generated += gnu/lib-names.h gnu/lib-names.stmp
830 # The name under which the run-time dynamic linker is installed.
831 # We are currently going for the convention that `/lib/ld.so.1'
832 # names the SVR4/ELF ABI-compliant dynamic linker.
833 ifndef rtld-installed-name
835 rtld-installed-name = $(ld.so-version)
837 rtld-installed-name = ld.so.1
841 ifndef rtld-version-installed-name
842 rtld-version-installed-name = ld-$(version).so
850 ifeq ($(build-shared),yes)
851 libdl = $(common-objpfx)dlfcn/libdl.so$(libdl.so-version)
853 libdl = $(common-objpfx)dlfcn/libdl.a
856 ifneq (,$(findstring aix,$(config-os)))
857 ifeq ($(build-shared),yes)
859 libdl = $(common-objpfx)dlfcn/libdl.so$(libdl.so-version)
861 # No libdl without shared libs on AIX
866 # No ELF, no AIX - no libdl, at least for now.
872 # These are the subdirectories containing the library source. The order
873 # is more or less arbitrary. The sorting step will take care of the
874 # dependencies. Only the $(binfmt-subdir) should always be kept at the
876 all-subdirs = csu assert ctype locale intl catgets math setjmp signal \
877 stdlib stdio-common $(stdio) malloc string wcsmbs time dirent \
878 grp pwd posix io termios resource misc socket sysvipc gmon \
879 gnulib iconv iconvdata wctype manual shadow po argp \
880 crypt $(add-ons) nss localedata timezone rt conform debug \
881 $(sysdep-subdirs) $(dlfcn) $(binfmt-subdir)
882 all-subdirs := $(filter-out $(sysdep-inhibit-subdirs),$(all-subdirs))
884 # The mach and hurd subdirectories have many generated header files which
885 # much of the rest of the library depends on, so it is best to build them
886 # first (and mach before hurd, at that). The before-compile additions in
887 # sysdeps/{mach,hurd}/Makefile should make it reliably work for these files
888 # not to exist when making in other directories, but it will be slower that
889 # way with more somewhat expensive `make' invocations.
890 subdirs := $(filter mach,$(subdirs)) $(filter hurd,$(subdirs)) \
891 $(filter-out mach hurd,$(subdirs))
893 ifndef avoid-generated
894 all-Subdirs-files = $(wildcard $(config-sysdirs:%=$(..)%/Subdirs))
895 $(common-objpfx)sysd-dirs: $(common-objpfx)config.make $(all-Subdirs-files)
896 $(AWK) 'BEGIN { subdirs = ""; inhibit = "" }; \
898 /^[^-]/ { subdirs = subdirs " " $$0 }; \
899 /^-/ { inhibit = inhibit " " substr($$0, 2) }; \
900 END { printf "sysdep-subdirs =%s\n", subdirs; \
901 printf "sysdep-inhibit-subdirs =%s\n", inhibit; \
902 print "sysd-dirs-done = t" }' \
903 $(patsubst $<,/dev/null,$^) > $@-tmp
906 all-Depend-files = $(wildcard $(..)*/Depend)
907 $(common-objpfx)sysd-sorted: $(..)scripts/gen-sorted.awk $(all-Depend-files) \
908 $(common-objpfx)sysd-dirs $(..)Makeconfig
909 { { dirs='$(patsubst $(..)%/Depend,$(..)%,$(filter %/Depend,$^))';\
910 for d in $$dirs; do \
912 echo "depend $$d $$on"; \
915 for f in $(all-subdirs); do \
918 } | $(AWK) -f $< && \
919 echo sysd-sorted-done = t; \
924 # Let sysdeps/ subdirs contain a Makeconfig fragment for us to include here.
925 sysdep-makeconfigs := $(wildcard $(patsubst %,$(..)%/Makeconfig,\
926 $(config-sysdirs) $(add-ons)))
928 ifneq (,$(sysdep-makeconfigs))
929 include $(sysdep-makeconfigs)
933 endif # Makeconfig not yet included