]> git.ipfire.org Git - thirdparty/glibc.git/blame - Makeconfig
Update.
[thirdparty/glibc.git] / Makeconfig
CommitLineData
482eec0d 1# Copyright (C) 1991,92,93,94,95,96,97,98,99 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 95# Complete path to sysdep dirs.
9c4c0024 96export full-config-sysdirs := $(addprefix $(..),$(config-sysdirs))
57ba7bb4 97
273d56ce
RM
98# Run config.status to update config.make and config.h. We don't show the
99# dependence of config.h to Make, because it is only touched when it
100# changes and so config.status would be run every time; the dependence of
101# config.make should suffice to force regeneration and re-exec, and the new
102# image will notice if config.h changed.
19361cb7
UD
103$(common-objpfx)config.make: $(common-objpfx)config.status \
104 $(..)config.make.in $(..)config.h.in
273d56ce
RM
105 cd $(<D); $(SHELL) $(<F)
106
7da3079b
RM
107# Find all the sysdeps configure fragments, to make sure we re-run
108# configure when any of them changes.
5290baf0 109$(common-objpfx)config.status: $(..)version.h $(..)configure \
57ba7bb4 110 $(foreach dir,$(full-config-sysdirs),\
e50ec9f9 111 $(wildcard \
57ba7bb4 112 $(dir)/Implies) \
f332db02
RM
113 $(patsubst %.in,%,\
114 $(firstword $(wildcard \
57ba7bb4 115 $(addprefix $(dir)/,configure configure.in)))))
273d56ce
RM
116 @cd $(@D); if test -f $(@F); then exec $(SHELL) $(@F) --recheck; else \
117 echo The GNU C library has not been configured. >&2; \
118 echo Run \`configure\' to configure it before building. >&2; \
119 echo Try \`configure --help\' for more details. >&2; \
120 exit 1; fi
28f540f4 121
74015205
UD
122# We don't want CPPFLAGS to be exported to the command running configure.
123unexport CPPFLAGS
124
28f540f4
RM
125# Get the user's configuration parameters.
126ifneq ($(wildcard $(..)configparms),)
127include $(..)configparms
128endif
129ifneq ($(objpfx),)
6e953631
UD
130ifneq ($(wildcard $(common-objpfx)configparms),)
131include $(common-objpfx)configparms
28f540f4
RM
132endif
133endif
28f540f4
RM
134\f
135####
136#### These are the configuration variables. You can define values for
137#### the variables below in the file `configparms'.
138#### Do NOT edit this file.
139####
140
141
deab9dea
RM
142# Set this to either `stdio' or `libio', to compile in either GNU stdio
143# or GNU libio.
144ifndef stdio
145stdio = stdio
146endif
147
28f540f4 148# Common prefix for machine-independent installation directories.
487253ea 149ifeq ($(origin prefix),undefined) # ifndef would override explicit empty value.
28f540f4
RM
150prefix = /usr/local
151endif
152
0413b54c
UD
153# Decide whether we shall build the programs or not. We always do this
154# unless the user tells us (in configparms) or we are building for a
155# standalone target.
156ifndef build-programs
157ifneq ($(config-os),none)
158build-programs=yes
159else
160build-programs=no
161endif
162endif
163
28f540f4 164# Common prefix for machine-dependent installation directories.
487253ea 165ifeq ($(origin exec_prefix),undefined)
28f540f4
RM
166exec_prefix = $(prefix)
167endif
168
169# Where to install the library and object files.
170ifndef libdir
171libdir = $(exec_prefix)/lib
172endif
8d57beea 173inst_libdir = $(install_root)$(libdir)
28f540f4 174
094bacdb
RM
175# Where to install the shared library and dynamic linker.
176ifndef slibdir
177slibdir = $(exec_prefix)/lib
178endif
8d57beea 179inst_slibdir = $(install_root)$(slibdir)
094bacdb 180
28f540f4
RM
181# Prefix to put on files installed in $(libdir). For libraries `libNAME.a',
182# the prefix is spliced between `lib' and the name, so the linker switch
183# `-l$(libprefix)NAME' finds the library; for other files the prefix is
184# just prepended to the whole file name.
487253ea 185ifeq ($(origin libprefix),undefined)
28f540f4
RM
186libprefix =
187endif
188
189# Where to install the header files.
190ifndef includedir
191includedir = $(exec_prefix)/include
192endif
8d57beea 193inst_includedir = $(install_root)$(includedir)
28f540f4 194
28f540f4 195# Where to install machine-independent data files.
a2fe9c76 196# These are the timezone database, and the locale database.
28f540f4
RM
197ifndef datadir
198datadir = $(prefix)/share
199endif
8d57beea 200inst_datadir = $(install_root)$(datadir)
28f540f4
RM
201
202# Where to install the timezone data files (which are machine-independent).
203ifndef zonedir
204zonedir = $(datadir)/zoneinfo
205endif
8d57beea 206inst_zonedir = $(install_root)$(zonedir)
28f540f4 207
3ec41e03
RM
208# Where to install the locale and message catalog data files (which are
209# machine-independent).
a2fe9c76
RM
210ifndef localedir
211localedir = $(datadir)/locale
212endif
8d57beea 213inst_localedir = $(install_root)$(localedir)
a2fe9c76 214
3ec41e03 215# Where to install the locale charmap source files.
19bc17a9
RM
216ifndef i18ndir
217i18ndir = $(datadir)/i18n
a2fe9c76 218endif
8d57beea 219inst_i18ndir = $(install_root)$(i18ndir)
a2fe9c76 220
6973fc01
UD
221# Where to install the shared object for charset transformation.
222ifndef gconvdir
223gconvdir = $(libdir)/gconv
224endif
225inst_gconvdir = $(install_root)$(gconvdir)
226
28f540f4
RM
227# Where to install programs.
228ifndef bindir
229bindir = $(exec_prefix)/bin
230endif
8d57beea 231inst_bindir = $(install_root)$(bindir)
28f540f4 232
7f0ff1b0
UD
233# Where to install internal programs.
234ifndef libexecdir
235libexecdir = $(exec_prefix)/libexec
236endif
237inst_libexecdir = $(install_root)$(libexecdir)
238
28f540f4 239# Where to install administrative programs.
1ef32c3d
UD
240ifndef rootsbindir
241rootsbindir = $(exec_prefix)/sbin
242endif
8d57beea 243inst_rootsbindir = $(install_root)$(rootsbindir)
1ef32c3d 244
28f540f4
RM
245ifndef sbindir
246sbindir = $(exec_prefix)/sbin
247endif
8d57beea 248inst_sbindir = $(install_root)$(sbindir)
28f540f4
RM
249
250# Where to install the Info files.
251ifndef infodir
252infodir = $(prefix)/info
253endif
8d57beea 254inst_infodir = $(install_root)$(infodir)
28f540f4
RM
255
256# Where to install default configuration files. These include the local
257# timezone specification and network data base files.
258ifndef sysconfdir
259sysconfdir = $(prefix)/etc
260endif
8d57beea 261inst_sysconfdir = $(install_root)$(sysconfdir)
28f540f4
RM
262
263# What timezone should be the installed default (e.g., US/Eastern).
264# Run `make -C time echo-zonenames' to see a list of available zone names.
265# The local timezone can be changed with `zic -l TIMEZONE' at any time.
266ifndef localtime
267localtime = Factory
268endif
269
270# Where to install the "localtime" timezone file; this is the file whose
271# contents $(localtime) specifies. If this is a relative pathname, it is
272# relative to $(zonedir). It is a good idea to put this somewhere
273# other than there, so the zoneinfo directory contains only universal data,
274# localizing the configuration data elsewhere.
275ifndef localtime-file
0d8733c4
UD
276localtime-file = $(sysconfdir)/localtime
277inst_localtime-file = $(install_root)$(localtime-file)
28f540f4
RM
278endif
279
59dd8641
RM
280# What to use for leap second specifications in compiling the default
281# timezone files. Set this to `/dev/null' for no leap second handling as
282# 1003.1 requires, or to `leapseconds' for proper leap second handling.
283# Both zone flavors are always available as `posix/ZONE' and `right/ZONE'.
284# This variable determines the default: if it's `/dev/null',
285# ZONE==posix/ZONE; if it's `leapseconds', ZONE==right/ZONE.
286ifndef leapseconds
287leapseconds = /dev/null
288endif
289
28f540f4
RM
290# What timezone's DST rules should be used when a POSIX-style TZ
291# environment variable doesn't specify any rules. For 1003.1 compliance
292# this timezone must use rules that are as U.S. federal law defines DST.
293# Run `make -C time echo-zonenames' to see a list of available zone names.
294# This setting can be changed with `zic -p TIMEZONE' at any time.
295# If you want POSIX.1 compatibility, use `America/New_York'.
296ifndef posixrules
297posixrules = America/New_York
298endif
299
300# Where to install the "posixrules" timezone file; this is file
301# whose contents $(posixrules) specifies. If this is a relative
302# pathname, it is relative to $(zonedir).
303ifndef posixrules-file
304posixrules-file = posixrules
305endif
306
307
308# Directory where your system's native header files live.
309# This is used on Unix systems to generate some GNU libc header files.
310ifndef sysincludedir
311sysincludedir = /usr/include
312endif
313
314
315# Commands to install files.
316ifndef INSTALL_DATA
317INSTALL_DATA = $(INSTALL) -m 644
318endif
319ifndef INSTALL_PROGRAM
320INSTALL_PROGRAM = $(INSTALL)
321endif
322ifndef INSTALL
323INSTALL = install
324endif
325
326
327# The name of the C compiler.
328# If you've got GCC, and it works, use it.
329ifeq ($(origin CC),default)
330CC := gcc
331endif
332
333# The name of the C compiler to use for compilations of programs to run on
334# the host that is building the library. If you set CC to a
335# cross-compiler, you must set this to the normal compiler.
336ifndef BUILD_CC
337BUILD_CC = $(CC)
338endif
339
340# Default flags to pass the C compiler.
341ifndef default_cflags
a8922de8 342default_cflags := -g -O
28f540f4
RM
343endif
344
345# Flags to pass the C compiler when assembling preprocessed assembly code
346# (`.S' files). On some systems the assembler doesn't understand the `#' line
347# directives the preprocessor produces. If you have troubling compiling
348# assembly code, try using -P here to suppress these directives.
349ifndef asm-CPPFLAGS
350asm-CPPFLAGS =
351endif
352
9a0a462c
UD
353# ELF always supports init/fini sections
354ifeq ($(elf),yes)
355have-initfini = yes
356endif
357
779ae82e 358# Installed name of the startup code.
9a0a462c
UD
359ifneq ($(have-initfini),yes)
360# When not having init/fini, there is just one startfile, called crt0.o.
779ae82e
UD
361start-installed-name = crt0.o
362else
9a0a462c 363# On systems having init/fini, crt0.o is called crt1.o, and there are
779ae82e
UD
364# some additional bizarre files.
365start-installed-name = crt1.o
779ae82e 366endif
af09bfb5
RM
367# On systems that do not need a special startfile for statically linked
368# binaries, simply set it to the normal name.
369ifndef static-start-installed-name
370static-start-installed-name = $(start-installed-name)
371endif
779ae82e 372
28f540f4
RM
373# Command for linking programs with the C library.
374ifndef +link
8e3cc80f 375+link = $(CC) -nostdlib -nostartfiles -o $@ \
482eec0d 376 $(sysdep-LDFLAGS) $(config-LDFLAGS) $(LDFLAGS) $(LDFLAGS-$(@F)) \
779ae82e
UD
377 $(addprefix $(csu-objpfx),$(start-installed-name)) \
378 $(+preinit) $(+prector) \
379 $(filter-out $(addprefix $(csu-objpfx),start.o \
380 $(start-installed-name))\
381 $(+preinit) $(link-extra-libs) \
382 $(common-objpfx)libc% $(+postinit),$^) \
5ae9d168 383 $(link-extra-libs) $(link-libc) $(+postctor) $(+postinit)
28f540f4 384endif
e1586792
UD
385# Command for statically linking programs with the C library.
386ifndef +link-static
387+link-static = $(CC) -nostdlib -nostartfiles -static -o $@ \
388 $(sysdep-LDFLAGS) $(LDFLAGS) \
af09bfb5 389 $(addprefix $(csu-objpfx),$(static-start-installed-name)) \
e1586792
UD
390 $(+preinit) $(+prector) \
391 $(filter-out $(addprefix $(csu-objpfx),start.o \
392 $(start-installed-name))\
393 $(+preinit) $(link-extra-libs-static) \
394 $(common-objpfx)libc% $(+postinit),$^) \
395 $(link-extra-libs-static) $(link-libc-static) $(+postctor) $(+postinit)
396endif
b122c703
RM
397ifndef config-LDFLAGS
398ifeq (yes,$(build-shared))
094bacdb 399config-LDFLAGS = -Wl,-dynamic-linker=$(slibdir)/$(rtld-installed-name)
b122c703
RM
400endif
401endif
3fe9de0d
RM
402ifndef link-libc
403ifeq (yes,$(build-shared))
aa1075ea
RM
404# We need the versioned name of libc.so in the deps of $(others) et al
405# so that the symlink to libc.so is created before anything tries to
406# run the linked programs.
4d6acc61 407link-libc = -Wl,-rpath-link=$(rpath-link) \
aa1075ea 408 $(common-objpfx)libc.so$(libc.so-version) \
a44d2393 409 $(common-objpfx)$(patsubst %,$(libtype.oS),c) $(gnulib)
4cb20290
RM
410# Choose the default search path for the dynamic linker based on
411# where we will install libraries.
412ifneq ($(libdir),$(slibdir))
413default-rpath = $(slibdir):$(libdir)
414else
415default-rpath = $(libdir)
416endif
4d6acc61 417# This is how to find at build-time things that will be installed there.
94e365c6 418rpath-dirs = math elf dlfcn nss nis db2 rt resolv
e72bfd87
UD
419rpath-link = \
420$(common-objdir):$(subst $(empty) ,:,$(patsubst ../$(subdir),.,$(rpath-dirs:%=$(common-objpfx)%)))
47707456 421elfobjdir := $(patsubst ../$(subdir),.,$(common-objpfx)elf)
26b4d766 422dbobjdir := $(patsubst ../$(subdir),.,$(common-objpfx)db2)
3fe9de0d 423else
ce85d65b
UD
424nssobjdir := $(patsubst ../$(subdir),.,$(common-objpfx)nss)
425resolvobjdir := $(patsubst ../$(subdir),.,$(common-objpfx)resolv)
4ac5087b 426link-libc = $(common-objpfx)libc.a $(otherlibs) $(gnulib) $(common-objpfx)libc.a $(gnulib)
3fe9de0d
RM
427endif
428endif
900bec85 429
57ba7bb4
UD
430ifndef link-extra-libs
431ifeq (yes,$(build-shared))
c57abfa7
UD
432ifneq ($(common-objpfx),$(objpfx))
433link-extra-libs = $(foreach lib,$(LDLIBS-$(@F)),\
434 $(wildcard $(common-objpfx)$(lib).so$($(notdir $(lib)).so-version) \
435 $(objpfx)$(lib).so$($(notdir $(lib)).so-version)))
436else
57ba7bb4 437link-extra-libs = $(foreach lib,$(LDLIBS-$(@F)),$(common-objpfx)$(lib).so$($(notdir $(lib)).so-version))
c57abfa7 438endif
57ba7bb4
UD
439else
440link-extra-libs = $(foreach lib,$(LDLIBS-$(@F)),$(common-objpfx)$(lib).a)
441endif
442endif
e1586792
UD
443
444# The static libraries.
66000494 445ifeq (yes,$(build-static))
e1586792
UD
446link-libc-static = $(common-objpfx)libc.a $(gnulib) $(common-objpfx)libc.a
447link-extra-libs-static = $(foreach lib,$(LDLIBS-$(@F)),$(common-objpfx)$(lib).a)
66000494
UD
448else
449ifeq (yes,$(build-shared))
450# We can try to link the programs with lib*_pic.a...
a94b2ac0 451link-libc-static = $(gnulib) $(common-objpfx)libc_pic.a
66000494
UD
452link-extra-libs-static = $(link-extra-libs)
453endif
454endif
e1586792 455
28f540f4
RM
456ifndef gnulib
457gnulib := -lgcc
458endif
96f873b9 459ifeq ($(elf),yes)
e75154a6
RM
460+preinit = $(addprefix $(csu-objpfx),crti.o)
461+postinit = $(addprefix $(csu-objpfx),crtn.o)
5ae9d168
UD
462+prector = `$(CC) --print-file-name=crtbegin.o`
463+postctor = `$(CC) --print-file-name=crtend.o`
66715f83 464+interp = $(addprefix $(elf-objpfx),interp.os)
96f873b9 465endif
6e953631
UD
466csu-objpfx = $(common-objpfx)csu/
467elf-objpfx = $(common-objpfx)elf/
28f540f4 468
03a75825
RM
469# How to run a program we just linked with our library.
470# The program binary is assumed to be $(word 2,$^).
471built-program-file = $(dir $(word 2,$^))$(notdir $(word 2,$^))
472ifneq (yes,$(build-shared))
473built-program-cmd = $(built-program-file)
474else
196980f5 475comma = ,
11336c16
UD
476sysdep-library-path = \
477$(subst $(empty) ,:,$(strip $(patsubst -Wl$(comma)-rpath-link=%, %,\
478 $(filter -Wl$(comma)-rpath-link=%,\
479 $(sysdep-LDFLAGS)))))
03a75825 480define built-program-cmd
880f421f
UD
481$(elf-objpfx)$(rtld-installed-name) \
482 --library-path $(rpath-link)$(patsubst %,:%,$(sysdep-library-path)) \
483 $(built-program-file)
03a75825
RM
484endef
485endif
486
28f540f4
RM
487ifndef LD
488LD := ld -X
489endif
490
491ifndef RANLIB
492RANLIB = ranlib
493endif
494
495# Extra flags to pass to GCC.
6796bc80 496+gccwarn := -Wall -Wwrite-strings -Winline -Wstrict-prototypes
28f540f4
RM
497
498# This is the program that generates makefile
499# dependencies from C source files.
500ifndef +mkdep
501+mkdep = $(CC) -M
502endif
503
504# The program that makes Emacs-style TAGS files.
505ETAGS := etags -T
506
507# The `m4' macro processor; this is used by sysdeps/sparc/Makefile (and
508# perhaps others) to preprocess assembly code in some cases.
509M4 = m4
510
73237de3
UD
511# To force installation of files even if they are older than the
512# installed files. This variable is included in the dependency list
513# of all installation targets.
514ifeq ($(force-install),yes)
515+force = force-install
516else
517+force =
518endif
519
28f540f4
RM
520####
521#### End of configuration variables.
522####
523\f
524# This tells some versions of GNU make before 3.63 not to export all variables.
525.NOEXPORT:
526
527# We want to echo the commands we're running without
6d52618b 528# umpteen zillion filenames along with it (we use `...' instead)
28f540f4
RM
529# but we don't want this echoing done when the user has said
530# he doesn't want to see commands echoed by using -s.
531ifneq "$(findstring s,$(MAKEFLAGS))" "" # if -s
532+cmdecho := echo >/dev/null
533else # not -s
534+cmdecho := echo
535endif # -s
536
537# These are the flags given to the compiler to tell
538# it what sort of optimization and/or debugging output to do.
539ifndef +cflags
540# If `CFLAGS' was defined, use that.
541ifdef CFLAGS
542+cflags := $(filter-out -I%,$(CFLAGS))
543endif # CFLAGS
544endif # +cflags
545
fd26970f 546# If none of the above worked, default to "-g -O".
28f540f4
RM
547ifeq "$(strip $(+cflags))" ""
548+cflags := $(default_cflags)
549endif # $(+cflags) == ""
550
28f540f4
RM
551+cflags := $(+cflags) $(+gccwarn)
552+gcc-nowarn := -w
28f540f4
RM
553
554# Don't duplicate options if we inherited variables from the parent.
555+cflags := $(sort $(+cflags))
556
557
558# These are flags given to the C compiler to tell it to look for include
762a2918
UD
559# files (including ones given in angle brackets) in the current directory,
560# in the parent library source directory and in the include directory.
28f540f4 561# `+sysdep-includes' will be defined by Makerules.
bdbf022d
UD
562+includes = -I$(..)include -I. \
563 $(patsubst %/,-I%,$(objpfx)) $(patsubst %/,-I%,$(..)) \
564 $($(stdio)-include) $(includes) \
dbe7a0f5 565 $(+sysdep-includes) $(last-includes) $(sysincludes)
28f540f4 566
96aa2d94 567# Since libio has several internal header files, we use a -I instead
762a2918 568# of many little headers in the include directory.
96aa2d94 569libio-include = -I$(..)libio
28f540f4
RM
570
571# These are the variables that the implicit compilation rules use.
3387a425 572CPPFLAGS = $($(subdir)-CPPFLAGS) $(+includes) $(defines) \
ae8b36f7 573 -include $(..)include/libc-symbols.h $(sysdep-CPPFLAGS) \
fdacb17d 574 $(CPPFLAGS-$(suffix $@)) $(CPPFLAGS-$(<F)) $(CPPFLAGS-$(@F))
14e9dd67
UD
575override CFLAGS = $(filter-out %frame-pointer,$(+cflags)) $(sysdep-CFLAGS) \
576 $(CFLAGS-$(suffix $@)) $(CFLAGS-$(<F)) $(CFLAGS-$(@F))
28f540f4 577
cc3fa755
UD
578# If everything is compiled with -fPIC (implicitly) we must tell this by
579# defining the PIC symbol.
580ifeq (yes,$(build-pic-default))
581pic-default = -DPIC
582endif
583
f0bf9cb9
RM
584# Enable object files for different versions of the library.
585# Various things use $(object-suffixes) to know what all to make.
586# The compilation rules use $(CPPFLAGS-${SUFFIX}) and $(CFLAGS-${SUFFIX})
587# to pass different flags for each flavor.
91641c65 588libtypes = $(foreach o,$(object-suffixes-for-libc),$(libtype$o))
a35cb74d 589all-object-suffixes := .o .os .op .og .ob .oS
650425ce 590object-suffixes :=
cc3fa755 591CPPFLAGS-.o = $(pic-default)
14e9dd67 592CFLAGS-.o = $(filter %frame-pointer,$(+cflags))
66000494 593ifeq (yes,$(build-static))
f0bf9cb9 594libtype.o := lib%.a
650425ce
UD
595object-suffixes += .o
596endif
f0bf9cb9
RM
597ifeq (yes,$(build-shared))
598# Under --enable-shared, we will build a shared library of PIC objects.
40a55d20
UD
599# The PIC object files are named foo.os.
600object-suffixes += .os
601CPPFLAGS-.os = -DPIC
14e9dd67 602CFLAGS-.os = $(filter %frame-pointer,$(+cflags)) $(pic-ccflag)
40a55d20 603libtype.os := lib%_pic.a
26b4d766
UD
604# This can be changed by a sysdep makefile
605pic-ccflag = -fPIC
f0bf9cb9
RM
606endif
607ifeq (yes,$(build-profile))
608# Under --enable-profile, we will build a static library of profiled objects.
40a55d20
UD
609# The profiled object files are named foo.op.
610object-suffixes += .op
cc3fa755 611CPPFLAGS-.op = -DPROF $(pic-default)
40a55d20
UD
612CFLAGS-.op = -pg
613libtype.op = lib%_p.a
f0bf9cb9
RM
614endif
615ifeq (yes,$(build-omitfp))
616# Under --enable-omitfp, we build an the library optimized without
617# debugging information using -fomit-frame-pointer, and build an extra
40a55d20
UD
618# library with debugging information. The debuggable objects are named foo.og.
619object-suffixes += .og
cc3fa755 620CPPFLAGS-.og = $(pic-default)
40a55d20 621CFLAGS-.og = -g
14e9dd67
UD
622CFLAGS-.o = $(filter %frame-pointer,$(+cflags)) -g0 -O99 -fomit-frame-pointer -D__USE_STRING_INLINES
623CFLAGS-.os += -g0 -O99 -fomit-frame-pointer -D__USE_STRING_INLINES
40a55d20 624libtype.og = lib%_g.a
f0bf9cb9 625endif
5a97622d
UD
626ifeq (yes,$(build-bounded))
627# Under --enable-bounded, we build the library with `-fbounded-pointers -g'
40a55d20
UD
628# to runtime bounds checking. The bounded-pointer objects are named foo.ob.
629object-suffixes += .ob
cc3fa755 630CPPFLAGS-.ob = -DBOUNDED_POINTERS $(pic-default)
40a55d20
UD
631CFLAGS-.ob = -g -fbounded-pointers
632libtype.ob = lib%_b.a
5a97622d 633endif
f0bf9cb9 634
9afc8a59
UD
635object-suffixes-for-libc := $(object-suffixes)
636
637ifeq (yes,$(build-shared))
638# Build special library that contains the static-only routines for libc.
639object-suffixes-for-libc += .oS
640
641# Must build the routines as PIC, though, because they can end up in (users')
642# shared objects. We don't want to use CFLAGS-os because users may, for
643# example, make that processor-specific.
644CFLAGS-.oS = $(CFLAGS-.o) $(pic-ccflag)
6ca96fe2 645CPPFLAGS-.oS = $(CPPFLAGS-.o) -DPIC
9afc8a59
UD
646libtype.oS = lib%_nonshared.a
647endif
648
649
28f540f4
RM
650+gnu-stabs = $(shell echo>&2 '*** BARF ON ME')
651
96bda0ea
RM
652ifndef BUILD_CC
653BUILD_CC = $(CC)
654endif
e72bfd87
UD
655
656move-if-change = $(SHELL) $(..)scripts/move-if-change
a641835a 657\f
9a0a462c 658
4de1d597
RM
659ifeq (yes, $(build-shared))
660
661# Process the shlib-versions file, which tells us what shared library
662# version numbers to use when we install shared objects on this system.
663-include $(common-objpfx)soversions.mk
eca3eb3b 664ifndef avoid-generated
4de1d597 665$(common-objpfx)soversions.mk: $(..)shlib-versions $(..)Makeconfig \
edf5b2d7
UD
666 $(wildcard $(patsubst %, $(..)%/shlib-versions,\
667 $(add-ons))) \
4de1d597 668 $(common-objpfx)config.make
ec4b0518
UD
669 (file="$(wildcard $(patsubst %,$(..)%/shlib-versions,$(add-ons))) \
670 $(..)shlib-versions"; \
edf5b2d7 671 for f in $$file; do \
8a523922
UD
672 sed 's/#.*$$//' $$f | while read conf versions; do \
673 test -n "$$versions" && \
674 test `expr '$(config-machine)-$(config-vendor)-$(config-os)' \
675 : "$$conf"` != 0 || continue; \
edf5b2d7
UD
676 for v in $$versions; do \
677 lib=`echo $$v | sed 's/=.*$$//'`; \
678 if eval "test -z \"\$$vers_lib$$lib\""; then \
679 eval vers_lib$${lib}=yes; \
d41c6f61
UD
680 number=`echo $$v | sed "s/^.*=//"`; \
681 case $$number in \
ba1ffaa1
UD
682 [0-9]*) echo "$$lib.so-version=.$$number"; \
683 echo "all-sonames+=$$lib.so\$$($$lib.so-version)";;\
684 *) echo "$$lib.so-version=$$number"; \
685 echo "all-sonames+=\$$($$lib.so-version)";; \
8a523922 686 esac; \
edf5b2d7 687 fi; \
8a523922
UD
688 done; \
689 done; \
edf5b2d7 690 done;) > $@T; exit 0
4de1d597 691 mv -f $@T $@
eca3eb3b
UD
692endif
693
694postclean-generated += soversions.mk
4de1d597 695
c0e45674
UD
696# Generate the header containing the names of all shared libraries.
697# We use a stamp file to avoid uncessary recompilations.
698before-compile += $(common-objpfx)gnu/lib-names.h
60c34a30 699$(common-objpfx)gnu/lib-names.h: $(common-objpfx)gnu/lib-names.stmp; @:
c0e45674
UD
700$(common-objpfx)gnu/lib-names.stmp: $(common-objpfx)soversions.mk
701 $(make-target-directory)
702 @rm -f ${@:stmp=T} $@
703 (echo '/* This file is automatically generated.';\
704 echo ' It defines macros to allow user program to find the shared';\
705 echo ' library files which come as part of GNU libc. */';\
706 echo '#ifndef __GNU_LIB_NAMES_H'; \
707 echo '#define __GNU_LIB_NAMES_H 1'; \
708 echo; \
709 (libs='$(all-sonames)';\
710 for l in $$libs; do \
711 upname=`echo $$l | sed 's/[.]so.*//' | \
7cc27f44
UD
712 tr 'abcdefghijklmnopqrstuvwxyz-' \
713 'ABCDEFGHIJKLMNOPQRSTUVWXYZ_'`; \
c0e45674
UD
714 echo "#define $${upname}_SO \"$$l\""; \
715 done;) | sort; \
716 echo; \
717 echo '#endif /* gnu/lib-names.h */';) > ${@:stmp=T}
7e7a548e 718 $(move-if-change) ${@:stmp=T} ${@:stmp=h}
c0e45674
UD
719 touch $@
720
721common-generated += gnu/lib-names.h gnu/lib-names.stmp
d41c6f61
UD
722
723# The name under which the run-time dynamic linker is installed.
724# We are currently going for the convention that `/lib/ld.so.1'
725# names the SVR4/ELF ABI-compliant dynamic linker.
726ifndef rtld-installed-name
727ifdef ld.so-version
728rtld-installed-name = $(ld.so-version)
729else
730rtld-installed-name = ld.so.1
731endif
732endif
733
1ef32c3d
UD
734ifndef rtld-version-installed-name
735rtld-version-installed-name = ld-$(version).so
736endif
737
f649c201
UD
738endif # build-shared
739
cbdee279
UD
740ifneq (,$(findstring linuxthreads,$(add-ons)))
741shared-thread-library = $(common-objpfx)linuxthreads/libpthread.so
f649c201
UD
742static-thread-library = $(common-objpfx)linuxthreads/libpthread.a
743have-thread-library = yes
e72bfd87 744rpath-dirs += linuxthreads
cbdee279
UD
745endif
746
b22fc5f5 747-include $(common-objpfx)sysd-dirs
b22fc5f5 748
94e365c6
UD
749ifeq ($(elf),yes)
750dlfcn = dlfcn
751ifeq ($(build-shared),yes)
752libdl = $(common-objpfx)dlfcn/libdl.so$(libdl.so-version)
753else
754libdl = $(common-objpfx)dlfcn/libdl.a
755endif
756else
757# No ELF - no libdl, at least for now.
758dlfcn =
759libdl =
760endif
761
bb41a976
UD
762# These are the subdirectories containing the library source. The order
763# is more or less arbitrary. The sorting step will take care of the
764# dependencies. Only the $(binfmt-subdir) should always be kept at the
765# end of the list.
24fd4cc4 766all-subdirs = csu assert ctype db db2 locale intl catgets math setjmp signal\
b0b67c47
UD
767 stdlib stdio-common $(stdio) malloc string wcsmbs time dirent \
768 grp pwd posix io termios resource misc socket sysvipc gmon \
769 gnulib iconv iconvdata wctype manual shadow md5-crypt po argp \
770 $(add-ons) nss localedata timezone rt debug $(sysdep-subdirs) \
94e365c6 771 $(dlfcn) $(binfmt-subdir)
f3c1143b 772all-subdirs := $(filter-out $(sysdep-inhibit-subdirs),$(all-subdirs))
bb41a976 773
9dc09d30 774ifeq ($(sysd-dirs-done),t)
bb41a976
UD
775-include $(common-objpfx)sysd-sorted
776subdirs = $(sorted-subdirs)
9dc09d30 777endif
b22fc5f5
UD
778
779# The mach and hurd subdirectories have many generated header files which
780# much of the rest of the library depends on, so it is best to build them
781# first (and mach before hurd, at that). The before-compile additions in
782# sysdeps/{mach,hurd}/Makefile should make it reliably work for these files
783# not to exist when making in other directories, but it will be slower that
784# way with more somewhat expensive `make' invocations.
785subdirs := $(filter mach,$(subdirs)) $(filter hurd,$(subdirs)) \
786 $(filter-out mach hurd,$(subdirs))
787
b7e2d9a5 788ifndef avoid-generated
9c4c0024 789all-Subdirs-files = $(wildcard $(config-sysdirs:%=$(..)%/Subdirs))
b22fc5f5 790$(common-objpfx)sysd-dirs: $(common-objpfx)config.make $(all-Subdirs-files)
0155a773
UD
791 $(AWK) 'BEGIN { subdirs = ""; inhibit = "" }; \
792 /^#/ { next }; \
793 /^[^-]/ { subdirs = subdirs " " $$0 }; \
794 /^-/ { inhibit = inhibit " " substr($$0, 2) }; \
795 END { printf "sysdep-subdirs =%s\n", subdirs; \
796 printf "sysdep-inhibit-subdirs =%s\n", inhibit; \
797 print "sysd-dirs-done = t" }' \
48252123 798 $(patsubst $<,/dev/null,$^) > $@-tmp
b22fc5f5
UD
799 mv -f $@-tmp $@
800
bb41a976
UD
801all-Depend-files = $(wildcard $(..)*/Depend)
802$(common-objpfx)sysd-sorted: $(..)scripts/gen-sorted.awk $(all-Depend-files) \
803 $(common-objpfx)sysd-dirs $(..)Makeconfig
9ba5483d 804 (dirs='$(patsubst $(..)%/Depend,$(..)%,$(filter %/Depend, $^))';\
48252123 805 for d in $$dirs; do \
5edb9387 806 while read on; do \
48252123
UD
807 echo "depend $$d $$on"; \
808 done < $$d/Depend; \
5edb9387 809 done; \
bb41a976
UD
810 for f in $(all-subdirs); do \
811 echo $$f; \
812 done \
48252123 813 ) | $(AWK) -f $< > $@-tmp
bb41a976 814 mv -f $@-tmp $@
b7e2d9a5 815endif
bb41a976 816
28f540f4 817endif # Makeconfig not yet included