* time/strptime.c [USE_IN_EXTENDED_LOCALE_MODEL]: Define __strptime_l
[glibc.git] / Makeconfig
blob2d2f895b30284185801ea3a0598a411f9085b529
1 # Copyright (C) 1991-2000,01,02 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 # We have a special subdir for each binary format.
87 # For now, only ELF is fully supported.
88 ifeq ($(elf),yes)
89 binfmt-subdir = elf
90 else
91 # This is probably better than nothing.
92 binfmt-subdir = aout
93 endif
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),\
111                                          $(wildcard \
112                                            $(dir)/Implies) \
113                                          $(patsubst %.in,%,\
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; \
120          exit 1; fi
122 # We don't want CPPFLAGS to be exported to the command running configure.
123 unexport CPPFLAGS
125 # Get the user's configuration parameters.
126 ifneq ($(wildcard $(..)configparms),)
127 include $(..)configparms
128 endif
129 ifneq ($(objpfx),)
130 ifneq ($(wildcard $(common-objpfx)configparms),)
131 include $(common-objpfx)configparms
132 endif
133 endif
135 ####
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.
139 ####
142 # Common prefix for machine-independent installation directories.
143 ifeq ($(origin prefix),undefined) # ifndef would override explicit empty value.
144 prefix = /usr/local
145 endif
147 # Decide whether we shall build the programs or not.  We always do this
148 # unless the user tells us (in configparms) or we are building for a
149 # standalone target.
150 ifndef build-programs
151 ifneq ($(config-os),none)
152 build-programs=yes
153 else
154 build-programs=no
155 endif
156 endif
158 # Common prefix for machine-dependent installation directories.
159 ifeq ($(origin exec_prefix),undefined)
160 exec_prefix = $(prefix)
161 endif
163 # Where to install the library and object files.
164 ifndef libdir
165 libdir = $(exec_prefix)/lib
166 endif
167 inst_libdir = $(install_root)$(libdir)
169 # Where to install the shared library and dynamic linker.
170 ifndef slibdir
171 slibdir = $(exec_prefix)/lib
172 endif
173 inst_slibdir = $(install_root)$(slibdir)
175 # Prefix to put on files installed in $(libdir).  For libraries `libNAME.a',
176 # the prefix is spliced between `lib' and the name, so the linker switch
177 # `-l$(libprefix)NAME' finds the library; for other files the prefix is
178 # just prepended to the whole file name.
179 ifeq ($(origin libprefix),undefined)
180 libprefix =
181 endif
183 # Where to install the header files.
184 ifndef includedir
185 includedir = $(exec_prefix)/include
186 endif
187 inst_includedir = $(install_root)$(includedir)
189 # Where to install machine-independent data files.
190 # These are the timezone database, and the locale database.
191 ifndef datadir
192 datadir = $(prefix)/share
193 endif
194 inst_datadir = $(install_root)$(datadir)
196 # Where to install the timezone data files (which are machine-independent).
197 ifndef zonedir
198 zonedir = $(datadir)/zoneinfo
199 endif
200 inst_zonedir = $(install_root)$(zonedir)
202 # Where to install the locale files.
203 ifndef localedir
204 localedir = $(libdir)/locale
205 endif
206 inst_localedir = $(install_root)$(localedir)
208 # Where to install the message catalog data files (which are
209 # machine-independent).
210 ifndef msgcatdir
211 msgcatdir = $(datadir)/locale
212 endif
213 inst_msgcatdir = $(install_root)$(msgcatdir)
215 # Where to install the locale charmap source files.
216 ifndef i18ndir
217 i18ndir = $(datadir)/i18n
218 endif
219 inst_i18ndir = $(install_root)$(i18ndir)
221 # Where to install the shared object for charset transformation.
222 ifndef gconvdir
223 gconvdir = $(libdir)/gconv
224 endif
225 inst_gconvdir = $(install_root)$(gconvdir)
227 # Where to install programs.
228 ifndef bindir
229 bindir = $(exec_prefix)/bin
230 endif
231 inst_bindir = $(install_root)$(bindir)
233 # Where to install internal programs.
234 ifndef libexecdir
235 libexecdir = $(exec_prefix)/libexec
236 endif
237 inst_libexecdir = $(install_root)$(libexecdir)
239 # Where to install administrative programs.
240 ifndef rootsbindir
241 rootsbindir = $(exec_prefix)/sbin
242 endif
243 inst_rootsbindir = $(install_root)$(rootsbindir)
245 ifndef sbindir
246 sbindir = $(exec_prefix)/sbin
247 endif
248 inst_sbindir = $(install_root)$(sbindir)
250 # Where to install the Info files.
251 ifndef infodir
252 infodir = $(prefix)/info
253 endif
254 inst_infodir = $(install_root)$(infodir)
256 # Where to install default configuration files.  These include the local
257 # timezone specification and network data base files.
258 ifndef sysconfdir
259 sysconfdir = $(prefix)/etc
260 endif
261 inst_sysconfdir = $(install_root)$(sysconfdir)
263 # What timezone should be the installed default (e.g., US/Eastern).
264 # Run `make -C time echo-zonenames' to see a list of available zone names.
265 # The local timezone can be changed with `zic -l TIMEZONE' at any time.
266 ifndef localtime
267 localtime = Factory
268 endif
270 # Where to install the "localtime" timezone file; this is the file whose
271 # contents $(localtime) specifies.  If this is a relative pathname, it is
272 # relative to $(zonedir).  It is a good idea to put this somewhere
273 # other than there, so the zoneinfo directory contains only universal data,
274 # localizing the configuration data elsewhere.
275 ifndef localtime-file
276 localtime-file = $(sysconfdir)/localtime
277 inst_localtime-file = $(install_root)$(localtime-file)
278 endif
280 # What to use for leap second specifications in compiling the default
281 # timezone files.  Set this to `/dev/null' for no leap second handling as
282 # 1003.1 requires, or to `leapseconds' for proper leap second handling.
283 # Both zone flavors are always available as `posix/ZONE' and `right/ZONE'.
284 # This variable determines the default: if it's `/dev/null',
285 # ZONE==posix/ZONE; if it's `leapseconds', ZONE==right/ZONE.
286 ifndef leapseconds
287 leapseconds = /dev/null
288 endif
290 # What timezone's DST rules should be used when a POSIX-style TZ
291 # environment variable doesn't specify any rules.  For 1003.1 compliance
292 # this timezone must use rules that are as U.S. federal law defines DST.
293 # Run `make -C time echo-zonenames' to see a list of available zone names.
294 # This setting can be changed with `zic -p TIMEZONE' at any time.
295 # If you want POSIX.1 compatibility, use `America/New_York'.
296 ifndef posixrules
297 posixrules = America/New_York
298 endif
300 # Where to install the "posixrules" timezone file; this is file
301 # whose contents $(posixrules) specifies.  If this is a relative
302 # pathname, it is relative to $(zonedir).
303 ifndef posixrules-file
304 posixrules-file = posixrules
305 endif
308 # Directory where your system's native header files live.
309 # This is used on Unix systems to generate some GNU libc header files.
310 ifndef sysincludedir
311 sysincludedir = /usr/include
312 endif
315 # Commands to install files.
316 ifndef INSTALL_DATA
317 INSTALL_DATA = $(INSTALL) -m 644
318 endif
319 ifndef INSTALL_SCRIPT
320 INSTALL_SCRIPT = $(INSTALL)
321 endif
322 ifndef INSTALL_PROGRAM
323 INSTALL_PROGRAM = $(INSTALL)
324 endif
325 ifndef INSTALL
326 INSTALL = install
327 endif
330 # The name of the C compiler.
331 # If you've got GCC, and it works, use it.
332 ifeq ($(origin CC),default)
333 CC := gcc
334 endif
336 # The name of the C compiler to use for compilations of programs to run on
337 # the host that is building the library.  If you set CC to a
338 # cross-compiler, you must set this to the normal compiler.
339 ifndef BUILD_CC
340 BUILD_CC = $(CC)
341 endif
343 # Default flags to pass the C compiler.
344 ifndef default_cflags
345 ifeq ($(release),stable)
346 default_cflags := -g -O2
347 else
348 default_cflags := -g -O
349 endif
350 endif
352 # Flags to pass the C compiler when assembling preprocessed assembly code
353 # (`.S' files).  On some systems the assembler doesn't understand the `#' line
354 # directives the preprocessor produces.  If you have troubling compiling
355 # assembly code, try using -P here to suppress these directives.
356 ifndef asm-CPPFLAGS
357 asm-CPPFLAGS =
358 endif
360 # ELF always supports init/fini sections
361 ifeq ($(elf),yes)
362 have-initfini = yes
363 endif
365 # Installed name of the startup code.
366 ifneq ($(have-initfini),yes)
367 # When not having init/fini, there is just one startfile, called crt0.o.
368 start-installed-name = crt0.o
369 else
370 # On systems having init/fini, crt0.o is called crt1.o, and there are
371 # some additional bizarre files.
372 start-installed-name = crt1.o
373 endif
374 # On systems that do not need a special startfile for statically linked
375 # binaries, simply set it to the normal name.
376 ifndef static-start-installed-name
377 static-start-installed-name = $(start-installed-name)
378 endif
380 ifeq (yesyesyes,$(build-shared)$(elf)$(have-z-combreloc))
381 combreloc-LDFLAGS = -Wl,-z,combreloc
382 LDFLAGS.so += $(combreloc-LDFLAGS)
383 LDFLAGS-rtld += $(combreloc-LDFLAGS)
384 endif
386 # Command for linking programs with the C library.
387 ifndef +link
388 +link = $(CC) -nostdlib -nostartfiles -o $@ \
389               $(sysdep-LDFLAGS) $(config-LDFLAGS) $(LDFLAGS) $(LDFLAGS-$(@F)) \
390               $(combreloc-LDFLAGS) \
391               $(addprefix $(csu-objpfx),$(start-installed-name)) \
392               $(+preinit) $(+prector) \
393               $(filter-out $(addprefix $(csu-objpfx),start.o \
394                                                      $(start-installed-name))\
395                            $(+preinit) $(link-extra-libs) \
396                            $(common-objpfx)libc% $(+postinit),$^) \
397               $(link-extra-libs) $(link-libc) $(+postctor) $(+postinit)
398 endif
399 # Command for statically linking programs with the C library.
400 ifndef +link-static
401 +link-static = $(CC) -nostdlib -nostartfiles -static -o $@ \
402               $(sysdep-LDFLAGS) $(LDFLAGS)  \
403               $(addprefix $(csu-objpfx),$(static-start-installed-name)) \
404               $(+preinit) $(+prector) \
405               $(filter-out $(addprefix $(csu-objpfx),start.o \
406                                                      $(start-installed-name))\
407                            $(+preinit) $(link-extra-libs-static) \
408                            $(common-objpfx)libc% $(+postinit),$^) \
409               $(link-extra-libs-static) $(link-libc-static) $(+postctor) $(+postinit)
410 endif
411 # Command for statically linking bounded-pointer programs with the C library.
412 ifndef +link-bounded
413 +link-bounded = $(CC) -nostdlib -nostartfiles -static -fbounded-pointers -o $@ \
414               $(sysdep-LDFLAGS) $(LDFLAGS)  \
415               $(addprefix $(csu-objpfx),b$(static-start-installed-name)) \
416               $(+preinit) $(+prector) \
417               $(filter-out $(addprefix $(csu-objpfx),start.ob \
418                                                      $(start-installed-name))\
419                            $(+preinit) $(link-extra-libs-bounded) \
420                            $(common-objpfx)libc% $(+postinit),$^) \
421               $(link-extra-libs-bounded) $(link-libc-bounded) $(+postctor) $(+postinit)
422 endif
423 ifndef config-LDFLAGS
424 ifeq (yesyes,$(build-shared)$(elf))
425 config-LDFLAGS = -Wl,-dynamic-linker=$(slibdir)/$(rtld-installed-name)
426 endif
427 endif
428 ifndef link-libc
429 ifeq (yes,$(build-shared))
430 ifeq ($(elf),yes)
431 # We need the versioned name of libc.so in the deps of $(others) et al
432 # so that the symlink to libc.so is created before anything tries to
433 # run the linked programs.
434 link-libc = -Wl,-rpath-link=$(rpath-link) \
435             $(common-objpfx)libc.so$(libc.so-version) \
436             $(common-objpfx)$(patsubst %,$(libtype.oS),c) $(gnulib)
437 # This is how to find at build-time things that will be installed there.
438 rpath-dirs = math elf dlfcn nss nis rt resolv crypt
439 else
440 ifneq (,$(findstring aix,$(config-os)))
441 link-libc = $(common-objpfx)libc.a \
442             $(common-objpfx)$(patsubst %,$(libtype.oS),c) $(gnulib)
443 rpath-dirs = math dlfcn nss nis rt resolv crypt
444 endif
445 endif
446 rpath-link = \
447 $(common-objdir):$(subst $(empty) ,:,$(patsubst ../$(subdir),.,$(rpath-dirs:%=$(common-objpfx)%)))
448 elfobjdir := $(patsubst ../$(subdir),.,$(common-objpfx)elf)
449 else
450 nssobjdir := $(patsubst ../$(subdir),.,$(common-objpfx)nss)
451 resolvobjdir := $(patsubst ../$(subdir),.,$(common-objpfx)resolv)
452 link-libc = $(common-objpfx)libc.a $(otherlibs) $(gnulib) $(common-objpfx)libc.a $(gnulib)
453 endif
454 endif
456 # Differences in the linkers on the various platforms.
457 ifeq ($(elf),yes)
458 LDFLAGS-rpath-ORIGIN = -Wl,-rpath,'$$ORIGIN'
459 LDFLAGS-soname-fname = -Wl,-soname,$(@F)
460 LDFLAGS-rdynamic = -rdynamic
461 LDFLAGS-Bsymbolic = -Bsymbolic
462 else
463 ifneq (,$(findstring aix,$(config-os)))
464 LDFLAGS-rpath-ORIGIN =
465 LDFLAGS-soname-fname =
466 LDFLAGS-rdynamic = -Wl,-bdynamic
467 LDFLAGS-Bsymbolic = -Wl,-bsymbolic
468 endif
469 endif
471 # Choose the default search path for the dynamic linker based on
472 # where we will install libraries.
473 ifneq ($(libdir),$(slibdir))
474 default-rpath = $(slibdir):$(libdir)
475 else
476 default-rpath = $(libdir)
477 endif
479 ifndef link-extra-libs
480 ifeq (yes,$(build-shared))
481 ifneq ($(common-objpfx),$(objpfx))
482 link-extra-libs = $(foreach lib,$(LDLIBS-$(@F)),\
483         $(wildcard $(common-objpfx)$(lib).so$($(notdir $(lib)).so-version) \
484                    $(objpfx)$(lib).so$($(notdir $(lib)).so-version)))
485 else
486 link-extra-libs = $(foreach lib,$(LDLIBS-$(@F)),$(common-objpfx)$(lib).so$($(notdir $(lib)).so-version))
487 endif
488 else
489 link-extra-libs = $(foreach lib,$(LDLIBS-$(@F)),$(common-objpfx)$(lib).a)
490 endif
491 endif
493 # The static libraries.
494 ifeq (yes,$(build-static))
495 link-libc-static = $(common-objpfx)libc.a $(gnulib) $(common-objpfx)libc.a
496 link-extra-libs-static = $(foreach lib,$(LDLIBS-$(@F)),$(common-objpfx)$(lib).a)
497 else
498 ifeq (yes,$(build-shared))
499 # We can try to link the programs with lib*_pic.a...
500 link-libc-static = $(gnulib) $(common-objpfx)libc_pic.a
501 link-extra-libs-static = $(link-extra-libs)
502 endif
503 endif
504 link-libc-bounded = $(common-objpfx)libc_b.a $(gnulib) $(common-objpfx)libc_b.a
505 link-extra-libs-bounded = $(foreach lib,$(LDLIBS-$(@F:%-bp=%)),$(common-objpfx)$(lib)_b.a)
507 ifndef gnulib
508 gnulib := -lgcc
509 endif
510 ifeq ($(elf),yes)
511 +preinit = $(addprefix $(csu-objpfx),crti.o)
512 +postinit = $(addprefix $(csu-objpfx),crtn.o)
513 +prector = `$(CC) --print-file-name=crtbegin.o`
514 +postctor = `$(CC) --print-file-name=crtend.o`
515 +interp = $(addprefix $(elf-objpfx),interp.os)
516 endif
517 csu-objpfx = $(common-objpfx)csu/
518 elf-objpfx = $(common-objpfx)elf/
520 # How to run a program we just linked with our library.
521 # The program binary is assumed to be $(word 2,$^).
522 built-program-file = $(dir $(word 2,$^))$(notdir $(word 2,$^))
523 ifeq (yesyes,$(build-shared)$(elf))
524 comma = ,
525 sysdep-library-path = \
526 $(subst $(empty) ,:,$(strip $(patsubst -Wl$(comma)-rpath-link=%, %,\
527                                        $(filter -Wl$(comma)-rpath-link=%,\
528                                                 $(sysdep-LDFLAGS)))))
529 run-program-prefix = $(if $(findstring $(notdir $(built-program-file)), $(tests-static)),, \
530                           $(elf-objpfx)$(rtld-installed-name) \
531                           --library-path $(rpath-link)$(patsubst %,:%,$(sysdep-library-path)))
532 else
533 run-program-prefix =
534 endif
535 # Never use $(run-program-prefix) for the statically-linked %-bp test programs
536 built-program-cmd = $(patsubst %,$(run-program-prefix),\
537                         $(filter-out %-bp,$(built-program-file))) \
538                     $(built-program-file)
540 ifndef LD
541 LD := ld -X
542 endif
544 ifndef  RANLIB
545 RANLIB = ranlib
546 endif
548 # Extra flags to pass to GCC.
549 ifeq ($(all-warnings),yes)
550 +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
551 else
552 +gccwarn := -Wall -Wwrite-strings -Winline -Wstrict-prototypes
553 endif
555 # This is the program that generates makefile
556 # dependencies from C source files.
557 ifndef +mkdep
558 +mkdep = $(CC) -M
559 endif
561 # The program that makes Emacs-style TAGS files.
562 ETAGS   := etags
564 # The `m4' macro processor; this is used by sysdeps/sparc/Makefile (and
565 # perhaps others) to preprocess assembly code in some cases.
566 M4 = m4
568 # To force installation of files even if they are older than the
569 # installed files.  This variable is included in the dependency list
570 # of all installation targets.
571 ifeq ($(force-install),yes)
572 +force = force-install
573 else
574 +force =
575 endif
577 ####
578 #### End of configuration variables.
579 ####
581 # This tells some versions of GNU make before 3.63 not to export all variables.
582 .NOEXPORT:
584 # We want to echo the commands we're running without
585 # umpteen zillion filenames along with it (we use `...' instead)
586 # but we don't want this echoing done when the user has said
587 # he doesn't want to see commands echoed by using -s.
588 ifneq   "$(findstring s,$(MAKEFLAGS))" ""       # if -s
589 +cmdecho        := echo >/dev/null
590 else                                            # not -s
591 +cmdecho        := echo
592 endif                                           # -s
594 # These are the flags given to the compiler to tell
595 # it what sort of optimization and/or debugging output to do.
596 ifndef  +cflags
597 # If `CFLAGS' was defined, use that.
598 ifdef           CFLAGS
599 +cflags := $(filter-out -I%,$(CFLAGS))
600 endif           # CFLAGS
601 endif   # +cflags
603 # If none of the above worked, default to "-g -O".
604 ifeq    "$(strip $(+cflags))" ""
605 +cflags := $(default_cflags)
606 endif   # $(+cflags) == ""
608 +cflags := $(+cflags) $(+gccwarn)
609 +gcc-nowarn := -w
611 # Don't duplicate options if we inherited variables from the parent.
612 +cflags := $(sort $(+cflags))
615 # These are flags given to the C compiler to tell it to look for include
616 # files (including ones given in angle brackets) in the current directory,
617 # in the parent library source directory and in the include directory.
618 # `+sysdep-includes' will be defined by Makerules.
619 +includes = -I$(..)include -I. \
620             $(patsubst %/,-I%,$(objpfx)) $(patsubst %/,-I%,$(..)) \
621             $(libio-include) $(includes) \
622             $(+sysdep-includes) $(last-includes) $(sysincludes)
624 # Since libio has several internal header files, we use a -I instead
625 # of many little headers in the include directory.
626 libio-include = -I$(..)libio
628 # These are the variables that the implicit compilation rules use.
629 CPPFLAGS = $($(subdir)-CPPFLAGS) $(+includes) $(defines) \
630            -include $(..)include/libc-symbols.h $(sysdep-CPPFLAGS) \
631            $(CPPFLAGS-$(suffix $@)) $(CPPFLAGS-$(<F)) $(CPPFLAGS-$(@F)) \
632            $(CPPFLAGS-$(patsubst %$(suffix $@),%,$(@F)))
633 override CFLAGS = $(filter-out %frame-pointer,$(+cflags)) $(sysdep-CFLAGS) \
634                   $(CFLAGS-$(suffix $@)) $(CFLAGS-$(<F)) $(CFLAGS-$(@F))
636 # If everything is compiled with -fPIC (implicitly) we must tell this by
637 # defining the PIC symbol.
638 ifeq (yes,$(build-pic-default))
639 pic-default = -DPIC
640 endif
642 # Enable object files for different versions of the library.
643 # Various things use $(object-suffixes) to know what all to make.
644 # The compilation rules use $(CPPFLAGS-${SUFFIX}) and $(CFLAGS-${SUFFIX})
645 # to pass different flags for each flavor.
646 libtypes = $(foreach o,$(object-suffixes-for-libc),$(libtype$o))
647 all-object-suffixes := .o .os .op .og .ob .oS
648 object-suffixes :=
649 CPPFLAGS-.o = $(pic-default)
650 CFLAGS-.o = $(filter %frame-pointer,$(+cflags))
651 ifeq (yes,$(build-static))
652 libtype.o := lib%.a
653 object-suffixes += .o
654 endif
655 ifeq (yes,$(build-shared))
656 # Under --enable-shared, we will build a shared library of PIC objects.
657 # The PIC object files are named foo.os.
658 object-suffixes += .os
659 CPPFLAGS-.os = -DPIC -DSHARED
660 CFLAGS-.os = $(filter %frame-pointer,$(+cflags)) $(pic-ccflag)
661 libtype.os := lib%_pic.a
662 # This can be changed by a sysdep makefile
663 pic-ccflag = -fPIC
664 endif
665 ifeq (yes,$(build-profile))
666 # Under --enable-profile, we will build a static library of profiled objects.
667 # The profiled object files are named foo.op.
668 object-suffixes += .op
669 CPPFLAGS-.op = -DPROF $(pic-default)
670 CFLAGS-.op = -pg
671 libtype.op = lib%_p.a
672 endif
673 ifeq (yes,$(build-omitfp))
674 # Under --enable-omitfp, we build the library optimized without
675 # debugging information using -fomit-frame-pointer, and build an extra
676 # library with debugging information.  The debuggable objects are named foo.og.
677 object-suffixes += .og
678 CPPFLAGS-.og = $(pic-default)
679 CFLAGS-.og = -g
680 CFLAGS-.o = $(filter %frame-pointer,$(+cflags)) -g0 -O99 -fomit-frame-pointer -D__USE_STRING_INLINES
681 CFLAGS-.os += -g0 -O99 -fomit-frame-pointer -D__USE_STRING_INLINES
682 libtype.og = lib%_g.a
683 endif
685 bppfx = BP-
686 ifeq (yes,$(build-bounded))
687 # Under --enable-bounded, we build the library with `-fbounded-pointers -g'
688 # to runtime bounds checking.  The bounded-pointer objects are named foo.ob.
689 # We disable sibling-call optimizations so that stack traces will be complete
690 # and thus aid debugging, since after all, BPs are a debugging tool.
691 object-suffixes += .ob
692 CPPFLAGS-.ob = -fbounded-pointers $(pic-default)
693 CFLAGS-.ob = -g -O2 -fno-optimize-sibling-calls -fno-strict-aliasing
694 libtype.ob = lib%_b.a
695 endif
697 object-suffixes-for-libc := $(object-suffixes)
699 ifeq (yes,$(build-shared))
700 # Build special library that contains the static-only routines for libc.
701 object-suffixes-for-libc += .oS
703 # Must build the routines as PIC, though, because they can end up in (users')
704 # shared objects.  We don't want to use CFLAGS-os because users may, for
705 # example, make that processor-specific.
706 CFLAGS-.oS = $(CFLAGS-.o) $(pic-ccflag)
707 CPPFLAGS-.oS = $(CPPFLAGS-.o) -DPIC
708 libtype.oS = lib%_nonshared.a
709 endif
712 +gnu-stabs = $(shell echo>&2 '*** BARF ON ME')
714 ifndef BUILD_CC
715 BUILD_CC = $(CC)
716 endif
718 move-if-change = $(SHELL) $(..)scripts/move-if-change
720 -include $(common-objpfx)sysd-dirs
722 ifeq ($(sysd-dirs-done),t)
723 -include $(common-objpfx)sysd-sorted
724 subdirs = $(sorted-subdirs)
725 endif
727 ifeq (yes, $(build-shared))
729 # This is a pair of implicit rules to preprocess a file with # comments,
730 # %ifdef et al, based on config.h settings or other %include'd files.
731 # We use chained rules instead of a pipeline here so that we can properly
732 # check the exit status of cpp rather than using its bad output when there
733 # is a preprocessing error.  Another rule should depend on the output file
734 # `FOO.v', and along with that `FOO.v.i' should be given dependencies
735 # listing both its input files, and any header files that it may reference
736 # (but no commands).
737 %.v.i: $(common-objpfx)config.h
738         sed '/^[        ]*#/d;s/^[      ]*%/#/' $(filter-out FORCE %.h,$^) \
739         | $(CC) -E -undef -I$(common-objdir) -I$(..)include \
740                    -include $(common-objpfx)config.h \
741                    -DASSEMBLER -x assembler-with-cpp - \
742                    > $@T
743         mv -f $@T $@
744 %.v: %.v.i
745         sed '/^[        ]*#/d;/^[       ]*$$/d' $< > $@T
746         mv -f $@T $@
748 # Process the shlib-versions file, which tells us what shared library
749 # version numbers to use when we install shared objects on this system.
750 # We need to wait until $(subdirs) is complete.
751 ifeq ($(sysd-sorted-done),t)
752 -include $(common-objpfx)soversions.mk
753 ifndef avoid-generated
754 $(common-objpfx)shlib-versions.v.i: \
755         $(..)shlib-versions $(wildcard $(patsubst %, $(..)%/shlib-versions,\
756                                                      $(add-ons) \
757                                                      $(subdirs)))
758 $(common-objpfx)soversions.i: $(common-objpfx)shlib-versions.v
759         default_setname='$(filter-out %_default,$(oldest-abi:%=GLIBC_%))'; \
760         while read conf version setname; do \
761           test -n "$$version" && \
762           test `expr '$(config-machine)-$(config-vendor)-$(config-os)' \
763                      : "$$conf"` != 0 || continue; \
764           if test "x$$version" = xDEFAULT; then \
765             default_setname="$$setname"; \
766           else \
767             $(abi-default_setname) \
768             lib=`echo $$version | sed 's/=.*$$//'`; \
769             if eval test -z "\$${versioned_$${lib}}"; then \
770               eval versioned_$${lib}=yes; \
771               number=`echo $$version | sed "s/^.*=//"`; \
772               echo $$lib $$number $${setname:-$${default_setname}}; \
773             fi; \
774           fi; \
775         done < $< > $@T; exit 0
776         mv -f $@T $@
777 $(common-objpfx)soversions.mk: $(common-objpfx)soversions.i
778         (while read lib number setname; do \
779            case $$number in \
780              [0-9]*) echo "$$lib.so-version=.$$number"; \
781                      echo "all-sonames+=$$lib=$$lib.so\$$($$lib.so-version)";;\
782              *)      echo "$$lib.so-version=$$number"; \
783                      echo "all-sonames+=$$lib=\$$($$lib.so-version)";;\
784            esac; \
785          done; \
786          echo soversions.mk-done = t;) < $< > $@T; exit 0
787         mv -f $@T $@
788 endif
789 endif
791 postclean-generated += soversions.mk soversions.i \
792                        shlib-versions.v shlib-versions.v.i
794 # Generate the header containing the names of all shared libraries.
795 # We use a stamp file to avoid uncessary recompilations.
796 before-compile += $(common-objpfx)gnu/lib-names.h
797 ifeq ($(soversions.mk-done),t)
798 $(common-objpfx)gnu/lib-names.h: $(common-objpfx)gnu/lib-names.stmp; @:
799 ifneq (,$(findstring aix,$(config-os)))
800 $(common-objpfx)gnu/lib-names.stmp: $(..)sysdeps/unix/sysv/aix/gnu/lib-names.h
801         $(make-target-directory)
802         @rm -f ${@:stmp=T} $@
803         @cp $(..)sysdeps/unix/sysv/aix/gnu/lib-names.h $(common-objpfx)gnu
804         touch $@
805 else
806 $(common-objpfx)gnu/lib-names.stmp: $(common-objpfx)soversions.mk
807         $(make-target-directory)
808         @rm -f ${@:stmp=T} $@
809         (echo '/* This file is automatically generated.';\
810          echo '   It defines macros to allow user program to find the shared';\
811          echo '   library files which come as part of GNU libc.  */';\
812          echo '#ifndef __GNU_LIB_NAMES_H'; \
813          echo '#define __GNU_LIB_NAMES_H        1'; \
814          echo; \
815          (libs='$(all-sonames)';\
816           for l in $$libs; do \
817             name=`echo $$l | sed 's/.*=//'`; \
818             upname=`echo $$l | sed 's/=.*//' | \
819                     tr 'abcdefghijklmnopqrstuvwxyz-' \
820                        'ABCDEFGHIJKLMNOPQRSTUVWXYZ_'`; \
821             upname2=`echo $$name | sed 's/[.]so.*//' | \
822                      tr 'abcdefghijklmnopqrstuvwxyz-' \
823                         'ABCDEFGHIJKLMNOPQRSTUVWXYZ_'`; \
824             echo "#define       $${upname}_SO   \"$$name\""; \
825             if test $$upname != $$upname2; then \
826               echo "#define     $${upname2}_SO  \"$$name\""; \
827             fi; \
828           done;) | sort; \
829          echo; \
830          echo '#endif   /* gnu/lib-names.h */';) > ${@:stmp=T}
831         $(move-if-change) ${@:stmp=T} ${@:stmp=h}
832         touch $@
833 endif
834 endif
836 common-generated += gnu/lib-names.h gnu/lib-names.stmp
838 # The name under which the run-time dynamic linker is installed.
839 # We are currently going for the convention that `/lib/ld.so.1'
840 # names the SVR4/ELF ABI-compliant dynamic linker.
841 ifndef rtld-installed-name
842 ifdef ld.so-version
843 rtld-installed-name = $(ld.so-version)
844 else
845 rtld-installed-name = ld.so.1
846 endif
847 endif
849 ifndef rtld-version-installed-name
850 rtld-version-installed-name = ld-$(version).so
851 endif
853 endif # build-shared
856 ifeq ($(elf),yes)
857 dlfcn = dlfcn
858 ifeq ($(build-shared),yes)
859 libdl = $(common-objpfx)dlfcn/libdl.so$(libdl.so-version)
860 else
861 libdl = $(common-objpfx)dlfcn/libdl.a
862 endif
863 else
864 ifneq (,$(findstring aix,$(config-os)))
865 ifeq ($(build-shared),yes)
866 dlfcn = dlfcn
867 libdl = $(common-objpfx)dlfcn/libdl.so$(libdl.so-version)
868 else
869 # No libdl without shared libs on AIX
870 dlfcn =
871 libdl =
872 endif
873 else
874 # No ELF, no AIX - no libdl, at least for now.
875 dlfcn =
876 libdl =
877 endif
878 endif
880 # These are the subdirectories containing the library source.  The order
881 # is more or less arbitrary.  The sorting step will take care of the
882 # dependencies.  Only the $(binfmt-subdir) should always be kept at the
883 # end of the list.
884 all-subdirs = csu assert ctype locale intl catgets math setjmp signal       \
885               stdlib stdio-common libio malloc string wcsmbs time dirent \
886               grp pwd posix io termios resource misc socket sysvipc gmon    \
887               gnulib iconv iconvdata wctype manual shadow po argp           \
888               crypt $(add-ons) nss localedata timezone rt conform debug     \
889               $(sysdep-subdirs) $(dlfcn) $(binfmt-subdir)
890 all-subdirs := $(filter-out $(sysdep-inhibit-subdirs),$(all-subdirs))
892 # The mach and hurd subdirectories have many generated header files which
893 # much of the rest of the library depends on, so it is best to build them
894 # first (and mach before hurd, at that).  The before-compile additions in
895 # sysdeps/{mach,hurd}/Makefile should make it reliably work for these files
896 # not to exist when making in other directories, but it will be slower that
897 # way with more somewhat expensive `make' invocations.
898 subdirs := $(filter mach,$(subdirs)) $(filter hurd,$(subdirs)) \
899            $(filter-out mach hurd,$(subdirs))
901 ifndef avoid-generated
902 all-Subdirs-files = $(wildcard $(config-sysdirs:%=$(..)%/Subdirs))
903 $(common-objpfx)sysd-dirs: $(common-objpfx)config.make $(all-Subdirs-files)
904         $(AWK) 'BEGIN { subdirs = ""; inhibit = "" };                   \
905                 /^#/ { next };                                          \
906                 /^[^-]/ { subdirs = subdirs " " $$0 };                  \
907                 /^-/ { inhibit = inhibit " " substr($$0, 2) };          \
908                 END { printf "sysdep-subdirs =%s\n", subdirs;           \
909                       printf "sysdep-inhibit-subdirs =%s\n", inhibit;   \
910                       print "sysd-dirs-done = t" }'                     \
911                $(patsubst $<,/dev/null,$^) > $@-tmp
912         mv -f $@-tmp $@
914 all-Depend-files = $(wildcard $(..)*/Depend)
915 $(common-objpfx)sysd-sorted: $(..)scripts/gen-sorted.awk $(all-Depend-files) \
916                              $(common-objpfx)sysd-dirs $(..)Makeconfig
917         { { dirs='$(patsubst $(..)%/Depend,$(..)%,$(filter %/Depend,$^))';\
918             for d in $$dirs; do                                           \
919               while read on; do                                           \
920                 echo "depend $$d $$on";                                   \
921               done < $$d/Depend;                                          \
922             done;                                                         \
923             for f in $(all-subdirs); do                                   \
924               echo $$f;                                                   \
925             done;                                                         \
926           } | $(AWK) -f $< &&                                             \
927           echo sysd-sorted-done = t;                                      \
928         } > $@-tmp
929         mv -f $@-tmp $@
930 endif
932 # Let sysdeps/ subdirs contain a Makeconfig fragment for us to include here.
933 sysdep-makeconfigs := $(wildcard $(patsubst %,$(..)%/Makeconfig,\
934                                             $(config-sysdirs) $(add-ons)))
936 ifneq (,$(sysdep-makeconfigs))
937 include $(sysdep-makeconfigs)
938 endif
941 endif # Makeconfig not yet included
943 # Local Variables:
944 # mode: makefile
945 # End: