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