]> git.ipfire.org Git - thirdparty/glibc.git/blame - Makeconfig
Regenerated: autoconf configure.in
[thirdparty/glibc.git] / Makeconfig
CommitLineData
5290baf0 1# Copyright (C) 1991, 92, 93, 94, 95, 96, 97 Free Software Foundation, Inc.
28f540f4
RM
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 Library General Public License as
6# published by the Free Software Foundation; either version 2 of the
7# 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# Library General Public License for more details.
13
14# You should have received a copy of the GNU Library General Public
0c5ecdc4
UD
15# License along with the GNU C Library; see the file COPYING.LIB. If not,
16# write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17# Boston, MA 02111-1307, USA.
28f540f4
RM
18
19#
20# Makefile configuration options for the GNU C library.
21#
22ifneq (,)
23This makefile requires GNU Make.
24endif
25
26ifneq "$(origin +included-Makeconfig)" "file"
27
28+included-Makeconfig := yes
29
30ifdef subdir
31.. := ../
32endif
33
34# If config.make exists, the source directory was configured,
35# so don't try to be clever and find another directory to build in.
36ifneq (,$(wildcard $(..)config.make))
37ARCH =
38machine =
39else # Not configured.
40ifndef ARCH
41ifdef machine
42ARCH = $(machine)
43endif # machine
44endif # ARCH
45endif # config.make
46
47# Directory for object files and libc.a. If this is not defined, the
48# object files live in the subdirectories where their sources live, and
49# libc.a lives in the parent directory (this probably doesn't work any
50# more).
51ifdef ARCH
52ifeq ($(filter /%,$(ARCH)),)
53objdir := $(..)$(ARCH)
54else
55objdir = $(ARCH)
56endif
57endif
58
094bacdb 59# $(common-objdir) is the place to put objects and
28f540f4
RM
60# such that are not specific to a single subdir.
61ifdef objdir
6e953631
UD
62objpfx := $(patsubst %//,%/,$(objdir)/$(subdir)/)
63common-objpfx = $(objdir)/
28f540f4
RM
64common-objdir = $(objdir)
65else
66objpfx :=
67ifdef ..
68common-objpfx = $(..)
69common-objdir = ..
70else
71# This is a kludge. make wizards might grok.
72common-objpfx = sysdeps/../
73common-objdir = .
74endif
75endif
76
f332db02
RM
77# Root of the sysdeps tree.
78sysdep_dir := $(..)sysdeps
79export sysdep_dir := $(sysdep_dir)
80
28f540f4
RM
81# Get the values defined by options to `configure'.
82include $(common-objpfx)config.make
83
57ba7bb4
UD
84# Complete path to sysdep dirs.
85full-config-sysdirs := $(filter /%, $(config-sysdirs)) \
86 $(addprefix $(..), $(filter-out /%, $(config-sysdirs)))
87export full-config-sysdirs := $(full-config-sysdirs)
88
273d56ce
RM
89# Run config.status to update config.make and config.h. We don't show the
90# dependence of config.h to Make, because it is only touched when it
91# changes and so config.status would be run every time; the dependence of
92# config.make should suffice to force regeneration and re-exec, and the new
93# image will notice if config.h changed.
d43e0478 94$(common-objpfx)config.make: $(common-objpfx)config.status $(..)config.h.in
273d56ce
RM
95 cd $(<D); $(SHELL) $(<F)
96
7da3079b
RM
97# Find all the sysdeps configure fragments, to make sure we re-run
98# configure when any of them changes.
5290baf0 99$(common-objpfx)config.status: $(..)version.h $(..)configure \
57ba7bb4 100 $(foreach dir,$(full-config-sysdirs),\
e50ec9f9 101 $(wildcard \
57ba7bb4 102 $(dir)/Implies) \
f332db02
RM
103 $(patsubst %.in,%,\
104 $(firstword $(wildcard \
57ba7bb4 105 $(addprefix $(dir)/,configure configure.in)))))
273d56ce
RM
106 @cd $(@D); if test -f $(@F); then exec $(SHELL) $(@F) --recheck; else \
107 echo The GNU C library has not been configured. >&2; \
108 echo Run \`configure\' to configure it before building. >&2; \
109 echo Try \`configure --help\' for more details. >&2; \
110 exit 1; fi
28f540f4
RM
111
112# Get the user's configuration parameters.
113ifneq ($(wildcard $(..)configparms),)
114include $(..)configparms
115endif
116ifneq ($(objpfx),)
6e953631
UD
117ifneq ($(wildcard $(common-objpfx)configparms),)
118include $(common-objpfx)configparms
28f540f4
RM
119endif
120endif
28f540f4
RM
121\f
122####
123#### These are the configuration variables. You can define values for
124#### the variables below in the file `configparms'.
125#### Do NOT edit this file.
126####
127
128
deab9dea
RM
129# Set this to either `stdio' or `libio', to compile in either GNU stdio
130# or GNU libio.
131ifndef stdio
132stdio = stdio
133endif
134
28f540f4 135# Common prefix for machine-independent installation directories.
487253ea 136ifeq ($(origin prefix),undefined) # ifndef would override explicit empty value.
28f540f4
RM
137prefix = /usr/local
138endif
139
140# Common prefix for machine-dependent installation directories.
487253ea 141ifeq ($(origin exec_prefix),undefined)
28f540f4
RM
142exec_prefix = $(prefix)
143endif
144
145# Where to install the library and object files.
146ifndef libdir
147libdir = $(exec_prefix)/lib
148endif
149
094bacdb
RM
150# Where to install the shared library and dynamic linker.
151ifndef slibdir
152slibdir = $(exec_prefix)/lib
153endif
154
28f540f4
RM
155# Prefix to put on files installed in $(libdir). For libraries `libNAME.a',
156# the prefix is spliced between `lib' and the name, so the linker switch
157# `-l$(libprefix)NAME' finds the library; for other files the prefix is
158# just prepended to the whole file name.
487253ea 159ifeq ($(origin libprefix),undefined)
28f540f4
RM
160libprefix =
161endif
162
163# Where to install the header files.
164ifndef includedir
165includedir = $(exec_prefix)/include
166endif
167
28f540f4 168# Where to install machine-independent data files.
a2fe9c76 169# These are the timezone database, and the locale database.
28f540f4
RM
170ifndef datadir
171datadir = $(prefix)/share
172endif
173
174# Where to install the timezone data files (which are machine-independent).
175ifndef zonedir
176zonedir = $(datadir)/zoneinfo
177endif
178
3ec41e03
RM
179# Where to install the locale and message catalog data files (which are
180# machine-independent).
a2fe9c76
RM
181ifndef localedir
182localedir = $(datadir)/locale
183endif
184
3ec41e03 185# Where to install the locale charmap source files.
19bc17a9
RM
186ifndef i18ndir
187i18ndir = $(datadir)/i18n
a2fe9c76
RM
188endif
189
190
28f540f4
RM
191# Where to install programs.
192ifndef bindir
193bindir = $(exec_prefix)/bin
194endif
195
196# Where to install administrative programs.
197ifndef sbindir
198sbindir = $(exec_prefix)/sbin
199endif
200
201# Where to install the Info files.
202ifndef infodir
203infodir = $(prefix)/info
204endif
205
206# Where to install default configuration files. These include the local
207# timezone specification and network data base files.
208ifndef sysconfdir
209sysconfdir = $(prefix)/etc
210endif
211
212# What timezone should be the installed default (e.g., US/Eastern).
213# Run `make -C time echo-zonenames' to see a list of available zone names.
214# The local timezone can be changed with `zic -l TIMEZONE' at any time.
215ifndef localtime
216localtime = Factory
217endif
218
219# Where to install the "localtime" timezone file; this is the file whose
220# contents $(localtime) specifies. If this is a relative pathname, it is
221# relative to $(zonedir). It is a good idea to put this somewhere
222# other than there, so the zoneinfo directory contains only universal data,
223# localizing the configuration data elsewhere.
224ifndef localtime-file
225localtime-file = $(sysconfdir)/localtime
226endif
227
59dd8641
RM
228# What to use for leap second specifications in compiling the default
229# timezone files. Set this to `/dev/null' for no leap second handling as
230# 1003.1 requires, or to `leapseconds' for proper leap second handling.
231# Both zone flavors are always available as `posix/ZONE' and `right/ZONE'.
232# This variable determines the default: if it's `/dev/null',
233# ZONE==posix/ZONE; if it's `leapseconds', ZONE==right/ZONE.
234ifndef leapseconds
235leapseconds = /dev/null
236endif
237
28f540f4
RM
238# What timezone's DST rules should be used when a POSIX-style TZ
239# environment variable doesn't specify any rules. For 1003.1 compliance
240# this timezone must use rules that are as U.S. federal law defines DST.
241# Run `make -C time echo-zonenames' to see a list of available zone names.
242# This setting can be changed with `zic -p TIMEZONE' at any time.
243# If you want POSIX.1 compatibility, use `America/New_York'.
244ifndef posixrules
245posixrules = America/New_York
246endif
247
248# Where to install the "posixrules" timezone file; this is file
249# whose contents $(posixrules) specifies. If this is a relative
250# pathname, it is relative to $(zonedir).
251ifndef posixrules-file
252posixrules-file = posixrules
253endif
254
255
256# Directory where your system's native header files live.
257# This is used on Unix systems to generate some GNU libc header files.
258ifndef sysincludedir
259sysincludedir = /usr/include
260endif
261
262
263# Commands to install files.
264ifndef INSTALL_DATA
265INSTALL_DATA = $(INSTALL) -m 644
266endif
267ifndef INSTALL_PROGRAM
268INSTALL_PROGRAM = $(INSTALL)
269endif
270ifndef INSTALL
271INSTALL = install
272endif
273
274
275# The name of the C compiler.
276# If you've got GCC, and it works, use it.
277ifeq ($(origin CC),default)
278CC := gcc
279endif
280
281# The name of the C compiler to use for compilations of programs to run on
282# the host that is building the library. If you set CC to a
283# cross-compiler, you must set this to the normal compiler.
284ifndef BUILD_CC
285BUILD_CC = $(CC)
286endif
287
288# Default flags to pass the C compiler.
289ifndef default_cflags
a8922de8 290default_cflags := -g -O
28f540f4
RM
291endif
292
293# Flags to pass the C compiler when assembling preprocessed assembly code
294# (`.S' files). On some systems the assembler doesn't understand the `#' line
295# directives the preprocessor produces. If you have troubling compiling
296# assembly code, try using -P here to suppress these directives.
297ifndef asm-CPPFLAGS
298asm-CPPFLAGS =
299endif
300
301# Command for linking programs with the C library.
302ifndef +link
8e3cc80f
RM
303+link = $(CC) -nostdlib -nostartfiles -o $@ \
304 $(sysdep-LDFLAGS) $(config-LDFLAGS) $(LDFLAGS) \
08e5142a 305 $(addprefix $(csu-objpfx),start.o) $(+preinit) \
c2bb8cab
UD
306 $(filter-out $(addprefix $(csu-objpfx),start.o) $(+preinit) \
307 $(link-extra-libs) $(common-objpfx)libc% $(+postinit),$^) \
57ba7bb4 308 $(link-extra-libs) $(link-libc) $(+postinit)
28f540f4 309endif
b122c703
RM
310ifndef config-LDFLAGS
311ifeq (yes,$(build-shared))
094bacdb 312config-LDFLAGS = -Wl,-dynamic-linker=$(slibdir)/$(rtld-installed-name)
b122c703
RM
313endif
314endif
3fe9de0d
RM
315ifndef link-libc
316ifeq (yes,$(build-shared))
aa1075ea
RM
317# We need the versioned name of libc.so in the deps of $(others) et al
318# so that the symlink to libc.so is created before anything tries to
319# run the linked programs.
4d6acc61 320link-libc = -Wl,-rpath-link=$(rpath-link) \
aa1075ea 321 $(common-objpfx)libc.so$(libc.so-version) \
852fc4b9 322 $(elfobjdir)/$(rtld-installed-name) \
aa1075ea 323 $(common-objpfx)libc.a $(gnulib)
4cb20290
RM
324# Choose the default search path for the dynamic linker based on
325# where we will install libraries.
326ifneq ($(libdir),$(slibdir))
327default-rpath = $(slibdir):$(libdir)
328else
329default-rpath = $(libdir)
330endif
4d6acc61 331# This is how to find at build-time things that will be installed there.
5f0e6fc7 332rpath-link = $(common-objdir):$(elfobjdir):$(nssobjdir)
47707456 333elfobjdir := $(patsubst ../$(subdir),.,$(common-objpfx)elf)
6e953631 334nssobjdir := $(patsubst ../$(subdir),.,$(common-objpfx)nss)
3fe9de0d
RM
335else
336link-libc = $(common-objpfx)libc.a $(gnulib) $(common-objpfx)libc.a
337endif
338endif
57ba7bb4
UD
339ifndef link-extra-libs
340ifeq (yes,$(build-shared))
341link-extra-libs = $(foreach lib,$(LDLIBS-$(@F)),$(common-objpfx)$(lib).so$($(notdir $(lib)).so-version))
342else
343link-extra-libs = $(foreach lib,$(LDLIBS-$(@F)),$(common-objpfx)$(lib).a)
344endif
345endif
28f540f4
RM
346ifndef gnulib
347gnulib := -lgcc
348endif
96f873b9 349ifeq ($(elf),yes)
e75154a6
RM
350+preinit = $(addprefix $(csu-objpfx),crti.o)
351+postinit = $(addprefix $(csu-objpfx),crtn.o)
96f873b9 352endif
6e953631
UD
353csu-objpfx = $(common-objpfx)csu/
354elf-objpfx = $(common-objpfx)elf/
57ba7bb4 355db-objpfx = $(common-objpfx)db/
28f540f4 356
03a75825
RM
357# How to run a program we just linked with our library.
358# The program binary is assumed to be $(word 2,$^).
359built-program-file = $(dir $(word 2,$^))$(notdir $(word 2,$^))
360ifneq (yes,$(build-shared))
361built-program-cmd = $(built-program-file)
362else
196980f5 363comma = ,
11336c16
UD
364sysdep-library-path = \
365$(subst $(empty) ,:,$(strip $(patsubst -Wl$(comma)-rpath-link=%, %,\
366 $(filter -Wl$(comma)-rpath-link=%,\
367 $(sysdep-LDFLAGS)))))
03a75825 368define built-program-cmd
11336c16 369LD_LIBRARY_PATH=$(rpath-link)$(patsubst %,:%,$(sysdep-library-path)) \
96bda0ea 370$(elf-objpfx)$(rtld-installed-name) $(built-program-file)
03a75825
RM
371endef
372endif
373
28f540f4
RM
374ifndef LD
375LD := ld -X
376endif
377
378ifndef RANLIB
379RANLIB = ranlib
380endif
381
382# Extra flags to pass to GCC.
522548fb 383+gccwarn := -Wall -Wwrite-strings -Wno-parentheses -Winline -Wstrict-prototypes
28f540f4
RM
384
385# This is the program that generates makefile
386# dependencies from C source files.
387ifndef +mkdep
388+mkdep = $(CC) -M
389endif
390
391# The program that makes Emacs-style TAGS files.
392ETAGS := etags -T
393
394# The `m4' macro processor; this is used by sysdeps/sparc/Makefile (and
395# perhaps others) to preprocess assembly code in some cases.
396M4 = m4
397
398####
399#### End of configuration variables.
400####
401\f
402# This tells some versions of GNU make before 3.63 not to export all variables.
403.NOEXPORT:
404
405# We want to echo the commands we're running without
6d52618b 406# umpteen zillion filenames along with it (we use `...' instead)
28f540f4
RM
407# but we don't want this echoing done when the user has said
408# he doesn't want to see commands echoed by using -s.
409ifneq "$(findstring s,$(MAKEFLAGS))" "" # if -s
410+cmdecho := echo >/dev/null
411else # not -s
412+cmdecho := echo
413endif # -s
414
415# These are the flags given to the compiler to tell
416# it what sort of optimization and/or debugging output to do.
417ifndef +cflags
418# If `CFLAGS' was defined, use that.
419ifdef CFLAGS
420+cflags := $(filter-out -I%,$(CFLAGS))
421endif # CFLAGS
422endif # +cflags
423
424# If none of the above worked, default to "-g".
425ifeq "$(strip $(+cflags))" ""
426+cflags := $(default_cflags)
427endif # $(+cflags) == ""
428
28f540f4
RM
429+cflags := $(+cflags) $(+gccwarn)
430+gcc-nowarn := -w
28f540f4
RM
431
432# Don't duplicate options if we inherited variables from the parent.
433+cflags := $(sort $(+cflags))
434
435
436# These are flags given to the C compiler to tell it to look for include
437# files (including ones given in angle brackets) in the current directory
438# and in the parent library source directory.
439# `+sysdep-includes' will be defined by Makerules.
96aa2d94 440+includes = -I. $(filter-out -I,-I$(patsubst %/,%,$(..))) $($(stdio)-include) \
28f540f4
RM
441 $(includes) $(+sysdep-includes) $(last-includes)
442
96aa2d94
RM
443# Since libio has several internal header files, we use a -I instead
444# of many little headers in the top level source directory.
445libio-include = -I$(..)libio
28f540f4
RM
446
447# These are the variables that the implicit compilation rules use.
448CPPFLAGS = $(+includes) $(defines) -include $(..)libc-symbols.h \
8a4b65b4
UD
449 $(sysdep-CPPFLAGS) $(CPPFLAGS-$(suffix $@)) $(CPPFLAGS-$(<F)) \
450 $(CPPFLAGS-$(@F))
d99d7e26 451override CFLAGS = $(+cflags) $(sysdep-CFLAGS) $(CFLAGS-$(suffix $@)) \
8a4b65b4 452 $(CFLAGS-$(<F)) $(CFLAGS-$(@F))
28f540f4
RM
453
454
455# This is the macro that the implicit linking rules use.
456ifneq "$(filter -g,$(+cflags))" "" # -g is in $(+cflags)
457LDFLAGS := -g
458endif
459
f0bf9cb9
RM
460
461# Enable object files for different versions of the library.
462# Various things use $(object-suffixes) to know what all to make.
463# The compilation rules use $(CPPFLAGS-${SUFFIX}) and $(CFLAGS-${SUFFIX})
464# to pass different flags for each flavor.
465libtypes = $(foreach o,$(object-suffixes),$(libtype$o))
466object-suffixes := .o
467libtype.o := lib%.a
468ifeq (yes,$(build-shared))
469# Under --enable-shared, we will build a shared library of PIC objects.
470# The PIC object files are named foo.so.
471object-suffixes += .so
472CPPFLAGS-.so = -DPIC
473CFLAGS-.so = -fPIC
474libtype.so := lib%_pic.a
475endif
476ifeq (yes,$(build-profile))
477# Under --enable-profile, we will build a static library of profiled objects.
478# The profiled object files are named foo.po.
479object-suffixes += .po
a182affd 480CPPFLAGS-.po = -DPROF
7c97bb09 481CFLAGS-.po = -pg
f0bf9cb9
RM
482libtype.po = lib%_p.a
483endif
484ifeq (yes,$(build-omitfp))
485# Under --enable-omitfp, we build an the library optimized without
486# debugging information using -fomit-frame-pointer, and build an extra
487# library with debugging information. The debuggable objects are named foo.go.
488object-suffixes += .go
489CFLAGS-.go = -g
490CFLAGS-.o = -g0 -O99 -fomit-frame-pointer
a8922de8 491CFLAGS-.so += $(CFLAGS-.o)
f0bf9cb9
RM
492libtype.go = lib%_g.a
493endif
494
495
28f540f4
RM
496+gnu-stabs = $(shell echo>&2 '*** BARF ON ME')
497
96bda0ea
RM
498ifndef BUILD_CC
499BUILD_CC = $(CC)
500endif
501
28f540f4
RM
502ifneq ($(BUILD_CC),$(CC))
503cross-compiling := yes
504else
505cross-compiling := no
506endif
a641835a
RM
507\f
508# Figure out the version numbers from version.h.
28f540f4 509
0e3426bb
RM
510$(common-objpfx)version.mk: $(..)version.h $(..)Makeconfig
511 sed -n -e 's/^.*RELEASE.*"\([^"]*\)".*$$/release=\1/p' \
512 -e 's/^.*VERSION.*"\([^"]*\)".*$$/version=\1/p' \
a641835a
RM
513 < $< > $@-new
514 mv -f $@-new $@
28f540f4 515
4de1d597
RM
516ifeq (yes, $(build-shared))
517
518# Process the shlib-versions file, which tells us what shared library
519# version numbers to use when we install shared objects on this system.
520-include $(common-objpfx)soversions.mk
521$(common-objpfx)soversions.mk: $(..)shlib-versions $(..)Makeconfig \
edf5b2d7
UD
522 $(wildcard $(patsubst %, $(..)%/shlib-versions,\
523 $(add-ons))) \
4de1d597 524 $(common-objpfx)config.make
ec4b0518
UD
525 (file="$(wildcard $(patsubst %,$(..)%/shlib-versions,$(add-ons))) \
526 $(..)shlib-versions"; \
edf5b2d7 527 for f in $$file; do \
8a523922
UD
528 sed 's/#.*$$//' $$f | while read conf versions; do \
529 test -n "$$versions" && \
530 test `expr '$(config-machine)-$(config-vendor)-$(config-os)' \
531 : "$$conf"` != 0 || continue; \
edf5b2d7
UD
532 for v in $$versions; do \
533 lib=`echo $$v | sed 's/=.*$$//'`; \
534 if eval "test -z \"\$$vers_lib$$lib\""; then \
535 eval vers_lib$${lib}=yes; \
d41c6f61
UD
536 number=`echo $$v | sed "s/^.*=//"`; \
537 case $$number in \
ba1ffaa1
UD
538 [0-9]*) echo "$$lib.so-version=.$$number"; \
539 echo "all-sonames+=$$lib.so\$$($$lib.so-version)";;\
540 *) echo "$$lib.so-version=$$number"; \
541 echo "all-sonames+=\$$($$lib.so-version)";; \
8a523922 542 esac; \
edf5b2d7 543 fi; \
8a523922
UD
544 done; \
545 done; \
edf5b2d7 546 done;) > $@T; exit 0
4de1d597
RM
547 mv -f $@T $@
548
549# Get $(version) defined with the release version number.
550-include $(common-objpfx)version.mk
551
d41c6f61
UD
552
553# The name under which the run-time dynamic linker is installed.
554# We are currently going for the convention that `/lib/ld.so.1'
555# names the SVR4/ELF ABI-compliant dynamic linker.
556ifndef rtld-installed-name
557ifdef ld.so-version
558rtld-installed-name = $(ld.so-version)
559else
560rtld-installed-name = ld.so.1
561endif
562endif
563
4de1d597
RM
564endif # build-shared
565
28f540f4 566endif # Makeconfig not yet included