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