]> git.ipfire.org Git - thirdparty/glibc.git/blame - Makeconfig
Update.
[thirdparty/glibc.git] / Makeconfig
CommitLineData
8d6f1731 1# Copyright (C) 1991-1999,2000 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.
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
a8922de8 348default_cflags := -g -O
28f540f4
RM
349endif
350
351# Flags to pass the C compiler when assembling preprocessed assembly code
352# (`.S' files). On some systems the assembler doesn't understand the `#' line
353# directives the preprocessor produces. If you have troubling compiling
354# assembly code, try using -P here to suppress these directives.
355ifndef asm-CPPFLAGS
356asm-CPPFLAGS =
357endif
358
9a0a462c
UD
359# ELF always supports init/fini sections
360ifeq ($(elf),yes)
361have-initfini = yes
362endif
363
779ae82e 364# Installed name of the startup code.
9a0a462c
UD
365ifneq ($(have-initfini),yes)
366# When not having init/fini, there is just one startfile, called crt0.o.
779ae82e
UD
367start-installed-name = crt0.o
368else
9a0a462c 369# On systems having init/fini, crt0.o is called crt1.o, and there are
779ae82e
UD
370# some additional bizarre files.
371start-installed-name = crt1.o
779ae82e 372endif
af09bfb5
RM
373# On systems that do not need a special startfile for statically linked
374# binaries, simply set it to the normal name.
375ifndef static-start-installed-name
376static-start-installed-name = $(start-installed-name)
377endif
779ae82e 378
28f540f4
RM
379# Command for linking programs with the C library.
380ifndef +link
8e3cc80f 381+link = $(CC) -nostdlib -nostartfiles -o $@ \
482eec0d 382 $(sysdep-LDFLAGS) $(config-LDFLAGS) $(LDFLAGS) $(LDFLAGS-$(@F)) \
779ae82e
UD
383 $(addprefix $(csu-objpfx),$(start-installed-name)) \
384 $(+preinit) $(+prector) \
385 $(filter-out $(addprefix $(csu-objpfx),start.o \
386 $(start-installed-name))\
387 $(+preinit) $(link-extra-libs) \
388 $(common-objpfx)libc% $(+postinit),$^) \
5ae9d168 389 $(link-extra-libs) $(link-libc) $(+postctor) $(+postinit)
28f540f4 390endif
e1586792
UD
391# Command for statically linking programs with the C library.
392ifndef +link-static
393+link-static = $(CC) -nostdlib -nostartfiles -static -o $@ \
394 $(sysdep-LDFLAGS) $(LDFLAGS) \
af09bfb5 395 $(addprefix $(csu-objpfx),$(static-start-installed-name)) \
e1586792
UD
396 $(+preinit) $(+prector) \
397 $(filter-out $(addprefix $(csu-objpfx),start.o \
398 $(start-installed-name))\
399 $(+preinit) $(link-extra-libs-static) \
400 $(common-objpfx)libc% $(+postinit),$^) \
401 $(link-extra-libs-static) $(link-libc-static) $(+postctor) $(+postinit)
402endif
ac556388
GM
403# Command for statically linking bounded-pointer programs with the C library.
404ifndef +link-bounded
405+link-bounded = $(CC) -nostdlib -nostartfiles -static -fbounded-pointers -o $@ \
406 $(sysdep-LDFLAGS) $(LDFLAGS) \
407 $(addprefix $(csu-objpfx),b$(static-start-installed-name)) \
408 $(+preinit) $(+prector) \
4362aba5 409 $(filter-out $(addprefix $(csu-objpfx),start.ob \
ac556388
GM
410 $(start-installed-name))\
411 $(+preinit) $(link-extra-libs-bounded) \
412 $(common-objpfx)libc% $(+postinit),$^) \
413 $(link-extra-libs-bounded) $(link-libc-bounded) $(+postctor) $(+postinit)
414endif
b122c703
RM
415ifndef config-LDFLAGS
416ifeq (yes,$(build-shared))
094bacdb 417config-LDFLAGS = -Wl,-dynamic-linker=$(slibdir)/$(rtld-installed-name)
b122c703
RM
418endif
419endif
3fe9de0d
RM
420ifndef link-libc
421ifeq (yes,$(build-shared))
aa1075ea
RM
422# We need the versioned name of libc.so in the deps of $(others) et al
423# so that the symlink to libc.so is created before anything tries to
424# run the linked programs.
4d6acc61 425link-libc = -Wl,-rpath-link=$(rpath-link) \
aa1075ea 426 $(common-objpfx)libc.so$(libc.so-version) \
a44d2393 427 $(common-objpfx)$(patsubst %,$(libtype.oS),c) $(gnulib)
4d6acc61 428# This is how to find at build-time things that will be installed there.
b11f5954 429rpath-dirs = math elf dlfcn nss nis rt resolv crypt
e72bfd87
UD
430rpath-link = \
431$(common-objdir):$(subst $(empty) ,:,$(patsubst ../$(subdir),.,$(rpath-dirs:%=$(common-objpfx)%)))
47707456 432elfobjdir := $(patsubst ../$(subdir),.,$(common-objpfx)elf)
3fe9de0d 433else
ce85d65b
UD
434nssobjdir := $(patsubst ../$(subdir),.,$(common-objpfx)nss)
435resolvobjdir := $(patsubst ../$(subdir),.,$(common-objpfx)resolv)
4ac5087b 436link-libc = $(common-objpfx)libc.a $(otherlibs) $(gnulib) $(common-objpfx)libc.a $(gnulib)
3fe9de0d
RM
437endif
438endif
900bec85 439
f01010de
UD
440# Choose the default search path for the dynamic linker based on
441# where we will install libraries.
442ifneq ($(libdir),$(slibdir))
443default-rpath = $(slibdir):$(libdir)
444else
445default-rpath = $(libdir)
446endif
447
57ba7bb4
UD
448ifndef link-extra-libs
449ifeq (yes,$(build-shared))
c57abfa7
UD
450ifneq ($(common-objpfx),$(objpfx))
451link-extra-libs = $(foreach lib,$(LDLIBS-$(@F)),\
452 $(wildcard $(common-objpfx)$(lib).so$($(notdir $(lib)).so-version) \
453 $(objpfx)$(lib).so$($(notdir $(lib)).so-version)))
454else
57ba7bb4 455link-extra-libs = $(foreach lib,$(LDLIBS-$(@F)),$(common-objpfx)$(lib).so$($(notdir $(lib)).so-version))
c57abfa7 456endif
57ba7bb4
UD
457else
458link-extra-libs = $(foreach lib,$(LDLIBS-$(@F)),$(common-objpfx)$(lib).a)
459endif
460endif
e1586792
UD
461
462# The static libraries.
66000494 463ifeq (yes,$(build-static))
e1586792
UD
464link-libc-static = $(common-objpfx)libc.a $(gnulib) $(common-objpfx)libc.a
465link-extra-libs-static = $(foreach lib,$(LDLIBS-$(@F)),$(common-objpfx)$(lib).a)
66000494
UD
466else
467ifeq (yes,$(build-shared))
468# We can try to link the programs with lib*_pic.a...
a94b2ac0 469link-libc-static = $(gnulib) $(common-objpfx)libc_pic.a
66000494
UD
470link-extra-libs-static = $(link-extra-libs)
471endif
472endif
ac556388 473link-libc-bounded = $(common-objpfx)libc_b.a $(gnulib) $(common-objpfx)libc_b.a
e64911d1 474link-extra-libs-bounded = $(foreach lib,$(LDLIBS-$(@F:%-bp=%)),$(common-objpfx)$(lib)_b.a)
e1586792 475
28f540f4
RM
476ifndef gnulib
477gnulib := -lgcc
478endif
96f873b9 479ifeq ($(elf),yes)
e75154a6
RM
480+preinit = $(addprefix $(csu-objpfx),crti.o)
481+postinit = $(addprefix $(csu-objpfx),crtn.o)
5ae9d168
UD
482+prector = `$(CC) --print-file-name=crtbegin.o`
483+postctor = `$(CC) --print-file-name=crtend.o`
66715f83 484+interp = $(addprefix $(elf-objpfx),interp.os)
96f873b9 485endif
6e953631
UD
486csu-objpfx = $(common-objpfx)csu/
487elf-objpfx = $(common-objpfx)elf/
28f540f4 488
03a75825
RM
489# How to run a program we just linked with our library.
490# The program binary is assumed to be $(word 2,$^).
491built-program-file = $(dir $(word 2,$^))$(notdir $(word 2,$^))
9f835f5f 492ifeq (yes,$(build-shared))
196980f5 493comma = ,
11336c16
UD
494sysdep-library-path = \
495$(subst $(empty) ,:,$(strip $(patsubst -Wl$(comma)-rpath-link=%, %,\
496 $(filter -Wl$(comma)-rpath-link=%,\
497 $(sysdep-LDFLAGS)))))
8658ceda 498ifeq (,$(findstring $(notdir $(built-program-file)), $(tests-static)))
9f835f5f
UD
499run-program-prefix = $(elf-objpfx)$(rtld-installed-name) \
500 --library-path $(rpath-link)$(patsubst %,:%,$(sysdep-library-path))
501else
502run-program-prefix =
03a75825 503endif
8658ceda
UD
504else
505run-program-prefix =
506endif
ac556388
GM
507# Never use $(run-program-prefix) for the statically-linked %-bp test programs
508built-program-cmd = $(patsubst %,$(run-program-prefix),\
509 $(filter-out %-bp,$(built-program-file))) \
510 $(built-program-file)
03a75825 511
28f540f4
RM
512ifndef LD
513LD := ld -X
514endif
515
516ifndef RANLIB
517RANLIB = ranlib
518endif
519
520# Extra flags to pass to GCC.
6796bc80 521+gccwarn := -Wall -Wwrite-strings -Winline -Wstrict-prototypes
28f540f4
RM
522
523# This is the program that generates makefile
524# dependencies from C source files.
525ifndef +mkdep
526+mkdep = $(CC) -M
527endif
528
529# The program that makes Emacs-style TAGS files.
530ETAGS := etags -T
531
532# The `m4' macro processor; this is used by sysdeps/sparc/Makefile (and
533# perhaps others) to preprocess assembly code in some cases.
534M4 = m4
535
73237de3
UD
536# To force installation of files even if they are older than the
537# installed files. This variable is included in the dependency list
538# of all installation targets.
539ifeq ($(force-install),yes)
540+force = force-install
541else
542+force =
543endif
544
28f540f4
RM
545####
546#### End of configuration variables.
547####
548\f
549# This tells some versions of GNU make before 3.63 not to export all variables.
550.NOEXPORT:
551
552# We want to echo the commands we're running without
6d52618b 553# umpteen zillion filenames along with it (we use `...' instead)
28f540f4
RM
554# but we don't want this echoing done when the user has said
555# he doesn't want to see commands echoed by using -s.
556ifneq "$(findstring s,$(MAKEFLAGS))" "" # if -s
557+cmdecho := echo >/dev/null
558else # not -s
559+cmdecho := echo
560endif # -s
561
562# These are the flags given to the compiler to tell
563# it what sort of optimization and/or debugging output to do.
564ifndef +cflags
565# If `CFLAGS' was defined, use that.
566ifdef CFLAGS
567+cflags := $(filter-out -I%,$(CFLAGS))
568endif # CFLAGS
569endif # +cflags
570
fd26970f 571# If none of the above worked, default to "-g -O".
28f540f4
RM
572ifeq "$(strip $(+cflags))" ""
573+cflags := $(default_cflags)
574endif # $(+cflags) == ""
575
28f540f4
RM
576+cflags := $(+cflags) $(+gccwarn)
577+gcc-nowarn := -w
28f540f4
RM
578
579# Don't duplicate options if we inherited variables from the parent.
580+cflags := $(sort $(+cflags))
581
582
583# These are flags given to the C compiler to tell it to look for include
762a2918
UD
584# files (including ones given in angle brackets) in the current directory,
585# in the parent library source directory and in the include directory.
28f540f4 586# `+sysdep-includes' will be defined by Makerules.
bdbf022d
UD
587+includes = -I$(..)include -I. \
588 $(patsubst %/,-I%,$(objpfx)) $(patsubst %/,-I%,$(..)) \
589 $($(stdio)-include) $(includes) \
dbe7a0f5 590 $(+sysdep-includes) $(last-includes) $(sysincludes)
28f540f4 591
96aa2d94 592# Since libio has several internal header files, we use a -I instead
762a2918 593# of many little headers in the include directory.
96aa2d94 594libio-include = -I$(..)libio
28f540f4
RM
595
596# These are the variables that the implicit compilation rules use.
3387a425 597CPPFLAGS = $($(subdir)-CPPFLAGS) $(+includes) $(defines) \
ae8b36f7 598 -include $(..)include/libc-symbols.h $(sysdep-CPPFLAGS) \
fdacb17d 599 $(CPPFLAGS-$(suffix $@)) $(CPPFLAGS-$(<F)) $(CPPFLAGS-$(@F))
14e9dd67
UD
600override CFLAGS = $(filter-out %frame-pointer,$(+cflags)) $(sysdep-CFLAGS) \
601 $(CFLAGS-$(suffix $@)) $(CFLAGS-$(<F)) $(CFLAGS-$(@F))
28f540f4 602
cc3fa755
UD
603# If everything is compiled with -fPIC (implicitly) we must tell this by
604# defining the PIC symbol.
605ifeq (yes,$(build-pic-default))
606pic-default = -DPIC
607endif
608
f0bf9cb9
RM
609# Enable object files for different versions of the library.
610# Various things use $(object-suffixes) to know what all to make.
611# The compilation rules use $(CPPFLAGS-${SUFFIX}) and $(CFLAGS-${SUFFIX})
612# to pass different flags for each flavor.
91641c65 613libtypes = $(foreach o,$(object-suffixes-for-libc),$(libtype$o))
a35cb74d 614all-object-suffixes := .o .os .op .og .ob .oS
650425ce 615object-suffixes :=
cc3fa755 616CPPFLAGS-.o = $(pic-default)
14e9dd67 617CFLAGS-.o = $(filter %frame-pointer,$(+cflags))
66000494 618ifeq (yes,$(build-static))
f0bf9cb9 619libtype.o := lib%.a
650425ce
UD
620object-suffixes += .o
621endif
f0bf9cb9
RM
622ifeq (yes,$(build-shared))
623# Under --enable-shared, we will build a shared library of PIC objects.
40a55d20
UD
624# The PIC object files are named foo.os.
625object-suffixes += .os
b5567b2a 626CPPFLAGS-.os = -DPIC -DSHARED
14e9dd67 627CFLAGS-.os = $(filter %frame-pointer,$(+cflags)) $(pic-ccflag)
40a55d20 628libtype.os := lib%_pic.a
26b4d766
UD
629# This can be changed by a sysdep makefile
630pic-ccflag = -fPIC
f0bf9cb9
RM
631endif
632ifeq (yes,$(build-profile))
633# Under --enable-profile, we will build a static library of profiled objects.
40a55d20
UD
634# The profiled object files are named foo.op.
635object-suffixes += .op
cc3fa755 636CPPFLAGS-.op = -DPROF $(pic-default)
40a55d20
UD
637CFLAGS-.op = -pg
638libtype.op = lib%_p.a
f0bf9cb9
RM
639endif
640ifeq (yes,$(build-omitfp))
ab95290c 641# Under --enable-omitfp, we build the library optimized without
f0bf9cb9 642# debugging information using -fomit-frame-pointer, and build an extra
40a55d20
UD
643# library with debugging information. The debuggable objects are named foo.og.
644object-suffixes += .og
cc3fa755 645CPPFLAGS-.og = $(pic-default)
40a55d20 646CFLAGS-.og = -g
14e9dd67
UD
647CFLAGS-.o = $(filter %frame-pointer,$(+cflags)) -g0 -O99 -fomit-frame-pointer -D__USE_STRING_INLINES
648CFLAGS-.os += -g0 -O99 -fomit-frame-pointer -D__USE_STRING_INLINES
40a55d20 649libtype.og = lib%_g.a
f0bf9cb9 650endif
ab95290c
UD
651
652bppfx = BP-
5a97622d
UD
653ifeq (yes,$(build-bounded))
654# Under --enable-bounded, we build the library with `-fbounded-pointers -g'
40a55d20 655# to runtime bounds checking. The bounded-pointer objects are named foo.ob.
58ff985d
GM
656# We disable sibling-call optimizations so that stack traces will be complete
657# and thus aid debugging, since after all, BPs are a debugging tool.
40a55d20 658object-suffixes += .ob
ab95290c 659CPPFLAGS-.ob = -fbounded-pointers $(pic-default)
e64911d1 660CFLAGS-.ob = -g -O2 -fno-optimize-sibling-calls -fno-strict-aliasing
40a55d20 661libtype.ob = lib%_b.a
5a97622d 662endif
f0bf9cb9 663
9afc8a59
UD
664object-suffixes-for-libc := $(object-suffixes)
665
666ifeq (yes,$(build-shared))
667# Build special library that contains the static-only routines for libc.
668object-suffixes-for-libc += .oS
669
670# Must build the routines as PIC, though, because they can end up in (users')
671# shared objects. We don't want to use CFLAGS-os because users may, for
672# example, make that processor-specific.
673CFLAGS-.oS = $(CFLAGS-.o) $(pic-ccflag)
6ca96fe2 674CPPFLAGS-.oS = $(CPPFLAGS-.o) -DPIC
9afc8a59
UD
675libtype.oS = lib%_nonshared.a
676endif
677
678
28f540f4
RM
679+gnu-stabs = $(shell echo>&2 '*** BARF ON ME')
680
96bda0ea
RM
681ifndef BUILD_CC
682BUILD_CC = $(CC)
683endif
e72bfd87
UD
684
685move-if-change = $(SHELL) $(..)scripts/move-if-change
a641835a 686\f
281e6031
UD
687-include $(common-objpfx)sysd-dirs
688
689ifeq ($(sysd-dirs-done),t)
690-include $(common-objpfx)sysd-sorted
691subdirs = $(sorted-subdirs)
692endif
9a0a462c 693
4de1d597
RM
694ifeq (yes, $(build-shared))
695
480d827b
RM
696# Commands to put in a pipeline to preprocess a file with # comments
697# %ifdef et al based on config.h settings or other %include'd files.
698define preprocess-versions
699sed 's/#.*$$//;s/^[ ]*%/#/' \
ca5becb0
RM
700| $(CC) -E -undef -I$(common-objdir) -I$(..)include \
701 -include $(common-objpfx)config.h \
702 -x c - \
480d827b
RM
703| sed 's/#.*$$//;/^[ ]*$$/d'
704endef
705
4de1d597
RM
706# Process the shlib-versions file, which tells us what shared library
707# version numbers to use when we install shared objects on this system.
281e6031
UD
708# We need to wait until $(subdirs) is complete.
709ifeq ($(sysd-sorted-done),t)
4de1d597 710-include $(common-objpfx)soversions.mk
eca3eb3b 711ifndef avoid-generated
ba7e89ec
RM
712$(common-objpfx)soversions.i: $(..)shlib-versions $(..)Makeconfig \
713 $(wildcard $(patsubst %, $(..)%/shlib-versions,\
714 $(add-ons) \
715 $(subdirs))) \
716 $(common-objpfx)config.make
480d827b
RM
717 cat $(filter-out $(..)Makeconfig $(common-objpfx)config.make,$^) \
718 | $(preprocess-versions) \
ba7e89ec
RM
719 | while read conf version setname; do \
720 test -n "$$version" && \
721 test `expr '$(config-machine)-$(config-vendor)-$(config-os)' \
722 : "$$conf"` != 0 || continue; \
723 lib=`echo $$version | sed 's/=.*$$//'`; \
af260314
RM
724 if eval test -z "\$${versioned_$${lib}}"; then \
725 eval versioned_$${lib}=yes; \
726 number=`echo $$version | sed "s/^.*=//"`; \
727 echo $$lib $$number $$setname; \
728 fi; \
ba7e89ec
RM
729 done > $@T; exit 0
730 mv -f $@T $@
731$(common-objpfx)soversions.mk: $(common-objpfx)soversions.i
1bc777b8
UD
732 (while read lib number setname; do \
733 case $$number in \
734 [0-9]*) echo "$$lib.so-version=.$$number"; \
735 echo "all-sonames+=$$lib=$$lib.so\$$($$lib.so-version)";;\
736 *) echo "$$lib.so-version=$$number"; \
737 echo "all-sonames+=$$lib=\$$($$lib.so-version)";;\
738 esac; \
739 done; \
740 echo soversions.mk-done = t;) < $< > $@T; exit 0
4de1d597 741 mv -f $@T $@
eca3eb3b 742endif
281e6031 743endif
eca3eb3b
UD
744
745postclean-generated += soversions.mk
4de1d597 746
c0e45674
UD
747# Generate the header containing the names of all shared libraries.
748# We use a stamp file to avoid uncessary recompilations.
749before-compile += $(common-objpfx)gnu/lib-names.h
1bc777b8 750ifeq ($(soversions.mk-done),t)
60c34a30 751$(common-objpfx)gnu/lib-names.h: $(common-objpfx)gnu/lib-names.stmp; @:
c0e45674
UD
752$(common-objpfx)gnu/lib-names.stmp: $(common-objpfx)soversions.mk
753 $(make-target-directory)
754 @rm -f ${@:stmp=T} $@
755 (echo '/* This file is automatically generated.';\
756 echo ' It defines macros to allow user program to find the shared';\
757 echo ' library files which come as part of GNU libc. */';\
758 echo '#ifndef __GNU_LIB_NAMES_H'; \
759 echo '#define __GNU_LIB_NAMES_H 1'; \
760 echo; \
761 (libs='$(all-sonames)';\
762 for l in $$libs; do \
a8322b4f
UD
763 name=`echo $$l | sed 's/.*=//'`; \
764 upname=`echo $$l | sed 's/=.*//' | \
7cc27f44
UD
765 tr 'abcdefghijklmnopqrstuvwxyz-' \
766 'ABCDEFGHIJKLMNOPQRSTUVWXYZ_'`; \
a8322b4f
UD
767 upname2=`echo $$name | sed 's/[.]so.*//' | \
768 tr 'abcdefghijklmnopqrstuvwxyz-' \
769 'ABCDEFGHIJKLMNOPQRSTUVWXYZ_'`; \
770 echo "#define $${upname}_SO \"$$name\""; \
771 if test $$upname != $$upname2; then \
772 echo "#define $${upname2}_SO \"$$name\""; \
773 fi; \
c0e45674
UD
774 done;) | sort; \
775 echo; \
776 echo '#endif /* gnu/lib-names.h */';) > ${@:stmp=T}
7e7a548e 777 $(move-if-change) ${@:stmp=T} ${@:stmp=h}
c0e45674 778 touch $@
1bc777b8 779endif
c0e45674
UD
780
781common-generated += gnu/lib-names.h gnu/lib-names.stmp
d41c6f61
UD
782
783# The name under which the run-time dynamic linker is installed.
784# We are currently going for the convention that `/lib/ld.so.1'
785# names the SVR4/ELF ABI-compliant dynamic linker.
786ifndef rtld-installed-name
787ifdef ld.so-version
788rtld-installed-name = $(ld.so-version)
789else
790rtld-installed-name = ld.so.1
791endif
792endif
793
1ef32c3d
UD
794ifndef rtld-version-installed-name
795rtld-version-installed-name = ld-$(version).so
796endif
797
f649c201
UD
798endif # build-shared
799
cbdee279
UD
800ifneq (,$(findstring linuxthreads,$(add-ons)))
801shared-thread-library = $(common-objpfx)linuxthreads/libpthread.so
f649c201 802static-thread-library = $(common-objpfx)linuxthreads/libpthread.a
e64911d1 803bounded-thread-library = $(common-objpfx)linuxthreads/libpthread_b.a
f649c201 804have-thread-library = yes
e72bfd87 805rpath-dirs += linuxthreads
cbdee279
UD
806endif
807
94e365c6
UD
808ifeq ($(elf),yes)
809dlfcn = dlfcn
810ifeq ($(build-shared),yes)
811libdl = $(common-objpfx)dlfcn/libdl.so$(libdl.so-version)
812else
813libdl = $(common-objpfx)dlfcn/libdl.a
814endif
815else
816# No ELF - no libdl, at least for now.
817dlfcn =
818libdl =
819endif
820
bb41a976
UD
821# These are the subdirectories containing the library source. The order
822# is more or less arbitrary. The sorting step will take care of the
823# dependencies. Only the $(binfmt-subdir) should always be kept at the
824# end of the list.
8d6f1731 825all-subdirs = csu assert ctype locale intl catgets math setjmp signal \
b0b67c47
UD
826 stdlib stdio-common $(stdio) malloc string wcsmbs time dirent \
827 grp pwd posix io termios resource misc socket sysvipc gmon \
b11f5954 828 gnulib iconv iconvdata wctype manual shadow po argp \
aaf688e8 829 crypt $(add-ons) nss localedata timezone rt conform debug \
63f791d3 830 $(sysdep-subdirs) $(dlfcn) $(binfmt-subdir)
f3c1143b 831all-subdirs := $(filter-out $(sysdep-inhibit-subdirs),$(all-subdirs))
bb41a976 832
b22fc5f5
UD
833# The mach and hurd subdirectories have many generated header files which
834# much of the rest of the library depends on, so it is best to build them
835# first (and mach before hurd, at that). The before-compile additions in
836# sysdeps/{mach,hurd}/Makefile should make it reliably work for these files
837# not to exist when making in other directories, but it will be slower that
838# way with more somewhat expensive `make' invocations.
839subdirs := $(filter mach,$(subdirs)) $(filter hurd,$(subdirs)) \
840 $(filter-out mach hurd,$(subdirs))
841
b7e2d9a5 842ifndef avoid-generated
9c4c0024 843all-Subdirs-files = $(wildcard $(config-sysdirs:%=$(..)%/Subdirs))
b22fc5f5 844$(common-objpfx)sysd-dirs: $(common-objpfx)config.make $(all-Subdirs-files)
0155a773
UD
845 $(AWK) 'BEGIN { subdirs = ""; inhibit = "" }; \
846 /^#/ { next }; \
847 /^[^-]/ { subdirs = subdirs " " $$0 }; \
848 /^-/ { inhibit = inhibit " " substr($$0, 2) }; \
849 END { printf "sysdep-subdirs =%s\n", subdirs; \
850 printf "sysdep-inhibit-subdirs =%s\n", inhibit; \
851 print "sysd-dirs-done = t" }' \
48252123 852 $(patsubst $<,/dev/null,$^) > $@-tmp
b22fc5f5
UD
853 mv -f $@-tmp $@
854
bb41a976
UD
855all-Depend-files = $(wildcard $(..)*/Depend)
856$(common-objpfx)sysd-sorted: $(..)scripts/gen-sorted.awk $(all-Depend-files) \
857 $(common-objpfx)sysd-dirs $(..)Makeconfig
281e6031
UD
858 { { dirs='$(patsubst $(..)%/Depend,$(..)%,$(filter %/Depend,$^))';\
859 for d in $$dirs; do \
860 while read on; do \
861 echo "depend $$d $$on"; \
862 done < $$d/Depend; \
863 done; \
864 for f in $(all-subdirs); do \
865 echo $$f; \
866 done; \
867 } | $(AWK) -f $< && \
868 echo sysd-sorted-done = t; \
869 } > $@-tmp
bb41a976 870 mv -f $@-tmp $@
b7e2d9a5 871endif
bb41a976 872
28f540f4 873endif # Makeconfig not yet included