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