]> git.ipfire.org Git - thirdparty/glibc.git/blame - Makeconfig
Use "config.h" to refer to the local config.h file.
[thirdparty/glibc.git] / Makeconfig
CommitLineData
1d038b6b 1# Copyright (C) 1991-2003, 2004, 2005 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
e07bb02a
UD
86# What flags to give to sources which call user provided callbacks
87uses-callbacks = $(exceptions)
88
a4db3439
UD
89# What flags to give to tests which test stack alignment
90stack-align-test-flags =
91
0501d603
UD
92# We have a special subdir for each binary format.
93# For now, only ELF is fully supported.
94ifeq ($(elf),yes)
95binfmt-subdir = elf
96else
0a54e401
UD
97# This is probably better than nothing.
98binfmt-subdir = aout
0501d603
UD
99endif
100
57ba7bb4 101# Complete path to sysdep dirs.
a334319f 102export full_config_sysdirs := $(addprefix $(..),$(config-sysdirs))
57ba7bb4 103
273d56ce
RM
104# Run config.status to update config.make and config.h. We don't show the
105# dependence of config.h to Make, because it is only touched when it
106# changes and so config.status would be run every time; the dependence of
107# config.make should suffice to force regeneration and re-exec, and the new
108# image will notice if config.h changed.
19361cb7
UD
109$(common-objpfx)config.make: $(common-objpfx)config.status \
110 $(..)config.make.in $(..)config.h.in
273d56ce
RM
111 cd $(<D); $(SHELL) $(<F)
112
8f73811b
RM
113# Find all the add-on and sysdeps configure fragments, to make sure we
114# re-run configure when any of them changes.
5290baf0 115$(common-objpfx)config.status: $(..)version.h $(..)configure \
a334319f
UD
116 $(foreach dir,$(full_config_sysdirs),\
117 $(wildcard \
118 $(dir)/Implies) \
f332db02
RM
119 $(patsubst %.in,%,\
120 $(firstword $(wildcard \
8f73811b
RM
121 $(addprefix $(dir)/,configure configure.in))))) \
122 $(patsubst %.in,%,\
a334319f 123 $(foreach dir,$(add-ons),\
8f73811b 124 $(firstword $(wildcard \
a334319f 125 $(addprefix $(..)$(dir)/,configure configure.in)))))
273d56ce
RM
126 @cd $(@D); if test -f $(@F); then exec $(SHELL) $(@F) --recheck; else \
127 echo The GNU C library has not been configured. >&2; \
128 echo Run \`configure\' to configure it before building. >&2; \
129 echo Try \`configure --help\' for more details. >&2; \
130 exit 1; fi
28f540f4 131
74015205
UD
132# We don't want CPPFLAGS to be exported to the command running configure.
133unexport CPPFLAGS
134
28f540f4
RM
135# Get the user's configuration parameters.
136ifneq ($(wildcard $(..)configparms),)
137include $(..)configparms
138endif
139ifneq ($(objpfx),)
6e953631
UD
140ifneq ($(wildcard $(common-objpfx)configparms),)
141include $(common-objpfx)configparms
28f540f4
RM
142endif
143endif
28f540f4
RM
144\f
145####
146#### These are the configuration variables. You can define values for
147#### the variables below in the file `configparms'.
148#### Do NOT edit this file.
149####
150
151
152# Common prefix for machine-independent installation directories.
487253ea 153ifeq ($(origin prefix),undefined) # ifndef would override explicit empty value.
28f540f4
RM
154prefix = /usr/local
155endif
156
0413b54c
UD
157# Decide whether we shall build the programs or not. We always do this
158# unless the user tells us (in configparms) or we are building for a
159# standalone target.
160ifndef build-programs
161ifneq ($(config-os),none)
162build-programs=yes
163else
164build-programs=no
165endif
166endif
167
28f540f4 168# Common prefix for machine-dependent installation directories.
487253ea 169ifeq ($(origin exec_prefix),undefined)
28f540f4
RM
170exec_prefix = $(prefix)
171endif
172
173# Where to install the library and object files.
174ifndef libdir
175libdir = $(exec_prefix)/lib
176endif
8d57beea 177inst_libdir = $(install_root)$(libdir)
28f540f4 178
094bacdb
RM
179# Where to install the shared library and dynamic linker.
180ifndef slibdir
181slibdir = $(exec_prefix)/lib
182endif
8d57beea 183inst_slibdir = $(install_root)$(slibdir)
094bacdb 184
28f540f4
RM
185# Prefix to put on files installed in $(libdir). For libraries `libNAME.a',
186# the prefix is spliced between `lib' and the name, so the linker switch
187# `-l$(libprefix)NAME' finds the library; for other files the prefix is
188# just prepended to the whole file name.
487253ea 189ifeq ($(origin libprefix),undefined)
28f540f4
RM
190libprefix =
191endif
192
193# Where to install the header files.
194ifndef includedir
25c751d0 195includedir = $(prefix)/include
28f540f4 196endif
8d57beea 197inst_includedir = $(install_root)$(includedir)
28f540f4 198
28f540f4 199# Where to install machine-independent data files.
a2fe9c76 200# These are the timezone database, and the locale database.
28f540f4
RM
201ifndef datadir
202datadir = $(prefix)/share
203endif
8d57beea 204inst_datadir = $(install_root)$(datadir)
28f540f4
RM
205
206# Where to install the timezone data files (which are machine-independent).
207ifndef zonedir
208zonedir = $(datadir)/zoneinfo
209endif
8d57beea 210inst_zonedir = $(install_root)$(zonedir)
28f540f4 211
4a33c2f5 212# Where to install the locale files.
a2fe9c76 213ifndef localedir
4a33c2f5 214localedir = $(libdir)/locale
a2fe9c76 215endif
8d57beea 216inst_localedir = $(install_root)$(localedir)
a2fe9c76 217
4a33c2f5
UD
218# Where to install the message catalog data files (which are
219# machine-independent).
220ifndef msgcatdir
221msgcatdir = $(datadir)/locale
222endif
223inst_msgcatdir = $(install_root)$(msgcatdir)
224
3ec41e03 225# Where to install the locale charmap source files.
19bc17a9
RM
226ifndef i18ndir
227i18ndir = $(datadir)/i18n
a2fe9c76 228endif
8d57beea 229inst_i18ndir = $(install_root)$(i18ndir)
a2fe9c76 230
6973fc01
UD
231# Where to install the shared object for charset transformation.
232ifndef gconvdir
233gconvdir = $(libdir)/gconv
234endif
235inst_gconvdir = $(install_root)$(gconvdir)
236
28f540f4
RM
237# Where to install programs.
238ifndef bindir
239bindir = $(exec_prefix)/bin
240endif
8d57beea 241inst_bindir = $(install_root)$(bindir)
28f540f4 242
7f0ff1b0
UD
243# Where to install internal programs.
244ifndef libexecdir
245libexecdir = $(exec_prefix)/libexec
246endif
247inst_libexecdir = $(install_root)$(libexecdir)
248
28f540f4 249# Where to install administrative programs.
1ef32c3d
UD
250ifndef rootsbindir
251rootsbindir = $(exec_prefix)/sbin
252endif
8d57beea 253inst_rootsbindir = $(install_root)$(rootsbindir)
1ef32c3d 254
28f540f4
RM
255ifndef sbindir
256sbindir = $(exec_prefix)/sbin
257endif
8d57beea 258inst_sbindir = $(install_root)$(sbindir)
28f540f4
RM
259
260# Where to install the Info files.
261ifndef infodir
262infodir = $(prefix)/info
263endif
8d57beea 264inst_infodir = $(install_root)$(infodir)
28f540f4
RM
265
266# Where to install default configuration files. These include the local
267# timezone specification and network data base files.
268ifndef sysconfdir
269sysconfdir = $(prefix)/etc
270endif
8d57beea 271inst_sysconfdir = $(install_root)$(sysconfdir)
28f540f4
RM
272
273# What timezone should be the installed default (e.g., US/Eastern).
274# Run `make -C time echo-zonenames' to see a list of available zone names.
275# The local timezone can be changed with `zic -l TIMEZONE' at any time.
276ifndef localtime
277localtime = Factory
278endif
279
280# Where to install the "localtime" timezone file; this is the file whose
281# contents $(localtime) specifies. If this is a relative pathname, it is
282# relative to $(zonedir). It is a good idea to put this somewhere
283# other than there, so the zoneinfo directory contains only universal data,
284# localizing the configuration data elsewhere.
285ifndef localtime-file
0d8733c4
UD
286localtime-file = $(sysconfdir)/localtime
287inst_localtime-file = $(install_root)$(localtime-file)
28f540f4
RM
288endif
289
59dd8641
RM
290# What to use for leap second specifications in compiling the default
291# timezone files. Set this to `/dev/null' for no leap second handling as
292# 1003.1 requires, or to `leapseconds' for proper leap second handling.
293# Both zone flavors are always available as `posix/ZONE' and `right/ZONE'.
294# This variable determines the default: if it's `/dev/null',
295# ZONE==posix/ZONE; if it's `leapseconds', ZONE==right/ZONE.
296ifndef leapseconds
297leapseconds = /dev/null
298endif
299
28f540f4
RM
300# What timezone's DST rules should be used when a POSIX-style TZ
301# environment variable doesn't specify any rules. For 1003.1 compliance
302# this timezone must use rules that are as U.S. federal law defines DST.
303# Run `make -C time echo-zonenames' to see a list of available zone names.
304# This setting can be changed with `zic -p TIMEZONE' at any time.
305# If you want POSIX.1 compatibility, use `America/New_York'.
306ifndef posixrules
307posixrules = America/New_York
308endif
309
310# Where to install the "posixrules" timezone file; this is file
311# whose contents $(posixrules) specifies. If this is a relative
312# pathname, it is relative to $(zonedir).
313ifndef posixrules-file
314posixrules-file = posixrules
315endif
316
317
318# Directory where your system's native header files live.
319# This is used on Unix systems to generate some GNU libc header files.
320ifndef sysincludedir
321sysincludedir = /usr/include
322endif
323
324
325# Commands to install files.
326ifndef INSTALL_DATA
327INSTALL_DATA = $(INSTALL) -m 644
328endif
07627f49
UD
329ifndef INSTALL_SCRIPT
330INSTALL_SCRIPT = $(INSTALL)
331endif
28f540f4
RM
332ifndef INSTALL_PROGRAM
333INSTALL_PROGRAM = $(INSTALL)
334endif
335ifndef INSTALL
336INSTALL = install
337endif
338
339
340# The name of the C compiler.
341# If you've got GCC, and it works, use it.
342ifeq ($(origin CC),default)
343CC := gcc
344endif
345
346# The name of the C compiler to use for compilations of programs to run on
347# the host that is building the library. If you set CC to a
348# cross-compiler, you must set this to the normal compiler.
349ifndef BUILD_CC
350BUILD_CC = $(CC)
351endif
352
353# Default flags to pass the C compiler.
354ifndef default_cflags
1d5c2feb
UD
355ifeq ($(release),stable)
356default_cflags := -g -O2
357else
a8922de8 358default_cflags := -g -O
28f540f4 359endif
1d5c2feb 360endif
28f540f4
RM
361
362# Flags to pass the C compiler when assembling preprocessed assembly code
363# (`.S' files). On some systems the assembler doesn't understand the `#' line
364# directives the preprocessor produces. If you have troubling compiling
365# assembly code, try using -P here to suppress these directives.
366ifndef asm-CPPFLAGS
367asm-CPPFLAGS =
368endif
369
9a0a462c
UD
370# ELF always supports init/fini sections
371ifeq ($(elf),yes)
372have-initfini = yes
373endif
374
779ae82e 375# Installed name of the startup code.
9a0a462c
UD
376ifneq ($(have-initfini),yes)
377# When not having init/fini, there is just one startfile, called crt0.o.
779ae82e
UD
378start-installed-name = crt0.o
379else
9a0a462c 380# On systems having init/fini, crt0.o is called crt1.o, and there are
779ae82e
UD
381# some additional bizarre files.
382start-installed-name = crt1.o
779ae82e 383endif
af09bfb5
RM
384# On systems that do not need a special startfile for statically linked
385# binaries, simply set it to the normal name.
386ifndef static-start-installed-name
387static-start-installed-name = $(start-installed-name)
388endif
779ae82e 389
f13df7c7
UD
390ifeq (yesyesyes,$(build-shared)$(elf)$(have-z-combreloc))
391combreloc-LDFLAGS = -Wl,-z,combreloc
392LDFLAGS.so += $(combreloc-LDFLAGS)
393LDFLAGS-rtld += $(combreloc-LDFLAGS)
394endif
395
1c563add
UD
396ifeq (yes,$(have-z-relro))
397relro-LDFLAGS = -Wl,-z,relro
398LDFLAGS.so += $(relro-LDFLAGS)
399LDFLAGS-rtld += $(relro-LDFLAGS)
400endif
401
28f540f4
RM
402# Command for linking programs with the C library.
403ifndef +link
8e3cc80f 404+link = $(CC) -nostdlib -nostartfiles -o $@ \
482eec0d 405 $(sysdep-LDFLAGS) $(config-LDFLAGS) $(LDFLAGS) $(LDFLAGS-$(@F)) \
a334319f 406 $(combreloc-LDFLAGS) $(relro-LDFLAGS) \
779ae82e
UD
407 $(addprefix $(csu-objpfx),$(start-installed-name)) \
408 $(+preinit) $(+prector) \
409 $(filter-out $(addprefix $(csu-objpfx),start.o \
410 $(start-installed-name))\
411 $(+preinit) $(link-extra-libs) \
412 $(common-objpfx)libc% $(+postinit),$^) \
5ae9d168 413 $(link-extra-libs) $(link-libc) $(+postctor) $(+postinit)
28f540f4 414endif
e1586792
UD
415# Command for statically linking programs with the C library.
416ifndef +link-static
417+link-static = $(CC) -nostdlib -nostartfiles -static -o $@ \
9f0d7b6d 418 $(sysdep-LDFLAGS) $(LDFLAGS) $(LDFLAGS-$(@F)) \
af09bfb5 419 $(addprefix $(csu-objpfx),$(static-start-installed-name)) \
e1586792
UD
420 $(+preinit) $(+prector) \
421 $(filter-out $(addprefix $(csu-objpfx),start.o \
422 $(start-installed-name))\
423 $(+preinit) $(link-extra-libs-static) \
424 $(common-objpfx)libc% $(+postinit),$^) \
425 $(link-extra-libs-static) $(link-libc-static) $(+postctor) $(+postinit)
426endif
ac556388
GM
427# Command for statically linking bounded-pointer programs with the C library.
428ifndef +link-bounded
429+link-bounded = $(CC) -nostdlib -nostartfiles -static -fbounded-pointers -o $@ \
430 $(sysdep-LDFLAGS) $(LDFLAGS) \
431 $(addprefix $(csu-objpfx),b$(static-start-installed-name)) \
432 $(+preinit) $(+prector) \
4362aba5 433 $(filter-out $(addprefix $(csu-objpfx),start.ob \
ac556388
GM
434 $(start-installed-name))\
435 $(+preinit) $(link-extra-libs-bounded) \
436 $(common-objpfx)libc% $(+postinit),$^) \
437 $(link-extra-libs-bounded) $(link-libc-bounded) $(+postctor) $(+postinit)
438endif
b122c703 439ifndef config-LDFLAGS
994431ed 440ifeq (yesyes,$(build-shared)$(elf))
094bacdb 441config-LDFLAGS = -Wl,-dynamic-linker=$(slibdir)/$(rtld-installed-name)
b122c703
RM
442endif
443endif
3fe9de0d
RM
444ifndef link-libc
445ifeq (yes,$(build-shared))
ad10cac8 446ifeq ($(elf),yes)
aa1075ea
RM
447# We need the versioned name of libc.so in the deps of $(others) et al
448# so that the symlink to libc.so is created before anything tries to
449# run the linked programs.
4d6acc61 450link-libc = -Wl,-rpath-link=$(rpath-link) \
aa1075ea 451 $(common-objpfx)libc.so$(libc.so-version) \
a44d2393 452 $(common-objpfx)$(patsubst %,$(libtype.oS),c) $(gnulib)
4d6acc61 453# This is how to find at build-time things that will be installed there.
b11f5954 454rpath-dirs = math elf dlfcn nss nis rt resolv crypt
ad10cac8 455endif
e72bfd87
UD
456rpath-link = \
457$(common-objdir):$(subst $(empty) ,:,$(patsubst ../$(subdir),.,$(rpath-dirs:%=$(common-objpfx)%)))
47707456 458elfobjdir := $(patsubst ../$(subdir),.,$(common-objpfx)elf)
3fe9de0d 459else
ce85d65b
UD
460nssobjdir := $(patsubst ../$(subdir),.,$(common-objpfx)nss)
461resolvobjdir := $(patsubst ../$(subdir),.,$(common-objpfx)resolv)
4ac5087b 462link-libc = $(common-objpfx)libc.a $(otherlibs) $(gnulib) $(common-objpfx)libc.a $(gnulib)
3fe9de0d
RM
463endif
464endif
900bec85 465
ad10cac8
UD
466# Differences in the linkers on the various platforms.
467ifeq ($(elf),yes)
468LDFLAGS-rpath-ORIGIN = -Wl,-rpath,'$$ORIGIN'
469LDFLAGS-soname-fname = -Wl,-soname,$(@F)
470LDFLAGS-rdynamic = -rdynamic
471LDFLAGS-Bsymbolic = -Bsymbolic
ad10cac8
UD
472endif
473
f01010de
UD
474# Choose the default search path for the dynamic linker based on
475# where we will install libraries.
476ifneq ($(libdir),$(slibdir))
477default-rpath = $(slibdir):$(libdir)
478else
479default-rpath = $(libdir)
480endif
481
57ba7bb4 482ifndef link-extra-libs
1d038b6b
RM
483link-extra-libs = $(LDLIBS-$(@F))
484link-extra-libs-static = $(link-extra-libs)
485link-extra-libs-bounded = $(link-extra-libs)
57ba7bb4 486endif
e1586792
UD
487
488# The static libraries.
66000494 489ifeq (yes,$(build-static))
feca5e0b 490link-libc-static = $(common-objpfx)libc.a $(static-gnulib) $(common-objpfx)libc.a
66000494
UD
491else
492ifeq (yes,$(build-shared))
493# We can try to link the programs with lib*_pic.a...
feca5e0b 494link-libc-static = $(static-gnulib) $(common-objpfx)libc_pic.a
66000494
UD
495endif
496endif
ac556388 497link-libc-bounded = $(common-objpfx)libc_b.a $(gnulib) $(common-objpfx)libc_b.a
e1586792 498
28f540f4 499ifndef gnulib
cbdb12de
UD
500ifneq ($(have-cc-with-libunwind),yes)
501 libunwind =
feca5e0b 502else
cbdb12de 503 libunwind = -lunwind
feca5e0b 504endif
cbdb12de
UD
505ifneq ($(have-as-needed),yes)
506 libgcc_eh := -lgcc_eh $(libunwind)
26b30508 507else
cbdb12de 508 libgcc_eh := -Wl,--as-needed -lgcc_s$(libgcc_s_suffix) $(libunwind) -Wl,--no-as-needed
26b30508 509endif
cbdb12de
UD
510gnulib := -lgcc $(libgcc_eh)
511static-gnulib := -lgcc -lgcc_eh $(libunwind)
512libc.so-gnulib := -lgcc
28f540f4 513endif
96f873b9 514ifeq ($(elf),yes)
e75154a6
RM
515+preinit = $(addprefix $(csu-objpfx),crti.o)
516+postinit = $(addprefix $(csu-objpfx),crtn.o)
5ae9d168
UD
517+prector = `$(CC) --print-file-name=crtbegin.o`
518+postctor = `$(CC) --print-file-name=crtend.o`
66715f83 519+interp = $(addprefix $(elf-objpfx),interp.os)
96f873b9 520endif
6e953631
UD
521csu-objpfx = $(common-objpfx)csu/
522elf-objpfx = $(common-objpfx)elf/
28f540f4 523
03a75825
RM
524# How to run a program we just linked with our library.
525# The program binary is assumed to be $(word 2,$^).
526built-program-file = $(dir $(word 2,$^))$(notdir $(word 2,$^))
ad10cac8 527ifeq (yesyes,$(build-shared)$(elf))
196980f5 528comma = ,
11336c16
UD
529sysdep-library-path = \
530$(subst $(empty) ,:,$(strip $(patsubst -Wl$(comma)-rpath-link=%, %,\
531 $(filter -Wl$(comma)-rpath-link=%,\
532 $(sysdep-LDFLAGS)))))
27abf7a3 533run-program-prefix = $(if $(filter $(notdir $(built-program-file)),\
ccd8de9a 534 $(tests-static) $(xtests-static)),, \
85857f93
UD
535 $(elf-objpfx)$(rtld-installed-name) \
536 --library-path $(rpath-link)$(patsubst %,:%,$(sysdep-library-path)))
8658ceda
UD
537else
538run-program-prefix =
539endif
ac556388
GM
540# Never use $(run-program-prefix) for the statically-linked %-bp test programs
541built-program-cmd = $(patsubst %,$(run-program-prefix),\
542 $(filter-out %-bp,$(built-program-file))) \
543 $(built-program-file)
03a75825 544
28f540f4
RM
545ifndef LD
546LD := ld -X
547endif
548
549ifndef RANLIB
550RANLIB = ranlib
551endif
552
553# Extra flags to pass to GCC.
6cc7d725 554ifeq ($(all-warnings),yes)
a334319f 555+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
6cc7d725 556else
a334319f 557+gccwarn := -Wall -Wwrite-strings -Winline -Wstrict-prototypes
6cc7d725 558endif
28f540f4 559
dec36b4f
UD
560# We do not depend on the address of constants in different files to be
561# actually different, so allow the compiler to merge them all.
562+merge-constants = -fmerge-all-constants
563
30077d51
RM
564# This is the program that generates makefile dependencies from C source files.
565# The -MP flag tells GCC >= 3.2 (which we now require) to produce dummy
566# targets for headers so that removed headers don't break the build.
28f540f4 567ifndef +mkdep
30077d51 568+mkdep = $(CC) -M -MP
28f540f4
RM
569endif
570
571# The program that makes Emacs-style TAGS files.
78759725 572ETAGS := etags
28f540f4
RM
573
574# The `m4' macro processor; this is used by sysdeps/sparc/Makefile (and
575# perhaps others) to preprocess assembly code in some cases.
576M4 = m4
577
73237de3
UD
578# To force installation of files even if they are older than the
579# installed files. This variable is included in the dependency list
580# of all installation targets.
581ifeq ($(force-install),yes)
582+force = force-install
583else
584+force =
585endif
586
28f540f4
RM
587####
588#### End of configuration variables.
589####
590\f
591# This tells some versions of GNU make before 3.63 not to export all variables.
592.NOEXPORT:
593
594# We want to echo the commands we're running without
6d52618b 595# umpteen zillion filenames along with it (we use `...' instead)
28f540f4
RM
596# but we don't want this echoing done when the user has said
597# he doesn't want to see commands echoed by using -s.
598ifneq "$(findstring s,$(MAKEFLAGS))" "" # if -s
599+cmdecho := echo >/dev/null
600else # not -s
601+cmdecho := echo
602endif # -s
603
604# These are the flags given to the compiler to tell
605# it what sort of optimization and/or debugging output to do.
606ifndef +cflags
607# If `CFLAGS' was defined, use that.
608ifdef CFLAGS
609+cflags := $(filter-out -I%,$(CFLAGS))
610endif # CFLAGS
611endif # +cflags
612
fd26970f 613# If none of the above worked, default to "-g -O".
28f540f4
RM
614ifeq "$(strip $(+cflags))" ""
615+cflags := $(default_cflags)
616endif # $(+cflags) == ""
617
dec36b4f 618+cflags += $(addprefix -mcpu=,$(with-cpu)) $(+gccwarn) $(+merge-constants)
28f540f4 619+gcc-nowarn := -w
28f540f4
RM
620
621# Don't duplicate options if we inherited variables from the parent.
622+cflags := $(sort $(+cflags))
623
624
a334319f
UD
625# These are flags given to the C compiler to tell it to look for include
626# files (including ones given in angle brackets) in the current directory,
627# in the parent library source directory and in the include directory.
628# `+sysdep-includes' will be defined by Makerules.
629+includes = -I$(..)include -I. \
630 $(patsubst %/,-I%,$(objpfx)) $(patsubst %/,-I%,$(..)) \
631 $(libio-include) $(includes) \
632 $(+sysdep-includes) $(sysincludes)
28f540f4 633
96aa2d94 634# Since libio has several internal header files, we use a -I instead
762a2918 635# of many little headers in the include directory.
96aa2d94 636libio-include = -I$(..)libio
28f540f4
RM
637
638# These are the variables that the implicit compilation rules use.
ce460d04
RM
639# Note that we can't use -std=* in CPPFLAGS, because it overrides
640# the implicit -lang-asm and breaks cpp behavior for .S files--notably
641# it causes cpp to stop predefining __ASSEMBLER__.
3387a425 642CPPFLAGS = $($(subdir)-CPPFLAGS) $(+includes) $(defines) \
ae8b36f7 643 -include $(..)include/libc-symbols.h $(sysdep-CPPFLAGS) \
0a951d0e 644 $(CPPFLAGS-$(suffix $@)) \
d29724f8
RM
645 $(foreach lib,$(libof-$(basename $(@F))) \
646 $(libof-$(<F)) $(libof-$(@F)),$(CPPFLAGS-$(lib))) \
0a951d0e 647 $(CPPFLAGS-$(<F)) $(CPPFLAGS-$(@F)) $(CPPFLAGS-$(basename $(@F)))
ce460d04 648override CFLAGS = -std=gnu99 \
a334319f
UD
649 $(filter-out %frame-pointer,$(+cflags)) $(sysdep-CFLAGS) \
650 $(CFLAGS-$(suffix $@)) $(CFLAGS-$(<F)) $(CFLAGS-$(@F))
28f540f4 651
cc3fa755
UD
652# If everything is compiled with -fPIC (implicitly) we must tell this by
653# defining the PIC symbol.
654ifeq (yes,$(build-pic-default))
655pic-default = -DPIC
656endif
657
f0bf9cb9
RM
658# Enable object files for different versions of the library.
659# Various things use $(object-suffixes) to know what all to make.
660# The compilation rules use $(CPPFLAGS-${SUFFIX}) and $(CFLAGS-${SUFFIX})
661# to pass different flags for each flavor.
91641c65 662libtypes = $(foreach o,$(object-suffixes-for-libc),$(libtype$o))
a35cb74d 663all-object-suffixes := .o .os .op .og .ob .oS
650425ce 664object-suffixes :=
cc3fa755 665CPPFLAGS-.o = $(pic-default)
14e9dd67 666CFLAGS-.o = $(filter %frame-pointer,$(+cflags))
66000494 667ifeq (yes,$(build-static))
f0bf9cb9 668libtype.o := lib%.a
650425ce
UD
669object-suffixes += .o
670endif
f0bf9cb9
RM
671ifeq (yes,$(build-shared))
672# Under --enable-shared, we will build a shared library of PIC objects.
40a55d20
UD
673# The PIC object files are named foo.os.
674object-suffixes += .os
b5567b2a 675CPPFLAGS-.os = -DPIC -DSHARED
14e9dd67 676CFLAGS-.os = $(filter %frame-pointer,$(+cflags)) $(pic-ccflag)
40a55d20 677libtype.os := lib%_pic.a
26b4d766
UD
678# This can be changed by a sysdep makefile
679pic-ccflag = -fPIC
231e88a4
UD
680# This one should always stay like this unless there is a very good reason.
681PIC-ccflag = -fPIC
f0bf9cb9
RM
682endif
683ifeq (yes,$(build-profile))
684# Under --enable-profile, we will build a static library of profiled objects.
40a55d20
UD
685# The profiled object files are named foo.op.
686object-suffixes += .op
cc3fa755 687CPPFLAGS-.op = -DPROF $(pic-default)
40a55d20
UD
688CFLAGS-.op = -pg
689libtype.op = lib%_p.a
f0bf9cb9
RM
690endif
691ifeq (yes,$(build-omitfp))
ab95290c 692# Under --enable-omitfp, we build the library optimized without
f0bf9cb9 693# debugging information using -fomit-frame-pointer, and build an extra
40a55d20
UD
694# library with debugging information. The debuggable objects are named foo.og.
695object-suffixes += .og
cc3fa755 696CPPFLAGS-.og = $(pic-default)
40a55d20 697CFLAGS-.og = -g
14e9dd67
UD
698CFLAGS-.o = $(filter %frame-pointer,$(+cflags)) -g0 -O99 -fomit-frame-pointer -D__USE_STRING_INLINES
699CFLAGS-.os += -g0 -O99 -fomit-frame-pointer -D__USE_STRING_INLINES
40a55d20 700libtype.og = lib%_g.a
f0bf9cb9 701endif
ab95290c
UD
702
703bppfx = BP-
5a97622d
UD
704ifeq (yes,$(build-bounded))
705# Under --enable-bounded, we build the library with `-fbounded-pointers -g'
40a55d20 706# to runtime bounds checking. The bounded-pointer objects are named foo.ob.
58ff985d
GM
707# We disable sibling-call optimizations so that stack traces will be complete
708# and thus aid debugging, since after all, BPs are a debugging tool.
40a55d20 709object-suffixes += .ob
ab95290c 710CPPFLAGS-.ob = -fbounded-pointers $(pic-default)
e64911d1 711CFLAGS-.ob = -g -O2 -fno-optimize-sibling-calls -fno-strict-aliasing
40a55d20 712libtype.ob = lib%_b.a
5a97622d 713endif
f0bf9cb9 714
9afc8a59
UD
715object-suffixes-for-libc := $(object-suffixes)
716
717ifeq (yes,$(build-shared))
718# Build special library that contains the static-only routines for libc.
719object-suffixes-for-libc += .oS
720
721# Must build the routines as PIC, though, because they can end up in (users')
722# shared objects. We don't want to use CFLAGS-os because users may, for
723# example, make that processor-specific.
231e88a4 724CFLAGS-.oS = $(CFLAGS-.o) $(PIC-ccflag)
06b31ad3 725CPPFLAGS-.oS = $(CPPFLAGS-.o) -DPIC -DLIBC_NONSHARED=1
9afc8a59
UD
726libtype.oS = lib%_nonshared.a
727endif
728
073e82bf
RM
729# The assembler can generate debug information too.
730ifndef ASFLAGS
731ifeq ($(have-cpp-asm-debuginfo),yes)
732ASFLAGS := $(filter -g%,$(CFLAGS))
35915ec8
UD
733else
734ASFLAGS :=
073e82bf
RM
735endif
736endif
35915ec8 737ASFLAGS += $(ASFLAGS-config)
9afc8a59 738
a334319f
UD
739+gnu-stabs = $(shell echo>&2 '*** BARF ON ME')
740
96bda0ea
RM
741ifndef BUILD_CC
742BUILD_CC = $(CC)
743endif
e72bfd87
UD
744
745move-if-change = $(SHELL) $(..)scripts/move-if-change
a641835a 746\f
a334319f
UD
747-include $(common-objpfx)sysd-dirs
748
749ifeq ($(sysd-dirs-done),t)
281e6031
UD
750-include $(common-objpfx)sysd-sorted
751subdirs = $(sorted-subdirs)
a334319f 752endif
9a0a462c 753
4de1d597
RM
754ifeq (yes, $(build-shared))
755
f3787738
RM
756# This is a pair of implicit rules to preprocess a file with # comments,
757# %ifdef et al, based on config.h settings or other %include'd files.
758# We use chained rules instead of a pipeline here so that we can properly
759# check the exit status of cpp rather than using its bad output when there
760# is a preprocessing error. Another rule should depend on the output file
761# `FOO.v', and along with that `FOO.v.i' should be given dependencies
762# listing both its input files, and any header files that it may reference
763# (but no commands).
764%.v.i: $(common-objpfx)config.h
765 sed '/^[ ]*#/d;s/^[ ]*%/#/' $(filter-out FORCE %.h,$^) \
a334319f
UD
766 | $(CC) -E -undef $(CPPFLAGS) \
767 -DASSEMBLER -x assembler-with-cpp - \
f3787738
RM
768 > $@T
769 mv -f $@T $@
770%.v: %.v.i
771 sed '/^[ ]*#/d;/^[ ]*$$/d' $< > $@T
772 mv -f $@T $@
480d827b 773
4de1d597
RM
774# Process the shlib-versions file, which tells us what shared library
775# version numbers to use when we install shared objects on this system.
281e6031
UD
776# We need to wait until $(subdirs) is complete.
777ifeq ($(sysd-sorted-done),t)
4de1d597 778-include $(common-objpfx)soversions.mk
eca3eb3b 779ifndef avoid-generated
9632aaee
RM
780# This lets add-ons give more-specific matches that override defaults
781# in the top-level file.
f3787738 782$(common-objpfx)shlib-versions.v.i: \
a334319f
UD
783 $(wildcard $(patsubst %, $(..)%/shlib-versions,$(add-ons) \
784 $(config-sysdirs) \
785 $(subdirs))) \
9632aaee 786 $(..)shlib-versions
6d864d15
RM
787
788soversions-default-setname = $(patsubst %, %,\
789 $(filter-out %_default,\
790 $(oldest-abi:%=GLIBC_%)))
791$(common-objpfx)soversions.i: $(..)scripts/soversions.awk \
792 $(common-objpfx)shlib-versions.v
793 $(AWK) -v default_setname='$(soversions-default-setname)' \
91adb529
RM
794 -v cpu='$(config-machine)' \
795 -v vendor='$(config-vendor)' \
796 -v os='$(config-os)' \
6d864d15 797 -f $^ > $@T
ba7e89ec 798 mv -f $@T $@
3e1e123d
RM
799$(common-objpfx)soversions.mk: $(common-objpfx)soversions.i $(..)Makeconfig
800 (seen_DEFAULT=0; seen_WORDSIZE32=0; seen_WORDSIZE64=0; \
801 while read which lib number setname; do \
802 eval seen_$$which=1; \
91adb529 803 test x"$$which" = xDEFAULT || continue; \
1bc777b8
UD
804 case $$number in \
805 [0-9]*) echo "$$lib.so-version=.$$number"; \
806 echo "all-sonames+=$$lib=$$lib.so\$$($$lib.so-version)";;\
807 *) echo "$$lib.so-version=$$number"; \
808 echo "all-sonames+=$$lib=\$$($$lib.so-version)";;\
809 esac; \
810 done; \
3e1e123d
RM
811 case "$$seen_DEFAULT$$seen_WORDSIZE32$$seen_WORDSIZE64" in \
812 100) echo biarch = no;; \
813 101) echo biarch = 32;; \
814 ?1?) echo biarch = 64;; \
815 *) echo >&2 BUG; exit 2;; \
816 esac; \
1bc777b8 817 echo soversions.mk-done = t;) < $< > $@T; exit 0
4de1d597 818 mv -f $@T $@
eca3eb3b 819endif
281e6031 820endif
eca3eb3b 821
f3787738
RM
822postclean-generated += soversions.mk soversions.i \
823 shlib-versions.v shlib-versions.v.i
4de1d597 824
c0e45674 825# Generate the header containing the names of all shared libraries.
5613ea18 826# We use a stamp file to avoid unnecessary recompilations.
c0e45674 827before-compile += $(common-objpfx)gnu/lib-names.h
1bc777b8 828ifeq ($(soversions.mk-done),t)
60c34a30 829$(common-objpfx)gnu/lib-names.h: $(common-objpfx)gnu/lib-names.stmp; @:
91adb529
RM
830$(common-objpfx)gnu/lib-names.stmp: $(..)scripts/lib-names.awk \
831 $(common-objpfx)soversions.i
c0e45674
UD
832 $(make-target-directory)
833 @rm -f ${@:stmp=T} $@
91adb529 834 $(AWK) -f $^ > ${@:stmp=T}
7e7a548e 835 $(move-if-change) ${@:stmp=T} ${@:stmp=h}
c0e45674 836 touch $@
1bc777b8 837endif
c0e45674
UD
838
839common-generated += gnu/lib-names.h gnu/lib-names.stmp
d41c6f61
UD
840
841# The name under which the run-time dynamic linker is installed.
842# We are currently going for the convention that `/lib/ld.so.1'
843# names the SVR4/ELF ABI-compliant dynamic linker.
844ifndef rtld-installed-name
845ifdef ld.so-version
846rtld-installed-name = $(ld.so-version)
847else
848rtld-installed-name = ld.so.1
849endif
850endif
851
1ef32c3d
UD
852ifndef rtld-version-installed-name
853rtld-version-installed-name = ld-$(version).so
854endif
855
f649c201
UD
856endif # build-shared
857
cbdee279 858
94e365c6
UD
859ifeq ($(elf),yes)
860dlfcn = dlfcn
861ifeq ($(build-shared),yes)
862libdl = $(common-objpfx)dlfcn/libdl.so$(libdl.so-version)
863else
864libdl = $(common-objpfx)dlfcn/libdl.a
865endif
866else
ad10cac8
UD
867ifneq (,$(findstring aix,$(config-os)))
868ifeq ($(build-shared),yes)
869dlfcn = dlfcn
870libdl = $(common-objpfx)dlfcn/libdl.so$(libdl.so-version)
871else
872# No libdl without shared libs on AIX
873dlfcn =
874libdl =
875endif
876else
877# No ELF, no AIX - no libdl, at least for now.
94e365c6
UD
878dlfcn =
879libdl =
880endif
ad10cac8 881endif
94e365c6 882
bb41a976
UD
883# These are the subdirectories containing the library source. The order
884# is more or less arbitrary. The sorting step will take care of the
a334319f
UD
885# dependencies. Only the $(binfmt-subdir) should always be kept at the
886# end of the list.
8d6f1731 887all-subdirs = csu assert ctype locale intl catgets math setjmp signal \
a334319f 888 stdlib stdio-common libio malloc string wcsmbs time dirent \
b0b67c47 889 grp pwd posix io termios resource misc socket sysvipc gmon \
b11f5954 890 gnulib iconv iconvdata wctype manual shadow po argp \
a334319f
UD
891 crypt $(add-ons) nss localedata timezone rt conform debug \
892 $(sysdep-subdirs) $(dlfcn) $(binfmt-subdir)
893all-subdirs := $(filter-out $(sysdep-inhibit-subdirs),$(all-subdirs))
894
895# The mach and hurd subdirectories have many generated header files which
896# much of the rest of the library depends on, so it is best to build them
897# first (and mach before hurd, at that). The before-compile additions in
898# sysdeps/{mach,hurd}/Makefile should make it reliably work for these files
899# not to exist when making in other directories, but it will be slower that
900# way with more somewhat expensive `make' invocations.
901subdirs := $(filter mach,$(subdirs)) $(filter hurd,$(subdirs)) \
902 $(filter-out mach hurd,$(subdirs))
b22fc5f5 903
b7e2d9a5 904ifndef avoid-generated
a334319f
UD
905all-Subdirs-files = $(wildcard $(config-sysdirs:%=$(..)%/Subdirs))
906$(common-objpfx)sysd-dirs: $(common-objpfx)config.make $(all-Subdirs-files)
907 $(AWK) 'BEGIN { subdirs = ""; inhibit = "" }; \
908 /^#/ { next }; \
909 /^[^-]/ { subdirs = subdirs " " $$0 }; \
910 /^-/ { inhibit = inhibit " " substr($$0, 2) }; \
911 END { printf "sysdep-subdirs =%s\n", subdirs; \
912 printf "sysdep-inhibit-subdirs =%s\n", inhibit; \
913 print "sysd-dirs-done = t" }' \
914 $(patsubst $<,/dev/null,$^) > $@-tmp
915 mv -f $@-tmp $@
916
917all-Depend-files = $(wildcard $(..)*/Depend)
918$(common-objpfx)sysd-sorted: $(..)scripts/gen-sorted.awk $(all-Depend-files) \
919 $(common-objpfx)sysd-dirs $(..)Makeconfig
920 { { dirs='$(patsubst $(..)%/Depend,%,$(filter %/Depend,$^))'; \
921 for d in $$dirs; do \
922 while read on; do \
923 echo "depend $$d $$on"; \
924 done < $(..)$$d/Depend; \
925 done; \
926 for f in $(all-subdirs); do \
927 echo $$f; \
928 done; \
929 } | $(AWK) -f $< && \
930 echo sysd-sorted-done = t; \
931 } > $@-tmp
bb41a976 932 mv -f $@-tmp $@
b7e2d9a5 933endif
bb41a976 934
083973f3 935# Let sysdeps/ subdirs contain a Makeconfig fragment for us to include here.
a334319f
UD
936sysdep-makeconfigs := $(wildcard $(patsubst %,$(..)%/Makeconfig,\
937 $(config-sysdirs) $(add-ons)))
938
083973f3 939ifneq (,$(sysdep-makeconfigs))
a334319f
UD
940Makeconfig-doing-sysdep := $(sysdep-makeconfigs)
941# Before each one, include ourselves again to do the bit below that
942# will set `Makeconfig-add-on' in an add-on's Makeconfig fragment.
943include $(foreach M,$(sysdep-makeconfigs),$(..)Makeconfig $M)
083973f3
RM
944endif
945
946
28f540f4 947endif # Makeconfig not yet included
c238ecf7 948
a334319f
UD
949# The whole body above didn't run when we are included as a subroutine
950# of ourselves in the sysdep-makeconfigs include line. This bit runs.
951ifneq (,$(Makeconfig-doing-sysdep))
952sysdep-Makeconfig := $(firstword $(Makeconfig-doing-sysdep))
953Makeconfig-doing-sysdep := $(filter-out $(sysdep-Makeconfig),\
954 $(Makeconfig-doing-sysdep))
955Makeconfig-add-on := $(filter $(add-ons),$(patsubst $(..)%/Makeconfig,%,\
956 $(sysdep-Makeconfig)))
957endif
958
c238ecf7
UD
959# Local Variables:
960# mode: makefile
961# End: