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