]> git.ipfire.org Git - thirdparty/glibc.git/blame - Makeconfig
(lll_trylock): Initialize %eax to zero.
[thirdparty/glibc.git] / Makeconfig
CommitLineData
30077d51 1# Copyright (C) 1991-2000,01,02, 03 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
142# Common prefix for machine-independent installation directories.
487253ea 143ifeq ($(origin prefix),undefined) # ifndef would override explicit empty value.
28f540f4
RM
144prefix = /usr/local
145endif
146
0413b54c
UD
147# Decide whether we shall build the programs or not. We always do this
148# unless the user tells us (in configparms) or we are building for a
149# standalone target.
150ifndef build-programs
151ifneq ($(config-os),none)
152build-programs=yes
153else
154build-programs=no
155endif
156endif
157
28f540f4 158# Common prefix for machine-dependent installation directories.
487253ea 159ifeq ($(origin exec_prefix),undefined)
28f540f4
RM
160exec_prefix = $(prefix)
161endif
162
163# Where to install the library and object files.
164ifndef libdir
165libdir = $(exec_prefix)/lib
166endif
8d57beea 167inst_libdir = $(install_root)$(libdir)
28f540f4 168
094bacdb
RM
169# Where to install the shared library and dynamic linker.
170ifndef slibdir
171slibdir = $(exec_prefix)/lib
172endif
8d57beea 173inst_slibdir = $(install_root)$(slibdir)
094bacdb 174
28f540f4
RM
175# Prefix to put on files installed in $(libdir). For libraries `libNAME.a',
176# the prefix is spliced between `lib' and the name, so the linker switch
177# `-l$(libprefix)NAME' finds the library; for other files the prefix is
178# just prepended to the whole file name.
487253ea 179ifeq ($(origin libprefix),undefined)
28f540f4
RM
180libprefix =
181endif
182
183# Where to install the header files.
184ifndef includedir
25c751d0 185includedir = $(prefix)/include
28f540f4 186endif
8d57beea 187inst_includedir = $(install_root)$(includedir)
28f540f4 188
28f540f4 189# Where to install machine-independent data files.
a2fe9c76 190# These are the timezone database, and the locale database.
28f540f4
RM
191ifndef datadir
192datadir = $(prefix)/share
193endif
8d57beea 194inst_datadir = $(install_root)$(datadir)
28f540f4
RM
195
196# Where to install the timezone data files (which are machine-independent).
197ifndef zonedir
198zonedir = $(datadir)/zoneinfo
199endif
8d57beea 200inst_zonedir = $(install_root)$(zonedir)
28f540f4 201
4a33c2f5 202# Where to install the locale files.
a2fe9c76 203ifndef localedir
4a33c2f5 204localedir = $(libdir)/locale
a2fe9c76 205endif
8d57beea 206inst_localedir = $(install_root)$(localedir)
a2fe9c76 207
4a33c2f5
UD
208# Where to install the message catalog data files (which are
209# machine-independent).
210ifndef msgcatdir
211msgcatdir = $(datadir)/locale
212endif
213inst_msgcatdir = $(install_root)$(msgcatdir)
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
07627f49
UD
319ifndef INSTALL_SCRIPT
320INSTALL_SCRIPT = $(INSTALL)
321endif
28f540f4
RM
322ifndef INSTALL_PROGRAM
323INSTALL_PROGRAM = $(INSTALL)
324endif
325ifndef INSTALL
326INSTALL = install
327endif
328
329
330# The name of the C compiler.
331# If you've got GCC, and it works, use it.
332ifeq ($(origin CC),default)
333CC := gcc
334endif
335
336# The name of the C compiler to use for compilations of programs to run on
337# the host that is building the library. If you set CC to a
338# cross-compiler, you must set this to the normal compiler.
339ifndef BUILD_CC
340BUILD_CC = $(CC)
341endif
342
343# Default flags to pass the C compiler.
344ifndef default_cflags
1d5c2feb
UD
345ifeq ($(release),stable)
346default_cflags := -g -O2
347else
a8922de8 348default_cflags := -g -O
28f540f4 349endif
1d5c2feb 350endif
28f540f4
RM
351
352# Flags to pass the C compiler when assembling preprocessed assembly code
353# (`.S' files). On some systems the assembler doesn't understand the `#' line
354# directives the preprocessor produces. If you have troubling compiling
355# assembly code, try using -P here to suppress these directives.
356ifndef asm-CPPFLAGS
357asm-CPPFLAGS =
358endif
359
9a0a462c
UD
360# ELF always supports init/fini sections
361ifeq ($(elf),yes)
362have-initfini = yes
363endif
364
779ae82e 365# Installed name of the startup code.
9a0a462c
UD
366ifneq ($(have-initfini),yes)
367# When not having init/fini, there is just one startfile, called crt0.o.
779ae82e
UD
368start-installed-name = crt0.o
369else
9a0a462c 370# On systems having init/fini, crt0.o is called crt1.o, and there are
779ae82e
UD
371# some additional bizarre files.
372start-installed-name = crt1.o
779ae82e 373endif
af09bfb5
RM
374# On systems that do not need a special startfile for statically linked
375# binaries, simply set it to the normal name.
376ifndef static-start-installed-name
377static-start-installed-name = $(start-installed-name)
378endif
779ae82e 379
f13df7c7
UD
380ifeq (yesyesyes,$(build-shared)$(elf)$(have-z-combreloc))
381combreloc-LDFLAGS = -Wl,-z,combreloc
382LDFLAGS.so += $(combreloc-LDFLAGS)
383LDFLAGS-rtld += $(combreloc-LDFLAGS)
384endif
385
28f540f4
RM
386# Command for linking programs with the C library.
387ifndef +link
8e3cc80f 388+link = $(CC) -nostdlib -nostartfiles -o $@ \
482eec0d 389 $(sysdep-LDFLAGS) $(config-LDFLAGS) $(LDFLAGS) $(LDFLAGS-$(@F)) \
f13df7c7 390 $(combreloc-LDFLAGS) \
779ae82e
UD
391 $(addprefix $(csu-objpfx),$(start-installed-name)) \
392 $(+preinit) $(+prector) \
393 $(filter-out $(addprefix $(csu-objpfx),start.o \
394 $(start-installed-name))\
395 $(+preinit) $(link-extra-libs) \
396 $(common-objpfx)libc% $(+postinit),$^) \
5ae9d168 397 $(link-extra-libs) $(link-libc) $(+postctor) $(+postinit)
28f540f4 398endif
e1586792
UD
399# Command for statically linking programs with the C library.
400ifndef +link-static
401+link-static = $(CC) -nostdlib -nostartfiles -static -o $@ \
402 $(sysdep-LDFLAGS) $(LDFLAGS) \
af09bfb5 403 $(addprefix $(csu-objpfx),$(static-start-installed-name)) \
e1586792
UD
404 $(+preinit) $(+prector) \
405 $(filter-out $(addprefix $(csu-objpfx),start.o \
406 $(start-installed-name))\
407 $(+preinit) $(link-extra-libs-static) \
408 $(common-objpfx)libc% $(+postinit),$^) \
409 $(link-extra-libs-static) $(link-libc-static) $(+postctor) $(+postinit)
410endif
ac556388
GM
411# Command for statically linking bounded-pointer programs with the C library.
412ifndef +link-bounded
413+link-bounded = $(CC) -nostdlib -nostartfiles -static -fbounded-pointers -o $@ \
414 $(sysdep-LDFLAGS) $(LDFLAGS) \
415 $(addprefix $(csu-objpfx),b$(static-start-installed-name)) \
416 $(+preinit) $(+prector) \
4362aba5 417 $(filter-out $(addprefix $(csu-objpfx),start.ob \
ac556388
GM
418 $(start-installed-name))\
419 $(+preinit) $(link-extra-libs-bounded) \
420 $(common-objpfx)libc% $(+postinit),$^) \
421 $(link-extra-libs-bounded) $(link-libc-bounded) $(+postctor) $(+postinit)
422endif
b122c703 423ifndef config-LDFLAGS
994431ed 424ifeq (yesyes,$(build-shared)$(elf))
094bacdb 425config-LDFLAGS = -Wl,-dynamic-linker=$(slibdir)/$(rtld-installed-name)
b122c703
RM
426endif
427endif
3fe9de0d
RM
428ifndef link-libc
429ifeq (yes,$(build-shared))
ad10cac8 430ifeq ($(elf),yes)
aa1075ea
RM
431# We need the versioned name of libc.so in the deps of $(others) et al
432# so that the symlink to libc.so is created before anything tries to
433# run the linked programs.
4d6acc61 434link-libc = -Wl,-rpath-link=$(rpath-link) \
aa1075ea 435 $(common-objpfx)libc.so$(libc.so-version) \
a44d2393 436 $(common-objpfx)$(patsubst %,$(libtype.oS),c) $(gnulib)
4d6acc61 437# This is how to find at build-time things that will be installed there.
b11f5954 438rpath-dirs = math elf dlfcn nss nis rt resolv crypt
ad10cac8 439else
27abf7a3 440ifneq (,$(filter aix aix%,$(config-os)))
0a3b7e6a 441link-libc = $(common-objpfx)libc.a \
ad10cac8
UD
442 $(common-objpfx)$(patsubst %,$(libtype.oS),c) $(gnulib)
443rpath-dirs = math dlfcn nss nis rt resolv crypt
444endif
445endif
e72bfd87
UD
446rpath-link = \
447$(common-objdir):$(subst $(empty) ,:,$(patsubst ../$(subdir),.,$(rpath-dirs:%=$(common-objpfx)%)))
47707456 448elfobjdir := $(patsubst ../$(subdir),.,$(common-objpfx)elf)
3fe9de0d 449else
ce85d65b
UD
450nssobjdir := $(patsubst ../$(subdir),.,$(common-objpfx)nss)
451resolvobjdir := $(patsubst ../$(subdir),.,$(common-objpfx)resolv)
4ac5087b 452link-libc = $(common-objpfx)libc.a $(otherlibs) $(gnulib) $(common-objpfx)libc.a $(gnulib)
3fe9de0d
RM
453endif
454endif
900bec85 455
ad10cac8
UD
456# Differences in the linkers on the various platforms.
457ifeq ($(elf),yes)
458LDFLAGS-rpath-ORIGIN = -Wl,-rpath,'$$ORIGIN'
459LDFLAGS-soname-fname = -Wl,-soname,$(@F)
460LDFLAGS-rdynamic = -rdynamic
461LDFLAGS-Bsymbolic = -Bsymbolic
462else
27abf7a3 463ifneq (,$(filter aix aix%,$(config-os)))
ad10cac8
UD
464LDFLAGS-rpath-ORIGIN =
465LDFLAGS-soname-fname =
466LDFLAGS-rdynamic = -Wl,-bdynamic
467LDFLAGS-Bsymbolic = -Wl,-bsymbolic
468endif
469endif
470
f01010de
UD
471# Choose the default search path for the dynamic linker based on
472# where we will install libraries.
473ifneq ($(libdir),$(slibdir))
474default-rpath = $(slibdir):$(libdir)
475else
476default-rpath = $(libdir)
477endif
478
57ba7bb4
UD
479ifndef link-extra-libs
480ifeq (yes,$(build-shared))
c57abfa7
UD
481ifneq ($(common-objpfx),$(objpfx))
482link-extra-libs = $(foreach lib,$(LDLIBS-$(@F)),\
483 $(wildcard $(common-objpfx)$(lib).so$($(notdir $(lib)).so-version) \
484 $(objpfx)$(lib).so$($(notdir $(lib)).so-version)))
485else
57ba7bb4 486link-extra-libs = $(foreach lib,$(LDLIBS-$(@F)),$(common-objpfx)$(lib).so$($(notdir $(lib)).so-version))
c57abfa7 487endif
57ba7bb4
UD
488else
489link-extra-libs = $(foreach lib,$(LDLIBS-$(@F)),$(common-objpfx)$(lib).a)
490endif
491endif
e1586792
UD
492
493# The static libraries.
66000494 494ifeq (yes,$(build-static))
e1586792
UD
495link-libc-static = $(common-objpfx)libc.a $(gnulib) $(common-objpfx)libc.a
496link-extra-libs-static = $(foreach lib,$(LDLIBS-$(@F)),$(common-objpfx)$(lib).a)
66000494
UD
497else
498ifeq (yes,$(build-shared))
499# We can try to link the programs with lib*_pic.a...
a94b2ac0 500link-libc-static = $(gnulib) $(common-objpfx)libc_pic.a
66000494
UD
501link-extra-libs-static = $(link-extra-libs)
502endif
503endif
ac556388 504link-libc-bounded = $(common-objpfx)libc_b.a $(gnulib) $(common-objpfx)libc_b.a
e64911d1 505link-extra-libs-bounded = $(foreach lib,$(LDLIBS-$(@F:%-bp=%)),$(common-objpfx)$(lib)_b.a)
e1586792 506
28f540f4
RM
507ifndef gnulib
508gnulib := -lgcc
509endif
96f873b9 510ifeq ($(elf),yes)
e75154a6
RM
511+preinit = $(addprefix $(csu-objpfx),crti.o)
512+postinit = $(addprefix $(csu-objpfx),crtn.o)
5ae9d168
UD
513+prector = `$(CC) --print-file-name=crtbegin.o`
514+postctor = `$(CC) --print-file-name=crtend.o`
66715f83 515+interp = $(addprefix $(elf-objpfx),interp.os)
96f873b9 516endif
6e953631
UD
517csu-objpfx = $(common-objpfx)csu/
518elf-objpfx = $(common-objpfx)elf/
28f540f4 519
03a75825
RM
520# How to run a program we just linked with our library.
521# The program binary is assumed to be $(word 2,$^).
522built-program-file = $(dir $(word 2,$^))$(notdir $(word 2,$^))
ad10cac8 523ifeq (yesyes,$(build-shared)$(elf))
196980f5 524comma = ,
11336c16
UD
525sysdep-library-path = \
526$(subst $(empty) ,:,$(strip $(patsubst -Wl$(comma)-rpath-link=%, %,\
527 $(filter -Wl$(comma)-rpath-link=%,\
528 $(sysdep-LDFLAGS)))))
27abf7a3
RM
529run-program-prefix = $(if $(filter $(notdir $(built-program-file)),\
530 $(tests-static)),, \
85857f93
UD
531 $(elf-objpfx)$(rtld-installed-name) \
532 --library-path $(rpath-link)$(patsubst %,:%,$(sysdep-library-path)))
8658ceda
UD
533else
534run-program-prefix =
535endif
ac556388
GM
536# Never use $(run-program-prefix) for the statically-linked %-bp test programs
537built-program-cmd = $(patsubst %,$(run-program-prefix),\
538 $(filter-out %-bp,$(built-program-file))) \
539 $(built-program-file)
03a75825 540
28f540f4
RM
541ifndef LD
542LD := ld -X
543endif
544
545ifndef RANLIB
546RANLIB = ranlib
547endif
548
549# Extra flags to pass to GCC.
6cc7d725
UD
550ifeq ($(all-warnings),yes)
551+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
552else
6796bc80 553+gccwarn := -Wall -Wwrite-strings -Winline -Wstrict-prototypes
6cc7d725 554endif
28f540f4 555
30077d51
RM
556# This is the program that generates makefile dependencies from C source files.
557# The -MP flag tells GCC >= 3.2 (which we now require) to produce dummy
558# targets for headers so that removed headers don't break the build.
28f540f4 559ifndef +mkdep
30077d51 560+mkdep = $(CC) -M -MP
28f540f4
RM
561endif
562
563# The program that makes Emacs-style TAGS files.
78759725 564ETAGS := etags
28f540f4
RM
565
566# The `m4' macro processor; this is used by sysdeps/sparc/Makefile (and
567# perhaps others) to preprocess assembly code in some cases.
568M4 = m4
569
73237de3
UD
570# To force installation of files even if they are older than the
571# installed files. This variable is included in the dependency list
572# of all installation targets.
573ifeq ($(force-install),yes)
574+force = force-install
575else
576+force =
577endif
578
28f540f4
RM
579####
580#### End of configuration variables.
581####
582\f
583# This tells some versions of GNU make before 3.63 not to export all variables.
584.NOEXPORT:
585
586# We want to echo the commands we're running without
6d52618b 587# umpteen zillion filenames along with it (we use `...' instead)
28f540f4
RM
588# but we don't want this echoing done when the user has said
589# he doesn't want to see commands echoed by using -s.
590ifneq "$(findstring s,$(MAKEFLAGS))" "" # if -s
591+cmdecho := echo >/dev/null
592else # not -s
593+cmdecho := echo
594endif # -s
595
596# These are the flags given to the compiler to tell
597# it what sort of optimization and/or debugging output to do.
598ifndef +cflags
599# If `CFLAGS' was defined, use that.
600ifdef CFLAGS
601+cflags := $(filter-out -I%,$(CFLAGS))
602endif # CFLAGS
603endif # +cflags
604
fd26970f 605# If none of the above worked, default to "-g -O".
28f540f4
RM
606ifeq "$(strip $(+cflags))" ""
607+cflags := $(default_cflags)
608endif # $(+cflags) == ""
609
28f540f4
RM
610+cflags := $(+cflags) $(+gccwarn)
611+gcc-nowarn := -w
28f540f4
RM
612
613# Don't duplicate options if we inherited variables from the parent.
614+cflags := $(sort $(+cflags))
615
616
617# These are flags given to the C compiler to tell it to look for include
762a2918
UD
618# files (including ones given in angle brackets) in the current directory,
619# in the parent library source directory and in the include directory.
28f540f4 620# `+sysdep-includes' will be defined by Makerules.
bdbf022d
UD
621+includes = -I$(..)include -I. \
622 $(patsubst %/,-I%,$(objpfx)) $(patsubst %/,-I%,$(..)) \
934b77ac 623 $(libio-include) $(includes) \
dbe7a0f5 624 $(+sysdep-includes) $(last-includes) $(sysincludes)
28f540f4 625
96aa2d94 626# Since libio has several internal header files, we use a -I instead
762a2918 627# of many little headers in the include directory.
96aa2d94 628libio-include = -I$(..)libio
28f540f4
RM
629
630# These are the variables that the implicit compilation rules use.
ce460d04
RM
631# Note that we can't use -std=* in CPPFLAGS, because it overrides
632# the implicit -lang-asm and breaks cpp behavior for .S files--notably
633# it causes cpp to stop predefining __ASSEMBLER__.
3387a425 634CPPFLAGS = $($(subdir)-CPPFLAGS) $(+includes) $(defines) \
ae8b36f7 635 -include $(..)include/libc-symbols.h $(sysdep-CPPFLAGS) \
0a951d0e 636 $(CPPFLAGS-$(suffix $@)) \
d29724f8
RM
637 $(foreach lib,$(libof-$(basename $(@F))) \
638 $(libof-$(<F)) $(libof-$(@F)),$(CPPFLAGS-$(lib))) \
0a951d0e 639 $(CPPFLAGS-$(<F)) $(CPPFLAGS-$(@F)) $(CPPFLAGS-$(basename $(@F)))
ce460d04
RM
640override CFLAGS = -std=gnu99 \
641 $(filter-out %frame-pointer,$(+cflags)) $(sysdep-CFLAGS) \
14e9dd67 642 $(CFLAGS-$(suffix $@)) $(CFLAGS-$(<F)) $(CFLAGS-$(@F))
28f540f4 643
cc3fa755
UD
644# If everything is compiled with -fPIC (implicitly) we must tell this by
645# defining the PIC symbol.
646ifeq (yes,$(build-pic-default))
647pic-default = -DPIC
648endif
649
f0bf9cb9
RM
650# Enable object files for different versions of the library.
651# Various things use $(object-suffixes) to know what all to make.
652# The compilation rules use $(CPPFLAGS-${SUFFIX}) and $(CFLAGS-${SUFFIX})
653# to pass different flags for each flavor.
91641c65 654libtypes = $(foreach o,$(object-suffixes-for-libc),$(libtype$o))
a35cb74d 655all-object-suffixes := .o .os .op .og .ob .oS
650425ce 656object-suffixes :=
cc3fa755 657CPPFLAGS-.o = $(pic-default)
14e9dd67 658CFLAGS-.o = $(filter %frame-pointer,$(+cflags))
66000494 659ifeq (yes,$(build-static))
f0bf9cb9 660libtype.o := lib%.a
650425ce
UD
661object-suffixes += .o
662endif
f0bf9cb9
RM
663ifeq (yes,$(build-shared))
664# Under --enable-shared, we will build a shared library of PIC objects.
40a55d20
UD
665# The PIC object files are named foo.os.
666object-suffixes += .os
b5567b2a 667CPPFLAGS-.os = -DPIC -DSHARED
14e9dd67 668CFLAGS-.os = $(filter %frame-pointer,$(+cflags)) $(pic-ccflag)
40a55d20 669libtype.os := lib%_pic.a
26b4d766
UD
670# This can be changed by a sysdep makefile
671pic-ccflag = -fPIC
f0bf9cb9
RM
672endif
673ifeq (yes,$(build-profile))
674# Under --enable-profile, we will build a static library of profiled objects.
40a55d20
UD
675# The profiled object files are named foo.op.
676object-suffixes += .op
cc3fa755 677CPPFLAGS-.op = -DPROF $(pic-default)
40a55d20
UD
678CFLAGS-.op = -pg
679libtype.op = lib%_p.a
f0bf9cb9
RM
680endif
681ifeq (yes,$(build-omitfp))
ab95290c 682# Under --enable-omitfp, we build the library optimized without
f0bf9cb9 683# debugging information using -fomit-frame-pointer, and build an extra
40a55d20
UD
684# library with debugging information. The debuggable objects are named foo.og.
685object-suffixes += .og
cc3fa755 686CPPFLAGS-.og = $(pic-default)
40a55d20 687CFLAGS-.og = -g
14e9dd67
UD
688CFLAGS-.o = $(filter %frame-pointer,$(+cflags)) -g0 -O99 -fomit-frame-pointer -D__USE_STRING_INLINES
689CFLAGS-.os += -g0 -O99 -fomit-frame-pointer -D__USE_STRING_INLINES
40a55d20 690libtype.og = lib%_g.a
f0bf9cb9 691endif
ab95290c
UD
692
693bppfx = BP-
5a97622d
UD
694ifeq (yes,$(build-bounded))
695# Under --enable-bounded, we build the library with `-fbounded-pointers -g'
40a55d20 696# to runtime bounds checking. The bounded-pointer objects are named foo.ob.
58ff985d
GM
697# We disable sibling-call optimizations so that stack traces will be complete
698# and thus aid debugging, since after all, BPs are a debugging tool.
40a55d20 699object-suffixes += .ob
ab95290c 700CPPFLAGS-.ob = -fbounded-pointers $(pic-default)
e64911d1 701CFLAGS-.ob = -g -O2 -fno-optimize-sibling-calls -fno-strict-aliasing
40a55d20 702libtype.ob = lib%_b.a
5a97622d 703endif
f0bf9cb9 704
9afc8a59
UD
705object-suffixes-for-libc := $(object-suffixes)
706
707ifeq (yes,$(build-shared))
708# Build special library that contains the static-only routines for libc.
709object-suffixes-for-libc += .oS
710
711# Must build the routines as PIC, though, because they can end up in (users')
712# shared objects. We don't want to use CFLAGS-os because users may, for
713# example, make that processor-specific.
714CFLAGS-.oS = $(CFLAGS-.o) $(pic-ccflag)
06b31ad3 715CPPFLAGS-.oS = $(CPPFLAGS-.o) -DPIC -DLIBC_NONSHARED=1
9afc8a59
UD
716libtype.oS = lib%_nonshared.a
717endif
718
719
28f540f4
RM
720+gnu-stabs = $(shell echo>&2 '*** BARF ON ME')
721
96bda0ea
RM
722ifndef BUILD_CC
723BUILD_CC = $(CC)
724endif
e72bfd87
UD
725
726move-if-change = $(SHELL) $(..)scripts/move-if-change
a641835a 727\f
281e6031
UD
728-include $(common-objpfx)sysd-dirs
729
730ifeq ($(sysd-dirs-done),t)
731-include $(common-objpfx)sysd-sorted
732subdirs = $(sorted-subdirs)
733endif
9a0a462c 734
4de1d597
RM
735ifeq (yes, $(build-shared))
736
f3787738
RM
737# This is a pair of implicit rules to preprocess a file with # comments,
738# %ifdef et al, based on config.h settings or other %include'd files.
739# We use chained rules instead of a pipeline here so that we can properly
740# check the exit status of cpp rather than using its bad output when there
741# is a preprocessing error. Another rule should depend on the output file
742# `FOO.v', and along with that `FOO.v.i' should be given dependencies
743# listing both its input files, and any header files that it may reference
744# (but no commands).
745%.v.i: $(common-objpfx)config.h
746 sed '/^[ ]*#/d;s/^[ ]*%/#/' $(filter-out FORCE %.h,$^) \
8027e188 747 | $(CC) -E -undef $(CPPFLAGS) \
f3787738
RM
748 -DASSEMBLER -x assembler-with-cpp - \
749 > $@T
750 mv -f $@T $@
751%.v: %.v.i
752 sed '/^[ ]*#/d;/^[ ]*$$/d' $< > $@T
753 mv -f $@T $@
480d827b 754
4de1d597
RM
755# Process the shlib-versions file, which tells us what shared library
756# version numbers to use when we install shared objects on this system.
281e6031
UD
757# We need to wait until $(subdirs) is complete.
758ifeq ($(sysd-sorted-done),t)
4de1d597 759-include $(common-objpfx)soversions.mk
eca3eb3b 760ifndef avoid-generated
f3787738
RM
761$(common-objpfx)shlib-versions.v.i: \
762 $(..)shlib-versions $(wildcard $(patsubst %, $(..)%/shlib-versions,\
763 $(add-ons) \
764 $(subdirs)))
765$(common-objpfx)soversions.i: $(common-objpfx)shlib-versions.v
a8c01776 766 default_setname='$(filter-out %_default,$(oldest-abi:%=GLIBC_%))'; \
f3787738
RM
767 while read conf version setname; do \
768 test -n "$$version" && \
769 test `expr '$(config-machine)-$(config-vendor)-$(config-os)' \
770 : "$$conf"` != 0 || continue; \
771 if test "x$$version" = xDEFAULT; then \
772 default_setname="$$setname"; \
773 else \
a8c01776 774 $(abi-default_setname) \
f3787738
RM
775 lib=`echo $$version | sed 's/=.*$$//'`; \
776 if eval test -z "\$${versioned_$${lib}}"; then \
777 eval versioned_$${lib}=yes; \
778 number=`echo $$version | sed "s/^.*=//"`; \
779 echo $$lib $$number $${setname:-$${default_setname}}; \
af260314 780 fi; \
f3787738
RM
781 fi; \
782 done < $< > $@T; exit 0
ba7e89ec
RM
783 mv -f $@T $@
784$(common-objpfx)soversions.mk: $(common-objpfx)soversions.i
1bc777b8
UD
785 (while read lib number setname; do \
786 case $$number in \
787 [0-9]*) echo "$$lib.so-version=.$$number"; \
788 echo "all-sonames+=$$lib=$$lib.so\$$($$lib.so-version)";;\
789 *) echo "$$lib.so-version=$$number"; \
790 echo "all-sonames+=$$lib=\$$($$lib.so-version)";;\
791 esac; \
792 done; \
793 echo soversions.mk-done = t;) < $< > $@T; exit 0
4de1d597 794 mv -f $@T $@
eca3eb3b 795endif
281e6031 796endif
eca3eb3b 797
f3787738
RM
798postclean-generated += soversions.mk soversions.i \
799 shlib-versions.v shlib-versions.v.i
4de1d597 800
c0e45674
UD
801# Generate the header containing the names of all shared libraries.
802# We use a stamp file to avoid uncessary recompilations.
803before-compile += $(common-objpfx)gnu/lib-names.h
1bc777b8 804ifeq ($(soversions.mk-done),t)
60c34a30 805$(common-objpfx)gnu/lib-names.h: $(common-objpfx)gnu/lib-names.stmp; @:
ad10cac8
UD
806ifneq (,$(findstring aix,$(config-os)))
807$(common-objpfx)gnu/lib-names.stmp: $(..)sysdeps/unix/sysv/aix/gnu/lib-names.h
808 $(make-target-directory)
809 @rm -f ${@:stmp=T} $@
810 @cp $(..)sysdeps/unix/sysv/aix/gnu/lib-names.h $(common-objpfx)gnu
811 touch $@
812else
c0e45674
UD
813$(common-objpfx)gnu/lib-names.stmp: $(common-objpfx)soversions.mk
814 $(make-target-directory)
815 @rm -f ${@:stmp=T} $@
816 (echo '/* This file is automatically generated.';\
817 echo ' It defines macros to allow user program to find the shared';\
818 echo ' library files which come as part of GNU libc. */';\
819 echo '#ifndef __GNU_LIB_NAMES_H'; \
820 echo '#define __GNU_LIB_NAMES_H 1'; \
821 echo; \
822 (libs='$(all-sonames)';\
823 for l in $$libs; do \
a8322b4f
UD
824 name=`echo $$l | sed 's/.*=//'`; \
825 upname=`echo $$l | sed 's/=.*//' | \
7cc27f44
UD
826 tr 'abcdefghijklmnopqrstuvwxyz-' \
827 'ABCDEFGHIJKLMNOPQRSTUVWXYZ_'`; \
a8322b4f
UD
828 upname2=`echo $$name | sed 's/[.]so.*//' | \
829 tr 'abcdefghijklmnopqrstuvwxyz-' \
830 'ABCDEFGHIJKLMNOPQRSTUVWXYZ_'`; \
831 echo "#define $${upname}_SO \"$$name\""; \
832 if test $$upname != $$upname2; then \
833 echo "#define $${upname2}_SO \"$$name\""; \
834 fi; \
c0e45674
UD
835 done;) | sort; \
836 echo; \
837 echo '#endif /* gnu/lib-names.h */';) > ${@:stmp=T}
7e7a548e 838 $(move-if-change) ${@:stmp=T} ${@:stmp=h}
c0e45674 839 touch $@
1bc777b8 840endif
ad10cac8 841endif
c0e45674
UD
842
843common-generated += gnu/lib-names.h gnu/lib-names.stmp
d41c6f61
UD
844
845# The name under which the run-time dynamic linker is installed.
846# We are currently going for the convention that `/lib/ld.so.1'
847# names the SVR4/ELF ABI-compliant dynamic linker.
848ifndef rtld-installed-name
849ifdef ld.so-version
850rtld-installed-name = $(ld.so-version)
851else
852rtld-installed-name = ld.so.1
853endif
854endif
855
1ef32c3d
UD
856ifndef rtld-version-installed-name
857rtld-version-installed-name = ld-$(version).so
858endif
859
f649c201
UD
860endif # build-shared
861
cbdee279 862
94e365c6
UD
863ifeq ($(elf),yes)
864dlfcn = dlfcn
865ifeq ($(build-shared),yes)
866libdl = $(common-objpfx)dlfcn/libdl.so$(libdl.so-version)
867else
868libdl = $(common-objpfx)dlfcn/libdl.a
869endif
870else
ad10cac8
UD
871ifneq (,$(findstring aix,$(config-os)))
872ifeq ($(build-shared),yes)
873dlfcn = dlfcn
874libdl = $(common-objpfx)dlfcn/libdl.so$(libdl.so-version)
875else
876# No libdl without shared libs on AIX
877dlfcn =
878libdl =
879endif
880else
881# No ELF, no AIX - no libdl, at least for now.
94e365c6
UD
882dlfcn =
883libdl =
884endif
ad10cac8 885endif
94e365c6 886
bb41a976
UD
887# These are the subdirectories containing the library source. The order
888# is more or less arbitrary. The sorting step will take care of the
889# dependencies. Only the $(binfmt-subdir) should always be kept at the
890# end of the list.
8d6f1731 891all-subdirs = csu assert ctype locale intl catgets math setjmp signal \
934b77ac 892 stdlib stdio-common libio malloc string wcsmbs time dirent \
b0b67c47 893 grp pwd posix io termios resource misc socket sysvipc gmon \
b11f5954 894 gnulib iconv iconvdata wctype manual shadow po argp \
aaf688e8 895 crypt $(add-ons) nss localedata timezone rt conform debug \
63f791d3 896 $(sysdep-subdirs) $(dlfcn) $(binfmt-subdir)
f3c1143b 897all-subdirs := $(filter-out $(sysdep-inhibit-subdirs),$(all-subdirs))
bb41a976 898
b22fc5f5
UD
899# The mach and hurd subdirectories have many generated header files which
900# much of the rest of the library depends on, so it is best to build them
901# first (and mach before hurd, at that). The before-compile additions in
902# sysdeps/{mach,hurd}/Makefile should make it reliably work for these files
903# not to exist when making in other directories, but it will be slower that
904# way with more somewhat expensive `make' invocations.
905subdirs := $(filter mach,$(subdirs)) $(filter hurd,$(subdirs)) \
906 $(filter-out mach hurd,$(subdirs))
907
b7e2d9a5 908ifndef avoid-generated
9c4c0024 909all-Subdirs-files = $(wildcard $(config-sysdirs:%=$(..)%/Subdirs))
b22fc5f5 910$(common-objpfx)sysd-dirs: $(common-objpfx)config.make $(all-Subdirs-files)
0155a773
UD
911 $(AWK) 'BEGIN { subdirs = ""; inhibit = "" }; \
912 /^#/ { next }; \
913 /^[^-]/ { subdirs = subdirs " " $$0 }; \
914 /^-/ { inhibit = inhibit " " substr($$0, 2) }; \
915 END { printf "sysdep-subdirs =%s\n", subdirs; \
916 printf "sysdep-inhibit-subdirs =%s\n", inhibit; \
917 print "sysd-dirs-done = t" }' \
48252123 918 $(patsubst $<,/dev/null,$^) > $@-tmp
b22fc5f5
UD
919 mv -f $@-tmp $@
920
bb41a976
UD
921all-Depend-files = $(wildcard $(..)*/Depend)
922$(common-objpfx)sysd-sorted: $(..)scripts/gen-sorted.awk $(all-Depend-files) \
923 $(common-objpfx)sysd-dirs $(..)Makeconfig
281e6031
UD
924 { { dirs='$(patsubst $(..)%/Depend,$(..)%,$(filter %/Depend,$^))';\
925 for d in $$dirs; do \
926 while read on; do \
927 echo "depend $$d $$on"; \
928 done < $$d/Depend; \
929 done; \
930 for f in $(all-subdirs); do \
931 echo $$f; \
932 done; \
933 } | $(AWK) -f $< && \
934 echo sysd-sorted-done = t; \
935 } > $@-tmp
bb41a976 936 mv -f $@-tmp $@
b7e2d9a5 937endif
bb41a976 938
083973f3 939# Let sysdeps/ subdirs contain a Makeconfig fragment for us to include here.
f1d71039
RM
940sysdep-makeconfigs := $(wildcard $(patsubst %,$(..)%/Makeconfig,\
941 $(config-sysdirs) $(add-ons)))
942
083973f3
RM
943ifneq (,$(sysdep-makeconfigs))
944include $(sysdep-makeconfigs)
945endif
946
947
28f540f4 948endif # Makeconfig not yet included
c238ecf7
UD
949
950# Local Variables:
951# mode: makefile
952# End: