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