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