Update.
[glibc.git] / Makeconfig
blobe0b3433cdc7fcfef8be75750799b3db98672eff2
1 # Copyright (C) 1991-2003, 2004 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
17 # 02111-1307 USA.
20 #       Makefile configuration options for the GNU C library.
22 ifneq (,)
23 This makefile requires GNU Make.
24 endif
26 all: # Make this the default goal
28 ifneq "$(origin +included-Makeconfig)" "file"
30 +included-Makeconfig := yes
32 ifdef subdir
33 .. := ../
34 endif
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))
39 ARCH =
40 machine =
41 else    # Not configured.
42 ifndef ARCH
43 ifdef machine
44 ARCH = $(machine)
45 endif # machine
46 endif # ARCH
47 endif # config.make
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
52 # more).
53 ifdef ARCH
54 ifeq ($(filter /%,$(ARCH)),)
55 objdir := $(..)$(ARCH)
56 else
57 objdir = $(ARCH)
58 endif
59 endif
61 # $(common-objdir) is the place to put objects and
62 # such that are not specific to a single subdir.
63 ifdef objdir
64 objpfx := $(patsubst %//,%/,$(objdir)/$(subdir)/)
65 common-objpfx = $(objdir)/
66 common-objdir = $(objdir)
67 else
68 objpfx :=
69 ifdef ..
70 common-objpfx = $(..)
71 common-objdir = ..
72 else
73 # This is a kludge.  make wizards might grok.
74 common-objpfx = sysdeps/../
75 common-objdir = .
76 endif
77 endif
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 # What flags to give to sources which call user provided callbacks
87 uses-callbacks = $(exceptions)
89 # What flags to give to tests which test stack alignment
90 stack-align-test-flags =
92 # We have a special subdir for each binary format.
93 # For now, only ELF is fully supported.
94 ifeq ($(elf),yes)
95 binfmt-subdir = elf
96 else
97 # This is probably better than nothing.
98 binfmt-subdir = aout
99 endif
101 # Complete path to sysdep dirs.
102 export full_config_sysdirs := $(addprefix $(..),$(config-sysdirs))
104 # Run config.status to update config.make and config.h.  We don't show the
105 # dependence of config.h to Make, because it is only touched when it
106 # changes and so config.status would be run every time; the dependence of
107 # config.make should suffice to force regeneration and re-exec, and the new
108 # image will notice if config.h changed.
109 $(common-objpfx)config.make: $(common-objpfx)config.status \
110                              $(..)config.make.in $(..)config.h.in
111         cd $(<D); $(SHELL) $(<F)
113 # Find all the sysdeps configure fragments, to make sure we re-run
114 # configure when any of them changes.
115 $(common-objpfx)config.status: $(..)version.h $(..)configure \
116                                $(foreach dir,$(full_config_sysdirs),\
117                                          $(wildcard \
118                                            $(dir)/Implies) \
119                                          $(patsubst %.in,%,\
120                                                     $(firstword $(wildcard \
121  $(addprefix $(dir)/,configure configure.in)))))
122         @cd $(@D); if test -f $(@F); then exec $(SHELL) $(@F) --recheck; else \
123          echo The GNU C library has not been configured. >&2; \
124          echo Run \`configure\' to configure it before building. >&2; \
125          echo Try \`configure --help\' for more details. >&2; \
126          exit 1; fi
128 # We don't want CPPFLAGS to be exported to the command running configure.
129 unexport CPPFLAGS
131 # Get the user's configuration parameters.
132 ifneq ($(wildcard $(..)configparms),)
133 include $(..)configparms
134 endif
135 ifneq ($(objpfx),)
136 ifneq ($(wildcard $(common-objpfx)configparms),)
137 include $(common-objpfx)configparms
138 endif
139 endif
141 ####
142 ####    These are the configuration variables.  You can define values for
143 ####    the variables below in the file `configparms'.
144 ####    Do NOT edit this file.
145 ####
148 # Common prefix for machine-independent installation directories.
149 ifeq ($(origin prefix),undefined) # ifndef would override explicit empty value.
150 prefix = /usr/local
151 endif
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
155 # standalone target.
156 ifndef build-programs
157 ifneq ($(config-os),none)
158 build-programs=yes
159 else
160 build-programs=no
161 endif
162 endif
164 # Common prefix for machine-dependent installation directories.
165 ifeq ($(origin exec_prefix),undefined)
166 exec_prefix = $(prefix)
167 endif
169 # Where to install the library and object files.
170 ifndef libdir
171 libdir = $(exec_prefix)/lib
172 endif
173 inst_libdir = $(install_root)$(libdir)
175 # Where to install the shared library and dynamic linker.
176 ifndef slibdir
177 slibdir = $(exec_prefix)/lib
178 endif
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)
186 libprefix =
187 endif
189 # Where to install the header files.
190 ifndef includedir
191 includedir = $(prefix)/include
192 endif
193 inst_includedir = $(install_root)$(includedir)
195 # Where to install machine-independent data files.
196 # These are the timezone database, and the locale database.
197 ifndef datadir
198 datadir = $(prefix)/share
199 endif
200 inst_datadir = $(install_root)$(datadir)
202 # Where to install the timezone data files (which are machine-independent).
203 ifndef zonedir
204 zonedir = $(datadir)/zoneinfo
205 endif
206 inst_zonedir = $(install_root)$(zonedir)
208 # Where to install the locale files.
209 ifndef localedir
210 localedir = $(libdir)/locale
211 endif
212 inst_localedir = $(install_root)$(localedir)
214 # Where to install the message catalog data files (which are
215 # machine-independent).
216 ifndef msgcatdir
217 msgcatdir = $(datadir)/locale
218 endif
219 inst_msgcatdir = $(install_root)$(msgcatdir)
221 # Where to install the locale charmap source files.
222 ifndef i18ndir
223 i18ndir = $(datadir)/i18n
224 endif
225 inst_i18ndir = $(install_root)$(i18ndir)
227 # Where to install the shared object for charset transformation.
228 ifndef gconvdir
229 gconvdir = $(libdir)/gconv
230 endif
231 inst_gconvdir = $(install_root)$(gconvdir)
233 # Where to install programs.
234 ifndef bindir
235 bindir = $(exec_prefix)/bin
236 endif
237 inst_bindir = $(install_root)$(bindir)
239 # Where to install internal programs.
240 ifndef libexecdir
241 libexecdir = $(exec_prefix)/libexec
242 endif
243 inst_libexecdir = $(install_root)$(libexecdir)
245 # Where to install administrative programs.
246 ifndef rootsbindir
247 rootsbindir = $(exec_prefix)/sbin
248 endif
249 inst_rootsbindir = $(install_root)$(rootsbindir)
251 ifndef sbindir
252 sbindir = $(exec_prefix)/sbin
253 endif
254 inst_sbindir = $(install_root)$(sbindir)
256 # Where to install the Info files.
257 ifndef infodir
258 infodir = $(prefix)/info
259 endif
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.
264 ifndef sysconfdir
265 sysconfdir = $(prefix)/etc
266 endif
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.
272 ifndef localtime
273 localtime = Factory
274 endif
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)
284 endif
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.
292 ifndef leapseconds
293 leapseconds = /dev/null
294 endif
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'.
302 ifndef posixrules
303 posixrules = America/New_York
304 endif
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
311 endif
314 # Directory where your system's native header files live.
315 # This is used on Unix systems to generate some GNU libc header files.
316 ifndef sysincludedir
317 sysincludedir = /usr/include
318 endif
321 # Commands to install files.
322 ifndef INSTALL_DATA
323 INSTALL_DATA = $(INSTALL) -m 644
324 endif
325 ifndef INSTALL_SCRIPT
326 INSTALL_SCRIPT = $(INSTALL)
327 endif
328 ifndef INSTALL_PROGRAM
329 INSTALL_PROGRAM = $(INSTALL)
330 endif
331 ifndef INSTALL
332 INSTALL = install
333 endif
336 # The name of the C compiler.
337 # If you've got GCC, and it works, use it.
338 ifeq ($(origin CC),default)
339 CC := gcc
340 endif
342 # The name of the C compiler to use for compilations of programs to run on
343 # the host that is building the library.  If you set CC to a
344 # cross-compiler, you must set this to the normal compiler.
345 ifndef BUILD_CC
346 BUILD_CC = $(CC)
347 endif
349 # Default flags to pass the C compiler.
350 ifndef default_cflags
351 ifeq ($(release),stable)
352 default_cflags := -g -O2
353 else
354 default_cflags := -g -O
355 endif
356 endif
358 # Flags to pass the C compiler when assembling preprocessed assembly code
359 # (`.S' files).  On some systems the assembler doesn't understand the `#' line
360 # directives the preprocessor produces.  If you have troubling compiling
361 # assembly code, try using -P here to suppress these directives.
362 ifndef asm-CPPFLAGS
363 asm-CPPFLAGS =
364 endif
366 # ELF always supports init/fini sections
367 ifeq ($(elf),yes)
368 have-initfini = yes
369 endif
371 # Installed name of the startup code.
372 ifneq ($(have-initfini),yes)
373 # When not having init/fini, there is just one startfile, called crt0.o.
374 start-installed-name = crt0.o
375 else
376 # On systems having init/fini, crt0.o is called crt1.o, and there are
377 # some additional bizarre files.
378 start-installed-name = crt1.o
379 endif
380 # On systems that do not need a special startfile for statically linked
381 # binaries, simply set it to the normal name.
382 ifndef static-start-installed-name
383 static-start-installed-name = $(start-installed-name)
384 endif
386 ifeq (yesyesyes,$(build-shared)$(elf)$(have-z-combreloc))
387 combreloc-LDFLAGS = -Wl,-z,combreloc
388 LDFLAGS.so += $(combreloc-LDFLAGS)
389 LDFLAGS-rtld += $(combreloc-LDFLAGS)
390 endif
392 ifeq (yes,$(have-z-relro))
393 relro-LDFLAGS = -Wl,-z,relro
394 LDFLAGS.so += $(relro-LDFLAGS)
395 LDFLAGS-rtld += $(relro-LDFLAGS)
396 endif
398 # Command for linking programs with the C library.
399 ifndef +link
400 +link = $(CC) -nostdlib -nostartfiles -o $@ \
401               $(sysdep-LDFLAGS) $(config-LDFLAGS) $(LDFLAGS) $(LDFLAGS-$(@F)) \
402               $(combreloc-LDFLAGS) $(relro-LDFLAGS) \
403               $(addprefix $(csu-objpfx),$(start-installed-name)) \
404               $(+preinit) $(+prector) \
405               $(filter-out $(addprefix $(csu-objpfx),start.o \
406                                                      $(start-installed-name))\
407                            $(+preinit) $(link-extra-libs) \
408                            $(common-objpfx)libc% $(+postinit),$^) \
409               $(link-extra-libs) $(link-libc) $(+postctor) $(+postinit)
410 endif
411 # Command for statically linking programs with the C library.
412 ifndef +link-static
413 +link-static = $(CC) -nostdlib -nostartfiles -static -o $@ \
414               $(sysdep-LDFLAGS) $(LDFLAGS)  \
415               $(addprefix $(csu-objpfx),$(static-start-installed-name)) \
416               $(+preinit) $(+prector) \
417               $(filter-out $(addprefix $(csu-objpfx),start.o \
418                                                      $(start-installed-name))\
419                            $(+preinit) $(link-extra-libs-static) \
420                            $(common-objpfx)libc% $(+postinit),$^) \
421               $(link-extra-libs-static) $(link-libc-static) $(+postctor) $(+postinit)
422 endif
423 # Command for statically linking bounded-pointer programs with the C library.
424 ifndef +link-bounded
425 +link-bounded = $(CC) -nostdlib -nostartfiles -static -fbounded-pointers -o $@ \
426               $(sysdep-LDFLAGS) $(LDFLAGS)  \
427               $(addprefix $(csu-objpfx),b$(static-start-installed-name)) \
428               $(+preinit) $(+prector) \
429               $(filter-out $(addprefix $(csu-objpfx),start.ob \
430                                                      $(start-installed-name))\
431                            $(+preinit) $(link-extra-libs-bounded) \
432                            $(common-objpfx)libc% $(+postinit),$^) \
433               $(link-extra-libs-bounded) $(link-libc-bounded) $(+postctor) $(+postinit)
434 endif
435 ifndef config-LDFLAGS
436 ifeq (yesyes,$(build-shared)$(elf))
437 config-LDFLAGS = -Wl,-dynamic-linker=$(slibdir)/$(rtld-installed-name)
438 endif
439 endif
440 ifndef link-libc
441 ifeq (yes,$(build-shared))
442 ifeq ($(elf),yes)
443 # We need the versioned name of libc.so in the deps of $(others) et al
444 # so that the symlink to libc.so is created before anything tries to
445 # run the linked programs.
446 link-libc = -Wl,-rpath-link=$(rpath-link) \
447             $(common-objpfx)libc.so$(libc.so-version) \
448             $(common-objpfx)$(patsubst %,$(libtype.oS),c) $(gnulib)
449 # This is how to find at build-time things that will be installed there.
450 rpath-dirs = math elf dlfcn nss nis rt resolv crypt
451 else
452 ifneq (,$(filter aix aix%,$(config-os)))
453 link-libc = $(common-objpfx)libc.a \
454             $(common-objpfx)$(patsubst %,$(libtype.oS),c) $(gnulib)
455 rpath-dirs = math dlfcn nss nis rt resolv crypt
456 endif
457 endif
458 rpath-link = \
459 $(common-objdir):$(subst $(empty) ,:,$(patsubst ../$(subdir),.,$(rpath-dirs:%=$(common-objpfx)%)))
460 elfobjdir := $(patsubst ../$(subdir),.,$(common-objpfx)elf)
461 else
462 nssobjdir := $(patsubst ../$(subdir),.,$(common-objpfx)nss)
463 resolvobjdir := $(patsubst ../$(subdir),.,$(common-objpfx)resolv)
464 link-libc = $(common-objpfx)libc.a $(otherlibs) $(gnulib) $(common-objpfx)libc.a $(gnulib)
465 endif
466 endif
468 # Differences in the linkers on the various platforms.
469 ifeq ($(elf),yes)
470 LDFLAGS-rpath-ORIGIN = -Wl,-rpath,'$$ORIGIN'
471 LDFLAGS-soname-fname = -Wl,-soname,$(@F)
472 LDFLAGS-rdynamic = -rdynamic
473 LDFLAGS-Bsymbolic = -Bsymbolic
474 else
475 ifneq (,$(filter aix aix%,$(config-os)))
476 LDFLAGS-rpath-ORIGIN =
477 LDFLAGS-soname-fname =
478 LDFLAGS-rdynamic = -Wl,-bdynamic
479 LDFLAGS-Bsymbolic = -Wl,-bsymbolic
480 endif
481 endif
483 # Choose the default search path for the dynamic linker based on
484 # where we will install libraries.
485 ifneq ($(libdir),$(slibdir))
486 default-rpath = $(slibdir):$(libdir)
487 else
488 default-rpath = $(libdir)
489 endif
491 ifndef link-extra-libs
492 ifeq (yes,$(build-shared))
493 ifneq ($(common-objpfx),$(objpfx))
494 link-extra-libs = $(foreach lib,$(LDLIBS-$(@F)),\
495         $(wildcard $(common-objpfx)$(lib).so$($(notdir $(lib)).so-version) \
496                    $(objpfx)$(lib).so$($(notdir $(lib)).so-version)))
497 else
498 link-extra-libs = $(foreach lib,$(LDLIBS-$(@F)),$(common-objpfx)$(lib).so$($(notdir $(lib)).so-version))
499 endif
500 else
501 link-extra-libs = $(foreach lib,$(LDLIBS-$(@F)),$(common-objpfx)$(lib).a)
502 endif
503 endif
505 # The static libraries.
506 ifeq (yes,$(build-static))
507 link-libc-static = $(common-objpfx)libc.a $(gnulib) $(common-objpfx)libc.a
508 link-extra-libs-static = $(foreach lib,$(LDLIBS-$(@F)),$(common-objpfx)$(lib).a)
509 else
510 ifeq (yes,$(build-shared))
511 # We can try to link the programs with lib*_pic.a...
512 link-libc-static = $(gnulib) $(common-objpfx)libc_pic.a
513 link-extra-libs-static = $(link-extra-libs)
514 endif
515 endif
516 link-libc-bounded = $(common-objpfx)libc_b.a $(gnulib) $(common-objpfx)libc_b.a
517 link-extra-libs-bounded = $(foreach lib,$(LDLIBS-$(@F:%-bp=%)),$(common-objpfx)$(lib)_b.a)
519 ifndef gnulib
520 ifneq ($(have-cc-with-libunwind),yes)
521  gnulib := -lgcc -lgcc_eh
522 else
523  gnulib := -lgcc -lgcc_eh -lunwind
524 endif
525 endif
526 ifeq ($(elf),yes)
527 +preinit = $(addprefix $(csu-objpfx),crti.o)
528 +postinit = $(addprefix $(csu-objpfx),crtn.o)
529 +prector = `$(CC) --print-file-name=crtbegin.o`
530 +postctor = `$(CC) --print-file-name=crtend.o`
531 +interp = $(addprefix $(elf-objpfx),interp.os)
532 endif
533 csu-objpfx = $(common-objpfx)csu/
534 elf-objpfx = $(common-objpfx)elf/
536 # How to run a program we just linked with our library.
537 # The program binary is assumed to be $(word 2,$^).
538 built-program-file = $(dir $(word 2,$^))$(notdir $(word 2,$^))
539 ifeq (yesyes,$(build-shared)$(elf))
540 comma = ,
541 sysdep-library-path = \
542 $(subst $(empty) ,:,$(strip $(patsubst -Wl$(comma)-rpath-link=%, %,\
543                                        $(filter -Wl$(comma)-rpath-link=%,\
544                                                 $(sysdep-LDFLAGS)))))
545 run-program-prefix = $(if $(filter $(notdir $(built-program-file)),\
546                                    $(tests-static)),, \
547                           $(elf-objpfx)$(rtld-installed-name) \
548                           --library-path $(rpath-link)$(patsubst %,:%,$(sysdep-library-path)))
549 else
550 run-program-prefix =
551 endif
552 # Never use $(run-program-prefix) for the statically-linked %-bp test programs
553 built-program-cmd = $(patsubst %,$(run-program-prefix),\
554                         $(filter-out %-bp,$(built-program-file))) \
555                     $(built-program-file)
557 ifndef LD
558 LD := ld -X
559 endif
561 ifndef  RANLIB
562 RANLIB = ranlib
563 endif
565 # Extra flags to pass to GCC.
566 ifeq ($(all-warnings),yes)
567 +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
568 else
569 +gccwarn := -Wall -Wwrite-strings -Winline -Wstrict-prototypes
570 endif
572 # This is the program that generates makefile dependencies from C source files.
573 # The -MP flag tells GCC >= 3.2 (which we now require) to produce dummy
574 # targets for headers so that removed headers don't break the build.
575 ifndef +mkdep
576 +mkdep = $(CC) -M -MP
577 endif
579 # The program that makes Emacs-style TAGS files.
580 ETAGS   := etags
582 # The `m4' macro processor; this is used by sysdeps/sparc/Makefile (and
583 # perhaps others) to preprocess assembly code in some cases.
584 M4 = m4
586 # To force installation of files even if they are older than the
587 # installed files.  This variable is included in the dependency list
588 # of all installation targets.
589 ifeq ($(force-install),yes)
590 +force = force-install
591 else
592 +force =
593 endif
595 ####
596 #### End of configuration variables.
597 ####
599 # This tells some versions of GNU make before 3.63 not to export all variables.
600 .NOEXPORT:
602 # We want to echo the commands we're running without
603 # umpteen zillion filenames along with it (we use `...' instead)
604 # but we don't want this echoing done when the user has said
605 # he doesn't want to see commands echoed by using -s.
606 ifneq   "$(findstring s,$(MAKEFLAGS))" ""       # if -s
607 +cmdecho        := echo >/dev/null
608 else                                            # not -s
609 +cmdecho        := echo
610 endif                                           # -s
612 # These are the flags given to the compiler to tell
613 # it what sort of optimization and/or debugging output to do.
614 ifndef  +cflags
615 # If `CFLAGS' was defined, use that.
616 ifdef           CFLAGS
617 +cflags := $(filter-out -I%,$(CFLAGS))
618 endif           # CFLAGS
619 endif   # +cflags
621 # If none of the above worked, default to "-g -O".
622 ifeq    "$(strip $(+cflags))" ""
623 +cflags := $(default_cflags)
624 endif   # $(+cflags) == ""
626 +cflags := $(+cflags) $(+gccwarn)
627 +gcc-nowarn := -w
629 # Don't duplicate options if we inherited variables from the parent.
630 +cflags := $(sort $(+cflags))
633 # These are flags given to the C compiler to tell it to look for include
634 # files (including ones given in angle brackets) in the current directory,
635 # in the parent library source directory and in the include directory.
636 # `+sysdep-includes' will be defined by Makerules.
637 +includes = -I$(..)include -I. \
638             $(patsubst %/,-I%,$(objpfx)) $(patsubst %/,-I%,$(..)) \
639             $(libio-include) $(includes) \
640             $(+sysdep-includes) $(sysincludes)
642 # Since libio has several internal header files, we use a -I instead
643 # of many little headers in the include directory.
644 libio-include = -I$(..)libio
646 # These are the variables that the implicit compilation rules use.
647 # Note that we can't use -std=* in CPPFLAGS, because it overrides
648 # the implicit -lang-asm and breaks cpp behavior for .S files--notably
649 # it causes cpp to stop predefining __ASSEMBLER__.
650 CPPFLAGS = $($(subdir)-CPPFLAGS) $(+includes) $(defines) \
651            -include $(..)include/libc-symbols.h $(sysdep-CPPFLAGS) \
652            $(CPPFLAGS-$(suffix $@)) \
653            $(foreach lib,$(libof-$(basename $(@F))) \
654                          $(libof-$(<F)) $(libof-$(@F)),$(CPPFLAGS-$(lib))) \
655            $(CPPFLAGS-$(<F)) $(CPPFLAGS-$(@F)) $(CPPFLAGS-$(basename $(@F)))
656 override CFLAGS = -std=gnu99 \
657                   $(filter-out %frame-pointer,$(+cflags)) $(sysdep-CFLAGS) \
658                   $(CFLAGS-$(suffix $@)) $(CFLAGS-$(<F)) $(CFLAGS-$(@F))
660 # If everything is compiled with -fPIC (implicitly) we must tell this by
661 # defining the PIC symbol.
662 ifeq (yes,$(build-pic-default))
663 pic-default = -DPIC
664 endif
666 # Enable object files for different versions of the library.
667 # Various things use $(object-suffixes) to know what all to make.
668 # The compilation rules use $(CPPFLAGS-${SUFFIX}) and $(CFLAGS-${SUFFIX})
669 # to pass different flags for each flavor.
670 libtypes = $(foreach o,$(object-suffixes-for-libc),$(libtype$o))
671 all-object-suffixes := .o .os .op .og .ob .oS
672 object-suffixes :=
673 CPPFLAGS-.o = $(pic-default)
674 CFLAGS-.o = $(filter %frame-pointer,$(+cflags))
675 ifeq (yes,$(build-static))
676 libtype.o := lib%.a
677 object-suffixes += .o
678 endif
679 ifeq (yes,$(build-shared))
680 # Under --enable-shared, we will build a shared library of PIC objects.
681 # The PIC object files are named foo.os.
682 object-suffixes += .os
683 CPPFLAGS-.os = -DPIC -DSHARED
684 CFLAGS-.os = $(filter %frame-pointer,$(+cflags)) $(pic-ccflag)
685 libtype.os := lib%_pic.a
686 # This can be changed by a sysdep makefile
687 pic-ccflag = -fPIC
688 # This one should always stay like this unless there is a very good reason.
689 PIC-ccflag = -fPIC
690 endif
691 ifeq (yes,$(build-profile))
692 # Under --enable-profile, we will build a static library of profiled objects.
693 # The profiled object files are named foo.op.
694 object-suffixes += .op
695 CPPFLAGS-.op = -DPROF $(pic-default)
696 CFLAGS-.op = -pg
697 libtype.op = lib%_p.a
698 endif
699 ifeq (yes,$(build-omitfp))
700 # Under --enable-omitfp, we build the library optimized without
701 # debugging information using -fomit-frame-pointer, and build an extra
702 # library with debugging information.  The debuggable objects are named foo.og.
703 object-suffixes += .og
704 CPPFLAGS-.og = $(pic-default)
705 CFLAGS-.og = -g
706 CFLAGS-.o = $(filter %frame-pointer,$(+cflags)) -g0 -O99 -fomit-frame-pointer -D__USE_STRING_INLINES
707 CFLAGS-.os += -g0 -O99 -fomit-frame-pointer -D__USE_STRING_INLINES
708 libtype.og = lib%_g.a
709 endif
711 bppfx = BP-
712 ifeq (yes,$(build-bounded))
713 # Under --enable-bounded, we build the library with `-fbounded-pointers -g'
714 # to runtime bounds checking.  The bounded-pointer objects are named foo.ob.
715 # We disable sibling-call optimizations so that stack traces will be complete
716 # and thus aid debugging, since after all, BPs are a debugging tool.
717 object-suffixes += .ob
718 CPPFLAGS-.ob = -fbounded-pointers $(pic-default)
719 CFLAGS-.ob = -g -O2 -fno-optimize-sibling-calls -fno-strict-aliasing
720 libtype.ob = lib%_b.a
721 endif
723 object-suffixes-for-libc := $(object-suffixes)
725 ifeq (yes,$(build-shared))
726 # Build special library that contains the static-only routines for libc.
727 object-suffixes-for-libc += .oS
729 # Must build the routines as PIC, though, because they can end up in (users')
730 # shared objects.  We don't want to use CFLAGS-os because users may, for
731 # example, make that processor-specific.
732 CFLAGS-.oS = $(CFLAGS-.o) $(PIC-ccflag)
733 CPPFLAGS-.oS = $(CPPFLAGS-.o) -DPIC -DLIBC_NONSHARED=1
734 libtype.oS = lib%_nonshared.a
735 endif
737 # The assembler can generate debug information too.
738 ifndef ASFLAGS
739 ifeq ($(have-cpp-asm-debuginfo),yes)
740 ASFLAGS := $(filter -g%,$(CFLAGS))
741 else
742 ASFLAGS :=
743 endif
744 endif
745 ASFLAGS += $(ASFLAGS-config)
747 +gnu-stabs = $(shell echo>&2 '*** BARF ON ME')
749 ifndef BUILD_CC
750 BUILD_CC = $(CC)
751 endif
753 move-if-change = $(SHELL) $(..)scripts/move-if-change
755 -include $(common-objpfx)sysd-dirs
757 ifeq ($(sysd-dirs-done),t)
758 -include $(common-objpfx)sysd-sorted
759 subdirs = $(sorted-subdirs)
760 endif
762 ifeq (yes, $(build-shared))
764 # This is a pair of implicit rules to preprocess a file with # comments,
765 # %ifdef et al, based on config.h settings or other %include'd files.
766 # We use chained rules instead of a pipeline here so that we can properly
767 # check the exit status of cpp rather than using its bad output when there
768 # is a preprocessing error.  Another rule should depend on the output file
769 # `FOO.v', and along with that `FOO.v.i' should be given dependencies
770 # listing both its input files, and any header files that it may reference
771 # (but no commands).
772 %.v.i: $(common-objpfx)config.h
773         sed '/^[        ]*#/d;s/^[      ]*%/#/' $(filter-out FORCE %.h,$^) \
774         | $(CC) -E -undef $(CPPFLAGS) \
775                    -DASSEMBLER -x assembler-with-cpp - \
776                    > $@T
777         mv -f $@T $@
778 %.v: %.v.i
779         sed '/^[        ]*#/d;/^[       ]*$$/d' $< > $@T
780         mv -f $@T $@
782 # Process the shlib-versions file, which tells us what shared library
783 # version numbers to use when we install shared objects on this system.
784 # We need to wait until $(subdirs) is complete.
785 ifeq ($(sysd-sorted-done),t)
786 -include $(common-objpfx)soversions.mk
787 ifndef avoid-generated
788 $(common-objpfx)shlib-versions.v.i: \
789         $(..)shlib-versions $(wildcard $(patsubst %, $(..)%/shlib-versions,\
790                                                      $(add-ons) \
791                                                      $(subdirs)))
792 $(common-objpfx)soversions.i: $(common-objpfx)shlib-versions.v
793         default_setname='$(filter-out %_default,$(oldest-abi:%=GLIBC_%))'; \
794         while read conf version setname; do \
795           test -n "$$version" && \
796           test `expr '$(config-machine)-$(config-vendor)-$(config-os)' \
797                      : "$$conf"` != 0 || continue; \
798           if test "x$$version" = xDEFAULT; then \
799             default_setname="$$setname"; \
800           else \
801             $(abi-default_setname) \
802             lib=`echo $$version | sed 's/=.*$$//'`; \
803             if eval test -z "\$${versioned_$${lib}}"; then \
804               eval versioned_$${lib}=yes; \
805               number=`echo $$version | sed "s/^.*=//"`; \
806               echo $$lib $$number $${setname:-$${default_setname}}; \
807             fi; \
808           fi; \
809         done < $< > $@T; exit 0
810         mv -f $@T $@
811 $(common-objpfx)soversions.mk: $(common-objpfx)soversions.i
812         (while read lib number setname; do \
813            case $$number in \
814              [0-9]*) echo "$$lib.so-version=.$$number"; \
815                      echo "all-sonames+=$$lib=$$lib.so\$$($$lib.so-version)";;\
816              *)      echo "$$lib.so-version=$$number"; \
817                      echo "all-sonames+=$$lib=\$$($$lib.so-version)";;\
818            esac; \
819          done; \
820          echo soversions.mk-done = t;) < $< > $@T; exit 0
821         mv -f $@T $@
822 endif
823 endif
825 postclean-generated += soversions.mk soversions.i \
826                        shlib-versions.v shlib-versions.v.i
828 # Generate the header containing the names of all shared libraries.
829 # We use a stamp file to avoid uncessary recompilations.
830 before-compile += $(common-objpfx)gnu/lib-names.h
831 ifeq ($(soversions.mk-done),t)
832 $(common-objpfx)gnu/lib-names.h: $(common-objpfx)gnu/lib-names.stmp; @:
833 ifneq (,$(findstring aix,$(config-os)))
834 $(common-objpfx)gnu/lib-names.stmp: $(..)sysdeps/unix/sysv/aix/gnu/lib-names.h
835         $(make-target-directory)
836         @rm -f ${@:stmp=T} $@
837         @cp $(..)sysdeps/unix/sysv/aix/gnu/lib-names.h $(common-objpfx)gnu
838         touch $@
839 else
840 $(common-objpfx)gnu/lib-names.stmp: $(common-objpfx)soversions.mk
841         $(make-target-directory)
842         @rm -f ${@:stmp=T} $@
843         (echo '/* This file is automatically generated.';\
844          echo '   It defines macros to allow user program to find the shared';\
845          echo '   library files which come as part of GNU libc.  */';\
846          echo '#ifndef __GNU_LIB_NAMES_H'; \
847          echo '#define __GNU_LIB_NAMES_H        1'; \
848          echo; \
849          (libs='$(all-sonames)';\
850           for l in $$libs; do \
851             name=`echo $$l | sed 's/.*=//'`; \
852             upname=`echo $$l | sed 's/=.*//' | \
853                     tr 'abcdefghijklmnopqrstuvwxyz-' \
854                        'ABCDEFGHIJKLMNOPQRSTUVWXYZ_'`; \
855             upname2=`echo $$name | sed 's/[.]so.*//' | \
856                      tr 'abcdefghijklmnopqrstuvwxyz-' \
857                         'ABCDEFGHIJKLMNOPQRSTUVWXYZ_'`; \
858             echo "#define       $${upname}_SO   \"$$name\""; \
859             if test $$upname != $$upname2; then \
860               echo "#define     $${upname2}_SO  \"$$name\""; \
861             fi; \
862           done;) | sort; \
863          echo; \
864          echo '#endif   /* gnu/lib-names.h */';) > ${@:stmp=T}
865         $(move-if-change) ${@:stmp=T} ${@:stmp=h}
866         touch $@
867 endif
868 endif
870 common-generated += gnu/lib-names.h gnu/lib-names.stmp
872 # The name under which the run-time dynamic linker is installed.
873 # We are currently going for the convention that `/lib/ld.so.1'
874 # names the SVR4/ELF ABI-compliant dynamic linker.
875 ifndef rtld-installed-name
876 ifdef ld.so-version
877 rtld-installed-name = $(ld.so-version)
878 else
879 rtld-installed-name = ld.so.1
880 endif
881 endif
883 ifndef rtld-version-installed-name
884 rtld-version-installed-name = ld-$(version).so
885 endif
887 endif # build-shared
890 ifeq ($(elf),yes)
891 dlfcn = dlfcn
892 ifeq ($(build-shared),yes)
893 libdl = $(common-objpfx)dlfcn/libdl.so$(libdl.so-version)
894 else
895 libdl = $(common-objpfx)dlfcn/libdl.a
896 endif
897 else
898 ifneq (,$(findstring aix,$(config-os)))
899 ifeq ($(build-shared),yes)
900 dlfcn = dlfcn
901 libdl = $(common-objpfx)dlfcn/libdl.so$(libdl.so-version)
902 else
903 # No libdl without shared libs on AIX
904 dlfcn =
905 libdl =
906 endif
907 else
908 # No ELF, no AIX - no libdl, at least for now.
909 dlfcn =
910 libdl =
911 endif
912 endif
914 # These are the subdirectories containing the library source.  The order
915 # is more or less arbitrary.  The sorting step will take care of the
916 # dependencies.  Only the $(binfmt-subdir) should always be kept at the
917 # end of the list.
918 all-subdirs = csu assert ctype locale intl catgets math setjmp signal       \
919               stdlib stdio-common libio malloc string wcsmbs time dirent \
920               grp pwd posix io termios resource misc socket sysvipc gmon    \
921               gnulib iconv iconvdata wctype manual shadow po argp           \
922               crypt $(add-ons) nss localedata timezone rt conform debug     \
923               $(sysdep-subdirs) $(dlfcn) $(binfmt-subdir)
924 all-subdirs := $(filter-out $(sysdep-inhibit-subdirs),$(all-subdirs))
926 # The mach and hurd subdirectories have many generated header files which
927 # much of the rest of the library depends on, so it is best to build them
928 # first (and mach before hurd, at that).  The before-compile additions in
929 # sysdeps/{mach,hurd}/Makefile should make it reliably work for these files
930 # not to exist when making in other directories, but it will be slower that
931 # way with more somewhat expensive `make' invocations.
932 subdirs := $(filter mach,$(subdirs)) $(filter hurd,$(subdirs)) \
933            $(filter-out mach hurd,$(subdirs))
935 ifndef avoid-generated
936 all-Subdirs-files = $(wildcard $(config-sysdirs:%=$(..)%/Subdirs))
937 $(common-objpfx)sysd-dirs: $(common-objpfx)config.make $(all-Subdirs-files)
938         $(AWK) 'BEGIN { subdirs = ""; inhibit = "" };                   \
939                 /^#/ { next };                                          \
940                 /^[^-]/ { subdirs = subdirs " " $$0 };                  \
941                 /^-/ { inhibit = inhibit " " substr($$0, 2) };          \
942                 END { printf "sysdep-subdirs =%s\n", subdirs;           \
943                       printf "sysdep-inhibit-subdirs =%s\n", inhibit;   \
944                       print "sysd-dirs-done = t" }'                     \
945                $(patsubst $<,/dev/null,$^) > $@-tmp
946         mv -f $@-tmp $@
948 all-Depend-files = $(wildcard $(..)*/Depend)
949 $(common-objpfx)sysd-sorted: $(..)scripts/gen-sorted.awk $(all-Depend-files) \
950                              $(common-objpfx)sysd-dirs $(..)Makeconfig
951         { { dirs='$(patsubst $(..)%/Depend,%,$(filter %/Depend,$^))';     \
952             for d in $$dirs; do                                           \
953               while read on; do                                           \
954                 echo "depend $$d $$on";                                   \
955               done < $(..)$$d/Depend;                                     \
956             done;                                                         \
957             for f in $(all-subdirs); do                                   \
958               echo $$f;                                                   \
959             done;                                                         \
960           } | $(AWK) -f $< &&                                             \
961           echo sysd-sorted-done = t;                                      \
962         } > $@-tmp
963         mv -f $@-tmp $@
964 endif
966 # Let sysdeps/ subdirs contain a Makeconfig fragment for us to include here.
967 sysdep-makeconfigs := $(wildcard $(patsubst %,$(..)%/Makeconfig,\
968                                             $(config-sysdirs) $(add-ons)))
970 ifneq (,$(sysdep-makeconfigs))
971 include $(sysdep-makeconfigs)
972 endif
975 endif # Makeconfig not yet included
977 # Local Variables:
978 # mode: makefile
979 # End: