Update.
[glibc.git] / Makeconfig
blobf087137d1bf2ba7a9aa668dde960847901a916f7
1 # Copyright (C) 1991-1999,2000 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 Library General Public License as
6 # published by the Free Software Foundation; either version 2 of the
7 # 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 # Library General Public License for more details.
14 # You should have received a copy of the GNU Library General Public
15 # License along with the GNU C Library; see the file COPYING.LIB.  If not,
16 # write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 # Boston, MA 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 # Set this to either `stdio' or `libio', to compile in either GNU stdio
143 # or GNU libio.
144 ifndef stdio
145 stdio = stdio
146 endif
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 = $(exec_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_PROGRAM
326 INSTALL_PROGRAM = $(INSTALL)
327 endif
328 ifndef INSTALL
329 INSTALL = install
330 endif
333 # The name of the C compiler.
334 # If you've got GCC, and it works, use it.
335 ifeq ($(origin CC),default)
336 CC := gcc
337 endif
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.
342 ifndef BUILD_CC
343 BUILD_CC = $(CC)
344 endif
346 # Default flags to pass the C compiler.
347 ifndef default_cflags
348 default_cflags := -g -O
349 endif
351 # Flags to pass the C compiler when assembling preprocessed assembly code
352 # (`.S' files).  On some systems the assembler doesn't understand the `#' line
353 # directives the preprocessor produces.  If you have troubling compiling
354 # assembly code, try using -P here to suppress these directives.
355 ifndef asm-CPPFLAGS
356 asm-CPPFLAGS =
357 endif
359 # ELF always supports init/fini sections
360 ifeq ($(elf),yes)
361 have-initfini = yes
362 endif
364 # Installed name of the startup code.
365 ifneq ($(have-initfini),yes)
366 # When not having init/fini, there is just one startfile, called crt0.o.
367 start-installed-name = crt0.o
368 else
369 # On systems having init/fini, crt0.o is called crt1.o, and there are
370 # some additional bizarre files.
371 start-installed-name = crt1.o
372 endif
373 # On systems that do not need a special startfile for statically linked
374 # binaries, simply set it to the normal name.
375 ifndef static-start-installed-name
376 static-start-installed-name = $(start-installed-name)
377 endif
379 # Command for linking programs with the C library.
380 ifndef +link
381 +link = $(CC) -nostdlib -nostartfiles -o $@ \
382               $(sysdep-LDFLAGS) $(config-LDFLAGS) $(LDFLAGS) $(LDFLAGS-$(@F)) \
383               $(addprefix $(csu-objpfx),$(start-installed-name)) \
384               $(+preinit) $(+prector) \
385               $(filter-out $(addprefix $(csu-objpfx),start.o \
386                                                      $(start-installed-name))\
387                            $(+preinit) $(link-extra-libs) \
388                            $(common-objpfx)libc% $(+postinit),$^) \
389               $(link-extra-libs) $(link-libc) $(+postctor) $(+postinit)
390 endif
391 # Command for statically linking programs with the C library.
392 ifndef +link-static
393 +link-static = $(CC) -nostdlib -nostartfiles -static -o $@ \
394               $(sysdep-LDFLAGS) $(LDFLAGS)  \
395               $(addprefix $(csu-objpfx),$(static-start-installed-name)) \
396               $(+preinit) $(+prector) \
397               $(filter-out $(addprefix $(csu-objpfx),start.o \
398                                                      $(start-installed-name))\
399                            $(+preinit) $(link-extra-libs-static) \
400                            $(common-objpfx)libc% $(+postinit),$^) \
401               $(link-extra-libs-static) $(link-libc-static) $(+postctor) $(+postinit)
402 endif
403 ifndef config-LDFLAGS
404 ifeq (yes,$(build-shared))
405 config-LDFLAGS = -Wl,-dynamic-linker=$(slibdir)/$(rtld-installed-name)
406 endif
407 endif
408 ifndef link-libc
409 ifeq (yes,$(build-shared))
410 # We need the versioned name of libc.so in the deps of $(others) et al
411 # so that the symlink to libc.so is created before anything tries to
412 # run the linked programs.
413 link-libc = -Wl,-rpath-link=$(rpath-link) \
414             $(common-objpfx)libc.so$(libc.so-version) \
415             $(common-objpfx)$(patsubst %,$(libtype.oS),c) $(gnulib)
416 # This is how to find at build-time things that will be installed there.
417 rpath-dirs = math elf dlfcn nss nis rt resolv crypt
418 rpath-link = \
419 $(common-objdir):$(subst $(empty) ,:,$(patsubst ../$(subdir),.,$(rpath-dirs:%=$(common-objpfx)%)))
420 elfobjdir := $(patsubst ../$(subdir),.,$(common-objpfx)elf)
421 else
422 nssobjdir := $(patsubst ../$(subdir),.,$(common-objpfx)nss)
423 resolvobjdir := $(patsubst ../$(subdir),.,$(common-objpfx)resolv)
424 link-libc = $(common-objpfx)libc.a $(otherlibs) $(gnulib) $(common-objpfx)libc.a $(gnulib)
425 endif
426 endif
428 # Choose the default search path for the dynamic linker based on
429 # where we will install libraries.
430 ifneq ($(libdir),$(slibdir))
431 default-rpath = $(slibdir):$(libdir)
432 else
433 default-rpath = $(libdir)
434 endif
436 ifndef link-extra-libs
437 ifeq (yes,$(build-shared))
438 ifneq ($(common-objpfx),$(objpfx))
439 link-extra-libs = $(foreach lib,$(LDLIBS-$(@F)),\
440         $(wildcard $(common-objpfx)$(lib).so$($(notdir $(lib)).so-version) \
441                    $(objpfx)$(lib).so$($(notdir $(lib)).so-version)))
442 else
443 link-extra-libs = $(foreach lib,$(LDLIBS-$(@F)),$(common-objpfx)$(lib).so$($(notdir $(lib)).so-version))
444 endif
445 else
446 link-extra-libs = $(foreach lib,$(LDLIBS-$(@F)),$(common-objpfx)$(lib).a)
447 endif
448 endif
450 # The static libraries.
451 ifeq (yes,$(build-static))
452 link-libc-static = $(common-objpfx)libc.a $(gnulib) $(common-objpfx)libc.a
453 link-extra-libs-static = $(foreach lib,$(LDLIBS-$(@F)),$(common-objpfx)$(lib).a)
454 else
455 ifeq (yes,$(build-shared))
456 # We can try to link the programs with lib*_pic.a...
457 link-libc-static = $(gnulib) $(common-objpfx)libc_pic.a
458 link-extra-libs-static = $(link-extra-libs)
459 endif
460 endif
462 ifndef gnulib
463 gnulib := -lgcc
464 endif
465 ifeq ($(elf),yes)
466 +preinit = $(addprefix $(csu-objpfx),crti.o)
467 +postinit = $(addprefix $(csu-objpfx),crtn.o)
468 +prector = `$(CC) --print-file-name=crtbegin.o`
469 +postctor = `$(CC) --print-file-name=crtend.o`
470 +interp = $(addprefix $(elf-objpfx),interp.os)
471 endif
472 csu-objpfx = $(common-objpfx)csu/
473 elf-objpfx = $(common-objpfx)elf/
475 # How to run a program we just linked with our library.
476 # The program binary is assumed to be $(word 2,$^).
477 built-program-file = $(dir $(word 2,$^))$(notdir $(word 2,$^))
478 ifneq (yes,$(build-shared))
479 built-program-cmd = $(built-program-file)
480 else
481 comma = ,
482 sysdep-library-path = \
483 $(subst $(empty) ,:,$(strip $(patsubst -Wl$(comma)-rpath-link=%, %,\
484                                        $(filter -Wl$(comma)-rpath-link=%,\
485                                                 $(sysdep-LDFLAGS)))))
486 define built-program-cmd
487 $(elf-objpfx)$(rtld-installed-name) \
488         --library-path $(rpath-link)$(patsubst %,:%,$(sysdep-library-path)) \
489         $(built-program-file)
490 endef
491 endif
493 ifndef LD
494 LD := ld -X
495 endif
497 ifndef  RANLIB
498 RANLIB = ranlib
499 endif
501 # Extra flags to pass to GCC.
502 +gccwarn := -Wall -Wwrite-strings -Winline -Wstrict-prototypes
504 # This is the program that generates makefile
505 # dependencies from C source files.
506 ifndef +mkdep
507 +mkdep = $(CC) -M
508 endif
510 # The program that makes Emacs-style TAGS files.
511 ETAGS   := etags -T
513 # The `m4' macro processor; this is used by sysdeps/sparc/Makefile (and
514 # perhaps others) to preprocess assembly code in some cases.
515 M4 = m4
517 # To force installation of files even if they are older than the
518 # installed files.  This variable is included in the dependency list
519 # of all installation targets.
520 ifeq ($(force-install),yes)
521 +force = force-install
522 else
523 +force =
524 endif
526 ####
527 #### End of configuration variables.
528 ####
530 # This tells some versions of GNU make before 3.63 not to export all variables.
531 .NOEXPORT:
533 # We want to echo the commands we're running without
534 # umpteen zillion filenames along with it (we use `...' instead)
535 # but we don't want this echoing done when the user has said
536 # he doesn't want to see commands echoed by using -s.
537 ifneq   "$(findstring s,$(MAKEFLAGS))" ""       # if -s
538 +cmdecho        := echo >/dev/null
539 else                                            # not -s
540 +cmdecho        := echo
541 endif                                           # -s
543 # These are the flags given to the compiler to tell
544 # it what sort of optimization and/or debugging output to do.
545 ifndef  +cflags
546 # If `CFLAGS' was defined, use that.
547 ifdef           CFLAGS
548 +cflags := $(filter-out -I%,$(CFLAGS))
549 endif           # CFLAGS
550 endif   # +cflags
552 # If none of the above worked, default to "-g -O".
553 ifeq    "$(strip $(+cflags))" ""
554 +cflags := $(default_cflags)
555 endif   # $(+cflags) == ""
557 +cflags := $(+cflags) $(+gccwarn)
558 +gcc-nowarn := -w
560 # Don't duplicate options if we inherited variables from the parent.
561 +cflags := $(sort $(+cflags))
564 # These are flags given to the C compiler to tell it to look for include
565 # files (including ones given in angle brackets) in the current directory,
566 # in the parent library source directory and in the include directory.
567 # `+sysdep-includes' will be defined by Makerules.
568 +includes = -I$(..)include -I. \
569             $(patsubst %/,-I%,$(objpfx)) $(patsubst %/,-I%,$(..)) \
570             $($(stdio)-include) $(includes) \
571             $(+sysdep-includes) $(last-includes) $(sysincludes)
573 # Since libio has several internal header files, we use a -I instead
574 # of many little headers in the include directory.
575 libio-include = -I$(..)libio
577 # These are the variables that the implicit compilation rules use.
578 CPPFLAGS = $($(subdir)-CPPFLAGS) $(+includes) $(defines) \
579            -include $(..)include/libc-symbols.h $(sysdep-CPPFLAGS) \
580            $(CPPFLAGS-$(suffix $@)) $(CPPFLAGS-$(<F)) $(CPPFLAGS-$(@F))
581 override CFLAGS = $(filter-out %frame-pointer,$(+cflags)) $(sysdep-CFLAGS) \
582                   $(CFLAGS-$(suffix $@)) $(CFLAGS-$(<F)) $(CFLAGS-$(@F))
584 # If everything is compiled with -fPIC (implicitly) we must tell this by
585 # defining the PIC symbol.
586 ifeq (yes,$(build-pic-default))
587 pic-default = -DPIC
588 endif
590 # Enable object files for different versions of the library.
591 # Various things use $(object-suffixes) to know what all to make.
592 # The compilation rules use $(CPPFLAGS-${SUFFIX}) and $(CFLAGS-${SUFFIX})
593 # to pass different flags for each flavor.
594 libtypes = $(foreach o,$(object-suffixes-for-libc),$(libtype$o))
595 all-object-suffixes := .o .os .op .og .ob .oS
596 object-suffixes :=
597 CPPFLAGS-.o = $(pic-default)
598 CFLAGS-.o = $(filter %frame-pointer,$(+cflags))
599 ifeq (yes,$(build-static))
600 libtype.o := lib%.a
601 object-suffixes += .o
602 endif
603 ifeq (yes,$(build-shared))
604 # Under --enable-shared, we will build a shared library of PIC objects.
605 # The PIC object files are named foo.os.
606 object-suffixes += .os
607 CPPFLAGS-.os = -DPIC -DSHARED
608 CFLAGS-.os = $(filter %frame-pointer,$(+cflags)) $(pic-ccflag)
609 libtype.os := lib%_pic.a
610 # This can be changed by a sysdep makefile
611 pic-ccflag = -fPIC
612 endif
613 ifeq (yes,$(build-profile))
614 # Under --enable-profile, we will build a static library of profiled objects.
615 # The profiled object files are named foo.op.
616 object-suffixes += .op
617 CPPFLAGS-.op = -DPROF $(pic-default)
618 CFLAGS-.op = -pg
619 libtype.op = lib%_p.a
620 endif
621 ifeq (yes,$(build-omitfp))
622 # Under --enable-omitfp, we build the library optimized without
623 # debugging information using -fomit-frame-pointer, and build an extra
624 # library with debugging information.  The debuggable objects are named foo.og.
625 object-suffixes += .og
626 CPPFLAGS-.og = $(pic-default)
627 CFLAGS-.og = -g
628 CFLAGS-.o = $(filter %frame-pointer,$(+cflags)) -g0 -O99 -fomit-frame-pointer -D__USE_STRING_INLINES
629 CFLAGS-.os += -g0 -O99 -fomit-frame-pointer -D__USE_STRING_INLINES
630 libtype.og = lib%_g.a
631 endif
633 bppfx = BP-
634 ifeq (yes,$(build-bounded))
635 # Under --enable-bounded, we build the library with `-fbounded-pointers -g'
636 # to runtime bounds checking.  The bounded-pointer objects are named foo.ob.
637 object-suffixes += .ob
638 CPPFLAGS-.ob = -fbounded-pointers $(pic-default)
639 CFLAGS-.ob = -g -O2 -fno-optimize-sibling-calls
640 libtype.ob = lib%_b.a
641 endif
643 object-suffixes-for-libc := $(object-suffixes)
645 ifeq (yes,$(build-shared))
646 # Build special library that contains the static-only routines for libc.
647 object-suffixes-for-libc += .oS
649 # Must build the routines as PIC, though, because they can end up in (users')
650 # shared objects.  We don't want to use CFLAGS-os because users may, for
651 # example, make that processor-specific.
652 CFLAGS-.oS = $(CFLAGS-.o) $(pic-ccflag)
653 CPPFLAGS-.oS = $(CPPFLAGS-.o) -DPIC
654 libtype.oS = lib%_nonshared.a
655 endif
658 +gnu-stabs = $(shell echo>&2 '*** BARF ON ME')
660 ifndef BUILD_CC
661 BUILD_CC = $(CC)
662 endif
664 move-if-change = $(SHELL) $(..)scripts/move-if-change
666 -include $(common-objpfx)sysd-dirs
668 ifeq ($(sysd-dirs-done),t)
669 -include $(common-objpfx)sysd-sorted
670 subdirs = $(sorted-subdirs)
671 endif
673 ifeq (yes, $(build-shared))
675 # Commands to put in a pipeline to preprocess a file with # comments
676 # %ifdef et al based on config.h settings or other %include'd files.
677 define preprocess-versions
678 sed 's/#.*$$//;s/^[     ]*%/#/' \
679 | $(CC) -E -undef -I$(common-objdir) -I$(..)include \
680                   -include $(common-objpfx)config.h \
681                   -x c - \
682 | sed 's/#.*$$//;/^[    ]*$$/d'
683 endef
685 # Process the shlib-versions file, which tells us what shared library
686 # version numbers to use when we install shared objects on this system.
687 # We need to wait until $(subdirs) is complete.
688 ifeq ($(sysd-sorted-done),t)
689 -include $(common-objpfx)soversions.mk
690 ifndef avoid-generated
691 $(common-objpfx)soversions.i: $(..)shlib-versions $(..)Makeconfig \
692                               $(wildcard $(patsubst %, $(..)%/shlib-versions,\
693                                                        $(add-ons) \
694                                                        $(subdirs))) \
695                               $(common-objpfx)config.make
696         cat $(filter-out $(..)Makeconfig $(common-objpfx)config.make,$^) \
697         | $(preprocess-versions) \
698         | while read conf version setname; do \
699             test -n "$$version" && \
700             test `expr '$(config-machine)-$(config-vendor)-$(config-os)' \
701                        : "$$conf"` != 0 || continue; \
702             lib=`echo $$version | sed 's/=.*$$//'`; \
703             if eval test -z "\$${versioned_$${lib}}"; then \
704               eval versioned_$${lib}=yes; \
705               number=`echo $$version | sed "s/^.*=//"`; \
706               echo $$lib $$number $$setname; \
707             fi; \
708           done > $@T; exit 0
709         mv -f $@T $@
710 $(common-objpfx)soversions.mk: $(common-objpfx)soversions.i
711         while read lib number setname; do \
712           case $$number in \
713             [0-9]*) echo "$$lib.so-version=.$$number"; \
714                     echo "all-sonames+=$$lib=$$lib.so\$$($$lib.so-version)";;\
715             *)      echo "$$lib.so-version=$$number"; \
716                     echo "all-sonames+=$$lib=\$$($$lib.so-version)";;\
717           esac; \
718         done < $< > $@T; exit 0
719         mv -f $@T $@
720 endif
721 endif
723 postclean-generated += soversions.mk
725 # Generate the header containing the names of all shared libraries.
726 # We use a stamp file to avoid uncessary recompilations.
727 before-compile += $(common-objpfx)gnu/lib-names.h
728 $(common-objpfx)gnu/lib-names.h: $(common-objpfx)gnu/lib-names.stmp; @:
729 $(common-objpfx)gnu/lib-names.stmp: $(common-objpfx)soversions.mk
730         $(make-target-directory)
731         @rm -f ${@:stmp=T} $@
732         (echo '/* This file is automatically generated.';\
733          echo '   It defines macros to allow user program to find the shared';\
734          echo '   library files which come as part of GNU libc.  */';\
735          echo '#ifndef __GNU_LIB_NAMES_H'; \
736          echo '#define __GNU_LIB_NAMES_H        1'; \
737          echo; \
738          (libs='$(all-sonames)';\
739           for l in $$libs; do \
740             name=`echo $$l | sed 's/.*=//'`; \
741             upname=`echo $$l | sed 's/=.*//' | \
742                     tr 'abcdefghijklmnopqrstuvwxyz-' \
743                        'ABCDEFGHIJKLMNOPQRSTUVWXYZ_'`; \
744             upname2=`echo $$name | sed 's/[.]so.*//' | \
745                      tr 'abcdefghijklmnopqrstuvwxyz-' \
746                         'ABCDEFGHIJKLMNOPQRSTUVWXYZ_'`; \
747             echo "#define       $${upname}_SO   \"$$name\""; \
748             if test $$upname != $$upname2; then \
749               echo "#define     $${upname2}_SO  \"$$name\""; \
750             fi; \
751           done;) | sort; \
752          echo; \
753          echo '#endif   /* gnu/lib-names.h */';) > ${@:stmp=T}
754         $(move-if-change) ${@:stmp=T} ${@:stmp=h}
755         touch $@
757 common-generated += gnu/lib-names.h gnu/lib-names.stmp
759 # The name under which the run-time dynamic linker is installed.
760 # We are currently going for the convention that `/lib/ld.so.1'
761 # names the SVR4/ELF ABI-compliant dynamic linker.
762 ifndef rtld-installed-name
763 ifdef ld.so-version
764 rtld-installed-name = $(ld.so-version)
765 else
766 rtld-installed-name = ld.so.1
767 endif
768 endif
770 ifndef rtld-version-installed-name
771 rtld-version-installed-name = ld-$(version).so
772 endif
774 endif # build-shared
776 ifneq (,$(findstring linuxthreads,$(add-ons)))
777 shared-thread-library = $(common-objpfx)linuxthreads/libpthread.so
778 static-thread-library = $(common-objpfx)linuxthreads/libpthread.a
779 have-thread-library = yes
780 rpath-dirs += linuxthreads
781 endif
783 ifeq ($(elf),yes)
784 dlfcn = dlfcn
785 ifeq ($(build-shared),yes)
786 libdl = $(common-objpfx)dlfcn/libdl.so$(libdl.so-version)
787 else
788 libdl = $(common-objpfx)dlfcn/libdl.a
789 endif
790 else
791 # No ELF - no libdl, at least for now.
792 dlfcn =
793 libdl =
794 endif
796 # These are the subdirectories containing the library source.  The order
797 # is more or less arbitrary.  The sorting step will take care of the
798 # dependencies.  Only the $(binfmt-subdir) should always be kept at the
799 # end of the list.
800 all-subdirs = csu assert ctype locale intl catgets math setjmp signal       \
801               stdlib stdio-common $(stdio) malloc string wcsmbs time dirent \
802               grp pwd posix io termios resource misc socket sysvipc gmon    \
803               gnulib iconv iconvdata wctype manual shadow po argp           \
804               crypt $(add-ons) nss localedata timezone rt debug             \
805               $(sysdep-subdirs) $(dlfcn) $(binfmt-subdir)
806 all-subdirs := $(filter-out $(sysdep-inhibit-subdirs),$(all-subdirs))
808 # The mach and hurd subdirectories have many generated header files which
809 # much of the rest of the library depends on, so it is best to build them
810 # first (and mach before hurd, at that).  The before-compile additions in
811 # sysdeps/{mach,hurd}/Makefile should make it reliably work for these files
812 # not to exist when making in other directories, but it will be slower that
813 # way with more somewhat expensive `make' invocations.
814 subdirs := $(filter mach,$(subdirs)) $(filter hurd,$(subdirs)) \
815            $(filter-out mach hurd,$(subdirs))
817 ifndef avoid-generated
818 all-Subdirs-files = $(wildcard $(config-sysdirs:%=$(..)%/Subdirs))
819 $(common-objpfx)sysd-dirs: $(common-objpfx)config.make $(all-Subdirs-files)
820         $(AWK) 'BEGIN { subdirs = ""; inhibit = "" };                   \
821                 /^#/ { next };                                          \
822                 /^[^-]/ { subdirs = subdirs " " $$0 };                  \
823                 /^-/ { inhibit = inhibit " " substr($$0, 2) };          \
824                 END { printf "sysdep-subdirs =%s\n", subdirs;           \
825                       printf "sysdep-inhibit-subdirs =%s\n", inhibit;   \
826                       print "sysd-dirs-done = t" }'                     \
827                $(patsubst $<,/dev/null,$^) > $@-tmp
828         mv -f $@-tmp $@
830 all-Depend-files = $(wildcard $(..)*/Depend)
831 $(common-objpfx)sysd-sorted: $(..)scripts/gen-sorted.awk $(all-Depend-files) \
832                              $(common-objpfx)sysd-dirs $(..)Makeconfig
833         { { dirs='$(patsubst $(..)%/Depend,$(..)%,$(filter %/Depend,$^))';\
834             for d in $$dirs; do                                           \
835               while read on; do                                           \
836                 echo "depend $$d $$on";                                   \
837               done < $$d/Depend;                                          \
838             done;                                                         \
839             for f in $(all-subdirs); do                                   \
840               echo $$f;                                                   \
841             done;                                                         \
842           } | $(AWK) -f $< &&                                             \
843           echo sysd-sorted-done = t;                                      \
844         } > $@-tmp
845         mv -f $@-tmp $@
846 endif
848 endif # Makeconfig not yet included