update from main archive 961005
[glibc.git] / Makeconfig
blob8eb15d0c6411d53b599f3fa24fa4183d3fda9bf1
1 # Copyright (C) 1991, 92, 93, 94, 95, 96 Free Software Foundation, Inc.
2 # This file is part of the GNU C Library.
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.
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.
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.
20 #       Makefile configuration options for the GNU C library.
22 ifneq (,)
23 This makefile requires GNU Make.
24 endif
26 ifneq "$(origin +included-Makeconfig)" "file"
28 +included-Makeconfig := yes
30 ifdef subdir
31 .. := ../
32 endif
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.
36 ifneq (,$(wildcard $(..)config.make))
37 ARCH =
38 machine =
39 else    # Not configured.
40 ifndef ARCH
41 ifdef machine
42 ARCH = $(machine)
43 endif # machine
44 endif # ARCH
45 endif # config.make
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).
51 ifdef ARCH
52 ifeq ($(filter /%,$(ARCH)),)
53 objdir := $(..)$(ARCH)
54 else
55 objdir = $(ARCH)
56 endif
57 endif
59 # $(common-objdir) is the place to put objects and
60 # such that are not specific to a single subdir.
61 ifdef objdir
62 objpfx := $(patsubst %//,%/,$(objdir)/$(subdir)/)
63 common-objpfx = $(objdir)/
64 common-objdir = $(objdir)
65 else
66 objpfx :=
67 ifdef ..
68 common-objpfx = $(..)
69 common-objdir = ..
70 else
71 # This is a kludge.  make wizards might grok.
72 common-objpfx = sysdeps/../
73 common-objdir = .
74 endif
75 endif
77 # Root of the sysdeps tree.
78 sysdep_dir := $(..)sysdeps
79 export sysdep_dir := $(sysdep_dir)
81 # Get the values defined by options to `configure'.
82 include $(common-objpfx)config.make
84 # Complete path to sysdep dirs.
85 full-config-sysdirs := $(filter /%, $(config-sysdirs)) \
86                        $(addprefix $(..), $(filter-out /%, $(config-sysdirs)))
87 export full-config-sysdirs := $(full-config-sysdirs)
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.
94 $(common-objpfx)config.make: $(common-objpfx)config.status $(..)config.h.in
95         cd $(<D); $(SHELL) $(<F)
97 # Find all the sysdeps configure fragments, to make sure we re-run
98 # configure when any of them changes.
99 $(common-objpfx)config.status: $(..)configure \
100                                $(foreach dir,$(full-config-sysdirs),\
101                                          $(wildcard \
102                                            $(dir)/Implies) \
103                                          $(patsubst %.in,%,\
104                                                     $(firstword $(wildcard \
105  $(addprefix $(dir)/,configure configure.in)))))
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
112 # Get the user's configuration parameters.
113 ifneq ($(wildcard $(..)configparms),)
114 include $(..)configparms
115 endif
116 ifneq ($(objpfx),)
117 ifneq ($(wildcard $(common-objpfx)configparms),)
118 include $(common-objpfx)configparms
119 endif
120 endif
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 ####
129 # Set this to either `stdio' or `libio', to compile in either GNU stdio
130 # or GNU libio.
131 ifndef stdio
132 stdio = stdio
133 endif
135 # Common prefix for machine-independent installation directories.
136 ifeq ($(origin prefix),undefined) # ifndef would override explicit empty value.
137 prefix = /usr/local
138 endif
140 # Common prefix for machine-dependent installation directories.
141 ifeq ($(origin exec_prefix),undefined)
142 exec_prefix = $(prefix)
143 endif
145 # Where to install the library and object files.
146 ifndef libdir
147 libdir = $(exec_prefix)/lib
148 endif
150 # Where to install the shared library and dynamic linker.
151 ifndef slibdir
152 slibdir = $(exec_prefix)/lib
153 endif
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.
159 ifeq ($(origin libprefix),undefined)
160 libprefix =
161 endif
163 # Where to install the header files.
164 ifndef includedir
165 includedir = $(exec_prefix)/include
166 endif
168 # Where to install machine-independent data files.
169 # These are the timezone database, and the locale database.
170 ifndef datadir
171 datadir = $(prefix)/share
172 endif
174 # Where to install the timezone data files (which are machine-independent).
175 ifndef zonedir
176 zonedir = $(datadir)/zoneinfo
177 endif
179 # Where to install the locale and message catalog data files (which are
180 # machine-independent).
181 ifndef localedir
182 localedir = $(datadir)/locale
183 endif
185 # Where to install the locale charmap source files.
186 ifndef i18ndir
187 i18ndir = $(datadir)/i18n
188 endif
191 # Where to install programs.
192 ifndef bindir
193 bindir = $(exec_prefix)/bin
194 endif
196 # Where to install administrative programs.
197 ifndef sbindir
198 sbindir = $(exec_prefix)/sbin
199 endif
201 # Where to install the Info files.
202 ifndef infodir
203 infodir = $(prefix)/info
204 endif
206 # Where to install default configuration files.  These include the local
207 # timezone specification and network data base files.
208 ifndef sysconfdir
209 sysconfdir = $(prefix)/etc
210 endif
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.
215 ifndef localtime
216 localtime = Factory
217 endif
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.
224 ifndef localtime-file
225 localtime-file = $(sysconfdir)/localtime
226 endif
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.
234 ifndef leapseconds
235 leapseconds = /dev/null
236 endif
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'.
244 ifndef posixrules
245 posixrules = America/New_York
246 endif
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).
251 ifndef posixrules-file
252 posixrules-file = posixrules
253 endif
256 # Directory where your system's native header files live.
257 # This is used on Unix systems to generate some GNU libc header files.
258 ifndef sysincludedir
259 sysincludedir = /usr/include
260 endif
263 # Commands to install files.
264 ifndef INSTALL_DATA
265 INSTALL_DATA = $(INSTALL) -m 644
266 endif
267 ifndef INSTALL_PROGRAM
268 INSTALL_PROGRAM = $(INSTALL)
269 endif
270 ifndef INSTALL
271 INSTALL = install
272 endif
275 # The name of the C compiler.
276 # If you've got GCC, and it works, use it.
277 ifeq ($(origin CC),default)
278 CC := gcc
279 endif
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.
284 ifndef BUILD_CC
285 BUILD_CC = $(CC)
286 endif
288 # Default flags to pass the C compiler.
289 ifndef default_cflags
290 default_cflags := -g -O
291 endif
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.
297 ifndef asm-CPPFLAGS
298 asm-CPPFLAGS =
299 endif
301 # Command for linking programs with the C library.
302 ifndef +link
303 +link = $(CC) -nostdlib -nostartfiles -o $@ \
304               $(sysdep-LDFLAGS) $(config-LDFLAGS) $(LDFLAGS)  \
305               $(addprefix $(csu-objpfx),start.o) $(+preinit) \
306               $(filter-out $(addprefix $(csu-objpfx),start.o) $(+preinit) \
307                 $(link-extra-libs) $(common-objpfx)libc% $(+postinit),$^) \
308               $(link-extra-libs) $(link-libc) $(+postinit)
309 endif
310 ifndef config-LDFLAGS
311 ifeq (yes,$(build-shared))
312 config-LDFLAGS = -Wl,-dynamic-linker=$(slibdir)/$(rtld-installed-name)
313 endif
314 endif
315 ifndef link-libc
316 ifeq (yes,$(build-shared))
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.
320 link-libc = -Wl,-rpath-link=$(rpath-link) \
321             $(common-objpfx)libc.so$(libc.so-version) \
322             $(elfobjdir)/$(rtld-installed-name) \
323             $(common-objpfx)libc.a $(gnulib)
324 # Choose the default search path for the dynamic linker based on
325 # where we will install libraries.
326 ifneq ($(libdir),$(slibdir))
327 default-rpath = $(slibdir):$(libdir)
328 else
329 default-rpath = $(libdir)
330 endif
331 # This is how to find at build-time things that will be installed there.
332 rpath-link = $(common-objdir):$(elfobjdir):$(nssobjdir)
333 nssobjdir := $(patsubst ../$(subdir),.,$(common-objpfx)nss)
334 else
335 link-libc = $(common-objpfx)libc.a $(gnulib) $(common-objpfx)libc.a
336 endif
337 endif
338 ifndef link-extra-libs
339 ifeq (yes,$(build-shared))
340 link-extra-libs = $(foreach lib,$(LDLIBS-$(@F)),$(common-objpfx)$(lib).so$($(notdir $(lib)).so-version))
341 else
342 link-extra-libs = $(foreach lib,$(LDLIBS-$(@F)),$(common-objpfx)$(lib).a)
343 endif
344 endif
345 ifndef gnulib
346 gnulib := -lgcc
347 endif
348 ifeq ($(elf),yes)
349 +preinit = $(addprefix $(csu-objpfx),crti.o)
350 +postinit = $(addprefix $(csu-objpfx),crtn.o)
351 endif
352 csu-objpfx = $(common-objpfx)csu/
353 elf-objpfx = $(common-objpfx)elf/
354 db-objpfx = $(common-objpfx)db/
356 ifeq (yes,$(build-shared))
357 # The name under which the run-time dynamic linker is installed.
358 # We are currently going for the convention that `/lib/ld.so.1'
359 # names the SVR4/ELF ABI-compliant dynamic linker.
360 ifndef rtld-installed-name
361 rtld-installed-name = ld.so.1
362 endif
363 endif
365 # How to run a program we just linked with our library.
366 # The program binary is assumed to be $(word 2,$^).
367 built-program-file = $(dir $(word 2,$^))$(notdir $(word 2,$^))
368 ifneq (yes,$(build-shared))
369 built-program-cmd = $(built-program-file)
370 else
371 comma = ,
372 define built-program-cmd
373 LD_LIBRARY_PATH=$(rpath-link)$(patsubst -Wl$(comma)-rpath-link=%,:%,\
374                                          $(filter -Wl$(comma)-rpath-link=%,\
375                                                   $(sysdep-LDFLAGS))) \
376 $(elf-objpfx)$(rtld-installed-name) $(built-program-file)
377 endef
378 endif
380 ifndef LD
381 LD := ld -X
382 endif
384 ifndef  RANLIB
385 RANLIB = ranlib
386 endif
388 # Extra flags to pass to GCC.
389 +gccwarn := -Wall -Wwrite-strings -Wno-parentheses -Winline -Wstrict-prototypes
391 # This is the program that generates makefile
392 # dependencies from C source files.
393 ifndef +mkdep
394 +mkdep = $(CC) -M
395 endif
397 # The program that makes Emacs-style TAGS files.
398 ETAGS   := etags -T
400 # The `m4' macro processor; this is used by sysdeps/sparc/Makefile (and
401 # perhaps others) to preprocess assembly code in some cases.
402 M4 = m4
404 ####
405 #### End of configuration variables.
406 ####
408 # This tells some versions of GNU make before 3.63 not to export all variables.
409 .NOEXPORT:
411 # We want to echo the commands we're running without
412 # umpteem zillion filenames along with it (we use `...' instead)
413 # but we don't want this echoing done when the user has said
414 # he doesn't want to see commands echoed by using -s.
415 ifneq   "$(findstring s,$(MAKEFLAGS))" ""       # if -s
416 +cmdecho        := echo >/dev/null
417 else                                            # not -s
418 +cmdecho        := echo
419 endif                                           # -s
421 # These are the flags given to the compiler to tell
422 # it what sort of optimization and/or debugging output to do.
423 ifndef  +cflags
424 # If `CFLAGS' was defined, use that.
425 ifdef           CFLAGS
426 +cflags := $(filter-out -I%,$(CFLAGS))
427 endif           # CFLAGS
428 endif   # +cflags
430 # If none of the above worked, default to "-g".
431 ifeq    "$(strip $(+cflags))" ""
432 +cflags := $(default_cflags)
433 endif   # $(+cflags) == ""
435 +cflags := $(+cflags) $(+gccwarn)
436 +gcc-nowarn := -w
438 # Don't duplicate options if we inherited variables from the parent.
439 +cflags := $(sort $(+cflags))
442 # These are flags given to the C compiler to tell it to look for include
443 # files (including ones given in angle brackets) in the current directory
444 # and in the parent library source directory.
445 # `+sysdep-includes' will be defined by Makerules.
446 +includes = -I. $(filter-out -I,-I$(patsubst %/,%,$(..))) $($(stdio)-include) \
447             $(includes) $(+sysdep-includes) $(last-includes)
449 # Since libio has several internal header files, we use a -I instead
450 # of many little headers in the top level source directory.
451 libio-include = -I$(..)libio
453 # These are the variables that the implicit compilation rules use.
454 CPPFLAGS = $(+includes) $(defines) -include $(..)libc-symbols.h \
455            $(sysdep-CPPFLAGS) $(CPPFLAGS-$(suffix $@))
456 override CFLAGS = $(+cflags) $(sysdep-CFLAGS) $(CFLAGS-$(suffix $@)) \
457                   $(CFLAGS-$(<F))
460 # This is the macro that the implicit linking rules use.
461 ifneq "$(filter -g,$(+cflags))" "" # -g is in $(+cflags)
462 LDFLAGS := -g
463 endif
466 # Enable object files for different versions of the library.
467 # Various things use $(object-suffixes) to know what all to make.
468 # The compilation rules use $(CPPFLAGS-${SUFFIX}) and $(CFLAGS-${SUFFIX})
469 # to pass different flags for each flavor.
470 libtypes = $(foreach o,$(object-suffixes),$(libtype$o))
471 object-suffixes := .o
472 libtype.o := lib%.a
473 ifeq (yes,$(build-shared))
474 # Under --enable-shared, we will build a shared library of PIC objects.
475 # The PIC object files are named foo.so.
476 object-suffixes += .so
477 CPPFLAGS-.so = -DPIC
478 CFLAGS-.so = -fPIC
479 libtype.so := lib%_pic.a
480 endif
481 ifeq (yes,$(build-profile))
482 # Under --enable-profile, we will build a static library of profiled objects.
483 # The profiled object files are named foo.po.
484 object-suffixes += .po
485 CPPFLAGS-.po = -DPROF
486 CFLAGS-.po = -pg
487 libtype.po = lib%_p.a
488 endif
489 ifeq (yes,$(build-omitfp))
490 # Under --enable-omitfp, we build an the library optimized without
491 # debugging information using -fomit-frame-pointer, and build an extra
492 # library with debugging information.  The debuggable objects are named foo.go.
493 object-suffixes += .go
494 CFLAGS-.go = -g
495 CFLAGS-.o = -g0 -O99 -fomit-frame-pointer
496 CFLAGS-.so += $(CFLAGS-.o)
497 libtype.go = lib%_g.a
498 endif
501 +gnu-stabs = $(shell echo>&2 '*** BARF ON ME')
503 ifndef BUILD_CC
504 BUILD_CC = $(CC)
505 endif
507 ifneq ($(BUILD_CC),$(CC))
508 cross-compiling := yes
509 else
510 cross-compiling := no
511 endif
513 # Figure out the version numbers from version.h.
515 $(common-objpfx)version.mk: $(..)version.h $(..)Makeconfig
516         sed -n -e 's/^.*RELEASE.*"\([^"]*\)".*$$/release=\1/p' \
517                -e 's/^.*VERSION.*"\([^"]*\)".*$$/version=\1/p' \
518             < $< > $@-new
519         mv -f $@-new $@
521 ifeq (yes, $(build-shared))
523 # Process the shlib-versions file, which tells us what shared library
524 # version numbers to use when we install shared objects on this system.
525 -include $(common-objpfx)soversions.mk
526 $(common-objpfx)soversions.mk: $(..)shlib-versions $(..)Makeconfig \
527                                $(wildcard $(patsubst %, $(..)%/shlib-versions,\
528                                                         $(add-ons))) \
529                                $(common-objpfx)config.make
530         (file="$(wildcard $(patsubst %,$(..)%/shlib-versions,$(add-ons))) \
531                $(..)shlib-versions"; \
532          for f in $$file; do \
533          sed 's/#.*$$//' $$f | while read conf versions; do \
534            test -n "$$versions" || continue; \
535            case '$(config-machine)-$(config-vendor)-$(config-os)' in $$conf)\
536              for v in $$versions; do \
537                lib=`echo $$v | sed 's/=.*$$//'`; \
538                if eval "test -z \"\$$vers_lib$$lib\""; then \
539                  eval vers_lib$${lib}=yes; \
540                  echo $$v | sed "s/^.*=/$$lib.so-version=./";  \
541                fi; \
542            done ;; esac; done; \
543          done;) > $@T; exit 0
544         mv -f $@T $@
546 # Get $(version) defined with the release version number.
547 -include $(common-objpfx)version.mk
549 endif # build-shared
551 endif # Makeconfig not yet included