Update.
[glibc.git] / Makeconfig
blobdb62f8edb0063c8b01fd59ac30a1778fbd80f112
1 # Copyright (C) 1991, 92, 93, 94, 95, 96, 97, 98 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 full-config-sysdirs := $(filter /%, $(config-sysdirs)) \
97                        $(addprefix $(..), $(filter-out /%, $(config-sysdirs)))
98 export full-config-sysdirs := $(full-config-sysdirs)
100 # Run config.status to update config.make and config.h.  We don't show the
101 # dependence of config.h to Make, because it is only touched when it
102 # changes and so config.status would be run every time; the dependence of
103 # config.make should suffice to force regeneration and re-exec, and the new
104 # image will notice if config.h changed.
105 $(common-objpfx)config.make: $(common-objpfx)config.status \
106                              $(..)config.make.in $(..)config.h.in
107         cd $(<D); $(SHELL) $(<F)
109 # Find all the sysdeps configure fragments, to make sure we re-run
110 # configure when any of them changes.
111 $(common-objpfx)config.status: $(..)version.h $(..)configure \
112                                $(foreach dir,$(full-config-sysdirs),\
113                                          $(wildcard \
114                                            $(dir)/Implies) \
115                                          $(patsubst %.in,%,\
116                                                     $(firstword $(wildcard \
117  $(addprefix $(dir)/,configure configure.in)))))
118         @cd $(@D); if test -f $(@F); then exec $(SHELL) $(@F) --recheck; else \
119          echo The GNU C library has not been configured. >&2; \
120          echo Run \`configure\' to configure it before building. >&2; \
121          echo Try \`configure --help\' for more details. >&2; \
122          exit 1; fi
124 # We don't want CPPFLAGS to be exported to the command running configure.
125 unexport CPPFLAGS
127 # Get the user's configuration parameters.
128 ifneq ($(wildcard $(..)configparms),)
129 include $(..)configparms
130 endif
131 ifneq ($(objpfx),)
132 ifneq ($(wildcard $(common-objpfx)configparms),)
133 include $(common-objpfx)configparms
134 endif
135 endif
137 ####
138 ####    These are the configuration variables.  You can define values for
139 ####    the variables below in the file `configparms'.
140 ####    Do NOT edit this file.
141 ####
144 # Set this to either `stdio' or `libio', to compile in either GNU stdio
145 # or GNU libio.
146 ifndef stdio
147 stdio = stdio
148 endif
150 # Common prefix for machine-independent installation directories.
151 ifeq ($(origin prefix),undefined) # ifndef would override explicit empty value.
152 prefix = /usr/local
153 endif
155 # Decide whether we shall build the programs or not.  We always do this
156 # unless the user tells us (in configparms) or we are building for a
157 # standalone target.
158 ifndef build-programs
159 ifneq ($(config-os),none)
160 build-programs=yes
161 else
162 build-programs=no
163 endif
164 endif
166 # Common prefix for machine-dependent installation directories.
167 ifeq ($(origin exec_prefix),undefined)
168 exec_prefix = $(prefix)
169 endif
171 # Where to install the library and object files.
172 ifndef libdir
173 libdir = $(exec_prefix)/lib
174 endif
175 inst_libdir = $(install_root)$(libdir)
177 # Where to install the shared library and dynamic linker.
178 ifndef slibdir
179 slibdir = $(exec_prefix)/lib
180 endif
181 inst_slibdir = $(install_root)$(slibdir)
183 # Prefix to put on files installed in $(libdir).  For libraries `libNAME.a',
184 # the prefix is spliced between `lib' and the name, so the linker switch
185 # `-l$(libprefix)NAME' finds the library; for other files the prefix is
186 # just prepended to the whole file name.
187 ifeq ($(origin libprefix),undefined)
188 libprefix =
189 endif
191 # Where to install the header files.
192 ifndef includedir
193 includedir = $(exec_prefix)/include
194 endif
195 inst_includedir = $(install_root)$(includedir)
197 # Where to install machine-independent data files.
198 # These are the timezone database, and the locale database.
199 ifndef datadir
200 datadir = $(prefix)/share
201 endif
202 inst_datadir = $(install_root)$(datadir)
204 # Where to install the timezone data files (which are machine-independent).
205 ifndef zonedir
206 zonedir = $(datadir)/zoneinfo
207 endif
208 inst_zonedir = $(install_root)$(zonedir)
210 # Where to install the locale and message catalog data files (which are
211 # machine-independent).
212 ifndef localedir
213 localedir = $(datadir)/locale
214 endif
215 inst_localedir = $(install_root)$(localedir)
217 # Where to install the locale charmap source files.
218 ifndef i18ndir
219 i18ndir = $(datadir)/i18n
220 endif
221 inst_i18ndir = $(install_root)$(i18ndir)
223 # Where to install the shared object for charset transformation.
224 ifndef gconvdir
225 gconvdir = $(libdir)/gconv
226 endif
227 inst_gconvdir = $(install_root)$(gconvdir)
229 # Where to install programs.
230 ifndef bindir
231 bindir = $(exec_prefix)/bin
232 endif
233 inst_bindir = $(install_root)$(bindir)
235 # Where to install internal programs.
236 ifndef libexecdir
237 libexecdir = $(exec_prefix)/libexec
238 endif
239 inst_libexecdir = $(install_root)$(libexecdir)
241 # Where to install administrative programs.
242 ifndef rootsbindir
243 rootsbindir = $(exec_prefix)/sbin
244 endif
245 inst_rootsbindir = $(install_root)$(rootsbindir)
247 ifndef sbindir
248 sbindir = $(exec_prefix)/sbin
249 endif
250 inst_sbindir = $(install_root)$(sbindir)
252 # Where to install the Info files.
253 ifndef infodir
254 infodir = $(prefix)/info
255 endif
256 inst_infodir = $(install_root)$(infodir)
258 # Where to install default configuration files.  These include the local
259 # timezone specification and network data base files.
260 ifndef sysconfdir
261 sysconfdir = $(prefix)/etc
262 endif
263 inst_sysconfdir = $(install_root)$(sysconfdir)
265 # What timezone should be the installed default (e.g., US/Eastern).
266 # Run `make -C time echo-zonenames' to see a list of available zone names.
267 # The local timezone can be changed with `zic -l TIMEZONE' at any time.
268 ifndef localtime
269 localtime = Factory
270 endif
272 # Where to install the "localtime" timezone file; this is the file whose
273 # contents $(localtime) specifies.  If this is a relative pathname, it is
274 # relative to $(zonedir).  It is a good idea to put this somewhere
275 # other than there, so the zoneinfo directory contains only universal data,
276 # localizing the configuration data elsewhere.
277 ifndef localtime-file
278 localtime-file = $(sysconfdir)/localtime
279 inst_localtime-file = $(install_root)$(localtime-file)
280 endif
282 # What to use for leap second specifications in compiling the default
283 # timezone files.  Set this to `/dev/null' for no leap second handling as
284 # 1003.1 requires, or to `leapseconds' for proper leap second handling.
285 # Both zone flavors are always available as `posix/ZONE' and `right/ZONE'.
286 # This variable determines the default: if it's `/dev/null',
287 # ZONE==posix/ZONE; if it's `leapseconds', ZONE==right/ZONE.
288 ifndef leapseconds
289 leapseconds = /dev/null
290 endif
292 # What timezone's DST rules should be used when a POSIX-style TZ
293 # environment variable doesn't specify any rules.  For 1003.1 compliance
294 # this timezone must use rules that are as U.S. federal law defines DST.
295 # Run `make -C time echo-zonenames' to see a list of available zone names.
296 # This setting can be changed with `zic -p TIMEZONE' at any time.
297 # If you want POSIX.1 compatibility, use `America/New_York'.
298 ifndef posixrules
299 posixrules = America/New_York
300 endif
302 # Where to install the "posixrules" timezone file; this is file
303 # whose contents $(posixrules) specifies.  If this is a relative
304 # pathname, it is relative to $(zonedir).
305 ifndef posixrules-file
306 posixrules-file = posixrules
307 endif
310 # Directory where your system's native header files live.
311 # This is used on Unix systems to generate some GNU libc header files.
312 ifndef sysincludedir
313 sysincludedir = /usr/include
314 endif
317 # Commands to install files.
318 ifndef INSTALL_DATA
319 INSTALL_DATA = $(INSTALL) -m 644
320 endif
321 ifndef INSTALL_PROGRAM
322 INSTALL_PROGRAM = $(INSTALL)
323 endif
324 ifndef INSTALL
325 INSTALL = install
326 endif
329 # The name of the C compiler.
330 # If you've got GCC, and it works, use it.
331 ifeq ($(origin CC),default)
332 CC := gcc
333 endif
335 # The name of the C compiler to use for compilations of programs to run on
336 # the host that is building the library.  If you set CC to a
337 # cross-compiler, you must set this to the normal compiler.
338 ifndef BUILD_CC
339 BUILD_CC = $(CC)
340 endif
342 # Default flags to pass the C compiler.
343 ifndef default_cflags
344 default_cflags := -g -O
345 endif
347 # Flags to pass the C compiler when assembling preprocessed assembly code
348 # (`.S' files).  On some systems the assembler doesn't understand the `#' line
349 # directives the preprocessor produces.  If you have troubling compiling
350 # assembly code, try using -P here to suppress these directives.
351 ifndef asm-CPPFLAGS
352 asm-CPPFLAGS =
353 endif
355 # ELF always supports init/fini sections
356 ifeq ($(elf),yes)
357 have-initfini = yes
358 endif
360 # Installed name of the startup code.
361 ifneq ($(have-initfini),yes)
362 # When not having init/fini, there is just one startfile, called crt0.o.
363 start-installed-name = crt0.o
364 else
365 # On systems having init/fini, crt0.o is called crt1.o, and there are
366 # some additional bizarre files.
367 start-installed-name = crt1.o
368 endif
371 # Command for linking programs with the C library.
372 ifndef +link
373 +link = $(CC) -nostdlib -nostartfiles -o $@ \
374               $(sysdep-LDFLAGS) $(config-LDFLAGS) $(LDFLAGS)  \
375               $(addprefix $(csu-objpfx),$(start-installed-name)) \
376               $(+preinit) $(+prector) \
377               $(filter-out $(addprefix $(csu-objpfx),start.o \
378                                                      $(start-installed-name))\
379                            $(+preinit) $(link-extra-libs) \
380                            $(common-objpfx)libc% $(+postinit),$^) \
381               $(link-extra-libs) $(link-libc) $(+postctor) $(+postinit)
382 endif
383 # Command for statically linking programs with the C library.
384 ifndef +link-static
385 +link-static = $(CC) -nostdlib -nostartfiles -static -o $@ \
386               $(sysdep-LDFLAGS) $(LDFLAGS)  \
387               $(addprefix $(csu-objpfx),$(start-installed-name)) \
388               $(+preinit) $(+prector) \
389               $(filter-out $(addprefix $(csu-objpfx),start.o \
390                                                      $(start-installed-name))\
391                            $(+preinit) $(link-extra-libs-static) \
392                            $(common-objpfx)libc% $(+postinit),$^) \
393               $(link-extra-libs-static) $(link-libc-static) $(+postctor) $(+postinit)
394 endif
395 ifndef config-LDFLAGS
396 ifeq (yes,$(build-shared))
397 config-LDFLAGS = -Wl,-dynamic-linker=$(slibdir)/$(rtld-installed-name)
398 endif
399 endif
400 ifndef link-libc
401 ifeq (yes,$(build-shared))
402 # We need the versioned name of libc.so in the deps of $(others) et al
403 # so that the symlink to libc.so is created before anything tries to
404 # run the linked programs.
405 link-libc = -Wl,-rpath-link=$(rpath-link) \
406             $(common-objpfx)libc.so$(libc.so-version) \
407             $(elfobjdir)/$(rtld-installed-name) \
408             $(common-objpfx)libc.a $(gnulib)
409 # Choose the default search path for the dynamic linker based on
410 # where we will install libraries.
411 ifneq ($(libdir),$(slibdir))
412 default-rpath = $(slibdir):$(libdir)
413 else
414 default-rpath = $(libdir)
415 endif
416 # This is how to find at build-time things that will be installed there.
417 rpath-link = $(common-objdir):$(mathobjdir):$(elfobjdir):$(nssobjdir):$(nisobjdir):$(dbobjdir)
418 mathobjdir := $(patsubst ../$(subdir),.,$(common-objpfx)math)
419 elfobjdir := $(patsubst ../$(subdir),.,$(common-objpfx)elf)
420 nssobjdir := $(patsubst ../$(subdir),.,$(common-objpfx)nss)
421 nisobjdir := $(patsubst ../$(subdir),.,$(common-objpfx)nis)
422 dbobjdir := $(patsubst ../$(subdir),.,$(common-objpfx)db2)
423 else
424 link-libc = $(common-objpfx)libc.a $(gnulib) $(common-objpfx)libc.a
425 endif
426 endif
428 ifndef link-extra-libs
429 ifeq (yes,$(build-shared))
430 ifneq ($(common-objpfx),$(objpfx))
431 link-extra-libs = $(foreach lib,$(LDLIBS-$(@F)),\
432         $(wildcard $(common-objpfx)$(lib).so$($(notdir $(lib)).so-version) \
433                    $(objpfx)$(lib).so$($(notdir $(lib)).so-version)))
434 else
435 link-extra-libs = $(foreach lib,$(LDLIBS-$(@F)),$(common-objpfx)$(lib).so$($(notdir $(lib)).so-version))
436 endif
437 else
438 link-extra-libs = $(foreach lib,$(LDLIBS-$(@F)),$(common-objpfx)$(lib).a)
439 endif
440 endif
442 # The static libraries.
443 link-libc-static = $(common-objpfx)libc.a $(gnulib) $(common-objpfx)libc.a
444 link-extra-libs-static = $(foreach lib,$(LDLIBS-$(@F)),$(common-objpfx)$(lib).a)
446 ifndef gnulib
447 gnulib := -lgcc
448 endif
449 ifeq ($(elf),yes)
450 +preinit = $(addprefix $(csu-objpfx),crti.o)
451 +postinit = $(addprefix $(csu-objpfx),crtn.o)
452 +prector = `$(CC) --print-file-name=crtbegin.o`
453 +postctor = `$(CC) --print-file-name=crtend.o`
454 endif
455 csu-objpfx = $(common-objpfx)csu/
456 elf-objpfx = $(common-objpfx)elf/
457 db-objpfx = $(common-objpfx)db/
459 # How to run a program we just linked with our library.
460 # The program binary is assumed to be $(word 2,$^).
461 built-program-file = $(dir $(word 2,$^))$(notdir $(word 2,$^))
462 ifneq (yes,$(build-shared))
463 built-program-cmd = $(built-program-file)
464 else
465 comma = ,
466 sysdep-library-path = \
467 $(subst $(empty) ,:,$(strip $(patsubst -Wl$(comma)-rpath-link=%, %,\
468                                        $(filter -Wl$(comma)-rpath-link=%,\
469                                                 $(sysdep-LDFLAGS)))))
470 define built-program-cmd
471 $(elf-objpfx)$(rtld-installed-name) \
472         --library-path $(rpath-link)$(patsubst %,:%,$(sysdep-library-path)) \
473         $(built-program-file)
474 endef
475 endif
477 ifndef LD
478 LD := ld -X
479 endif
481 ifndef  RANLIB
482 RANLIB = ranlib
483 endif
485 # Extra flags to pass to GCC.
486 +gccwarn := -Wall -Wwrite-strings -Wno-parentheses -Winline -Wstrict-prototypes
488 # This is the program that generates makefile
489 # dependencies from C source files.
490 ifndef +mkdep
491 +mkdep = $(CC) -M
492 endif
494 # The program that makes Emacs-style TAGS files.
495 ETAGS   := etags -T
497 # The `m4' macro processor; this is used by sysdeps/sparc/Makefile (and
498 # perhaps others) to preprocess assembly code in some cases.
499 M4 = m4
501 ####
502 #### End of configuration variables.
503 ####
505 # This tells some versions of GNU make before 3.63 not to export all variables.
506 .NOEXPORT:
508 # We want to echo the commands we're running without
509 # umpteen zillion filenames along with it (we use `...' instead)
510 # but we don't want this echoing done when the user has said
511 # he doesn't want to see commands echoed by using -s.
512 ifneq   "$(findstring s,$(MAKEFLAGS))" ""       # if -s
513 +cmdecho        := echo >/dev/null
514 else                                            # not -s
515 +cmdecho        := echo
516 endif                                           # -s
518 # These are the flags given to the compiler to tell
519 # it what sort of optimization and/or debugging output to do.
520 ifndef  +cflags
521 # If `CFLAGS' was defined, use that.
522 ifdef           CFLAGS
523 +cflags := $(filter-out -I%,$(CFLAGS))
524 endif           # CFLAGS
525 endif   # +cflags
527 # If none of the above worked, default to "-g -O".
528 ifeq    "$(strip $(+cflags))" ""
529 +cflags := $(default_cflags)
530 endif   # $(+cflags) == ""
532 +cflags := $(+cflags) $(+gccwarn)
533 +gcc-nowarn := -w
535 # Don't duplicate options if we inherited variables from the parent.
536 +cflags := $(sort $(+cflags))
539 # These are flags given to the C compiler to tell it to look for include
540 # files (including ones given in angle brackets) in the current directory,
541 # in the parent library source directory and in the include directory.
542 # `+sysdep-includes' will be defined by Makerules.
543 +includes = -I. $(patsubst %/,-I%,$(objpfx)) $(patsubst %/,-I%,$(..)) \
544             -I$(..)include $($(stdio)-include) $(includes) \
545             $(+sysdep-includes) $(last-includes)
547 # Since libio has several internal header files, we use a -I instead
548 # of many little headers in the include directory.
549 libio-include = -I$(..)libio
551 # These are the variables that the implicit compilation rules use.
552 CPPFLAGS = $(+includes) $(defines) -include $(..)include/libc-symbols.h \
553            $(sysdep-CPPFLAGS) $(CPPFLAGS-$(suffix $@)) $(CPPFLAGS-$(<F)) \
554            $(CPPFLAGS-$(@F))
555 override CFLAGS = $(filter-out %frame-pointer,$(+cflags)) $(sysdep-CFLAGS) \
556                   $(CFLAGS-$(suffix $@)) $(CFLAGS-$(<F)) $(CFLAGS-$(@F))
559 # This is the macro that the implicit linking rules use.
560 ifneq "$(filter -g,$(+cflags))" "" # -g is in $(+cflags)
561 LDFLAGS := -g
562 endif
565 # If everything is compiled with -fPIC (implicitly) we must tell this by
566 # defining the PIC symbol.
567 ifeq (yes,$(build-pic-default))
568 pic-default = -DPIC
569 endif
571 # Enable object files for different versions of the library.
572 # Various things use $(object-suffixes) to know what all to make.
573 # The compilation rules use $(CPPFLAGS-${SUFFIX}) and $(CFLAGS-${SUFFIX})
574 # to pass different flags for each flavor.
575 libtypes = $(foreach o,$(object-suffixes),$(libtype$o))
576 all-object-suffixes := .o .os .op .og .ob
577 object-suffixes :=
578 ifeq (yes,$(build-static))
579 CPPFLAGS-.o = $(pic-default)
580 CFLAGS-.o = $(filter %frame-pointer,$(+cflags))
581 libtype.o := lib%.a
582 object-suffixes += .o
583 endif
584 ifeq (yes,$(build-shared))
585 # Under --enable-shared, we will build a shared library of PIC objects.
586 # The PIC object files are named foo.os.
587 object-suffixes += .os
588 CPPFLAGS-.os = -DPIC
589 CFLAGS-.os = $(filter %frame-pointer,$(+cflags)) $(pic-ccflag)
590 libtype.os := lib%_pic.a
591 # This can be changed by a sysdep makefile
592 pic-ccflag = -fPIC
593 endif
594 ifeq (yes,$(build-profile))
595 # Under --enable-profile, we will build a static library of profiled objects.
596 # The profiled object files are named foo.op.
597 object-suffixes += .op
598 CPPFLAGS-.op = -DPROF $(pic-default)
599 CFLAGS-.op = -pg
600 libtype.op = lib%_p.a
601 endif
602 ifeq (yes,$(build-omitfp))
603 # Under --enable-omitfp, we build an the library optimized without
604 # debugging information using -fomit-frame-pointer, and build an extra
605 # library with debugging information.  The debuggable objects are named foo.og.
606 object-suffixes += .og
607 CPPFLAGS-.og = $(pic-default)
608 CFLAGS-.og = -g
609 CFLAGS-.o = $(filter %frame-pointer,$(+cflags)) -g0 -O99 -fomit-frame-pointer -D__USE_STRING_INLINES
610 CFLAGS-.os += -g0 -O99 -fomit-frame-pointer -D__USE_STRING_INLINES
611 libtype.og = lib%_g.a
612 endif
613 ifeq (yes,$(build-bounded))
614 # Under --enable-bounded, we build the library with `-fbounded-pointers -g'
615 # to runtime bounds checking.  The bounded-pointer objects are named foo.ob.
616 object-suffixes += .ob
617 CPPFLAGS-.ob = -DBOUNDED_POINTERS $(pic-default)
618 CFLAGS-.ob = -g -fbounded-pointers
619 libtype.ob = lib%_b.a
620 endif
623 +gnu-stabs = $(shell echo>&2 '*** BARF ON ME')
625 ifndef BUILD_CC
626 BUILD_CC = $(CC)
627 endif
629 # Figure out the version numbers from version.h.
631 $(common-objpfx)version.mk: $(..)version.h $(..)Makeconfig
632         sed -n -e 's/^.*RELEASE.*"\([^"]*\)".*$$/release=\1/p' \
633                -e 's/^.*VERSION.*"\([^"]*\)".*$$/version=\1/p' \
634             < $< > $@-new
635         mv -f $@-new $@
637 common-generated += version.mk
639 ifeq (yes, $(build-shared))
641 # Process the shlib-versions file, which tells us what shared library
642 # version numbers to use when we install shared objects on this system.
643 -include $(common-objpfx)soversions.mk
644 ifndef avoid-generated
645 $(common-objpfx)soversions.mk: $(..)shlib-versions $(..)Makeconfig \
646                                $(wildcard $(patsubst %, $(..)%/shlib-versions,\
647                                                         $(add-ons))) \
648                                $(common-objpfx)config.make
649         (file="$(wildcard $(patsubst %,$(..)%/shlib-versions,$(add-ons))) \
650                $(..)shlib-versions"; \
651          for f in $$file; do \
652            sed 's/#.*$$//' $$f | while read conf versions; do \
653              test -n "$$versions" && \
654              test `expr '$(config-machine)-$(config-vendor)-$(config-os)' \
655                         : "$$conf"` != 0 || continue; \
656              for v in $$versions; do \
657                lib=`echo $$v | sed 's/=.*$$//'`; \
658                if eval "test -z \"\$$vers_lib$$lib\""; then \
659                  eval vers_lib$${lib}=yes; \
660                  number=`echo $$v | sed "s/^.*=//"`; \
661                  case $$number in \
662                    [0-9]*) echo "$$lib.so-version=.$$number"; \
663                            echo "all-sonames+=$$lib.so\$$($$lib.so-version)";;\
664                    *) echo "$$lib.so-version=$$number"; \
665                       echo "all-sonames+=\$$($$lib.so-version)";;  \
666                  esac; \
667                fi; \
668              done; \
669            done; \
670          done;) > $@T; exit 0
671         mv -f $@T $@
672 endif
674 postclean-generated += soversions.mk
676 ifndef avoid-generated
677 # Get $(version) defined with the release version number.
678 -include $(common-objpfx)version.mk
679 endif
681 # Generate the header containing the names of all shared libraries.
682 # We use a stamp file to avoid uncessary recompilations.
683 before-compile += $(common-objpfx)gnu/lib-names.h
684 $(common-objpfx)gnu/lib-names.h: $(common-objpfx)gnu/lib-names.stmp; @:
685 $(common-objpfx)gnu/lib-names.stmp: $(common-objpfx)soversions.mk
686         $(make-target-directory)
687         @rm -f ${@:stmp=T} $@
688         (echo '/* This file is automatically generated.';\
689          echo '   It defines macros to allow user program to find the shared';\
690          echo '   library files which come as part of GNU libc.  */';\
691          echo '#ifndef __GNU_LIB_NAMES_H'; \
692          echo '#define __GNU_LIB_NAMES_H        1'; \
693          echo; \
694          (libs='$(all-sonames)';\
695           for l in $$libs; do \
696             upname=`echo $$l | sed 's/[.]so.*//' | \
697                     tr 'abcdefghijklmnopqrstuvwxyz-' \
698                        'ABCDEFGHIJKLMNOPQRSTUVWXYZ_'`; \
699             echo "#define       $${upname}_SO   \"$$l\""; \
700           done;) | sort; \
701          echo; \
702          echo '#endif   /* gnu/lib-names.h */';) > ${@:stmp=T}
703         if test -r ${@:stmp=h} && cmp -s ${@:stmp=h} ${@:stmp=T}; \
704         then rm -f ${@:stmp=T}; \
705         else mv -f ${@:stmp=T} ${@:stmp=h}; fi
706         touch $@
708 common-generated += gnu/lib-names.h gnu/lib-names.stmp
710 # The name under which the run-time dynamic linker is installed.
711 # We are currently going for the convention that `/lib/ld.so.1'
712 # names the SVR4/ELF ABI-compliant dynamic linker.
713 ifndef rtld-installed-name
714 ifdef ld.so-version
715 rtld-installed-name = $(ld.so-version)
716 else
717 rtld-installed-name = ld.so.1
718 endif
719 endif
721 ifndef rtld-version-installed-name
722 rtld-version-installed-name = ld-$(version).so
723 endif
725 endif # build-shared
727 ifneq (,$(findstring linuxthreads,$(add-ons)))
728 shared-thread-library = $(common-objpfx)linuxthreads/libpthread.so
729 static-thread-library = $(common-objpfx)linuxthreads/libpthread.a
730 have-thread-library = yes
731 endif
733 endif # Makeconfig not yet included