Fix powerpc software sqrtf (bug 17967).
[glibc.git] / Makeconfig
blob509b5bd3df241f146d608b38c235a0c278beb5aa
1 # Copyright (C) 1991-2015 Free Software Foundation, Inc.
2 # This file is part of the GNU C Library.
4 # The GNU C Library is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU Lesser General Public
6 # License as published by the Free Software Foundation; either
7 # version 2.1 of the License, or (at your option) any later version.
9 # The GNU C Library is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12 # Lesser General Public License for more details.
14 # You should have received a copy of the GNU Lesser General Public
15 # License along with the GNU C Library; if not, see
16 # <http://www.gnu.org/licenses/>.
19 #       Makefile configuration options for the GNU C library.
21 ifneq (,)
22 This makefile requires GNU Make.
23 endif
25 all: # Make this the default goal
27 ifneq "$(origin +included-Makeconfig)" "file"
29 +included-Makeconfig := yes
31 ifdef subdir
32 .. := ../
33 endif
35 # $(common-objdir) is the place to put objects and
36 # such that are not specific to a single subdir.
37 ifdef objdir
38 objpfx := $(patsubst %//,%/,$(objdir)/$(subdir)/)
39 common-objpfx = $(objdir)/
40 common-objdir = $(objdir)
41 else
42 objdir must be defined by the build-directory Makefile.
43 endif
45 # Root of the sysdeps tree.
46 sysdep_dir := $(..)sysdeps
47 export sysdep_dir := $(sysdep_dir)
49 # Get the values defined by options to `configure'.
50 include $(common-objpfx)config.make
52 # What flags to give to sources which call user provided callbacks
53 uses-callbacks = $(exceptions)
55 # What flags to give to tests which test stack alignment
56 stack-align-test-flags =
58 # Complete path to sysdep dirs.
59 # `configure' writes a definition of `config-sysdirs' in `config.make'.
60 sysdirs := $(foreach D,$(config-sysdirs),$(firstword $(filter /%,$D) $(..)$D))
62 # Add-ons that contribute sysdeps trees get added to the include list
63 # after sysdeps/generic.  This makes #include <sysdeps/...> work right
64 # to find specific add-on files without assuming the add-on directory name.
65 # It also means that headers can go into an add-on's base directory
66 # instead of the add-on needing a sysdeps/generic of its own.
67 sysdeps-srcdirs := $(foreach add-on,$(sysdeps-add-ons),\
68                              $(firstword $(filter /%,$(add-on)) \
69                                          $(..)$(add-on)))
70 +sysdep_dirs = $(sysdirs) $(sysdeps-srcdirs)
71 ifdef objdir
72 +sysdep_dirs := $(objdir) $(+sysdep_dirs)
73 endif
75 # Run config.status to update config.make and config.h.  We don't show the
76 # dependence of config.h to Make, because it is only touched when it
77 # changes and so config.status would be run every time; the dependence of
78 # config.make should suffice to force regeneration and re-exec, and the new
79 # image will notice if config.h changed.
80 $(common-objpfx)config.make: $(common-objpfx)config.status \
81                              $(..)config.make.in $(..)config.h.in
82         cd $(<D); $(SHELL) $(<F)
84 # Find all the add-on and sysdeps configure fragments, to make sure we
85 # re-run configure when any of them changes.
86 $(common-objpfx)config.status: $(..)version.h $(..)configure \
87                                $(foreach dir,$(sysdirs),\
88                                          $(wildcard $(dir)/Implies) \
89                                          $(patsubst %.ac,%,\
90                                                     $(firstword $(wildcard \
91  $(addprefix $(dir)/,configure configure.ac))))) \
92                                $(patsubst %.ac,%,\
93  $(wildcard $(..)sysdeps/*/preconfigure $(..)sysdeps/*/preconfigure.ac)) \
94                                $(patsubst %.ac,%,\
95                                           $(foreach add-on,$(add-ons),\
96                                                     $(firstword $(wildcard \
97  $(addprefix $(firstword $(filter /%,$(add-on)) $(..)$(add-on))/,\
98              configure configure.ac))) \
99  $(wildcard $(addprefix $(firstword $(filter /%,$(add-on)) $(..)$(add-on))/,\
100                         sysdeps/*/preconfigure sysdeps/*/preconfigure.ac))))
101         @cd $(@D); if test -f $(@F); then exec $(SHELL) $(@F) --recheck; else \
102          echo The GNU C library has not been configured. >&2; \
103          echo Run \`configure\' to configure it before building. >&2; \
104          echo Try \`configure --help\' for more details. >&2; \
105          exit 1; fi
107 # We don't want CPPFLAGS to be exported to the command running configure.
108 unexport CPPFLAGS
110 # Get the user's configuration parameters.
111 ifneq ($(wildcard $(..)configparms),)
112 include $(..)configparms
113 endif
114 ifneq ($(objpfx),)
115 ifneq ($(wildcard $(common-objpfx)configparms),)
116 include $(common-objpfx)configparms
117 endif
118 endif
120 ####
121 ####    These are the configuration variables.  You can define values for
122 ####    the variables below in the file `configparms'.
123 ####    Do NOT edit this file.
124 ####
127 # Common prefix for machine-independent installation directories.
128 ifeq ($(origin prefix),undefined) # ifndef would override explicit empty value.
129 prefix = /usr/local
130 endif
132 # Decide whether we shall build the programs or not.  We always do this
133 # unless the user tells us (in configparms) or we are building for a
134 # standalone target.
135 ifndef build-programs
136 ifneq ($(config-os),none)
137 build-programs=yes
138 else
139 build-programs=no
140 endif
141 endif
143 # Common prefix for machine-dependent installation directories.
144 ifeq ($(origin exec_prefix),undefined)
145 exec_prefix = $(prefix)
146 endif
148 # Where to install the library and object files.
149 ifndef libdir
150 libdir = $(exec_prefix)/lib
151 endif
152 inst_libdir = $(install_root)$(libdir)
154 # Where to install the shared library.
155 ifndef slibdir
156 slibdir = $(exec_prefix)/lib
157 endif
158 inst_slibdir = $(install_root)$(slibdir)
160 # Where to install the dynamic linker.
161 ifndef rtlddir
162 rtlddir = $(slibdir)
163 endif
164 inst_rtlddir = $(install_root)$(rtlddir)
166 # Prefix to put on files installed in $(libdir).  For libraries `libNAME.a',
167 # the prefix is spliced between `lib' and the name, so the linker switch
168 # `-l$(libprefix)NAME' finds the library; for other files the prefix is
169 # just prepended to the whole file name.
170 ifeq ($(origin libprefix),undefined)
171 libprefix =
172 endif
174 # Where to install the header files.
175 ifndef includedir
176 includedir = $(prefix)/include
177 endif
178 inst_includedir = $(install_root)$(includedir)
180 # Where to install machine-independent data files.
181 # These are the timezone database, and the locale database.
182 ifndef datadir
183 datadir = $(prefix)/share
184 endif
185 inst_datadir = $(install_root)$(datadir)
187 # Where to install the timezone data files (which are machine-independent).
188 ifndef zonedir
189 zonedir = $(datadir)/zoneinfo
190 endif
191 inst_zonedir = $(install_root)$(zonedir)
193 # Where to install the locale files.
194 ifndef localedir
195 localedir = $(libdir)/locale
196 endif
197 inst_localedir = $(install_root)$(localedir)
199 # Where to install the message catalog data files (which are
200 # machine-independent).
201 ifndef msgcatdir
202 msgcatdir = $(datadir)/locale
203 endif
204 inst_msgcatdir = $(install_root)$(msgcatdir)
206 # Where to install the locale charmap source files.
207 ifndef i18ndir
208 i18ndir = $(datadir)/i18n
209 endif
210 inst_i18ndir = $(install_root)$(i18ndir)
212 # Where to install the shared object for charset transformation.
213 ifndef gconvdir
214 gconvdir = $(libdir)/gconv
215 endif
216 inst_gconvdir = $(install_root)$(gconvdir)
218 # Where to install programs.
219 ifndef bindir
220 bindir = $(exec_prefix)/bin
221 endif
222 inst_bindir = $(install_root)$(bindir)
224 # Where to install internal programs.
225 ifndef libexecdir
226 libexecdir = $(exec_prefix)/libexec
227 endif
228 inst_libexecdir = $(install_root)$(libexecdir)
230 # Where to install administrative programs.
231 ifndef rootsbindir
232 rootsbindir = $(exec_prefix)/sbin
233 endif
234 inst_rootsbindir = $(install_root)$(rootsbindir)
236 ifndef sbindir
237 sbindir = $(exec_prefix)/sbin
238 endif
239 inst_sbindir = $(install_root)$(sbindir)
241 # Where to install the Info files.
242 ifndef infodir
243 infodir = $(prefix)/info
244 endif
245 inst_infodir = $(install_root)$(infodir)
247 # Where to install audit libraries.
248 ifndef auditdir
249 auditdir = $(libdir)/audit
250 endif
251 inst_auditdir = $(install_root)$(auditdir)
253 # Where to install default configuration files.  These include the local
254 # timezone specification and network data base files.
255 ifndef sysconfdir
256 sysconfdir = $(prefix)/etc
257 endif
258 inst_sysconfdir = $(install_root)$(sysconfdir)
260 # Directory for the database files and Makefile for nss_db.
261 ifndef vardbdir
262 vardbdir = $(localstatedir)/db
263 endif
264 inst_vardbdir = $(install_root)$(vardbdir)
266 # Where to install the "localtime" timezone file; this is the file whose
267 # contents $(localtime) specifies.  If this is a relative pathname, it is
268 # relative to $(zonedir).  It is a good idea to put this somewhere
269 # other than there, so the zoneinfo directory contains only universal data,
270 # localizing the configuration data elsewhere.
271 ifndef localtime-file
272 localtime-file = $(sysconfdir)/localtime
273 endif
275 # What to use for leap second specifications in compiling the default
276 # timezone files.  Set this to `/dev/null' for no leap second handling as
277 # 1003.1 requires, or to `leapseconds' for proper leap second handling.
278 # Both zone flavors are always available as `posix/ZONE' and `right/ZONE'.
279 # This variable determines the default: if it's `/dev/null',
280 # ZONE==posix/ZONE; if it's `leapseconds', ZONE==right/ZONE.
281 ifndef leapseconds
282 leapseconds = /dev/null
283 endif
285 # What timezone's DST rules should be used when a POSIX-style TZ
286 # environment variable doesn't specify any rules.  For 1003.1 compliance
287 # this timezone must use rules that are as U.S. federal law defines DST.
288 # Run `make -C time echo-zonenames' to see a list of available zone names.
289 # This setting can be changed with `zic -p TIMEZONE' at any time.
290 # If you want POSIX.1 compatibility, use `America/New_York'.
291 ifndef posixrules
292 posixrules = America/New_York
293 endif
295 # Where to install the "posixrules" timezone file; this is file
296 # whose contents $(posixrules) specifies.  If this is a relative
297 # pathname, it is relative to $(zonedir).
298 ifndef posixrules-file
299 posixrules-file = posixrules
300 endif
303 # Directory where your system's native header files live.
304 # This is used on Unix systems to generate some GNU libc header files.
305 ifndef sysincludedir
306 sysincludedir = /usr/include
307 endif
310 # Commands to install files.
311 ifndef INSTALL_DATA
312 INSTALL_DATA = $(INSTALL) -m 644
313 endif
314 ifndef INSTALL_SCRIPT
315 INSTALL_SCRIPT = $(INSTALL)
316 endif
317 ifndef INSTALL_PROGRAM
318 INSTALL_PROGRAM = $(INSTALL)
319 endif
320 ifndef INSTALL
321 INSTALL = install
322 endif
325 # The name of the C compiler.
326 # If you've got GCC, and it works, use it.
327 ifeq ($(origin CC),default)
328 CC := gcc
329 endif
331 # The name of the C compiler to use for compilations of programs to run on
332 # the host that is building the library.  If you set CC to a
333 # cross-compiler, you must set this to the normal compiler.
334 ifndef BUILD_CC
335 BUILD_CC = $(CC)
336 endif
338 # Default flags to pass the C compiler.
339 ifndef default_cflags
340 ifeq ($(release),stable)
341 default_cflags := -g -O2
342 else
343 default_cflags := -g -O
344 endif
345 endif
347 # Flags to pass the C compiler when assembling preprocessed assembly code
348 # (`.S' files).  On some systems the assembler doesn't understand the `#' line
349 # directives the preprocessor produces.  If you have troubling compiling
350 # assembly code, try using -P here to suppress these directives.
351 ifndef asm-CPPFLAGS
352 asm-CPPFLAGS =
353 endif
355 as-needed := -Wl,--as-needed
356 no-as-needed := -Wl,--no-as-needed
358 # Must be supported by the linker.
359 no-whole-archive = -Wl,--no-whole-archive
360 whole-archive = -Wl,--whole-archive
362 # Installed name of the startup code.
363 # The ELF convention is that the startfile is called crt1.o
364 start-installed-name = crt1.o
365 # On systems that do not need a special startfile for statically linked
366 # binaries, simply set it to the normal name.
367 ifndef static-start-installed-name
368 static-start-installed-name = $(start-installed-name)
369 endif
371 ifeq (yesyes,$(build-shared)$(have-z-combreloc))
372 combreloc-LDFLAGS = -Wl,-z,combreloc
373 LDFLAGS.so += $(combreloc-LDFLAGS)
374 LDFLAGS-rtld += $(combreloc-LDFLAGS)
375 endif
377 relro-LDFLAGS = -Wl,-z,relro
378 LDFLAGS.so += $(relro-LDFLAGS)
379 LDFLAGS-rtld += $(relro-LDFLAGS)
381 ifeq (yes,$(have-hash-style))
382 # For the time being we unconditionally use 'both'.  At some time we
383 # should declare statically linked code as 'out of luck' and compile
384 # with --hash-style=gnu only.
385 hashstyle-LDFLAGS = -Wl,--hash-style=both
386 LDFLAGS.so += $(hashstyle-LDFLAGS)
387 LDFLAGS-rtld += $(hashstyle-LDFLAGS)
388 endif
390 # Command to run after every final link (executable or shared object).
391 # This is invoked with $(call after-link,...), so it should operate on
392 # the file $1.  This can be set to do some sort of post-processing on
393 # binaries, or to perform some sort of static sanity check.
394 ifndef after-link
395 after-link =
396 endif
398 # Command for linking PIE programs with the C library.
399 ifndef +link-pie
400 +link-pie-before-libc = $(CC) -pie -Wl,-O1 -nostdlib -nostartfiles -o $@ \
401              $(sysdep-LDFLAGS) $(LDFLAGS) $(LDFLAGS-$(@F)) \
402              $(combreloc-LDFLAGS) $(relro-LDFLAGS) $(hashstyle-LDFLAGS) \
403              $(addprefix $(csu-objpfx),S$(start-installed-name)) \
404              $(+preinit) $(+prectorS) \
405              $(filter-out $(addprefix $(csu-objpfx),start.o \
406                                                     S$(start-installed-name))\
407                           $(+preinit) $(link-extra-libs) \
408                           $(common-objpfx)libc% $(+postinit),$^) \
409              $(link-extra-libs)
410 +link-pie-after-libc = $(+postctorS) $(+postinit)
411 define +link-pie
412 $(+link-pie-before-libc) $(rtld-LDFLAGS) $(link-libc) $(+link-pie-after-libc)
413 $(call after-link,$@)
414 endef
415 define +link-pie-tests
416 $(+link-pie-before-libc) $(rtld-tests-LDFLAGS) $(link-libc-tests) \
417                          $(+link-pie-after-libc)
418 $(call after-link,$@)
419 endef
420 endif
421 # Command for statically linking programs with the C library.
422 ifndef +link-static
423 +link-static-before-libc = $(CC) -nostdlib -nostartfiles -static -o $@ \
424               $(sysdep-LDFLAGS) $(LDFLAGS) $(LDFLAGS-$(@F))  \
425               $(addprefix $(csu-objpfx),$(static-start-installed-name)) \
426               $(+preinit) $(+prectorT) \
427               $(filter-out $(addprefix $(csu-objpfx),start.o \
428                                                      $(start-installed-name))\
429                            $(+preinit) $(link-extra-libs-static) \
430                            $(common-objpfx)libc% $(+postinit),$^) \
431               $(link-extra-libs-static)
432 +link-static-after-libc = $(+postctorT) $(+postinit)
433 define +link-static
434 $(+link-static-before-libc) $(link-libc-static) $(+link-static-after-libc)
435 $(call after-link,$@)
436 endef
437 define +link-static-tests
438 $(+link-static-before-libc) $(link-libc-static-tests) $(+link-static-after-libc)
439 $(call after-link,$@)
440 endef
441 endif
442 # Commands for linking programs with the C library.
443 ifndef +link
444 ifeq (yes,$(build-shared))
445 +link-before-libc = $(CC) -nostdlib -nostartfiles -o $@ \
446               $(sysdep-LDFLAGS) $(LDFLAGS) $(LDFLAGS-$(@F)) \
447               $(combreloc-LDFLAGS) $(relro-LDFLAGS) $(hashstyle-LDFLAGS) \
448               $(addprefix $(csu-objpfx),$(start-installed-name)) \
449               $(+preinit) $(+prector) \
450               $(filter-out $(addprefix $(csu-objpfx),start.o \
451                                                      $(start-installed-name))\
452                            $(+preinit) $(link-extra-libs) \
453                            $(common-objpfx)libc% $(+postinit),$^) \
454               $(link-extra-libs)
455 +link-after-libc = $(+postctor) $(+postinit)
456 define +link
457 $(+link-before-libc) $(rtld-LDFLAGS) $(link-libc) $(+link-after-libc)
458 $(call after-link,$@)
459 endef
460 define +link-tests
461 $(+link-before-libc) $(rtld-tests-LDFLAGS) $(link-libc-tests) \
462                      $(+link-after-libc)
463 $(call after-link,$@)
464 endef
465 else
466 +link = $(+link-static)
467 +link-tests = $(+link-static-tests)
468 endif
469 endif
470 ifeq (yes,$(build-shared))
471 ifndef rtld-LDFLAGS
472 rtld-LDFLAGS = -Wl,-dynamic-linker=$(rtlddir)/$(rtld-installed-name)
473 endif
474 ifndef rtld-tests-LDFLAGS
475 ifeq (yes,$(build-hardcoded-path-in-tests))
476 rtld-tests-LDFLAGS = -Wl,-dynamic-linker=$(elf-objpfx)ld.so
477 else
478 rtld-tests-LDFLAGS = $(rtld-LDFLAGS)
479 endif
480 endif
481 endif
482 ifndef link-libc
483 ifeq (yes,$(build-shared))
484 # We need the versioned name of libc.so in the deps of $(others) et al
485 # so that the symlink to libc.so is created before anything tries to
486 # run the linked programs.
487 link-libc-rpath-link = -Wl,-rpath-link=$(rpath-link)
488 ifeq (yes,$(build-hardcoded-path-in-tests))
489 link-libc-tests-rpath-link = -Wl,-rpath=$(rpath-link)
490 else
491 link-libc-tests-rpath-link = $(link-libc-rpath-link)
492 endif
493 link-libc-before-gnulib = $(common-objpfx)libc.so$(libc.so-version) \
494                           $(common-objpfx)$(patsubst %,$(libtype.oS),c) \
495                           $(as-needed) $(elf-objpfx)ld.so \
496                           $(no-as-needed)
497 link-libc = $(link-libc-rpath-link) $(link-libc-before-gnulib) $(gnulib)
498 link-libc-tests = $(link-libc-tests-rpath-link) \
499                   $(link-libc-before-gnulib) $(gnulib-tests)
500 # This is how to find at build-time things that will be installed there.
501 rpath-dirs = math elf dlfcn nss nis rt resolv crypt
502 rpath-link = \
503 $(common-objdir):$(subst $(empty) ,:,$(patsubst ../$(subdir),.,$(rpath-dirs:%=$(common-objpfx)%)))
504 else
505 link-libc = $(common-objpfx)libc.a $(otherlibs) $(gnulib) $(common-objpfx)libc.a $(gnulib)
506 link-libc-tests = $(common-objpfx)libc.a $(otherlibs) $(gnulib-tests) $(common-objpfx)libc.a $(gnulib-tests)
507 endif
508 endif
510 # Differences in the linkers on the various platforms.
511 LDFLAGS-rpath-ORIGIN = -Wl,-rpath,'$$ORIGIN'
512 LDFLAGS-soname-fname = -Wl,-soname,$(@F)
513 LDFLAGS-rdynamic = -rdynamic
514 LDFLAGS-Bsymbolic = -Bsymbolic
516 # Choose the default search path for the dynamic linker based on
517 # where we will install libraries.
518 ifneq ($(libdir),$(slibdir))
519 default-rpath = $(slibdir):$(libdir)
520 else
521 default-rpath = $(libdir)
522 endif
524 ifndef link-extra-libs
525 link-extra-libs = $(LDLIBS-$(@F))
526 link-extra-libs-static = $(link-extra-libs)
527 endif
529 # The static libraries.
530 link-libc-static = -Wl,--start-group $(common-objpfx)libc.a $(static-gnulib) -Wl,--end-group
531 link-libc-static-tests = -Wl,--start-group $(common-objpfx)libc.a $(static-gnulib-tests) -Wl,--end-group
533 # How to link against libgcc.  Some libgcc functions, such as those
534 # for "long long" arithmetic or software floating point, can always be
535 # built without use of C library headers and do not have any global
536 # state so can safely be linked statically into any executable or
537 # shared library requiring them; these functions are in libgcc.a.
538 # Other functions, relating to exception handling, may require C
539 # library headers to build and it may not be safe to have more than
540 # one copy of them in a process; these functions are only in
541 # libgcc_s.so and libgcc_eh.a.
543 # To avoid circular dependencies when bootstrapping, it is desirable
544 # to avoid use of libgcc_s and libgcc_eh in building glibc.  Where any
545 # glibc functionality (in particular, thread cancellation) requires
546 # exception handling, this is implemented through dlopen of libgcc_s
547 # to avoid unnecessary dependencies on libgcc_s by programs not using
548 # that functionality; executables built with glibc do not use
549 # exception handling other than through thread cancellation.
551 # Undefined references to functions from libgcc_eh or libgcc_s may
552 # arise for code built with -fexceptions.  In the case of statically
553 # linked programs installed by glibc, unwinding will never actually
554 # occur at runtime and the use of elf/static-stubs.c to resolve these
555 # references is safe.  In the case of statically linked test programs
556 # and test programs built with -fexceptions, unwinding may occur in
557 # some cases and it is preferable to link with libgcc_eh or libgcc_s
558 # so that the testing is as similar as possible to how programs will
559 # be built with the installed glibc.
561 # Some architectures have architecture-specific systems for exception
562 # handling that may involve undefined references to
563 # architecture-specific functions.  On those architectures,
564 # gnulib-arch and static-gnulib-arch may be defined in sysdeps
565 # makefiles to use additional libraries for linking executables and
566 # shared libraries built by glibc.
567 ifndef gnulib
568 ifneq ($(have-cc-with-libunwind),yes)
569   libunwind =
570 else
571   libunwind = -lunwind
572 endif
573 libgcc_eh := -Wl,--as-needed -lgcc_s $(libunwind) -Wl,--no-as-needed
574 gnulib-arch =
575 gnulib = -lgcc $(gnulib-arch)
576 gnulib-tests := -lgcc $(libgcc_eh)
577 static-gnulib-arch =
578 # By default, elf/static-stubs.o, instead of -lgcc_eh, is used to
579 # statically link programs.  When --disable-shared is used, we use
580 # -lgcc_eh since elf/static-stubs.o isn't sufficient.
581 ifeq (yes,$(build-shared))
582 static-gnulib = -lgcc $(static-gnulib-arch)
583 else
584 static-gnulib = -lgcc -lgcc_eh $(static-gnulib-arch)
585 endif
586 static-gnulib-tests := -lgcc -lgcc_eh $(libunwind)
587 libc.so-gnulib := -lgcc
588 endif
589 +preinit = $(addprefix $(csu-objpfx),crti.o)
590 +postinit = $(addprefix $(csu-objpfx),crtn.o)
591 +prector = `$(CC) $(sysdep-LDFLAGS) --print-file-name=crtbegin.o`
592 +postctor = `$(CC) $(sysdep-LDFLAGS) --print-file-name=crtend.o`
593 # Variants of the two previous definitions for linking PIE programs.
594 +prectorS = `$(CC) $(sysdep-LDFLAGS) --print-file-name=crtbeginS.o`
595 +postctorS = `$(CC) $(sysdep-LDFLAGS) --print-file-name=crtendS.o`
596 # Variants of the two previous definitions for statically linking programs.
597 +prectorT = `$(CC) $(sysdep-LDFLAGS) --print-file-name=crtbeginT.o`
598 +postctorT = `$(CC) $(sysdep-LDFLAGS) --print-file-name=crtend.o`
599 +interp = $(addprefix $(elf-objpfx),interp.os)
600 csu-objpfx = $(common-objpfx)csu/
601 elf-objpfx = $(common-objpfx)elf/
603 # A command that, prepended to the name and arguments of a program,
604 # and run on the build system, causes that program with those
605 # arguments to be run on the host for which the library is built.
606 ifndef test-wrapper
607 test-wrapper =
608 endif
609 # Likewise, but the name of the program is preceded by
610 # <variable>=<value> assignments for environment variables.
611 ifndef test-wrapper-env
612 test-wrapper-env = $(test-wrapper) env
613 endif
615 # Whether to run test programs built for the library's host system.
616 ifndef run-built-tests
617 ifeq (yes|,$(cross-compiling)|$(test-wrapper))
618 run-built-tests = no
619 else
620 run-built-tests = yes
621 endif
622 endif
624 # Whether to stop immediately when a test fails.  Nonempty means to
625 # stop, empty means not to stop.
626 ifndef stop-on-test-failure
627 stop-on-test-failure =
628 endif
630 # How to run a program we just linked with our library.
631 # The program binary is assumed to be $(word 2,$^).
632 built-program-file = $(dir $(word 2,$^))$(notdir $(word 2,$^))
633 rtld-prefix = $(elf-objpfx)$(rtld-installed-name)                             \
634               --library-path                                                  \
635               $(rpath-link)$(patsubst %,:%,$(sysdep-library-path))
636 ifeq (yes,$(build-shared))
637 comma = ,
638 sysdep-library-path = \
639 $(subst $(empty) ,:,$(strip $(patsubst -Wl$(comma)-rpath-link=%, %,\
640                                        $(filter -Wl$(comma)-rpath-link=%,\
641                                                 $(sysdep-LDFLAGS)))))
642 # $(run-via-rtld-prefix) is a command that, when prepended to the name
643 # of a program built with the newly built library, produces a command
644 # that, executed on the host for which the library is built, runs that
645 # program.  For tests listed in tests-static or xtests-static, it is
646 # empty.
647 run-via-rtld-prefix =                                                         \
648   $(if $(strip $(filter $(notdir $(built-program-file)),                      \
649                         $(tests-static) $(xtests-static))),, $(rtld-prefix))
650 else
651 run-via-rtld-prefix =
652 endif
653 # $(run-program-env) is the default environment variable settings to
654 # use when running a program built with the newly built library.
655 run-program-env = GCONV_PATH=$(common-objpfx)iconvdata \
656                   LOCPATH=$(common-objpfx)localedata LC_ALL=C
657 # $(run-program-prefix) is a command that, when prepended to the name
658 # of a program built with the newly built library, produces a command
659 # that, executed on the build system on which "make" is run, runs that
660 # program.  $(run-program-prefix-before-env) and
661 # $(run-program-prefix-after-env) are similar, but separate parts
662 # before and after a list of environment variables.
663 run-program-prefix-before-env = $(test-wrapper-env)
664 run-program-prefix-after-env = $(run-via-rtld-prefix)
665 run-program-prefix = $(run-program-prefix-before-env) $(run-program-env) \
666                      $(run-program-prefix-after-env)
667 # $(built-program-cmd) is a command that, executed on the build system
668 # on which "make" is run, runs the newly built program that is the
669 # second dependency of the makefile target in which
670 # $(built-program-cmd) is used.  $(built-program-cmd-before-env) and
671 # $(built-program-cmd-after-env) are similar, before and after a list
672 # of environment variables.
673 built-program-cmd-before-env = $(test-wrapper-env)
674 built-program-cmd-after-env = $(run-via-rtld-prefix) $(built-program-file)
675 built-program-cmd = $(built-program-cmd-before-env) $(run-program-env) \
676                     $(built-program-cmd-after-env)
677 # $(host-built-program-cmd) is a command that, executed on the host
678 # for which the library is built, runs the newly built program that is
679 # the second dependency of the makefile target in which
680 # $(host-built-program-cmd) is used.
681 host-built-program-cmd = $(run-via-rtld-prefix) $(built-program-file)
683 ifndef LD
684 LD := ld -X
685 endif
687 # $(test-via-rtld-prefix) is a command that, when prepended to the name
688 # of a test program built with the newly built library, produces a command
689 # that, executed on the host for which the library is built, runs that
690 # program.  For tests listed in tests-static or xtests-static as well
691 # as when test programs are hardcoded to the newly built libraries, it
692 # is empty.
694 # $(test-program-prefix) is a command that, when prepended to the name
695 # of a test program built with the newly built library, produces a command
696 # that, executed on the build system on which "make" is run, runs that
697 # test program.  $(test-program-prefix-before-env) and
698 # $(test-program-prefix-after-env) are similar, before and after a
699 # list of environment variables.
701 # $(test-program-cmd) is a command that, executed on the build system
702 # on which "make" is run, runs the newly built test program that is the
703 # second dependency of the makefile target in which
704 # $(test-program-cmd) is used.  $(test-program-cmd-before-env) and
705 # $(test-program-cmd-after-env) are similar, before and after a list
706 # of environment variables.
708 # $(host-test-program-cmd) is a command that, executed on the host
709 # for which the library is built, runs the newly built test program that
710 # is the second dependency of the makefile target in which
711 # $(host-test-program-cmd) is used.
713 ifeq (yes,$(build-hardcoded-path-in-tests))
714 test-via-rtld-prefix =
715 test-program-prefix-before-env = $(test-wrapper-env)
716 test-program-prefix-after-env =
717 test-program-prefix = $(test-program-prefix-before-env) $(run-program-env) \
718                       $(test-program-prefix-after-env)
719 test-program-cmd-before-env = $(test-wrapper-env)
720 test-program-cmd-after-env = $(built-program-file)
721 test-program-cmd = $(test-program-cmd-before-env) $(run-program-env) \
722                    $(test-program-cmd-after-env)
723 host-test-program-cmd = $(built-program-file)
724 else
725 test-via-rtld-prefix = $(run-via-rtld-prefix)
726 test-program-prefix-before-env = $(run-program-prefix-before-env)
727 test-program-prefix-after-env = $(run-program-prefix-after-env)
728 test-program-prefix = $(run-program-prefix)
729 test-program-cmd-before-env = $(built-program-cmd-before-env)
730 test-program-cmd-after-env = $(built-program-cmd-after-env)
731 test-program-cmd = $(built-program-cmd)
732 host-test-program-cmd = $(host-built-program-cmd)
733 endif
735 # Extra flags to pass to GCC.
736 ifeq ($(all-warnings),yes)
737 +gccwarn := -Wall -Wwrite-strings -Winline -Wcast-qual -Wbad-function-cast -Wmissing-noreturn -Wmissing-prototypes -Wmissing-declarations -Wcomment -Wcomments -Wtrigraphs -Wsign-compare -Wfloat-equal -Wmultichar
738 else
739 +gccwarn := -Wall -Wwrite-strings -Winline
740 endif
741 +gccwarn += -Wundef
742 ifeq ($(enable-werror),yes)
743 +gccwarn += -Werror -Wno-error=undef
744 endif
745 +gccwarn-c = -Wstrict-prototypes
747 # We do not depend on the address of constants in different files to be
748 # actually different, so allow the compiler to merge them all.
749 +merge-constants = -fmerge-all-constants
751 # We have to assume that glibc functions are called in any rounding
752 # mode and also change the rounding mode in a few functions. So,
753 # disable any optimization that assume default rounding mode.
754 +math-flags = -frounding-math
756 # This is the program that generates makefile dependencies from C source files.
757 # The -MP flag tells GCC >= 3.2 (which we now require) to produce dummy
758 # targets for headers so that removed headers don't break the build.
759 ifndef +mkdep
760 +mkdep = $(CC) -M -MP
761 endif
763 # The program that makes Emacs-style TAGS files.
764 ETAGS   := etags
766 # The `xgettext' program for producing .pot files from sources.
767 ifndef XGETTEXT
768 XGETTEXT = xgettext
769 endif
771 # The `m4' macro processor; this is used by sysdeps/sparc/Makefile (and
772 # perhaps others) to preprocess assembly code in some cases.
773 M4 = m4
775 # To force installation of files even if they are older than the
776 # installed files.  This variable is included in the dependency list
777 # of all installation targets.
778 ifeq ($(force-install),yes)
779 +force = force-install
780 else
781 +force =
782 endif
784 ####
785 #### End of configuration variables.
786 ####
788 # This tells some versions of GNU make before 3.63 not to export all variables.
789 .NOEXPORT:
791 # We want to echo the commands we're running without
792 # umpteen zillion filenames along with it (we use `...' instead)
793 # but we don't want this echoing done when the user has said
794 # he doesn't want to see commands echoed by using -s.
795 ifneq   "$(findstring s,$(MAKEFLAGS))" ""       # if -s
796 +cmdecho        := echo >/dev/null
797 else                                            # not -s
798 +cmdecho        := echo
799 endif                                           # -s
801 # These are the flags given to the compiler to tell
802 # it what sort of optimization and/or debugging output to do.
803 ifndef  +cflags
804 # If `CFLAGS' was defined, use that.
805 ifdef           CFLAGS
806 +cflags := $(filter-out -I%,$(CFLAGS))
807 endif           # CFLAGS
808 endif   # +cflags
810 # If none of the above worked, default to "-g -O".
811 ifeq    "$(strip $(+cflags))" ""
812 +cflags := $(default_cflags)
813 endif   # $(+cflags) == ""
815 +cflags += $(cflags-cpu) $(+gccwarn) $(+merge-constants) $(+math-flags)
816 +gcc-nowarn := -w
818 # Don't duplicate options if we inherited variables from the parent.
819 +cflags := $(sort $(+cflags))
821 # Each sysdeps directory can contain header files that both will be
822 # used to compile and will be installed.  Each can also contain an
823 # include/ subdirectory, whose header files will be used to compile
824 # but will not be installed, and will take precedence over the
825 # installed files.  This mirrors the top-level include/ subdirectory.
826 +sysdep-includes := $(foreach dir,$(+sysdep_dirs),\
827                               $(addprefix -I,$(wildcard $(dir)/include) $(dir)))
829 # These are flags given to the C compiler to tell it to look for
830 # include files (including ones given in angle brackets) in the parent
831 # library source directory, in the include directory, and in the
832 # current directory.
833 +includes = -I$(..)include $(if $(subdir),$(objpfx:%/=-I%)) \
834             $(+sysdep-includes) $(includes) \
835             $(patsubst %/,-I%,$(..)) $(libio-include) -I. $(sysincludes)
837 # Since libio has several internal header files, we use a -I instead
838 # of many little headers in the include directory.
839 libio-include = -I$(..)libio
841 # List of non-library modules that we build.
842 built-modules = iconvprogs iconvdata ldconfig lddlibc4 libmemusage \
843                 libSegFault libpcprofile librpcsvc locale-programs \
844                 memusagestat nonlib nscd extramodules libnldbl
846 # We don't include libc-modules.h when these targets are being built.  These
847 # targets don't (and will likely never need to) use the IS_IN facility.  In
848 # fact, shlib-versions should not use it because that will create a circular
849 # dependency as libc-modules.h is generated from shlib-versions.
850 skip-module-cppflags = shlib-versions.v.i Versions.v.i
852 in-module = $(subst -,_,$(firstword $(libof-$(basename $(@F))) \
853                                     $(libof-$(<F)) \
854                                     $(libof-$(@F)) \
855                                     libc))
857 module-cppflags-real = -include $(common-objpfx)libc-modules.h \
858                        -DMODULE_NAME=$(in-module)
860 # We don't need libc-modules.h and the MODULE_NAME definition for
861 # shlib-version.v.i.
862 module-cppflags = $(if $(filter $(@F),$(skip-module-cppflags)), \
863                        ,$(module-cppflags-real))
865 # These are the variables that the implicit compilation rules use.
866 # Note that we can't use -std=* in CPPFLAGS, because it overrides
867 # the implicit -lang-asm and breaks cpp behavior for .S files--notably
868 # it causes cpp to stop predefining __ASSEMBLER__.
869 CPPFLAGS = $(config-extra-cppflags) $(CPPUNDEFS) $(CPPFLAGS-config) \
870            $($(subdir)-CPPFLAGS) \
871            $(+includes) $(defines) $(module-cppflags) \
872            -include $(..)include/libc-symbols.h $(sysdep-CPPFLAGS) \
873            $(CPPFLAGS-$(suffix $@)) \
874            $(foreach lib,$(libof-$(basename $(@F))) \
875                          $(libof-$(<F)) $(libof-$(@F)),$(CPPFLAGS-$(lib))) \
876            $(CPPFLAGS-$(<F)) $(CPPFLAGS-$(@F)) $(CPPFLAGS-$(basename $(@F)))
877 override CFLAGS = -std=gnu99 $(gnu89-inline-CFLAGS) $(config-extra-cflags) \
878                   $(filter-out %frame-pointer,$(+cflags)) $(+gccwarn-c) \
879                   $(sysdep-CFLAGS) $(CFLAGS-$(suffix $@)) $(CFLAGS-$(<F)) \
880                   $(CFLAGS-$(@F)) \
881                   $(foreach lib,$(libof-$(basename $(@F))) \
882                                 $(libof-$(<F)) $(libof-$(@F)),$(CFLAGS-$(lib)))
883 override CXXFLAGS = $(c++-sysincludes) \
884                     $(filter-out %frame-pointer,$(+cflags)) $(sysdep-CFLAGS) \
885                     $(CFLAGS-$(suffix $@)) $(CFLAGS-$(<F)) $(CFLAGS-$(@F))
887 # If everything is compiled with -fPIC (implicitly) we must tell this by
888 # defining the PIC symbol.
889 ifeq (yes,$(build-pic-default))
890 pic-default = -DPIC
891 endif
893 # Enable object files for different versions of the library.
894 # Various things use $(object-suffixes) to know what all to make.
895 # The compilation rules use $(CPPFLAGS-${SUFFIX}) and $(CFLAGS-${SUFFIX})
896 # to pass different flags for each flavor.
897 libtypes = $(foreach o,$(object-suffixes-for-libc),$(libtype$o))
898 all-object-suffixes := .o .os .op .og .oS
899 object-suffixes :=
900 CPPFLAGS-.o = $(pic-default)
901 CFLAGS-.o = $(filter %frame-pointer,$(+cflags))
902 libtype.o := lib%.a
903 object-suffixes += .o
904 ifeq (yes,$(build-shared))
905 # Under --enable-shared, we will build a shared library of PIC objects.
906 # The PIC object files are named foo.os.
907 object-suffixes += .os
908 CPPFLAGS-.os = -DPIC -DSHARED
909 CFLAGS-.os = $(filter %frame-pointer,$(+cflags)) $(pic-ccflag)
910 libtype.os := lib%_pic.a
911 # This can be changed by a sysdep makefile
912 pic-ccflag = -fPIC
913 # This one should always stay like this unless there is a very good reason.
914 PIC-ccflag = -fPIC
915 endif
916 # This can be changed by a sysdep makefile
917 pie-ccflag = -fpie
918 # This one should always stay like this unless there is a very good reason.
919 PIE-ccflag = -fPIE
920 ifeq (yes,$(build-profile))
921 # Under --enable-profile, we will build a static library of profiled objects.
922 # The profiled object files are named foo.op.
923 object-suffixes += .op
924 CPPFLAGS-.op = -DPROF $(pic-default)
925 CFLAGS-.op = -pg
926 libtype.op = lib%_p.a
927 endif
929 # Convenience variable for when we want to treat shared-library cases
930 # differently from the rest.
931 object-suffixes-noshared := $(filter-out .os,$(object-suffixes))
933 object-suffixes-for-libc := $(object-suffixes)
935 ifeq (yes,$(build-shared))
936 # Build special library that contains the static-only routines for libc.
937 object-suffixes-for-libc += .oS
939 # Must build the routines as PIC, though, because they can end up in (users')
940 # shared objects.  We don't want to use CFLAGS-os because users may, for
941 # example, make that processor-specific.
942 CFLAGS-.oS = $(CFLAGS-.o) $(PIC-ccflag)
943 CPPFLAGS-.oS = $(CPPFLAGS-.o) -DPIC -DLIBC_NONSHARED=1
944 libtype.oS = lib%_nonshared.a
945 endif
947 # The assembler can generate debug information too.
948 ifndef ASFLAGS
949 ASFLAGS := $(filter -g% -fdebug-prefix-map=%,$(CFLAGS))
950 endif
951 ASFLAGS += -Werror=undef $(ASFLAGS-config) $(asflags-cpu)
953 ifndef BUILD_CC
954 BUILD_CC = $(CC)
955 endif
957 move-if-change = $(SHELL) $(..)scripts/move-if-change
959 -include $(common-objpfx)sysd-sorted
960 subdirs = $(sorted-subdirs)
961 subdir-srcdirs = $(foreach dir,$(subdirs),\
962                            $(firstword $($(dir)-srcdir) $(..)$(dir)))
964 # This is a pair of implicit rules to preprocess a file with # comments,
965 # %ifdef et al, based on config.h settings or other %include'd files.
966 # We use chained rules instead of a pipeline here so that we can properly
967 # check the exit status of cpp rather than using its bad output when there
968 # is a preprocessing error.  Another rule should depend on the output file
969 # `FOO.v', and along with that `FOO.v.i' should be given dependencies
970 # listing both its input files, and any header files that it may reference
971 # (but no commands).
972 %.v.i: $(common-objpfx)config.h $(..)Makeconfig
973         sed '/^[        ]*%/!s/#.*$$//;/^[      ]*$$/d;s/^[     ]*%/#/' \
974             $(filter-out FORCE %.h $(..)Makeconfig,$^) \
975         | $(CC) -E -undef $(CPPFLAGS) -x assembler-with-cpp - \
976                    > $@T
977         mv -f $@T $@
978 %.v: %.v.i
979         sed '/^[        ]*#/d;/^[       ]*$$/d' $< > $@T
980         mv -f $@T $@
982 ifeq (yes, $(build-shared))
984 # To generate a header to support more than one ABI for different
985 # architecture variants, the CPU/Makefile defines abi-variants to be a
986 # list of names for those variants (e.g. 32 64), and, for each variant,
987 # defines abi-$(variant)-condition to be the condition for those options
988 # to use in a C #if condition.  abi-includes may be defined to a list of
989 # headers to include in the generated header, if the default does not
990 # suffice.  default-abi is defined to be the ABI for the current glibc
991 # build.
993 ifndef abi-includes
994 abi-includes := bits/wordsize.h
995 endif
997 # Process the shlib-versions file, which tells us what shared library
998 # version numbers to use when we install shared objects on this system.
999 # We need to wait until $(subdirs) is complete.
1000 ifeq ($(sysd-sorted-done),t)
1001 -include $(common-objpfx)soversions.mk
1002 ifndef avoid-generated
1003 # This lets add-ons give more-specific matches that override defaults
1004 # in the top-level file.
1005 $(common-objpfx)shlib-versions.v.i: \
1006         $(wildcard $(+sysdep_dirs:=/shlib-versions) \
1007                    $(subdir-srcdirs:=/shlib-versions)) \
1008         $(..)shlib-versions
1010 $(common-objpfx)soversions.i: $(..)scripts/soversions.awk \
1011                               $(common-objpfx)shlib-versions.v
1012         $(AWK) -f $^ > $@T
1013         mv -f $@T $@
1014 $(common-objpfx)soversions.mk: $(common-objpfx)soversions.i $(..)Makeconfig
1015         (while read which lib number setname; do \
1016            eval seen_$$which=1; \
1017            test x"$$which" = xDEFAULT || continue; \
1018            case $$number in \
1019              [0-9]*) echo "$$lib.so-version=.$$number"; \
1020                      echo "all-sonames+=$$lib=$$lib.so\$$($$lib.so-version)";;\
1021              *)      echo "$$lib.so-version=$$number"; \
1022                      echo "all-sonames+=$$lib=\$$($$lib.so-version)";;\
1023            esac; \
1024          done; \
1025          echo soversions.mk-done = t;) < $< > $@T; exit 0
1026         mv -f $@T $@
1027 endif
1028 endif
1030 postclean-generated += soversions.mk soversions.i \
1031                        shlib-versions.v shlib-versions.v.i
1033 before-compile += $(common-objpfx)libc-modules.h
1034 ifeq ($(soversions.mk-done),t)
1035 # Generate a header with macro definitions for use with the IS_IN macro.
1036 # These are the possible values for the MODULE_NAME macro defined when building
1037 # sources, to identify which module the translation unit is going to be built
1038 # into.
1039 $(common-objpfx)libc-modules.h: $(common-objpfx)libc-modules.stmp; @:
1040 $(common-objpfx)libc-modules.stmp: $(..)scripts/gen-libc-modules.awk \
1041                                    $(common-objpfx)soversions.i
1042         $(AWK) -v buildlist="$(subst -,_,$(built-modules))" -f $^ > ${@:stmp=T}
1043         $(move-if-change) ${@:stmp=T} ${@:stmp=h}
1044         touch $@
1046 endif
1048 common-generated += libc-modules.h libc-modules.stmp
1050 # The name under which the run-time dynamic linker is installed.
1051 # We are currently going for the convention that `/lib/ld.so.1'
1052 # names the SVR4/ELF ABI-compliant dynamic linker.
1053 ifndef rtld-installed-name
1054 ifdef ld.so-version
1055 rtld-installed-name = $(ld.so-version)
1056 else
1057 rtld-installed-name = ld.so.1
1058 endif
1059 endif
1061 ifndef rtld-version-installed-name
1062 rtld-version-installed-name = ld-$(version).so
1063 endif
1065 endif # build-shared
1068 ifeq ($(build-shared),yes)
1069 libdl = $(common-objpfx)dlfcn/libdl.so$(libdl.so-version)
1070 else
1071 libdl = $(common-objpfx)dlfcn/libdl.a
1072 endif
1074 ifeq ($(build-shared),yes)
1075 libm = $(common-objpfx)math/libm.so$(libm.so-version)
1076 else
1077 libm = $(common-objpfx)math/libm.a
1078 endif
1080 # These are the subdirectories containing the library source.  The order
1081 # is more or less arbitrary.  The sorting step will take care of the
1082 # dependencies.
1083 all-subdirs = csu assert ctype locale intl catgets math setjmp signal       \
1084               stdlib stdio-common libio malloc string wcsmbs time dirent    \
1085               grp pwd posix io termios resource misc socket sysvipc gmon    \
1086               gnulib iconv iconvdata wctype manual shadow gshadow po argp   \
1087               crypt localedata timezone rt conform debug                    \
1088               $(add-on-subdirs) dlfcn elf
1090 ifndef avoid-generated
1091 # sysd-sorted itself will contain rules making the sysd-sorted target
1092 # depend on Depend files.  But if you just added a Depend file to an
1093 # existing directory not in all-subdirs, then sysd-sorted needs to
1094 # be regenerated, so it depends on existing $(sorted-subdirs:=/Depend) files.
1095 all-Depend-files := $(wildcard $(sort \
1096                         $(foreach dir,$(all-subdirs),\
1097                                   $(firstword $($(dir)-srcdir) \
1098                                   $(..)$(dir))/Depend) \
1099                         $(sorted-subdirs:=/Depend)))
1100 $(common-objpfx)sysd-sorted: $(..)scripts/gen-sorted.awk \
1101                              $(common-objpfx)config.make $(..)Makeconfig \
1102                              $(wildcard $(sysdirs:=/Subdirs)) \
1103                              $(all-Depend-files)
1104         $(AWK) -f $< \
1105                -v subdirs='$(all-subdirs)' \
1106                -v srcpfx='$(..)' \
1107                $(filter %/Subdirs %/Depend,$^) > $@-tmp
1108         mv -f $@-tmp $@
1109 $(all-Depend-files): ;
1110 endif
1112 # This gives partial TARGET:SOURCE pattern pairs to have rules
1113 # emitted into sysd-rules.  A sysdeps Makeconfig fragment can
1114 # add its own special object file prefix to this list with e.g. foo-%:%
1115 # to have foo-*.? compiled from *.? using $(foo-CPPFLAGS).
1116 sysd-rules-patterns := %:% rtld-%:rtld-% rtld-%:% m_%:s_%
1118 # Let sysdeps/ subdirs contain a Makeconfig fragment for us to include here.
1119 sysdep-makeconfigs := $(wildcard $(+sysdep_dirs:=/Makeconfig))
1120 ifneq (,$(sysdep-makeconfigs))
1121 include $(sysdep-makeconfigs)
1122 endif
1124 # Compute just the target patterns.  Makeconfig has set sysd-rules-patterns.
1125 sysd-rules-targets := $(sort $(foreach p,$(sysd-rules-patterns),\
1126                                          $(firstword $(subst :, ,$p))))
1128 # A sysdeps Makeconfig fragment may set libc-reentrant to yes.
1129 ifeq (yes,$(libc-reentrant))
1130 defines += -D_LIBC_REENTRANT
1132 libio-mtsafe = -D_IO_MTSAFE_IO
1133 endif
1135 # The name to give to a test in test results summaries.
1136 test-name = $(strip $(patsubst %.out, %, $(patsubst $(common-objpfx)%, %, $@)))
1138 # Likewise, in XFAIL variable names.
1139 test-xfail-name = $(strip $(patsubst %.out, %, $(patsubst $(objpfx)%, %, $@)))
1141 # Command to output a test status line (such as PASS: test-name).  If
1142 # test-xfail-$(test-xfail-name) has a nonempty value, the status will be
1143 # XPASS or XFAIL rather than PASS or FAIL.
1144 evaluate-test = $(..)scripts/evaluate-test.sh $(test-name) $$? \
1145                   $(if $(test-xfail-$(test-xfail-name)),true,false) \
1146                   $(if $(stop-on-test-failure),true,false) \
1147                   > $(common-objpfx)$(test-name).test-result
1149 endif # Makeconfig not yet included
1151 # Local Variables:
1152 # mode: makefile
1153 # End: