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