]> git.ipfire.org Git - thirdparty/glibc.git/blame - Makeconfig
Update.
[thirdparty/glibc.git] / Makeconfig
CommitLineData
e20dd97d 1# Copyright (C) 1991-2000, 2001 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
41bdb6e2
AJ
5# modify it under the terms of the GNU Lesser General Public
6# License as published by the Free Software Foundation; either
7# version 2.1 of the License, or (at your option) any later version.
28f540f4
RM
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
41bdb6e2 12# Lesser General Public License for more details.
28f540f4 13
41bdb6e2
AJ
14# You should have received a copy of the GNU Lesser General Public
15# License along with the GNU C Library; if not, write to the Free
16# Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
17# 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.
0a55a284 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 \
0a55a284 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
4a33c2f5 208# Where to install the locale files.
a2fe9c76 209ifndef localedir
4a33c2f5 210localedir = $(libdir)/locale
a2fe9c76 211endif
8d57beea 212inst_localedir = $(install_root)$(localedir)
a2fe9c76 213
4a33c2f5
UD
214# Where to install the message catalog data files (which are
215# machine-independent).
216ifndef msgcatdir
217msgcatdir = $(datadir)/locale
218endif
219inst_msgcatdir = $(install_root)$(msgcatdir)
220
3ec41e03 221# Where to install the locale charmap source files.
19bc17a9
RM
222ifndef i18ndir
223i18ndir = $(datadir)/i18n
a2fe9c76 224endif
8d57beea 225inst_i18ndir = $(install_root)$(i18ndir)
a2fe9c76 226
6973fc01
UD
227# Where to install the shared object for charset transformation.
228ifndef gconvdir
229gconvdir = $(libdir)/gconv
230endif
231inst_gconvdir = $(install_root)$(gconvdir)
232
28f540f4
RM
233# Where to install programs.
234ifndef bindir
235bindir = $(exec_prefix)/bin
236endif
8d57beea 237inst_bindir = $(install_root)$(bindir)
28f540f4 238
7f0ff1b0
UD
239# Where to install internal programs.
240ifndef libexecdir
241libexecdir = $(exec_prefix)/libexec
242endif
243inst_libexecdir = $(install_root)$(libexecdir)
244
28f540f4 245# Where to install administrative programs.
1ef32c3d
UD
246ifndef rootsbindir
247rootsbindir = $(exec_prefix)/sbin
248endif
8d57beea 249inst_rootsbindir = $(install_root)$(rootsbindir)
1ef32c3d 250
28f540f4
RM
251ifndef sbindir
252sbindir = $(exec_prefix)/sbin
253endif
8d57beea 254inst_sbindir = $(install_root)$(sbindir)
28f540f4
RM
255
256# Where to install the Info files.
257ifndef infodir
258infodir = $(prefix)/info
259endif
8d57beea 260inst_infodir = $(install_root)$(infodir)
28f540f4
RM
261
262# Where to install default configuration files. These include the local
263# timezone specification and network data base files.
264ifndef sysconfdir
265sysconfdir = $(prefix)/etc
266endif
8d57beea 267inst_sysconfdir = $(install_root)$(sysconfdir)
28f540f4
RM
268
269# What timezone should be the installed default (e.g., US/Eastern).
270# Run `make -C time echo-zonenames' to see a list of available zone names.
271# The local timezone can be changed with `zic -l TIMEZONE' at any time.
272ifndef localtime
273localtime = Factory
274endif
275
276# Where to install the "localtime" timezone file; this is the file whose
277# contents $(localtime) specifies. If this is a relative pathname, it is
278# relative to $(zonedir). It is a good idea to put this somewhere
279# other than there, so the zoneinfo directory contains only universal data,
280# localizing the configuration data elsewhere.
281ifndef localtime-file
0d8733c4
UD
282localtime-file = $(sysconfdir)/localtime
283inst_localtime-file = $(install_root)$(localtime-file)
28f540f4
RM
284endif
285
59dd8641
RM
286# What to use for leap second specifications in compiling the default
287# timezone files. Set this to `/dev/null' for no leap second handling as
288# 1003.1 requires, or to `leapseconds' for proper leap second handling.
289# Both zone flavors are always available as `posix/ZONE' and `right/ZONE'.
290# This variable determines the default: if it's `/dev/null',
291# ZONE==posix/ZONE; if it's `leapseconds', ZONE==right/ZONE.
292ifndef leapseconds
293leapseconds = /dev/null
294endif
295
28f540f4
RM
296# What timezone's DST rules should be used when a POSIX-style TZ
297# environment variable doesn't specify any rules. For 1003.1 compliance
298# this timezone must use rules that are as U.S. federal law defines DST.
299# Run `make -C time echo-zonenames' to see a list of available zone names.
300# This setting can be changed with `zic -p TIMEZONE' at any time.
301# If you want POSIX.1 compatibility, use `America/New_York'.
302ifndef posixrules
303posixrules = America/New_York
304endif
305
306# Where to install the "posixrules" timezone file; this is file
307# whose contents $(posixrules) specifies. If this is a relative
308# pathname, it is relative to $(zonedir).
309ifndef posixrules-file
310posixrules-file = posixrules
311endif
312
313
314# Directory where your system's native header files live.
315# This is used on Unix systems to generate some GNU libc header files.
316ifndef sysincludedir
317sysincludedir = /usr/include
318endif
319
320
321# Commands to install files.
322ifndef INSTALL_DATA
323INSTALL_DATA = $(INSTALL) -m 644
324endif
325ifndef INSTALL_PROGRAM
326INSTALL_PROGRAM = $(INSTALL)
327endif
328ifndef INSTALL
329INSTALL = install
330endif
331
332
333# The name of the C compiler.
334# If you've got GCC, and it works, use it.
335ifeq ($(origin CC),default)
336CC := gcc
337endif
338
339# The name of the C compiler to use for compilations of programs to run on
340# the host that is building the library. If you set CC to a
341# cross-compiler, you must set this to the normal compiler.
342ifndef BUILD_CC
343BUILD_CC = $(CC)
344endif
345
346# Default flags to pass the C compiler.
347ifndef default_cflags
1d5c2feb
UD
348ifeq ($(release),stable)
349default_cflags := -g -O2
350else
a8922de8 351default_cflags := -g -O
28f540f4 352endif
1d5c2feb 353endif
28f540f4
RM
354
355# Flags to pass the C compiler when assembling preprocessed assembly code
356# (`.S' files). On some systems the assembler doesn't understand the `#' line
357# directives the preprocessor produces. If you have troubling compiling
358# assembly code, try using -P here to suppress these directives.
359ifndef asm-CPPFLAGS
360asm-CPPFLAGS =
361endif
362
9a0a462c
UD
363# ELF always supports init/fini sections
364ifeq ($(elf),yes)
365have-initfini = yes
366endif
367
779ae82e 368# Installed name of the startup code.
9a0a462c
UD
369ifneq ($(have-initfini),yes)
370# When not having init/fini, there is just one startfile, called crt0.o.
779ae82e
UD
371start-installed-name = crt0.o
372else
9a0a462c 373# On systems having init/fini, crt0.o is called crt1.o, and there are
779ae82e
UD
374# some additional bizarre files.
375start-installed-name = crt1.o
779ae82e 376endif
af09bfb5
RM
377# On systems that do not need a special startfile for statically linked
378# binaries, simply set it to the normal name.
379ifndef static-start-installed-name
380static-start-installed-name = $(start-installed-name)
381endif
779ae82e 382
28f540f4
RM
383# Command for linking programs with the C library.
384ifndef +link
8e3cc80f 385+link = $(CC) -nostdlib -nostartfiles -o $@ \
482eec0d 386 $(sysdep-LDFLAGS) $(config-LDFLAGS) $(LDFLAGS) $(LDFLAGS-$(@F)) \
779ae82e
UD
387 $(addprefix $(csu-objpfx),$(start-installed-name)) \
388 $(+preinit) $(+prector) \
389 $(filter-out $(addprefix $(csu-objpfx),start.o \
390 $(start-installed-name))\
391 $(+preinit) $(link-extra-libs) \
392 $(common-objpfx)libc% $(+postinit),$^) \
5ae9d168 393 $(link-extra-libs) $(link-libc) $(+postctor) $(+postinit)
28f540f4 394endif
e1586792
UD
395# Command for statically linking programs with the C library.
396ifndef +link-static
397+link-static = $(CC) -nostdlib -nostartfiles -static -o $@ \
398 $(sysdep-LDFLAGS) $(LDFLAGS) \
af09bfb5 399 $(addprefix $(csu-objpfx),$(static-start-installed-name)) \
e1586792
UD
400 $(+preinit) $(+prector) \
401 $(filter-out $(addprefix $(csu-objpfx),start.o \
402 $(start-installed-name))\
403 $(+preinit) $(link-extra-libs-static) \
404 $(common-objpfx)libc% $(+postinit),$^) \
405 $(link-extra-libs-static) $(link-libc-static) $(+postctor) $(+postinit)
406endif
ac556388
GM
407# Command for statically linking bounded-pointer programs with the C library.
408ifndef +link-bounded
409+link-bounded = $(CC) -nostdlib -nostartfiles -static -fbounded-pointers -o $@ \
410 $(sysdep-LDFLAGS) $(LDFLAGS) \
411 $(addprefix $(csu-objpfx),b$(static-start-installed-name)) \
412 $(+preinit) $(+prector) \
4362aba5 413 $(filter-out $(addprefix $(csu-objpfx),start.ob \
ac556388
GM
414 $(start-installed-name))\
415 $(+preinit) $(link-extra-libs-bounded) \
416 $(common-objpfx)libc% $(+postinit),$^) \
417 $(link-extra-libs-bounded) $(link-libc-bounded) $(+postctor) $(+postinit)
418endif
b122c703
RM
419ifndef config-LDFLAGS
420ifeq (yes,$(build-shared))
094bacdb 421config-LDFLAGS = -Wl,-dynamic-linker=$(slibdir)/$(rtld-installed-name)
b122c703
RM
422endif
423endif
3fe9de0d
RM
424ifndef link-libc
425ifeq (yes,$(build-shared))
ad10cac8 426ifeq ($(elf),yes)
aa1075ea
RM
427# We need the versioned name of libc.so in the deps of $(others) et al
428# so that the symlink to libc.so is created before anything tries to
429# run the linked programs.
4d6acc61 430link-libc = -Wl,-rpath-link=$(rpath-link) \
aa1075ea 431 $(common-objpfx)libc.so$(libc.so-version) \
a44d2393 432 $(common-objpfx)$(patsubst %,$(libtype.oS),c) $(gnulib)
4d6acc61 433# This is how to find at build-time things that will be installed there.
b11f5954 434rpath-dirs = math elf dlfcn nss nis rt resolv crypt
ad10cac8
UD
435else
436ifneq (,$(findstring aix,$(config-os)))
437link-libc = $(common-objpfx)libc.so \
438 $(common-objpfx)$(patsubst %,$(libtype.oS),c) $(gnulib)
439rpath-dirs = math dlfcn nss nis rt resolv crypt
440endif
441endif
e72bfd87
UD
442rpath-link = \
443$(common-objdir):$(subst $(empty) ,:,$(patsubst ../$(subdir),.,$(rpath-dirs:%=$(common-objpfx)%)))
47707456 444elfobjdir := $(patsubst ../$(subdir),.,$(common-objpfx)elf)
3fe9de0d 445else
ce85d65b
UD
446nssobjdir := $(patsubst ../$(subdir),.,$(common-objpfx)nss)
447resolvobjdir := $(patsubst ../$(subdir),.,$(common-objpfx)resolv)
4ac5087b 448link-libc = $(common-objpfx)libc.a $(otherlibs) $(gnulib) $(common-objpfx)libc.a $(gnulib)
3fe9de0d
RM
449endif
450endif
900bec85 451
ad10cac8
UD
452# Differences in the linkers on the various platforms.
453ifeq ($(elf),yes)
454LDFLAGS-rpath-ORIGIN = -Wl,-rpath,'$$ORIGIN'
455LDFLAGS-soname-fname = -Wl,-soname,$(@F)
456LDFLAGS-rdynamic = -rdynamic
457LDFLAGS-Bsymbolic = -Bsymbolic
458else
459ifneq (,$(findstring aix,$(config-os)))
460LDFLAGS-rpath-ORIGIN =
461LDFLAGS-soname-fname =
462LDFLAGS-rdynamic = -Wl,-bdynamic
463LDFLAGS-Bsymbolic = -Wl,-bsymbolic
464endif
465endif
466
f01010de
UD
467# Choose the default search path for the dynamic linker based on
468# where we will install libraries.
469ifneq ($(libdir),$(slibdir))
470default-rpath = $(slibdir):$(libdir)
471else
472default-rpath = $(libdir)
473endif
474
57ba7bb4
UD
475ifndef link-extra-libs
476ifeq (yes,$(build-shared))
c57abfa7
UD
477ifneq ($(common-objpfx),$(objpfx))
478link-extra-libs = $(foreach lib,$(LDLIBS-$(@F)),\
479 $(wildcard $(common-objpfx)$(lib).so$($(notdir $(lib)).so-version) \
480 $(objpfx)$(lib).so$($(notdir $(lib)).so-version)))
481else
57ba7bb4 482link-extra-libs = $(foreach lib,$(LDLIBS-$(@F)),$(common-objpfx)$(lib).so$($(notdir $(lib)).so-version))
c57abfa7 483endif
57ba7bb4
UD
484else
485link-extra-libs = $(foreach lib,$(LDLIBS-$(@F)),$(common-objpfx)$(lib).a)
486endif
487endif
e1586792
UD
488
489# The static libraries.
66000494 490ifeq (yes,$(build-static))
e1586792
UD
491link-libc-static = $(common-objpfx)libc.a $(gnulib) $(common-objpfx)libc.a
492link-extra-libs-static = $(foreach lib,$(LDLIBS-$(@F)),$(common-objpfx)$(lib).a)
66000494
UD
493else
494ifeq (yes,$(build-shared))
495# We can try to link the programs with lib*_pic.a...
a94b2ac0 496link-libc-static = $(gnulib) $(common-objpfx)libc_pic.a
66000494
UD
497link-extra-libs-static = $(link-extra-libs)
498endif
499endif
ac556388 500link-libc-bounded = $(common-objpfx)libc_b.a $(gnulib) $(common-objpfx)libc_b.a
e64911d1 501link-extra-libs-bounded = $(foreach lib,$(LDLIBS-$(@F:%-bp=%)),$(common-objpfx)$(lib)_b.a)
e1586792 502
28f540f4
RM
503ifndef gnulib
504gnulib := -lgcc
505endif
96f873b9 506ifeq ($(elf),yes)
e75154a6
RM
507+preinit = $(addprefix $(csu-objpfx),crti.o)
508+postinit = $(addprefix $(csu-objpfx),crtn.o)
5ae9d168
UD
509+prector = `$(CC) --print-file-name=crtbegin.o`
510+postctor = `$(CC) --print-file-name=crtend.o`
66715f83 511+interp = $(addprefix $(elf-objpfx),interp.os)
96f873b9 512endif
6e953631
UD
513csu-objpfx = $(common-objpfx)csu/
514elf-objpfx = $(common-objpfx)elf/
28f540f4 515
03a75825
RM
516# How to run a program we just linked with our library.
517# The program binary is assumed to be $(word 2,$^).
518built-program-file = $(dir $(word 2,$^))$(notdir $(word 2,$^))
ad10cac8 519ifeq (yesyes,$(build-shared)$(elf))
196980f5 520comma = ,
11336c16
UD
521sysdep-library-path = \
522$(subst $(empty) ,:,$(strip $(patsubst -Wl$(comma)-rpath-link=%, %,\
523 $(filter -Wl$(comma)-rpath-link=%,\
524 $(sysdep-LDFLAGS)))))
85857f93
UD
525run-program-prefix = $(if $(findstring $(notdir $(built-program-file)), $(tests-static)),, \
526 $(elf-objpfx)$(rtld-installed-name) \
527 --library-path $(rpath-link)$(patsubst %,:%,$(sysdep-library-path)))
8658ceda
UD
528else
529run-program-prefix =
530endif
ac556388
GM
531# Never use $(run-program-prefix) for the statically-linked %-bp test programs
532built-program-cmd = $(patsubst %,$(run-program-prefix),\
533 $(filter-out %-bp,$(built-program-file))) \
534 $(built-program-file)
03a75825 535
28f540f4
RM
536ifndef LD
537LD := ld -X
538endif
539
540ifndef RANLIB
541RANLIB = ranlib
542endif
543
544# Extra flags to pass to GCC.
6cc7d725
UD
545ifeq ($(all-warnings),yes)
546+gccwarn := -Wall -Wwrite-strings -Winline -Wstrict-prototypes -Wcast-qual -Wbad-function-cast -Wmissing-noreturn -Wmissing-prototypes -Wmissing-declarations -Wcomment -Wcomments -Wtrigraphs -Wsign-compare -Wfloat-equal -Wmultichar
547else
6796bc80 548+gccwarn := -Wall -Wwrite-strings -Winline -Wstrict-prototypes
6cc7d725 549endif
28f540f4
RM
550
551# This is the program that generates makefile
552# dependencies from C source files.
553ifndef +mkdep
554+mkdep = $(CC) -M
555endif
556
557# The program that makes Emacs-style TAGS files.
78759725 558ETAGS := etags
28f540f4
RM
559
560# The `m4' macro processor; this is used by sysdeps/sparc/Makefile (and
561# perhaps others) to preprocess assembly code in some cases.
562M4 = m4
563
73237de3
UD
564# To force installation of files even if they are older than the
565# installed files. This variable is included in the dependency list
566# of all installation targets.
567ifeq ($(force-install),yes)
568+force = force-install
569else
570+force =
571endif
572
28f540f4
RM
573####
574#### End of configuration variables.
575####
576\f
577# This tells some versions of GNU make before 3.63 not to export all variables.
578.NOEXPORT:
579
580# We want to echo the commands we're running without
6d52618b 581# umpteen zillion filenames along with it (we use `...' instead)
28f540f4
RM
582# but we don't want this echoing done when the user has said
583# he doesn't want to see commands echoed by using -s.
584ifneq "$(findstring s,$(MAKEFLAGS))" "" # if -s
585+cmdecho := echo >/dev/null
586else # not -s
587+cmdecho := echo
588endif # -s
589
590# These are the flags given to the compiler to tell
591# it what sort of optimization and/or debugging output to do.
592ifndef +cflags
593# If `CFLAGS' was defined, use that.
594ifdef CFLAGS
595+cflags := $(filter-out -I%,$(CFLAGS))
596endif # CFLAGS
597endif # +cflags
598
fd26970f 599# If none of the above worked, default to "-g -O".
28f540f4
RM
600ifeq "$(strip $(+cflags))" ""
601+cflags := $(default_cflags)
602endif # $(+cflags) == ""
603
28f540f4
RM
604+cflags := $(+cflags) $(+gccwarn)
605+gcc-nowarn := -w
28f540f4
RM
606
607# Don't duplicate options if we inherited variables from the parent.
608+cflags := $(sort $(+cflags))
609
610
611# These are flags given to the C compiler to tell it to look for include
762a2918
UD
612# files (including ones given in angle brackets) in the current directory,
613# in the parent library source directory and in the include directory.
28f540f4 614# `+sysdep-includes' will be defined by Makerules.
bdbf022d
UD
615+includes = -I$(..)include -I. \
616 $(patsubst %/,-I%,$(objpfx)) $(patsubst %/,-I%,$(..)) \
617 $($(stdio)-include) $(includes) \
dbe7a0f5 618 $(+sysdep-includes) $(last-includes) $(sysincludes)
28f540f4 619
96aa2d94 620# Since libio has several internal header files, we use a -I instead
762a2918 621# of many little headers in the include directory.
96aa2d94 622libio-include = -I$(..)libio
28f540f4
RM
623
624# These are the variables that the implicit compilation rules use.
3387a425 625CPPFLAGS = $($(subdir)-CPPFLAGS) $(+includes) $(defines) \
ae8b36f7 626 -include $(..)include/libc-symbols.h $(sysdep-CPPFLAGS) \
fdacb17d 627 $(CPPFLAGS-$(suffix $@)) $(CPPFLAGS-$(<F)) $(CPPFLAGS-$(@F))
14e9dd67
UD
628override CFLAGS = $(filter-out %frame-pointer,$(+cflags)) $(sysdep-CFLAGS) \
629 $(CFLAGS-$(suffix $@)) $(CFLAGS-$(<F)) $(CFLAGS-$(@F))
28f540f4 630
cc3fa755
UD
631# If everything is compiled with -fPIC (implicitly) we must tell this by
632# defining the PIC symbol.
633ifeq (yes,$(build-pic-default))
634pic-default = -DPIC
635endif
636
f0bf9cb9
RM
637# Enable object files for different versions of the library.
638# Various things use $(object-suffixes) to know what all to make.
639# The compilation rules use $(CPPFLAGS-${SUFFIX}) and $(CFLAGS-${SUFFIX})
640# to pass different flags for each flavor.
91641c65 641libtypes = $(foreach o,$(object-suffixes-for-libc),$(libtype$o))
a35cb74d 642all-object-suffixes := .o .os .op .og .ob .oS
650425ce 643object-suffixes :=
cc3fa755 644CPPFLAGS-.o = $(pic-default)
14e9dd67 645CFLAGS-.o = $(filter %frame-pointer,$(+cflags))
66000494 646ifeq (yes,$(build-static))
f0bf9cb9 647libtype.o := lib%.a
650425ce
UD
648object-suffixes += .o
649endif
f0bf9cb9
RM
650ifeq (yes,$(build-shared))
651# Under --enable-shared, we will build a shared library of PIC objects.
40a55d20
UD
652# The PIC object files are named foo.os.
653object-suffixes += .os
b5567b2a 654CPPFLAGS-.os = -DPIC -DSHARED
14e9dd67 655CFLAGS-.os = $(filter %frame-pointer,$(+cflags)) $(pic-ccflag)
40a55d20 656libtype.os := lib%_pic.a
26b4d766
UD
657# This can be changed by a sysdep makefile
658pic-ccflag = -fPIC
f0bf9cb9
RM
659endif
660ifeq (yes,$(build-profile))
661# Under --enable-profile, we will build a static library of profiled objects.
40a55d20
UD
662# The profiled object files are named foo.op.
663object-suffixes += .op
cc3fa755 664CPPFLAGS-.op = -DPROF $(pic-default)
40a55d20
UD
665CFLAGS-.op = -pg
666libtype.op = lib%_p.a
f0bf9cb9
RM
667endif
668ifeq (yes,$(build-omitfp))
ab95290c 669# Under --enable-omitfp, we build the library optimized without
f0bf9cb9 670# debugging information using -fomit-frame-pointer, and build an extra
40a55d20
UD
671# library with debugging information. The debuggable objects are named foo.og.
672object-suffixes += .og
cc3fa755 673CPPFLAGS-.og = $(pic-default)
40a55d20 674CFLAGS-.og = -g
14e9dd67
UD
675CFLAGS-.o = $(filter %frame-pointer,$(+cflags)) -g0 -O99 -fomit-frame-pointer -D__USE_STRING_INLINES
676CFLAGS-.os += -g0 -O99 -fomit-frame-pointer -D__USE_STRING_INLINES
40a55d20 677libtype.og = lib%_g.a
f0bf9cb9 678endif
ab95290c
UD
679
680bppfx = BP-
5a97622d
UD
681ifeq (yes,$(build-bounded))
682# Under --enable-bounded, we build the library with `-fbounded-pointers -g'
40a55d20 683# to runtime bounds checking. The bounded-pointer objects are named foo.ob.
58ff985d
GM
684# We disable sibling-call optimizations so that stack traces will be complete
685# and thus aid debugging, since after all, BPs are a debugging tool.
40a55d20 686object-suffixes += .ob
ab95290c 687CPPFLAGS-.ob = -fbounded-pointers $(pic-default)
e64911d1 688CFLAGS-.ob = -g -O2 -fno-optimize-sibling-calls -fno-strict-aliasing
40a55d20 689libtype.ob = lib%_b.a
5a97622d 690endif
f0bf9cb9 691
9afc8a59
UD
692object-suffixes-for-libc := $(object-suffixes)
693
694ifeq (yes,$(build-shared))
695# Build special library that contains the static-only routines for libc.
696object-suffixes-for-libc += .oS
697
698# Must build the routines as PIC, though, because they can end up in (users')
699# shared objects. We don't want to use CFLAGS-os because users may, for
700# example, make that processor-specific.
701CFLAGS-.oS = $(CFLAGS-.o) $(pic-ccflag)
6ca96fe2 702CPPFLAGS-.oS = $(CPPFLAGS-.o) -DPIC
9afc8a59
UD
703libtype.oS = lib%_nonshared.a
704endif
705
706
28f540f4
RM
707+gnu-stabs = $(shell echo>&2 '*** BARF ON ME')
708
96bda0ea
RM
709ifndef BUILD_CC
710BUILD_CC = $(CC)
711endif
e72bfd87
UD
712
713move-if-change = $(SHELL) $(..)scripts/move-if-change
a641835a 714\f
281e6031
UD
715-include $(common-objpfx)sysd-dirs
716
717ifeq ($(sysd-dirs-done),t)
718-include $(common-objpfx)sysd-sorted
719subdirs = $(sorted-subdirs)
720endif
9a0a462c 721
4de1d597
RM
722ifeq (yes, $(build-shared))
723
480d827b
RM
724# Commands to put in a pipeline to preprocess a file with # comments
725# %ifdef et al based on config.h settings or other %include'd files.
726define preprocess-versions
60289c23 727sed '/^[ ]*#/d;s/^[ ]*%/#/' \
411dccad 728| $(CC) -E -undef -I$(common-objdir) -I$(..)include \
ca5becb0 729 -include $(common-objpfx)config.h \
411dccad 730 -x assembler-with-cpp - \
60289c23 731| sed '/^[ ]*#/d;/^[ ]*$$/d'
480d827b
RM
732endef
733
4de1d597
RM
734# Process the shlib-versions file, which tells us what shared library
735# version numbers to use when we install shared objects on this system.
281e6031
UD
736# We need to wait until $(subdirs) is complete.
737ifeq ($(sysd-sorted-done),t)
4de1d597 738-include $(common-objpfx)soversions.mk
eca3eb3b 739ifndef avoid-generated
ba7e89ec
RM
740$(common-objpfx)soversions.i: $(..)shlib-versions $(..)Makeconfig \
741 $(wildcard $(patsubst %, $(..)%/shlib-versions,\
742 $(add-ons) \
743 $(subdirs))) \
744 $(common-objpfx)config.make
480d827b
RM
745 cat $(filter-out $(..)Makeconfig $(common-objpfx)config.make,$^) \
746 | $(preprocess-versions) \
ba7e89ec
RM
747 | while read conf version setname; do \
748 test -n "$$version" && \
749 test `expr '$(config-machine)-$(config-vendor)-$(config-os)' \
750 : "$$conf"` != 0 || continue; \
dda7bd84
UD
751 if test "x$$version" = xDEFAULT; then \
752 default_setname="$$setname"; \
753 else \
754 lib=`echo $$version | sed 's/=.*$$//'`; \
755 if eval test -z "\$${versioned_$${lib}}"; then \
756 eval versioned_$${lib}=yes; \
757 number=`echo $$version | sed "s/^.*=//"`; \
758 echo $$lib $$number $${setname:-$${default_setname}}; \
759 fi; \
af260314 760 fi; \
ba7e89ec
RM
761 done > $@T; exit 0
762 mv -f $@T $@
763$(common-objpfx)soversions.mk: $(common-objpfx)soversions.i
1bc777b8
UD
764 (while read lib number setname; do \
765 case $$number in \
766 [0-9]*) echo "$$lib.so-version=.$$number"; \
767 echo "all-sonames+=$$lib=$$lib.so\$$($$lib.so-version)";;\
768 *) echo "$$lib.so-version=$$number"; \
769 echo "all-sonames+=$$lib=\$$($$lib.so-version)";;\
770 esac; \
771 done; \
772 echo soversions.mk-done = t;) < $< > $@T; exit 0
4de1d597 773 mv -f $@T $@
eca3eb3b 774endif
281e6031 775endif
eca3eb3b
UD
776
777postclean-generated += soversions.mk
4de1d597 778
c0e45674
UD
779# Generate the header containing the names of all shared libraries.
780# We use a stamp file to avoid uncessary recompilations.
781before-compile += $(common-objpfx)gnu/lib-names.h
1bc777b8 782ifeq ($(soversions.mk-done),t)
60c34a30 783$(common-objpfx)gnu/lib-names.h: $(common-objpfx)gnu/lib-names.stmp; @:
ad10cac8
UD
784ifneq (,$(findstring aix,$(config-os)))
785$(common-objpfx)gnu/lib-names.stmp: $(..)sysdeps/unix/sysv/aix/gnu/lib-names.h
786 $(make-target-directory)
787 @rm -f ${@:stmp=T} $@
788 @cp $(..)sysdeps/unix/sysv/aix/gnu/lib-names.h $(common-objpfx)gnu
789 touch $@
790else
c0e45674
UD
791$(common-objpfx)gnu/lib-names.stmp: $(common-objpfx)soversions.mk
792 $(make-target-directory)
793 @rm -f ${@:stmp=T} $@
794 (echo '/* This file is automatically generated.';\
795 echo ' It defines macros to allow user program to find the shared';\
796 echo ' library files which come as part of GNU libc. */';\
797 echo '#ifndef __GNU_LIB_NAMES_H'; \
798 echo '#define __GNU_LIB_NAMES_H 1'; \
799 echo; \
800 (libs='$(all-sonames)';\
801 for l in $$libs; do \
a8322b4f
UD
802 name=`echo $$l | sed 's/.*=//'`; \
803 upname=`echo $$l | sed 's/=.*//' | \
7cc27f44
UD
804 tr 'abcdefghijklmnopqrstuvwxyz-' \
805 'ABCDEFGHIJKLMNOPQRSTUVWXYZ_'`; \
a8322b4f
UD
806 upname2=`echo $$name | sed 's/[.]so.*//' | \
807 tr 'abcdefghijklmnopqrstuvwxyz-' \
808 'ABCDEFGHIJKLMNOPQRSTUVWXYZ_'`; \
809 echo "#define $${upname}_SO \"$$name\""; \
810 if test $$upname != $$upname2; then \
811 echo "#define $${upname2}_SO \"$$name\""; \
812 fi; \
c0e45674
UD
813 done;) | sort; \
814 echo; \
815 echo '#endif /* gnu/lib-names.h */';) > ${@:stmp=T}
7e7a548e 816 $(move-if-change) ${@:stmp=T} ${@:stmp=h}
c0e45674 817 touch $@
1bc777b8 818endif
ad10cac8 819endif
c0e45674
UD
820
821common-generated += gnu/lib-names.h gnu/lib-names.stmp
d41c6f61
UD
822
823# The name under which the run-time dynamic linker is installed.
824# We are currently going for the convention that `/lib/ld.so.1'
825# names the SVR4/ELF ABI-compliant dynamic linker.
826ifndef rtld-installed-name
827ifdef ld.so-version
828rtld-installed-name = $(ld.so-version)
829else
830rtld-installed-name = ld.so.1
831endif
832endif
833
1ef32c3d
UD
834ifndef rtld-version-installed-name
835rtld-version-installed-name = ld-$(version).so
836endif
837
f649c201
UD
838endif # build-shared
839
cbdee279 840
94e365c6
UD
841ifeq ($(elf),yes)
842dlfcn = dlfcn
843ifeq ($(build-shared),yes)
844libdl = $(common-objpfx)dlfcn/libdl.so$(libdl.so-version)
845else
846libdl = $(common-objpfx)dlfcn/libdl.a
847endif
848else
ad10cac8
UD
849ifneq (,$(findstring aix,$(config-os)))
850ifeq ($(build-shared),yes)
851dlfcn = dlfcn
852libdl = $(common-objpfx)dlfcn/libdl.so$(libdl.so-version)
853else
854# No libdl without shared libs on AIX
855dlfcn =
856libdl =
857endif
858else
859# No ELF, no AIX - no libdl, at least for now.
94e365c6
UD
860dlfcn =
861libdl =
862endif
ad10cac8 863endif
94e365c6 864
bb41a976
UD
865# These are the subdirectories containing the library source. The order
866# is more or less arbitrary. The sorting step will take care of the
867# dependencies. Only the $(binfmt-subdir) should always be kept at the
868# end of the list.
8d6f1731 869all-subdirs = csu assert ctype locale intl catgets math setjmp signal \
b0b67c47
UD
870 stdlib stdio-common $(stdio) malloc string wcsmbs time dirent \
871 grp pwd posix io termios resource misc socket sysvipc gmon \
b11f5954 872 gnulib iconv iconvdata wctype manual shadow po argp \
aaf688e8 873 crypt $(add-ons) nss localedata timezone rt conform debug \
63f791d3 874 $(sysdep-subdirs) $(dlfcn) $(binfmt-subdir)
f3c1143b 875all-subdirs := $(filter-out $(sysdep-inhibit-subdirs),$(all-subdirs))
bb41a976 876
b22fc5f5
UD
877# The mach and hurd subdirectories have many generated header files which
878# much of the rest of the library depends on, so it is best to build them
879# first (and mach before hurd, at that). The before-compile additions in
880# sysdeps/{mach,hurd}/Makefile should make it reliably work for these files
881# not to exist when making in other directories, but it will be slower that
882# way with more somewhat expensive `make' invocations.
883subdirs := $(filter mach,$(subdirs)) $(filter hurd,$(subdirs)) \
884 $(filter-out mach hurd,$(subdirs))
885
b7e2d9a5 886ifndef avoid-generated
9c4c0024 887all-Subdirs-files = $(wildcard $(config-sysdirs:%=$(..)%/Subdirs))
b22fc5f5 888$(common-objpfx)sysd-dirs: $(common-objpfx)config.make $(all-Subdirs-files)
0155a773
UD
889 $(AWK) 'BEGIN { subdirs = ""; inhibit = "" }; \
890 /^#/ { next }; \
891 /^[^-]/ { subdirs = subdirs " " $$0 }; \
892 /^-/ { inhibit = inhibit " " substr($$0, 2) }; \
893 END { printf "sysdep-subdirs =%s\n", subdirs; \
894 printf "sysdep-inhibit-subdirs =%s\n", inhibit; \
895 print "sysd-dirs-done = t" }' \
48252123 896 $(patsubst $<,/dev/null,$^) > $@-tmp
b22fc5f5
UD
897 mv -f $@-tmp $@
898
bb41a976
UD
899all-Depend-files = $(wildcard $(..)*/Depend)
900$(common-objpfx)sysd-sorted: $(..)scripts/gen-sorted.awk $(all-Depend-files) \
901 $(common-objpfx)sysd-dirs $(..)Makeconfig
281e6031
UD
902 { { dirs='$(patsubst $(..)%/Depend,$(..)%,$(filter %/Depend,$^))';\
903 for d in $$dirs; do \
904 while read on; do \
905 echo "depend $$d $$on"; \
906 done < $$d/Depend; \
907 done; \
908 for f in $(all-subdirs); do \
909 echo $$f; \
910 done; \
911 } | $(AWK) -f $< && \
912 echo sysd-sorted-done = t; \
913 } > $@-tmp
bb41a976 914 mv -f $@-tmp $@
b7e2d9a5 915endif
bb41a976 916
083973f3 917# Let sysdeps/ subdirs contain a Makeconfig fragment for us to include here.
f1d71039
RM
918sysdep-makeconfigs := $(wildcard $(patsubst %,$(..)%/Makeconfig,\
919 $(config-sysdirs) $(add-ons)))
920
083973f3
RM
921ifneq (,$(sysdep-makeconfigs))
922include $(sysdep-makeconfigs)
923endif
924
925
28f540f4 926endif # Makeconfig not yet included