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