Check supported DF_1_XXX bits
[glibc.git] / Makeconfig
blob70a3d9dba58d4a084240069c95e3909f0cdae362
1 # Copyright (C) 1991-2003,2004,2005,2006,2007,2008,2009,2010,2011,2012
2 #       Free Software Foundation, Inc.
3 # This file is part of the GNU C Library.
5 # The GNU C Library is free software; you can redistribute it and/or
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.
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
13 # Lesser General Public License for more details.
15 # You should have received a copy of the GNU Lesser General Public
16 # License along with the GNU C Library; if not, see
17 # <http://www.gnu.org/licenses/>.
20 #       Makefile configuration options for the GNU C library.
22 ifneq (,)
23 This makefile requires GNU Make.
24 endif
26 all: # Make this the default goal
28 ifneq "$(origin +included-Makeconfig)" "file"
30 +included-Makeconfig := yes
32 ifdef subdir
33 .. := ../
34 endif
36 # $(common-objdir) is the place to put objects and
37 # such that are not specific to a single subdir.
38 ifdef objdir
39 objpfx := $(patsubst %//,%/,$(objdir)/$(subdir)/)
40 common-objpfx = $(objdir)/
41 common-objdir = $(objdir)
42 else
43 objdir must be defined by the build-directory Makefile.
44 endif
46 # Root of the sysdeps tree.
47 sysdep_dir := $(..)sysdeps
48 export sysdep_dir := $(sysdep_dir)
50 # Get the values defined by options to `configure'.
51 include $(common-objpfx)config.make
53 # What flags to give to sources which call user provided callbacks
54 uses-callbacks = $(exceptions)
56 # What flags to give to tests which test stack alignment
57 stack-align-test-flags =
59 # Complete path to sysdep dirs.
60 # `configure' writes a definition of `config-sysdirs' in `config.make'.
61 sysdirs := $(foreach D,$(config-sysdirs),$(firstword $(filter /%,$D) $(..)$D))
63 # Add-ons that contribute sysdeps trees get added to the include list
64 # after sysdeps/generic.  This makes #include <sysdeps/...> work right
65 # to find specific add-on files without assuming the add-on directory name.
66 # It also means that headers can go into an add-on's base directory
67 # instead of the add-on needing a sysdeps/generic of its own.
68 sysdeps-srcdirs := $(foreach add-on,$(sysdeps-add-ons),\
69                              $(firstword $(filter /%,$(add-on)) \
70                                          $(..)$(add-on)))
71 +sysdep_dirs = $(sysdirs) $(sysdeps-srcdirs)
72 ifdef objdir
73 +sysdep_dirs := $(objdir) $(+sysdep_dirs)
74 endif
76 # Run config.status to update config.make and config.h.  We don't show the
77 # dependence of config.h to Make, because it is only touched when it
78 # changes and so config.status would be run every time; the dependence of
79 # config.make should suffice to force regeneration and re-exec, and the new
80 # image will notice if config.h changed.
81 $(common-objpfx)config.make: $(common-objpfx)config.status \
82                              $(..)config.make.in $(..)config.h.in
83         cd $(<D); $(SHELL) $(<F)
85 # Find all the add-on and sysdeps configure fragments, to make sure we
86 # re-run configure when any of them changes.
87 $(common-objpfx)config.status: $(..)version.h $(..)configure \
88                                $(foreach dir,$(sysdirs),\
89                                          $(wildcard $(dir)/Implies) \
90                                          $(patsubst %.in,%,\
91                                                     $(firstword $(wildcard \
92  $(addprefix $(dir)/,configure configure.in))))) \
93                                $(patsubst %.in,%,\
94                                           $(foreach add-on,$(add-ons),\
95                                                     $(firstword $(wildcard \
96  $(addprefix $(firstword $(filter /%,$(add-on)) $(..)$(add-on))/,\
97              configure configure.in)))))
98         @cd $(@D); if test -f $(@F); then exec $(SHELL) $(@F) --recheck; else \
99          echo The GNU C library has not been configured. >&2; \
100          echo Run \`configure\' to configure it before building. >&2; \
101          echo Try \`configure --help\' for more details. >&2; \
102          exit 1; fi
104 # We don't want CPPFLAGS to be exported to the command running configure.
105 unexport CPPFLAGS
107 # Get the user's configuration parameters.
108 ifneq ($(wildcard $(..)configparms),)
109 include $(..)configparms
110 endif
111 ifneq ($(objpfx),)
112 ifneq ($(wildcard $(common-objpfx)configparms),)
113 include $(common-objpfx)configparms
114 endif
115 endif
117 ####
118 ####    These are the configuration variables.  You can define values for
119 ####    the variables below in the file `configparms'.
120 ####    Do NOT edit this file.
121 ####
124 # Common prefix for machine-independent installation directories.
125 ifeq ($(origin prefix),undefined) # ifndef would override explicit empty value.
126 prefix = /usr/local
127 endif
129 # Decide whether we shall build the programs or not.  We always do this
130 # unless the user tells us (in configparms) or we are building for a
131 # standalone target.
132 ifndef build-programs
133 ifneq ($(config-os),none)
134 build-programs=yes
135 else
136 build-programs=no
137 endif
138 endif
140 # Common prefix for machine-dependent installation directories.
141 ifeq ($(origin exec_prefix),undefined)
142 exec_prefix = $(prefix)
143 endif
145 # Where to install the library and object files.
146 ifndef libdir
147 libdir = $(exec_prefix)/lib
148 endif
149 inst_libdir = $(install_root)$(libdir)
151 # Where to install the shared library and dynamic linker.
152 ifndef slibdir
153 slibdir = $(exec_prefix)/lib
154 endif
155 inst_slibdir = $(install_root)$(slibdir)
157 # Prefix to put on files installed in $(libdir).  For libraries `libNAME.a',
158 # the prefix is spliced between `lib' and the name, so the linker switch
159 # `-l$(libprefix)NAME' finds the library; for other files the prefix is
160 # just prepended to the whole file name.
161 ifeq ($(origin libprefix),undefined)
162 libprefix =
163 endif
165 # Where to install the header files.
166 ifndef includedir
167 includedir = $(prefix)/include
168 endif
169 inst_includedir = $(install_root)$(includedir)
171 # Where to install machine-independent data files.
172 # These are the timezone database, and the locale database.
173 ifndef datadir
174 datadir = $(prefix)/share
175 endif
176 inst_datadir = $(install_root)$(datadir)
178 # Where to install the timezone data files (which are machine-independent).
179 ifndef zonedir
180 zonedir = $(datadir)/zoneinfo
181 endif
182 inst_zonedir = $(install_root)$(zonedir)
184 # Where to install the locale files.
185 ifndef localedir
186 localedir = $(libdir)/locale
187 endif
188 inst_localedir = $(install_root)$(localedir)
190 # Where to install the message catalog data files (which are
191 # machine-independent).
192 ifndef msgcatdir
193 msgcatdir = $(datadir)/locale
194 endif
195 inst_msgcatdir = $(install_root)$(msgcatdir)
197 # Where to install the locale charmap source files.
198 ifndef i18ndir
199 i18ndir = $(datadir)/i18n
200 endif
201 inst_i18ndir = $(install_root)$(i18ndir)
203 # Where to install the shared object for charset transformation.
204 ifndef gconvdir
205 gconvdir = $(libdir)/gconv
206 endif
207 inst_gconvdir = $(install_root)$(gconvdir)
209 # Where to install programs.
210 ifndef bindir
211 bindir = $(exec_prefix)/bin
212 endif
213 inst_bindir = $(install_root)$(bindir)
215 # Where to install internal programs.
216 ifndef libexecdir
217 libexecdir = $(exec_prefix)/libexec
218 endif
219 inst_libexecdir = $(install_root)$(libexecdir)
221 # Where to install administrative programs.
222 ifndef rootsbindir
223 rootsbindir = $(exec_prefix)/sbin
224 endif
225 inst_rootsbindir = $(install_root)$(rootsbindir)
227 ifndef sbindir
228 sbindir = $(exec_prefix)/sbin
229 endif
230 inst_sbindir = $(install_root)$(sbindir)
232 # Where to install the Info files.
233 ifndef infodir
234 infodir = $(prefix)/info
235 endif
236 inst_infodir = $(install_root)$(infodir)
238 # Where to install audit libraries.
239 ifndef auditdir
240 auditdir = $(libdir)/audit
241 endif
242 inst_auditdir = $(install_root)$(auditdir)
244 # Where to install default configuration files.  These include the local
245 # timezone specification and network data base files.
246 ifndef sysconfdir
247 sysconfdir = $(prefix)/etc
248 endif
249 inst_sysconfdir = $(install_root)$(sysconfdir)
251 # Directory for the database files and Makefile for nss_db.
252 ifndef vardbdir
253 vardbdir = $(localstatedir)/db
254 endif
255 inst_vardbdir = $(install_root)$(vardbdir)
257 # Where to install the "localtime" timezone file; this is the file whose
258 # contents $(localtime) specifies.  If this is a relative pathname, it is
259 # relative to $(zonedir).  It is a good idea to put this somewhere
260 # other than there, so the zoneinfo directory contains only universal data,
261 # localizing the configuration data elsewhere.
262 ifndef localtime-file
263 localtime-file = $(sysconfdir)/localtime
264 endif
266 # What to use for leap second specifications in compiling the default
267 # timezone files.  Set this to `/dev/null' for no leap second handling as
268 # 1003.1 requires, or to `leapseconds' for proper leap second handling.
269 # Both zone flavors are always available as `posix/ZONE' and `right/ZONE'.
270 # This variable determines the default: if it's `/dev/null',
271 # ZONE==posix/ZONE; if it's `leapseconds', ZONE==right/ZONE.
272 ifndef leapseconds
273 leapseconds = /dev/null
274 endif
276 # What timezone's DST rules should be used when a POSIX-style TZ
277 # environment variable doesn't specify any rules.  For 1003.1 compliance
278 # this timezone must use rules that are as U.S. federal law defines DST.
279 # Run `make -C time echo-zonenames' to see a list of available zone names.
280 # This setting can be changed with `zic -p TIMEZONE' at any time.
281 # If you want POSIX.1 compatibility, use `America/New_York'.
282 ifndef posixrules
283 posixrules = America/New_York
284 endif
286 # Where to install the "posixrules" timezone file; this is file
287 # whose contents $(posixrules) specifies.  If this is a relative
288 # pathname, it is relative to $(zonedir).
289 ifndef posixrules-file
290 posixrules-file = posixrules
291 endif
294 # Directory where your system's native header files live.
295 # This is used on Unix systems to generate some GNU libc header files.
296 ifndef sysincludedir
297 sysincludedir = /usr/include
298 endif
301 # Commands to install files.
302 ifndef INSTALL_DATA
303 INSTALL_DATA = $(INSTALL) -m 644
304 endif
305 ifndef INSTALL_SCRIPT
306 INSTALL_SCRIPT = $(INSTALL)
307 endif
308 ifndef INSTALL_PROGRAM
309 INSTALL_PROGRAM = $(INSTALL)
310 endif
311 ifndef INSTALL
312 INSTALL = install
313 endif
316 # The name of the C compiler.
317 # If you've got GCC, and it works, use it.
318 ifeq ($(origin CC),default)
319 CC := gcc
320 endif
322 # The name of the C compiler to use for compilations of programs to run on
323 # the host that is building the library.  If you set CC to a
324 # cross-compiler, you must set this to the normal compiler.
325 ifndef BUILD_CC
326 BUILD_CC = $(CC)
327 endif
329 # Default flags to pass the C compiler.
330 ifndef default_cflags
331 ifeq ($(release),stable)
332 default_cflags := -g -O2
333 else
334 default_cflags := -g -O
335 endif
336 endif
338 # Flags to pass the C compiler when assembling preprocessed assembly code
339 # (`.S' files).  On some systems the assembler doesn't understand the `#' line
340 # directives the preprocessor produces.  If you have troubling compiling
341 # assembly code, try using -P here to suppress these directives.
342 ifndef asm-CPPFLAGS
343 asm-CPPFLAGS =
344 endif
346 as-needed := -Wl,--as-needed
347 no-as-needed := -Wl,--no-as-needed
349 # Must be supported by the linker.
350 no-whole-archive = -Wl,--no-whole-archive
351 whole-archive = -Wl,--whole-archive
353 # Installed name of the startup code.
354 # The ELF convention is that the startfile is called crt1.o
355 start-installed-name = crt1.o
356 # On systems that do not need a special startfile for statically linked
357 # binaries, simply set it to the normal name.
358 ifndef static-start-installed-name
359 static-start-installed-name = $(start-installed-name)
360 endif
362 ifeq (yesyes,$(build-shared)$(have-z-combreloc))
363 combreloc-LDFLAGS = -Wl,-z,combreloc
364 LDFLAGS.so += $(combreloc-LDFLAGS)
365 LDFLAGS-rtld += $(combreloc-LDFLAGS)
366 endif
368 relro-LDFLAGS = -Wl,-z,relro
369 LDFLAGS.so += $(relro-LDFLAGS)
370 LDFLAGS-rtld += $(relro-LDFLAGS)
372 ifeq (yes,$(have-hash-style))
373 # For the time being we unconditionally use 'both'.  At some time we
374 # should declare statically linked code as 'out of luck' and compile
375 # with --hash-style=gnu only.
376 hashstyle-LDFLAGS = -Wl,--hash-style=both
377 LDFLAGS.so += $(hashstyle-LDFLAGS)
378 LDFLAGS-rtld += $(hashstyle-LDFLAGS)
379 endif
381 # Command for linking PIE programs with the C library.
382 ifndef +link-pie
383 +link-pie = $(CC) -pie -Wl,-O1 -nostdlib -nostartfiles -o $@ \
384              $(sysdep-LDFLAGS) $(config-LDFLAGS) $(LDFLAGS) $(LDFLAGS-$(@F)) \
385              $(combreloc-LDFLAGS) $(relro-LDFLAGS) $(hashstyle-LDFLAGS) \
386              $(addprefix $(csu-objpfx),S$(start-installed-name)) \
387              $(+preinit) $(+prectorS) \
388              $(filter-out $(addprefix $(csu-objpfx),start.o \
389                                                     S$(start-installed-name))\
390                           $(+preinit) $(link-extra-libs) \
391                           $(common-objpfx)libc% $(+postinit),$^) \
392              $(link-extra-libs) $(link-libc) $(+postctorS) $(+postinit)
393 endif
394 # Command for statically linking programs with the C library.
395 ifndef +link-static
396 +link-static-before-libc = $(CC) -nostdlib -nostartfiles -static -o $@ \
397               $(sysdep-LDFLAGS) $(LDFLAGS) $(LDFLAGS-$(@F))  \
398               $(addprefix $(csu-objpfx),$(static-start-installed-name)) \
399               $(+preinit) $(+prectorT) \
400               $(filter-out $(addprefix $(csu-objpfx),start.o \
401                                                      $(start-installed-name))\
402                            $(+preinit) $(link-extra-libs-static) \
403                            $(common-objpfx)libc% $(+postinit),$^) \
404               $(link-extra-libs-static)
405 +link-static-after-libc = $(+postctorT) $(+postinit)
406 +link-static = $(+link-static-before-libc) $(link-libc-static) \
407                $(+link-static-after-libc)
408 +link-static-tests = $(+link-static-before-libc) $(link-libc-static-tests) \
409                      $(+link-static-after-libc)
410 endif
411 # Commands for linking programs with the C library.
412 ifndef +link
413 ifeq (yes,$(build-shared))
414 +link-before-libc = $(CC) -nostdlib -nostartfiles -o $@ \
415               $(sysdep-LDFLAGS) $(config-LDFLAGS) $(LDFLAGS) $(LDFLAGS-$(@F)) \
416               $(combreloc-LDFLAGS) $(relro-LDFLAGS) $(hashstyle-LDFLAGS) \
417               $(addprefix $(csu-objpfx),$(start-installed-name)) \
418               $(+preinit) $(+prector) \
419               $(filter-out $(addprefix $(csu-objpfx),start.o \
420                                                      $(start-installed-name))\
421                            $(+preinit) $(link-extra-libs) \
422                            $(common-objpfx)libc% $(+postinit),$^) \
423               $(link-extra-libs)
424 +link-after-libc = $(+postctor) $(+postinit)
425 +link = $(+link-before-libc) $(link-libc) $(+link-after-libc)
426 +link-tests = $(+link-before-libc) $(link-libc-tests) $(+link-after-libc)
427 else
428 +link = $(+link-static)
429 +link-tests = $(+link-static-tests)
430 endif
431 endif
432 # Command for statically linking bounded-pointer programs with the C library.
433 ifndef +link-bounded
434 +link-bounded = $(CC) -nostdlib -nostartfiles -static -fbounded-pointers -o $@ \
435               $(sysdep-LDFLAGS) $(LDFLAGS)  \
436               $(addprefix $(csu-objpfx),b$(static-start-installed-name)) \
437               $(+preinit) $(+prectorT) \
438               $(filter-out $(addprefix $(csu-objpfx),start.ob \
439                                                      $(start-installed-name))\
440                            $(+preinit) $(link-extra-libs-bounded) \
441                            $(common-objpfx)libc% $(+postinit),$^) \
442               $(link-extra-libs-bounded) $(link-libc-bounded) $(+postctorT) $(+postinit)
443 endif
444 ifndef config-LDFLAGS
445 ifeq (yes,$(build-shared))
446 config-LDFLAGS = -Wl,-dynamic-linker=$(slibdir)/$(rtld-installed-name)
447 endif
448 endif
449 ifndef link-libc
450 ifeq (yes,$(build-shared))
451 # We need the versioned name of libc.so in the deps of $(others) et al
452 # so that the symlink to libc.so is created before anything tries to
453 # run the linked programs.
454 link-libc-before-gnulib = -Wl,-rpath-link=$(rpath-link) \
455             $(common-objpfx)libc.so$(libc.so-version) \
456             $(common-objpfx)$(patsubst %,$(libtype.oS),c) \
457             $(as-needed) $(common-objpfx)elf/ld.so $(no-as-needed)
458 link-libc = $(link-libc-before-gnulib) $(gnulib)
459 link-libc-tests = $(link-libc-before-gnulib) $(gnulib-tests)
460 # This is how to find at build-time things that will be installed there.
461 rpath-dirs = math elf dlfcn nss nis rt resolv crypt
462 rpath-link = \
463 $(common-objdir):$(subst $(empty) ,:,$(patsubst ../$(subdir),.,$(rpath-dirs:%=$(common-objpfx)%)))
464 else
465 link-libc = $(common-objpfx)libc.a $(otherlibs) $(gnulib) $(common-objpfx)libc.a $(gnulib)
466 link-libc-tests = $(common-objpfx)libc.a $(otherlibs) $(gnulib-tests) $(common-objpfx)libc.a $(gnulib-tests)
467 endif
468 endif
470 elfobjdir := $(patsubst ../$(subdir),.,$(common-objpfx)elf)
472 # Differences in the linkers on the various platforms.
473 LDFLAGS-rpath-ORIGIN = -Wl,-rpath,'$$ORIGIN'
474 LDFLAGS-soname-fname = -Wl,-soname,$(@F)
475 LDFLAGS-rdynamic = -rdynamic
476 LDFLAGS-Bsymbolic = -Bsymbolic
478 # Choose the default search path for the dynamic linker based on
479 # where we will install libraries.
480 ifneq ($(libdir),$(slibdir))
481 default-rpath = $(slibdir):$(libdir)
482 else
483 default-rpath = $(libdir)
484 endif
486 ifndef link-extra-libs
487 link-extra-libs = $(LDLIBS-$(@F))
488 link-extra-libs-static = $(link-extra-libs)
489 link-extra-libs-bounded = $(link-extra-libs)
490 endif
492 # The static libraries.
493 link-libc-static = -Wl,--start-group $(common-objpfx)libc.a $(static-gnulib) -Wl,--end-group
494 link-libc-static-tests = -Wl,--start-group $(common-objpfx)libc.a $(static-gnulib-tests) -Wl,--end-group
495 link-libc-bounded = $(common-objpfx)libc_b.a $(gnulib) $(common-objpfx)libc_b.a
497 # How to link against libgcc.  Some libgcc functions, such as those
498 # for "long long" arithmetic or software floating point, can always be
499 # built without use of C library headers and do not have any global
500 # state so can safely be linked statically into any executable or
501 # shared library requiring them; these functions are in libgcc.a.
502 # Other functions, relating to exception handling, may require C
503 # library headers to build and it may not be safe to have more than
504 # one copy of them in a process; these functions are only in
505 # libgcc_s.so and libgcc_eh.a.
507 # To avoid circular dependencies when bootstrapping, it is desirable
508 # to avoid use of libgcc_s and libgcc_eh in building glibc.  Where any
509 # glibc functionality (in particular, thread cancellation) requires
510 # exception handling, this is implemented through dlopen of libgcc_s
511 # to avoid unnecessary dependencies on libgcc_s by programs not using
512 # that functionality; executables built with glibc do not use
513 # exception handling other than through thread cancellation.
515 # Undefined references to functions from libgcc_eh or libgcc_s may
516 # arise for code built with -fexceptions.  In the case of statically
517 # linked programs installed by glibc, unwinding will never actually
518 # occur at runtime and the use of elf/static-stubs.c to resolve these
519 # references is safe.  In the case of statically linked test programs
520 # and test programs built with -fexceptions, unwinding may occur in
521 # some cases and it is preferable to link with libgcc_eh or libgcc_s
522 # so that the testing is as similar as possible to how programs will
523 # be built with the installed glibc.
525 # Some architectures have architecture-specific systems for exception
526 # handling that may involve undefined references to
527 # architecture-specific functions.  On those architectures,
528 # gnulib-arch and static-gnulib-arch may be defined in sysdeps
529 # makefiles to use additional libraries for linking executables and
530 # shared libraries built by glibc.
531 ifndef gnulib
532 ifneq ($(have-cc-with-libunwind),yes)
533   libunwind =
534 else
535   libunwind = -lunwind
536 endif
537 libgcc_eh := -Wl,--as-needed -lgcc_s $(libunwind) -Wl,--no-as-needed
538 gnulib-arch =
539 gnulib = -lgcc $(gnulib-arch)
540 gnulib-tests := -lgcc $(libgcc_eh)
541 static-gnulib-arch =
542 # By default, elf/static-stubs.o, instead of -lgcc_eh, is used to
543 # statically link programs.  When --disable-shared is used, we use
544 # -lgcc_eh since elf/static-stubs.o isn't sufficient.
545 ifeq (yes,$(build-shared))
546 static-gnulib = -lgcc $(static-gnulib-arch)
547 else
548 static-gnulib = -lgcc -lgcc_eh $(static-gnulib-arch)
549 endif
550 static-gnulib-tests := -lgcc -lgcc_eh $(libunwind)
551 libc.so-gnulib := -lgcc
552 endif
553 +preinit = $(addprefix $(csu-objpfx),crti.o)
554 +postinit = $(addprefix $(csu-objpfx),crtn.o)
555 +prector = `$(CC) $(sysdep-LDFLAGS) --print-file-name=crtbegin.o`
556 +postctor = `$(CC) $(sysdep-LDFLAGS) --print-file-name=crtend.o`
557 # Variants of the two previous definitions for linking PIE programs.
558 +prectorS = `$(CC) $(sysdep-LDFLAGS) --print-file-name=crtbeginS.o`
559 +postctorS = `$(CC) $(sysdep-LDFLAGS) --print-file-name=crtendS.o`
560 # Variants of the two previous definitions for statically linking programs.
561 +prectorT = `$(CC) $(sysdep-LDFLAGS) --print-file-name=crtbeginT.o`
562 +postctorT = `$(CC) $(sysdep-LDFLAGS) --print-file-name=crtend.o`
563 +interp = $(addprefix $(elf-objpfx),interp.os)
564 csu-objpfx = $(common-objpfx)csu/
565 elf-objpfx = $(common-objpfx)elf/
567 # A command that, prepended to the name and arguments of a program,
568 # and run on the build system, causes that program with those
569 # arguments to be run on the host for which the library is built.
570 ifndef test-wrapper
571 test-wrapper =
572 endif
573 # Likewise, but the name of the program is preceded by
574 # <variable>=<value> assignments for environment variables.
575 ifndef test-wrapper-env
576 test-wrapper-env = $(test-wrapper) env
577 endif
579 # Whether to run test programs built for the library's host system.
580 ifndef run-built-tests
581 ifeq (yes|,$(cross-compiling)|$(test-wrapper))
582 run-built-tests = no
583 else
584 run-built-tests = yes
585 endif
586 endif
588 # How to run a program we just linked with our library.
589 # The program binary is assumed to be $(word 2,$^).
590 built-program-file = $(dir $(word 2,$^))$(notdir $(word 2,$^))
591 ifeq (yes,$(build-shared))
592 comma = ,
593 sysdep-library-path = \
594 $(subst $(empty) ,:,$(strip $(patsubst -Wl$(comma)-rpath-link=%, %,\
595                                        $(filter -Wl$(comma)-rpath-link=%,\
596                                                 $(sysdep-LDFLAGS)))))
597 # $(run-via-rtld-prefix) is a command that, when prepended to the name
598 # of a program built with the newly built library, produces a command
599 # that, executed on the host for which the library is built, runs that
600 # program.  For the statically-linked %-bp test programs, and for
601 # tests listed in tests-static or xtests-static, it is empty.
602 run-via-rtld-prefix =                                                         \
603   $(if $(strip $(filter $(notdir $(built-program-file)),                      \
604                         $(tests-static) $(xtests-static))                     \
605                $(filter %-bp,$(built-program-file))),,                        \
606        $(elf-objpfx)$(rtld-installed-name)                                    \
607          --library-path $(rpath-link)$(patsubst %,:%,$(sysdep-library-path)))
608 else
609 run-via-rtld-prefix =
610 endif
611 # $(run-program-prefix) is a command that, when prepended to the name
612 # of a program built with the newly built library, produces a command
613 # that, executed on the build system on which "make" is run, runs that
614 # program.
615 run-program-prefix = $(test-wrapper) $(run-via-rtld-prefix)
616 # $(built-program-cmd) is a command that, executed on the build system
617 # on which "make" is run, runs the newly built program that is the
618 # second dependency of the makefile target in which
619 # $(built-program-cmd) is used.
620 built-program-cmd = $(test-wrapper) \
621                     $(run-via-rtld-prefix) $(built-program-file)
622 # $(host-built-program-cmd) is a command that, executed on the host
623 # for which the library is built, runs the newly built program that is
624 # the second dependency of the makefile target in which
625 # $(host-built-program-cmd) is used.
626 host-built-program-cmd = $(run-via-rtld-prefix) $(built-program-file)
628 ifndef LD
629 LD := ld -X
630 endif
632 # Extra flags to pass to GCC.
633 ifeq ($(all-warnings),yes)
634 +gccwarn := -Wall -Wwrite-strings -Winline -Wcast-qual -Wbad-function-cast -Wmissing-noreturn -Wmissing-prototypes -Wmissing-declarations -Wcomment -Wcomments -Wtrigraphs -Wsign-compare -Wfloat-equal -Wmultichar
635 else
636 +gccwarn := -Wall -Wwrite-strings -Winline
637 endif
638 +gccwarn-c = -Wstrict-prototypes
640 # We do not depend on the address of constants in different files to be
641 # actually different, so allow the compiler to merge them all.
642 +merge-constants = -fmerge-all-constants
644 # We have to assume that glibc functions are called in any rounding
645 # mode and also change the rounding mode in a few functions. So,
646 # disable any optimization that assume default rounding mode.
647 +math-flags = -frounding-math
649 # This is the program that generates makefile dependencies from C source files.
650 # The -MP flag tells GCC >= 3.2 (which we now require) to produce dummy
651 # targets for headers so that removed headers don't break the build.
652 ifndef +mkdep
653 +mkdep = $(CC) -M -MP
654 endif
656 # The program that makes Emacs-style TAGS files.
657 ETAGS   := etags
659 # The `xgettext' program for producing .pot files from sources.
660 ifndef XGETTEXT
661 XGETTEXT = xgettext
662 endif
664 # The `m4' macro processor; this is used by sysdeps/sparc/Makefile (and
665 # perhaps others) to preprocess assembly code in some cases.
666 M4 = m4
668 # To force installation of files even if they are older than the
669 # installed files.  This variable is included in the dependency list
670 # of all installation targets.
671 ifeq ($(force-install),yes)
672 +force = force-install
673 else
674 +force =
675 endif
677 ####
678 #### End of configuration variables.
679 ####
681 # This tells some versions of GNU make before 3.63 not to export all variables.
682 .NOEXPORT:
684 # We want to echo the commands we're running without
685 # umpteen zillion filenames along with it (we use `...' instead)
686 # but we don't want this echoing done when the user has said
687 # he doesn't want to see commands echoed by using -s.
688 ifneq   "$(findstring s,$(MAKEFLAGS))" ""       # if -s
689 +cmdecho        := echo >/dev/null
690 else                                            # not -s
691 +cmdecho        := echo
692 endif                                           # -s
694 # These are the flags given to the compiler to tell
695 # it what sort of optimization and/or debugging output to do.
696 ifndef  +cflags
697 # If `CFLAGS' was defined, use that.
698 ifdef           CFLAGS
699 +cflags := $(filter-out -I%,$(CFLAGS))
700 endif           # CFLAGS
701 endif   # +cflags
703 # If none of the above worked, default to "-g -O".
704 ifeq    "$(strip $(+cflags))" ""
705 +cflags := $(default_cflags)
706 endif   # $(+cflags) == ""
708 +cflags += $(cflags-cpu) $(+gccwarn) $(+merge-constants) $(+math-flags)
709 +gcc-nowarn := -w
711 # Don't duplicate options if we inherited variables from the parent.
712 +cflags := $(sort $(+cflags))
714 # These are flags given to the C compiler to tell it to look for
715 # include files (including ones given in angle brackets) in the parent
716 # library source directory, in the include directory, and in the
717 # current directory.
718 +sysdep-includes = $(addprefix -I,$(+sysdep_dirs))
719 +includes = -I$(..)include $(if $(subdir),$(objpfx:%/=-I%)) \
720             $(+sysdep-includes) $(includes) \
721             $(patsubst %/,-I%,$(..)) $(libio-include) -I. $(sysincludes)
723 # Since libio has several internal header files, we use a -I instead
724 # of many little headers in the include directory.
725 libio-include = -I$(..)libio
727 # These are the variables that the implicit compilation rules use.
728 # Note that we can't use -std=* in CPPFLAGS, because it overrides
729 # the implicit -lang-asm and breaks cpp behavior for .S files--notably
730 # it causes cpp to stop predefining __ASSEMBLER__.
731 CPPFLAGS = $(CPPUNDEFS) $(CPPFLAGS-config) $($(subdir)-CPPFLAGS) \
732            $(+includes) $(defines) \
733            -include $(..)include/libc-symbols.h $(sysdep-CPPFLAGS) \
734            $(CPPFLAGS-$(suffix $@)) \
735            $(foreach lib,$(libof-$(basename $(@F))) \
736                          $(libof-$(<F)) $(libof-$(@F)),$(CPPFLAGS-$(lib))) \
737            $(CPPFLAGS-$(<F)) $(CPPFLAGS-$(@F)) $(CPPFLAGS-$(basename $(@F)))
738 override CFLAGS = -std=gnu99 $(gnu89-inline-CFLAGS) $(config-extra-cflags) \
739                   $(filter-out %frame-pointer,$(+cflags)) $(+gccwarn-c) \
740                   $(sysdep-CFLAGS) $(CFLAGS-$(suffix $@)) $(CFLAGS-$(<F)) \
741                   $(CFLAGS-$(@F)) \
742                   $(foreach lib,$(libof-$(basename $(@F))) \
743                                 $(libof-$(<F)) $(libof-$(@F)),$(CFLAGS-$(lib)))
744 override CXXFLAGS = $(c++-sysincludes) \
745                     $(filter-out %frame-pointer,$(+cflags)) $(sysdep-CFLAGS) \
746                     $(CFLAGS-$(suffix $@)) $(CFLAGS-$(<F)) $(CFLAGS-$(@F))
748 # If everything is compiled with -fPIC (implicitly) we must tell this by
749 # defining the PIC symbol.
750 ifeq (yes,$(build-pic-default))
751 pic-default = -DPIC
752 endif
754 # Enable object files for different versions of the library.
755 # Various things use $(object-suffixes) to know what all to make.
756 # The compilation rules use $(CPPFLAGS-${SUFFIX}) and $(CFLAGS-${SUFFIX})
757 # to pass different flags for each flavor.
758 libtypes = $(foreach o,$(object-suffixes-for-libc),$(libtype$o))
759 all-object-suffixes := .o .os .op .og .ob .oS
760 object-suffixes :=
761 CPPFLAGS-.o = $(pic-default)
762 CFLAGS-.o = $(filter %frame-pointer,$(+cflags))
763 libtype.o := lib%.a
764 object-suffixes += .o
765 ifeq (yes,$(build-shared))
766 # Under --enable-shared, we will build a shared library of PIC objects.
767 # The PIC object files are named foo.os.
768 object-suffixes += .os
769 CPPFLAGS-.os = -DPIC -DSHARED
770 CFLAGS-.os = $(filter %frame-pointer,$(+cflags)) $(pic-ccflag)
771 libtype.os := lib%_pic.a
772 # This can be changed by a sysdep makefile
773 pic-ccflag = -fPIC
774 # This one should always stay like this unless there is a very good reason.
775 PIC-ccflag = -fPIC
776 endif
777 # This can be changed by a sysdep makefile
778 pie-ccflag = -fpie
779 # This one should always stay like this unless there is a very good reason.
780 PIE-ccflag = -fPIE
781 ifeq (yes,$(build-profile))
782 # Under --enable-profile, we will build a static library of profiled objects.
783 # The profiled object files are named foo.op.
784 object-suffixes += .op
785 CPPFLAGS-.op = -DPROF $(pic-default)
786 CFLAGS-.op = -pg
787 libtype.op = lib%_p.a
788 endif
790 # Convenience variable for when we want to treat shared-library cases
791 # differently from the rest.
792 object-suffixes-noshared := $(filter-out .os,$(object-suffixes))
794 bppfx = BP-
795 ifeq (yes,$(build-bounded))
796 # Under --enable-bounded, we build the library with `-fbounded-pointers -g'
797 # to runtime bounds checking.  The bounded-pointer objects are named foo.ob.
798 # We disable sibling-call optimizations so that stack traces will be complete
799 # and thus aid debugging, since after all, BPs are a debugging tool.
800 object-suffixes += .ob
801 CPPFLAGS-.ob = -fbounded-pointers $(pic-default)
802 CFLAGS-.ob = -g -O2 -fno-optimize-sibling-calls -fno-strict-aliasing
803 libtype.ob = lib%_b.a
804 endif
806 object-suffixes-for-libc := $(object-suffixes)
808 ifeq (yes,$(build-shared))
809 # Build special library that contains the static-only routines for libc.
810 object-suffixes-for-libc += .oS
812 # Must build the routines as PIC, though, because they can end up in (users')
813 # shared objects.  We don't want to use CFLAGS-os because users may, for
814 # example, make that processor-specific.
815 CFLAGS-.oS = $(CFLAGS-.o) $(PIC-ccflag)
816 CPPFLAGS-.oS = $(CPPFLAGS-.o) -DPIC -DLIBC_NONSHARED=1
817 libtype.oS = lib%_nonshared.a
818 endif
820 # The assembler can generate debug information too.
821 ifndef ASFLAGS
822 ASFLAGS := $(filter -g% -fdebug-prefix-map=%,$(CFLAGS))
823 endif
824 ASFLAGS += $(ASFLAGS-config) $(asflags-cpu)
826 ifndef BUILD_CC
827 BUILD_CC = $(CC)
828 endif
830 move-if-change = $(SHELL) $(..)scripts/move-if-change
832 -include $(common-objpfx)sysd-sorted
833 subdirs = $(sorted-subdirs)
834 subdir-srcdirs = $(foreach dir,$(subdirs),\
835                            $(firstword $($(dir)-srcdir) $(..)$(dir)))
837 ifeq (yes, $(build-shared))
839 # This is a pair of implicit rules to preprocess a file with # comments,
840 # %ifdef et al, based on config.h settings or other %include'd files.
841 # We use chained rules instead of a pipeline here so that we can properly
842 # check the exit status of cpp rather than using its bad output when there
843 # is a preprocessing error.  Another rule should depend on the output file
844 # `FOO.v', and along with that `FOO.v.i' should be given dependencies
845 # listing both its input files, and any header files that it may reference
846 # (but no commands).
847 %.v.i: $(common-objpfx)config.h $(..)Makeconfig
848         sed '/^[        ]*%/!s/#.*$$//;/^[      ]*$$/d;s/^[     ]*%/#/' \
849             $(filter-out FORCE %.h $(..)Makeconfig,$^) \
850         | $(CC) -E -undef $(CPPFLAGS) -x assembler-with-cpp - \
851                    > $@T
852         mv -f $@T $@
853 %.v: %.v.i
854         sed '/^[        ]*#/d;/^[       ]*$$/d' $< > $@T
855         mv -f $@T $@
857 # To generate a header to support more than one ABI for different
858 # architecture variants, the CPU/Makefile defines abi-variants to be a
859 # list of names for those variants (e.g. 32 64), and, for each variant,
860 # defines abi-$(variant)-condition to be the condition for those options
861 # to use in a C #if condition.  abi-includes may be defined to a list of
862 # headers to include in the generated header, if the default does not
863 # suffice.  default-abi is defined to be the ABI for the current glibc
864 # build.
866 ifndef abi-includes
867 abi-includes := bits/wordsize.h
868 endif
870 # Process the shlib-versions file, which tells us what shared library
871 # version numbers to use when we install shared objects on this system.
872 # We need to wait until $(subdirs) is complete.
873 ifeq ($(sysd-sorted-done),t)
874 -include $(common-objpfx)soversions.mk
875 ifndef avoid-generated
876 # This lets add-ons give more-specific matches that override defaults
877 # in the top-level file.
878 $(common-objpfx)shlib-versions.v.i: \
879         $(wildcard $(+sysdep_dirs:=/shlib-versions) \
880                    $(subdir-srcdirs:=/shlib-versions)) \
881         $(..)shlib-versions
883 soversions-default-setname = $(patsubst %, %,\
884                                         $(filter-out %_default,\
885                                                      $(oldest-abi:%=GLIBC_%)))
886 $(common-objpfx)soversions.i: $(..)scripts/soversions.awk \
887                               $(common-objpfx)shlib-versions.v
888         $(AWK) -v default_setname='$(soversions-default-setname)' \
889                -v cpu='$(config-machine)' \
890                -v vendor='$(config-vendor)' \
891                -v os='$(config-os)' \
892                -f $^ > $@T
893         mv -f $@T $@
894 $(common-objpfx)soversions.mk: $(common-objpfx)soversions.i $(..)Makeconfig
895         (while read which lib number setname; do \
896            eval seen_$$which=1; \
897            test x"$$which" != xABI || echo abi-name = "$$lib"; \
898            test x"$$which" = xDEFAULT || continue; \
899            case $$number in \
900              [0-9]*) echo "$$lib.so-version=.$$number"; \
901                      echo "all-sonames+=$$lib=$$lib.so\$$($$lib.so-version)";;\
902              *)      echo "$$lib.so-version=\$$(if \$$(abi-$(default-abi)-$$lib-soname),\$$(abi-$(default-abi)-$$lib-soname),$$number)"; \
903                      echo "all-sonames+=$$lib=\$$($$lib.so-version)";;\
904            esac; \
905          done; \
906          echo soversions.mk-done = t;) < $< > $@T; exit 0
907         mv -f $@T $@
908 endif
909 endif
911 postclean-generated += soversions.mk soversions.i \
912                        shlib-versions.v shlib-versions.v.i
914 # Generate the header containing the names of all shared libraries.
915 # We use a stamp file to avoid unnecessary recompilations.
916 before-compile += $(common-objpfx)gnu/lib-names.h
917 ifeq ($(soversions.mk-done),t)
918 $(common-objpfx)gnu/lib-names.h: $(common-objpfx)gnu/lib-names.stmp; @:
919 $(common-objpfx)gnu/lib-names.stmp: $(..)scripts/lib-names.awk \
920                                     $(common-objpfx)soversions.i
921         $(make-target-directory)
922         { \
923          echo '/* This file is automatically generated.';\
924          echo '   It defines macros to allow user program to find the shared'; \
925          echo '   library files which come as part of GNU libc.  */'; \
926          echo '#ifndef __GNU_LIB_NAMES_H'; \
927          echo '#define __GNU_LIB_NAMES_H        1'; \
928          echo ''; \
929          $(if $(abi-includes), \
930           $(foreach h,$(abi-includes), echo '#include <$(h)>';) \
931           echo '';) \
932          $(if $(abi-variants), \
933          $(foreach v,$(abi-variants),\
934          $(if $(abi-$(v)-condition),\
935          echo '#if $(abi-$(v)-condition)'; \
936          ($(foreach s,$(all-sonames), \
937            $(if $(abi-$(v)-$(firstword $(subst =, ,$(s)))-soname),\
938              echo $(firstword $(subst =, ,$(s)))=$(abi-$(v)-$(firstword $(subst =, ,$(s)))-soname);, \
939              echo $(s);))) \
940          | LC_ALL=C $(AWK) -v multi=1 -f $(firstword $^) | LC_ALL=C sort;) \
941          $(if $(abi-$(v)-condition),echo '#endif';)), \
942          ($(foreach s,$(all-sonames), echo $(s);)) \
943          | LC_ALL=C $(AWK) -f $(firstword $^) | LC_ALL=C sort;) \
944          echo ''; \
945          echo '#endif   /* gnu/lib-names.h */'; \
946         } >  ${@:stmp=T}
947         $(move-if-change) ${@:stmp=T} ${@:stmp=h}
948         touch $@
949 endif
951 common-generated += gnu/lib-names.h gnu/lib-names.stmp
953 # The name under which the run-time dynamic linker is installed.
954 # We are currently going for the convention that `/lib/ld.so.1'
955 # names the SVR4/ELF ABI-compliant dynamic linker.
956 ifndef rtld-installed-name
957 ifdef ld.so-version
958 rtld-installed-name = $(ld.so-version)
959 else
960 rtld-installed-name = ld.so.1
961 endif
962 endif
964 ifndef rtld-version-installed-name
965 rtld-version-installed-name = ld-$(version).so
966 endif
968 endif # build-shared
971 ifeq ($(build-shared),yes)
972 libdl = $(common-objpfx)dlfcn/libdl.so$(libdl.so-version)
973 else
974 libdl = $(common-objpfx)dlfcn/libdl.a
975 endif
977 ifeq ($(build-shared),yes)
978 libm = $(common-objpfx)math/libm.so$(libm.so-version)
979 else
980 libm = $(common-objpfx)math/libm.a
981 endif
983 # These are the subdirectories containing the library source.  The order
984 # is more or less arbitrary.  The sorting step will take care of the
985 # dependencies.
986 all-subdirs = csu assert ctype locale intl catgets math setjmp signal       \
987               stdlib stdio-common libio malloc string wcsmbs time dirent    \
988               grp pwd posix io termios resource misc socket sysvipc gmon    \
989               gnulib iconv iconvdata wctype manual shadow gshadow po argp   \
990               crypt nss localedata timezone rt conform debug                \
991               $(add-on-subdirs) dlfcn elf
993 ifndef avoid-generated
994 all-Depend-files := $(wildcard $(foreach dir,$(all-subdirs),\
995                                          $(firstword $($(dir)-srcdir) \
996                                                      $(..)$(dir))/Depend))
997 $(common-objpfx)sysd-sorted: $(..)scripts/gen-sorted.awk \
998                              $(common-objpfx)config.make $(..)Makeconfig \
999                              $(wildcard $(sysdirs:=/Subdirs)) \
1000                              $(all-Depend-files)
1001         $(AWK) -f $< \
1002                -v subdirs='$(all-subdirs)' \
1003                -v srcpfx='$(..)' \
1004                $(filter %/Subdirs %/Depend,$^) > $@-tmp
1005         mv -f $@-tmp $@
1006 $(all-Depend-files): ;
1007 endif
1009 # This gives partial TARGET:SOURCE pattern pairs to have rules
1010 # emitted into sysd-rules.  A sysdeps Makeconfig fragment can
1011 # add its own special object file prefix to this list with e.g. foo-%:%
1012 # to have foo-*.? compiled from *.? using $(foo-CPPFLAGS).
1013 sysd-rules-patterns := %:% rtld-%:rtld-% rtld-%:% m_%:s_%
1015 # Let sysdeps/ subdirs contain a Makeconfig fragment for us to include here.
1016 sysdep-makeconfigs := $(wildcard $(+sysdep_dirs:=/Makeconfig))
1017 ifneq (,$(sysdep-makeconfigs))
1018 include $(sysdep-makeconfigs)
1019 endif
1021 # Compute just the target patterns.  Makeconfig has set sysd-rules-patterns.
1022 sysd-rules-targets := $(sort $(foreach p,$(sysd-rules-patterns),\
1023                                          $(firstword $(subst :, ,$p))))
1025 # A sysdeps Makeconfig fragment may set libc-reentrant to yes.
1026 ifeq (yes,$(libc-reentrant))
1027 defines += -D_LIBC_REENTRANT
1029 libio-mtsafe = -D_IO_MTSAFE_IO
1030 endif
1032 endif # Makeconfig not yet included
1034 # Local Variables:
1035 # mode: makefile
1036 # End: