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