]> git.ipfire.org Git - thirdparty/glibc.git/blame - Makeconfig
Update.
[thirdparty/glibc.git] / Makeconfig
CommitLineData
5290baf0 1# Copyright (C) 1991, 92, 93, 94, 95, 96, 97 Free Software Foundation, Inc.
28f540f4
RM
2# This file is part of the GNU C Library.
3
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.
8
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.
13
14# You should have received a copy of the GNU Library General Public
0c5ecdc4
UD
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.
28f540f4
RM
18
19#
20# Makefile configuration options for the GNU C library.
21#
22ifneq (,)
23This makefile requires GNU Make.
24endif
25
3e5f5557
UD
26all: # Make this the default goal
27
28f540f4
RM
28ifneq "$(origin +included-Makeconfig)" "file"
29
30+included-Makeconfig := yes
31
32ifdef subdir
33.. := ../
34endif
35
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.
38ifneq (,$(wildcard $(..)config.make))
39ARCH =
40machine =
41else # Not configured.
42ifndef ARCH
43ifdef machine
44ARCH = $(machine)
45endif # machine
46endif # ARCH
47endif # config.make
48
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).
53ifdef ARCH
54ifeq ($(filter /%,$(ARCH)),)
55objdir := $(..)$(ARCH)
56else
57objdir = $(ARCH)
58endif
59endif
60
094bacdb 61# $(common-objdir) is the place to put objects and
28f540f4
RM
62# such that are not specific to a single subdir.
63ifdef objdir
6e953631
UD
64objpfx := $(patsubst %//,%/,$(objdir)/$(subdir)/)
65common-objpfx = $(objdir)/
28f540f4
RM
66common-objdir = $(objdir)
67else
68objpfx :=
69ifdef ..
70common-objpfx = $(..)
71common-objdir = ..
72else
73# This is a kludge. make wizards might grok.
74common-objpfx = sysdeps/../
75common-objdir = .
76endif
77endif
78
f332db02
RM
79# Root of the sysdeps tree.
80sysdep_dir := $(..)sysdeps
81export sysdep_dir := $(sysdep_dir)
82
28f540f4
RM
83# Get the values defined by options to `configure'.
84include $(common-objpfx)config.make
85
0501d603
UD
86# We have a special subdir for each binary format.
87# For now, only ELF is fully supported.
88ifeq ($(elf),yes)
89binfmt-subdir = elf
90else
91binfmt-subdir =
92endif
93
57ba7bb4
UD
94# Complete path to sysdep dirs.
95full-config-sysdirs := $(filter /%, $(config-sysdirs)) \
96 $(addprefix $(..), $(filter-out /%, $(config-sysdirs)))
97export full-config-sysdirs := $(full-config-sysdirs)
98
273d56ce
RM
99# Run config.status to update config.make and config.h. We don't show the
100# dependence of config.h to Make, because it is only touched when it
101# changes and so config.status would be run every time; the dependence of
102# config.make should suffice to force regeneration and re-exec, and the new
103# image will notice if config.h changed.
19361cb7
UD
104$(common-objpfx)config.make: $(common-objpfx)config.status \
105 $(..)config.make.in $(..)config.h.in
273d56ce
RM
106 cd $(<D); $(SHELL) $(<F)
107
7da3079b
RM
108# Find all the sysdeps configure fragments, to make sure we re-run
109# configure when any of them changes.
5290baf0 110$(common-objpfx)config.status: $(..)version.h $(..)configure \
57ba7bb4 111 $(foreach dir,$(full-config-sysdirs),\
e50ec9f9 112 $(wildcard \
57ba7bb4 113 $(dir)/Implies) \
f332db02
RM
114 $(patsubst %.in,%,\
115 $(firstword $(wildcard \
57ba7bb4 116 $(addprefix $(dir)/,configure configure.in)))))
273d56ce
RM
117 @cd $(@D); if test -f $(@F); then exec $(SHELL) $(@F) --recheck; else \
118 echo The GNU C library has not been configured. >&2; \
119 echo Run \`configure\' to configure it before building. >&2; \
120 echo Try \`configure --help\' for more details. >&2; \
121 exit 1; fi
28f540f4
RM
122
123# Get the user's configuration parameters.
124ifneq ($(wildcard $(..)configparms),)
125include $(..)configparms
126endif
127ifneq ($(objpfx),)
6e953631
UD
128ifneq ($(wildcard $(common-objpfx)configparms),)
129include $(common-objpfx)configparms
28f540f4
RM
130endif
131endif
28f540f4
RM
132\f
133####
134#### These are the configuration variables. You can define values for
135#### the variables below in the file `configparms'.
136#### Do NOT edit this file.
137####
138
139
deab9dea
RM
140# Set this to either `stdio' or `libio', to compile in either GNU stdio
141# or GNU libio.
142ifndef stdio
143stdio = stdio
144endif
145
28f540f4 146# Common prefix for machine-independent installation directories.
487253ea 147ifeq ($(origin prefix),undefined) # ifndef would override explicit empty value.
28f540f4
RM
148prefix = /usr/local
149endif
150
151# Common prefix for machine-dependent installation directories.
487253ea 152ifeq ($(origin exec_prefix),undefined)
28f540f4
RM
153exec_prefix = $(prefix)
154endif
155
156# Where to install the library and object files.
157ifndef libdir
158libdir = $(exec_prefix)/lib
159endif
8d57beea 160inst_libdir = $(install_root)$(libdir)
28f540f4 161
094bacdb
RM
162# Where to install the shared library and dynamic linker.
163ifndef slibdir
164slibdir = $(exec_prefix)/lib
165endif
8d57beea 166inst_slibdir = $(install_root)$(slibdir)
094bacdb 167
28f540f4
RM
168# Prefix to put on files installed in $(libdir). For libraries `libNAME.a',
169# the prefix is spliced between `lib' and the name, so the linker switch
170# `-l$(libprefix)NAME' finds the library; for other files the prefix is
171# just prepended to the whole file name.
487253ea 172ifeq ($(origin libprefix),undefined)
28f540f4
RM
173libprefix =
174endif
175
176# Where to install the header files.
177ifndef includedir
178includedir = $(exec_prefix)/include
179endif
8d57beea 180inst_includedir = $(install_root)$(includedir)
28f540f4 181
28f540f4 182# Where to install machine-independent data files.
a2fe9c76 183# These are the timezone database, and the locale database.
28f540f4
RM
184ifndef datadir
185datadir = $(prefix)/share
186endif
8d57beea 187inst_datadir = $(install_root)$(datadir)
28f540f4
RM
188
189# Where to install the timezone data files (which are machine-independent).
190ifndef zonedir
191zonedir = $(datadir)/zoneinfo
192endif
8d57beea 193inst_zonedir = $(install_root)$(zonedir)
28f540f4 194
3ec41e03
RM
195# Where to install the locale and message catalog data files (which are
196# machine-independent).
a2fe9c76
RM
197ifndef localedir
198localedir = $(datadir)/locale
199endif
8d57beea 200inst_localedir = $(install_root)$(localedir)
a2fe9c76 201
3ec41e03 202# Where to install the locale charmap source files.
19bc17a9
RM
203ifndef i18ndir
204i18ndir = $(datadir)/i18n
a2fe9c76 205endif
8d57beea 206inst_i18ndir = $(install_root)$(i18ndir)
a2fe9c76
RM
207
208
28f540f4
RM
209# Where to install programs.
210ifndef bindir
211bindir = $(exec_prefix)/bin
212endif
8d57beea 213inst_bindir = $(install_root)$(bindir)
28f540f4
RM
214
215# Where to install administrative programs.
1ef32c3d
UD
216ifndef rootsbindir
217rootsbindir = $(exec_prefix)/sbin
218endif
8d57beea 219inst_rootsbindir = $(install_root)$(rootsbindir)
1ef32c3d 220
28f540f4
RM
221ifndef sbindir
222sbindir = $(exec_prefix)/sbin
223endif
8d57beea 224inst_sbindir = $(install_root)$(sbindir)
28f540f4
RM
225
226# Where to install the Info files.
227ifndef infodir
228infodir = $(prefix)/info
229endif
8d57beea 230inst_infodir = $(install_root)$(infodir)
28f540f4
RM
231
232# Where to install default configuration files. These include the local
233# timezone specification and network data base files.
234ifndef sysconfdir
235sysconfdir = $(prefix)/etc
236endif
8d57beea 237inst_sysconfdir = $(install_root)$(sysconfdir)
28f540f4
RM
238
239# What timezone should be the installed default (e.g., US/Eastern).
240# Run `make -C time echo-zonenames' to see a list of available zone names.
241# The local timezone can be changed with `zic -l TIMEZONE' at any time.
242ifndef localtime
243localtime = Factory
244endif
245
246# Where to install the "localtime" timezone file; this is the file whose
247# contents $(localtime) specifies. If this is a relative pathname, it is
248# relative to $(zonedir). It is a good idea to put this somewhere
249# other than there, so the zoneinfo directory contains only universal data,
250# localizing the configuration data elsewhere.
251ifndef localtime-file
0d8733c4
UD
252localtime-file = $(sysconfdir)/localtime
253inst_localtime-file = $(install_root)$(localtime-file)
28f540f4
RM
254endif
255
59dd8641
RM
256# What to use for leap second specifications in compiling the default
257# timezone files. Set this to `/dev/null' for no leap second handling as
258# 1003.1 requires, or to `leapseconds' for proper leap second handling.
259# Both zone flavors are always available as `posix/ZONE' and `right/ZONE'.
260# This variable determines the default: if it's `/dev/null',
261# ZONE==posix/ZONE; if it's `leapseconds', ZONE==right/ZONE.
262ifndef leapseconds
263leapseconds = /dev/null
264endif
265
28f540f4
RM
266# What timezone's DST rules should be used when a POSIX-style TZ
267# environment variable doesn't specify any rules. For 1003.1 compliance
268# this timezone must use rules that are as U.S. federal law defines DST.
269# Run `make -C time echo-zonenames' to see a list of available zone names.
270# This setting can be changed with `zic -p TIMEZONE' at any time.
271# If you want POSIX.1 compatibility, use `America/New_York'.
272ifndef posixrules
273posixrules = America/New_York
274endif
275
276# Where to install the "posixrules" timezone file; this is file
277# whose contents $(posixrules) specifies. If this is a relative
278# pathname, it is relative to $(zonedir).
279ifndef posixrules-file
280posixrules-file = posixrules
281endif
282
283
284# Directory where your system's native header files live.
285# This is used on Unix systems to generate some GNU libc header files.
286ifndef sysincludedir
287sysincludedir = /usr/include
288endif
289
290
291# Commands to install files.
292ifndef INSTALL_DATA
293INSTALL_DATA = $(INSTALL) -m 644
294endif
295ifndef INSTALL_PROGRAM
296INSTALL_PROGRAM = $(INSTALL)
297endif
298ifndef INSTALL
299INSTALL = install
300endif
301
302
303# The name of the C compiler.
304# If you've got GCC, and it works, use it.
305ifeq ($(origin CC),default)
306CC := gcc
307endif
308
309# The name of the C compiler to use for compilations of programs to run on
310# the host that is building the library. If you set CC to a
311# cross-compiler, you must set this to the normal compiler.
312ifndef BUILD_CC
313BUILD_CC = $(CC)
314endif
315
316# Default flags to pass the C compiler.
317ifndef default_cflags
a8922de8 318default_cflags := -g -O
28f540f4
RM
319endif
320
321# Flags to pass the C compiler when assembling preprocessed assembly code
322# (`.S' files). On some systems the assembler doesn't understand the `#' line
323# directives the preprocessor produces. If you have troubling compiling
324# assembly code, try using -P here to suppress these directives.
325ifndef asm-CPPFLAGS
326asm-CPPFLAGS =
327endif
328
779ae82e
UD
329# Installed name of the startup code.
330ifneq ($(elf),yes)
331# When not using ELF, there is just one startfile, called crt0.o.
332start-installed-name = crt0.o
333else
334# In the ELF universe, crt0.o is called crt1.o, and there are
335# some additional bizarre files.
336start-installed-name = crt1.o
337have-initfini = yes
338endif
339
340
28f540f4
RM
341# Command for linking programs with the C library.
342ifndef +link
8e3cc80f
RM
343+link = $(CC) -nostdlib -nostartfiles -o $@ \
344 $(sysdep-LDFLAGS) $(config-LDFLAGS) $(LDFLAGS) \
779ae82e
UD
345 $(addprefix $(csu-objpfx),$(start-installed-name)) \
346 $(+preinit) $(+prector) \
347 $(filter-out $(addprefix $(csu-objpfx),start.o \
348 $(start-installed-name))\
349 $(+preinit) $(link-extra-libs) \
350 $(common-objpfx)libc% $(+postinit),$^) \
5ae9d168 351 $(link-extra-libs) $(link-libc) $(+postctor) $(+postinit)
28f540f4 352endif
b122c703
RM
353ifndef config-LDFLAGS
354ifeq (yes,$(build-shared))
094bacdb 355config-LDFLAGS = -Wl,-dynamic-linker=$(slibdir)/$(rtld-installed-name)
b122c703
RM
356endif
357endif
3fe9de0d
RM
358ifndef link-libc
359ifeq (yes,$(build-shared))
aa1075ea
RM
360# We need the versioned name of libc.so in the deps of $(others) et al
361# so that the symlink to libc.so is created before anything tries to
362# run the linked programs.
4d6acc61 363link-libc = -Wl,-rpath-link=$(rpath-link) \
aa1075ea 364 $(common-objpfx)libc.so$(libc.so-version) \
852fc4b9 365 $(elfobjdir)/$(rtld-installed-name) \
aa1075ea 366 $(common-objpfx)libc.a $(gnulib)
4cb20290
RM
367# Choose the default search path for the dynamic linker based on
368# where we will install libraries.
369ifneq ($(libdir),$(slibdir))
370default-rpath = $(slibdir):$(libdir)
371else
372default-rpath = $(libdir)
373endif
4d6acc61 374# This is how to find at build-time things that will be installed there.
c57abfa7
UD
375rpath-link = $(common-objdir):$(mathobjdir):$(elfobjdir):$(nssobjdir)
376mathobjdir := $(patsubst ../$(subdir),.,$(common-objpfx)math)
47707456 377elfobjdir := $(patsubst ../$(subdir),.,$(common-objpfx)elf)
6e953631 378nssobjdir := $(patsubst ../$(subdir),.,$(common-objpfx)nss)
3fe9de0d
RM
379else
380link-libc = $(common-objpfx)libc.a $(gnulib) $(common-objpfx)libc.a
381endif
382endif
57ba7bb4
UD
383ifndef link-extra-libs
384ifeq (yes,$(build-shared))
c57abfa7
UD
385ifneq ($(common-objpfx),$(objpfx))
386link-extra-libs = $(foreach lib,$(LDLIBS-$(@F)),\
387 $(wildcard $(common-objpfx)$(lib).so$($(notdir $(lib)).so-version) \
388 $(objpfx)$(lib).so$($(notdir $(lib)).so-version)))
389else
57ba7bb4 390link-extra-libs = $(foreach lib,$(LDLIBS-$(@F)),$(common-objpfx)$(lib).so$($(notdir $(lib)).so-version))
c57abfa7 391endif
57ba7bb4
UD
392else
393link-extra-libs = $(foreach lib,$(LDLIBS-$(@F)),$(common-objpfx)$(lib).a)
394endif
395endif
28f540f4
RM
396ifndef gnulib
397gnulib := -lgcc
398endif
96f873b9 399ifeq ($(elf),yes)
e75154a6
RM
400+preinit = $(addprefix $(csu-objpfx),crti.o)
401+postinit = $(addprefix $(csu-objpfx),crtn.o)
5ae9d168
UD
402+prector = `$(CC) --print-file-name=crtbegin.o`
403+postctor = `$(CC) --print-file-name=crtend.o`
96f873b9 404endif
6e953631
UD
405csu-objpfx = $(common-objpfx)csu/
406elf-objpfx = $(common-objpfx)elf/
57ba7bb4 407db-objpfx = $(common-objpfx)db/
28f540f4 408
03a75825
RM
409# How to run a program we just linked with our library.
410# The program binary is assumed to be $(word 2,$^).
411built-program-file = $(dir $(word 2,$^))$(notdir $(word 2,$^))
412ifneq (yes,$(build-shared))
413built-program-cmd = $(built-program-file)
414else
196980f5 415comma = ,
11336c16
UD
416sysdep-library-path = \
417$(subst $(empty) ,:,$(strip $(patsubst -Wl$(comma)-rpath-link=%, %,\
418 $(filter -Wl$(comma)-rpath-link=%,\
419 $(sysdep-LDFLAGS)))))
03a75825 420define built-program-cmd
11336c16 421LD_LIBRARY_PATH=$(rpath-link)$(patsubst %,:%,$(sysdep-library-path)) \
96bda0ea 422$(elf-objpfx)$(rtld-installed-name) $(built-program-file)
03a75825
RM
423endef
424endif
425
28f540f4
RM
426ifndef LD
427LD := ld -X
428endif
429
430ifndef RANLIB
431RANLIB = ranlib
432endif
433
434# Extra flags to pass to GCC.
522548fb 435+gccwarn := -Wall -Wwrite-strings -Wno-parentheses -Winline -Wstrict-prototypes
28f540f4
RM
436
437# This is the program that generates makefile
438# dependencies from C source files.
439ifndef +mkdep
440+mkdep = $(CC) -M
441endif
442
443# The program that makes Emacs-style TAGS files.
444ETAGS := etags -T
445
446# The `m4' macro processor; this is used by sysdeps/sparc/Makefile (and
447# perhaps others) to preprocess assembly code in some cases.
448M4 = m4
449
450####
451#### End of configuration variables.
452####
453\f
454# This tells some versions of GNU make before 3.63 not to export all variables.
455.NOEXPORT:
456
457# We want to echo the commands we're running without
6d52618b 458# umpteen zillion filenames along with it (we use `...' instead)
28f540f4
RM
459# but we don't want this echoing done when the user has said
460# he doesn't want to see commands echoed by using -s.
461ifneq "$(findstring s,$(MAKEFLAGS))" "" # if -s
462+cmdecho := echo >/dev/null
463else # not -s
464+cmdecho := echo
465endif # -s
466
467# These are the flags given to the compiler to tell
468# it what sort of optimization and/or debugging output to do.
469ifndef +cflags
470# If `CFLAGS' was defined, use that.
471ifdef CFLAGS
472+cflags := $(filter-out -I%,$(CFLAGS))
473endif # CFLAGS
474endif # +cflags
475
fd26970f 476# If none of the above worked, default to "-g -O".
28f540f4
RM
477ifeq "$(strip $(+cflags))" ""
478+cflags := $(default_cflags)
479endif # $(+cflags) == ""
480
28f540f4
RM
481+cflags := $(+cflags) $(+gccwarn)
482+gcc-nowarn := -w
28f540f4
RM
483
484# Don't duplicate options if we inherited variables from the parent.
485+cflags := $(sort $(+cflags))
486
487
488# These are flags given to the C compiler to tell it to look for include
489# files (including ones given in angle brackets) in the current directory
490# and in the parent library source directory.
491# `+sysdep-includes' will be defined by Makerules.
96aa2d94 492+includes = -I. $(filter-out -I,-I$(patsubst %/,%,$(..))) $($(stdio)-include) \
28f540f4
RM
493 $(includes) $(+sysdep-includes) $(last-includes)
494
96aa2d94
RM
495# Since libio has several internal header files, we use a -I instead
496# of many little headers in the top level source directory.
497libio-include = -I$(..)libio
28f540f4
RM
498
499# These are the variables that the implicit compilation rules use.
500CPPFLAGS = $(+includes) $(defines) -include $(..)libc-symbols.h \
8a4b65b4
UD
501 $(sysdep-CPPFLAGS) $(CPPFLAGS-$(suffix $@)) $(CPPFLAGS-$(<F)) \
502 $(CPPFLAGS-$(@F))
d99d7e26 503override CFLAGS = $(+cflags) $(sysdep-CFLAGS) $(CFLAGS-$(suffix $@)) \
8a4b65b4 504 $(CFLAGS-$(<F)) $(CFLAGS-$(@F))
28f540f4
RM
505
506
507# This is the macro that the implicit linking rules use.
508ifneq "$(filter -g,$(+cflags))" "" # -g is in $(+cflags)
509LDFLAGS := -g
510endif
511
f0bf9cb9
RM
512
513# Enable object files for different versions of the library.
514# Various things use $(object-suffixes) to know what all to make.
515# The compilation rules use $(CPPFLAGS-${SUFFIX}) and $(CFLAGS-${SUFFIX})
516# to pass different flags for each flavor.
517libtypes = $(foreach o,$(object-suffixes),$(libtype$o))
518object-suffixes := .o
ceb2d9aa 519all-object-suffixes := .o .so .po .go .bo
f0bf9cb9
RM
520libtype.o := lib%.a
521ifeq (yes,$(build-shared))
522# Under --enable-shared, we will build a shared library of PIC objects.
523# The PIC object files are named foo.so.
524object-suffixes += .so
525CPPFLAGS-.so = -DPIC
fd26970f 526CFLAGS-.so = -fPIC -fno-common
f0bf9cb9
RM
527libtype.so := lib%_pic.a
528endif
529ifeq (yes,$(build-profile))
530# Under --enable-profile, we will build a static library of profiled objects.
531# The profiled object files are named foo.po.
532object-suffixes += .po
a182affd 533CPPFLAGS-.po = -DPROF
7c97bb09 534CFLAGS-.po = -pg
f0bf9cb9
RM
535libtype.po = lib%_p.a
536endif
537ifeq (yes,$(build-omitfp))
538# Under --enable-omitfp, we build an the library optimized without
539# debugging information using -fomit-frame-pointer, and build an extra
540# library with debugging information. The debuggable objects are named foo.go.
541object-suffixes += .go
542CFLAGS-.go = -g
543CFLAGS-.o = -g0 -O99 -fomit-frame-pointer
a8922de8 544CFLAGS-.so += $(CFLAGS-.o)
f0bf9cb9
RM
545libtype.go = lib%_g.a
546endif
5a97622d
UD
547ifeq (yes,$(build-bounded))
548# Under --enable-bounded, we build the library with `-fbounded-pointers -g'
549# to runtime bounds checking. The bounded-pointer objects are named foo.bo.
550object-suffixes += .bo
551CPPFLAGS-.bo = -DBOUNDED_POINTERS
552CFLAGS-.bo = -g -fbounded-pointers
553libtype.bo = lib%_b.a
554endif
f0bf9cb9
RM
555
556
28f540f4
RM
557+gnu-stabs = $(shell echo>&2 '*** BARF ON ME')
558
96bda0ea
RM
559ifndef BUILD_CC
560BUILD_CC = $(CC)
561endif
a641835a
RM
562\f
563# Figure out the version numbers from version.h.
28f540f4 564
0e3426bb
RM
565$(common-objpfx)version.mk: $(..)version.h $(..)Makeconfig
566 sed -n -e 's/^.*RELEASE.*"\([^"]*\)".*$$/release=\1/p' \
567 -e 's/^.*VERSION.*"\([^"]*\)".*$$/version=\1/p' \
a641835a
RM
568 < $< > $@-new
569 mv -f $@-new $@
28f540f4 570
4de1d597
RM
571ifeq (yes, $(build-shared))
572
573# Process the shlib-versions file, which tells us what shared library
574# version numbers to use when we install shared objects on this system.
575-include $(common-objpfx)soversions.mk
576$(common-objpfx)soversions.mk: $(..)shlib-versions $(..)Makeconfig \
edf5b2d7
UD
577 $(wildcard $(patsubst %, $(..)%/shlib-versions,\
578 $(add-ons))) \
4de1d597 579 $(common-objpfx)config.make
ec4b0518
UD
580 (file="$(wildcard $(patsubst %,$(..)%/shlib-versions,$(add-ons))) \
581 $(..)shlib-versions"; \
edf5b2d7 582 for f in $$file; do \
8a523922
UD
583 sed 's/#.*$$//' $$f | while read conf versions; do \
584 test -n "$$versions" && \
585 test `expr '$(config-machine)-$(config-vendor)-$(config-os)' \
586 : "$$conf"` != 0 || continue; \
edf5b2d7
UD
587 for v in $$versions; do \
588 lib=`echo $$v | sed 's/=.*$$//'`; \
589 if eval "test -z \"\$$vers_lib$$lib\""; then \
590 eval vers_lib$${lib}=yes; \
d41c6f61
UD
591 number=`echo $$v | sed "s/^.*=//"`; \
592 case $$number in \
ba1ffaa1
UD
593 [0-9]*) echo "$$lib.so-version=.$$number"; \
594 echo "all-sonames+=$$lib.so\$$($$lib.so-version)";;\
595 *) echo "$$lib.so-version=$$number"; \
596 echo "all-sonames+=\$$($$lib.so-version)";; \
8a523922 597 esac; \
edf5b2d7 598 fi; \
8a523922
UD
599 done; \
600 done; \
edf5b2d7 601 done;) > $@T; exit 0
4de1d597
RM
602 mv -f $@T $@
603
604# Get $(version) defined with the release version number.
605-include $(common-objpfx)version.mk
606
c0e45674
UD
607# Generate the header containing the names of all shared libraries.
608# We use a stamp file to avoid uncessary recompilations.
609before-compile += $(common-objpfx)gnu/lib-names.h
610$(common-objpfx)gnu/lib-names.h: $(common-objpfx)gnu/lib-names.stmp
611$(common-objpfx)gnu/lib-names.stmp: $(common-objpfx)soversions.mk
612 $(make-target-directory)
613 @rm -f ${@:stmp=T} $@
614 (echo '/* This file is automatically generated.';\
615 echo ' It defines macros to allow user program to find the shared';\
616 echo ' library files which come as part of GNU libc. */';\
617 echo '#ifndef __GNU_LIB_NAMES_H'; \
618 echo '#define __GNU_LIB_NAMES_H 1'; \
619 echo; \
620 (libs='$(all-sonames)';\
621 for l in $$libs; do \
622 upname=`echo $$l | sed 's/[.]so.*//' | \
7cc27f44
UD
623 tr 'abcdefghijklmnopqrstuvwxyz-' \
624 'ABCDEFGHIJKLMNOPQRSTUVWXYZ_'`; \
c0e45674
UD
625 echo "#define $${upname}_SO \"$$l\""; \
626 done;) | sort; \
627 echo; \
628 echo '#endif /* gnu/lib-names.h */';) > ${@:stmp=T}
629 if test -r ${@:stmp=h} && cmp -s ${@:stmp=h} ${@:stmp=T}; \
630 then rm -f ${@:stmp=T}; \
631 else mv -f ${@:stmp=T} ${@:stmp=h}; fi
632 touch $@
633
634common-generated += gnu/lib-names.h gnu/lib-names.stmp
d41c6f61
UD
635
636# The name under which the run-time dynamic linker is installed.
637# We are currently going for the convention that `/lib/ld.so.1'
638# names the SVR4/ELF ABI-compliant dynamic linker.
639ifndef rtld-installed-name
640ifdef ld.so-version
641rtld-installed-name = $(ld.so-version)
642else
643rtld-installed-name = ld.so.1
644endif
645endif
646
1ef32c3d
UD
647ifndef rtld-version-installed-name
648rtld-version-installed-name = ld-$(version).so
649endif
650
4de1d597
RM
651endif # build-shared
652
28f540f4 653endif # Makeconfig not yet included