]> git.ipfire.org Git - thirdparty/glibc.git/blame - Makeconfig
* sysdeps/unix/sysv/linux/sparc/sys/kernel_termios.h: New file. Sparc...
[thirdparty/glibc.git] / Makeconfig
CommitLineData
7f0ff1b0 1# Copyright (C) 1991, 92, 93, 94, 95, 96, 97, 98 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
3e5f5557
UD
26all: # Make this the default goal
27
28f540f4
RM
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
094bacdb 61# $(common-objdir) is the place to put objects and
28f540f4
RM
62# such that are not specific to a single subdir.
63ifdef objdir
6e953631
UD
64objpfx := $(patsubst %//,%/,$(objdir)/$(subdir)/)
65common-objpfx = $(objdir)/
28f540f4
RM
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
f332db02
RM
79# Root of the sysdeps tree.
80sysdep_dir := $(..)sysdeps
81export sysdep_dir := $(sysdep_dir)
82
28f540f4
RM
83# Get the values defined by options to `configure'.
84include $(common-objpfx)config.make
85
0501d603
UD
86# We have a special subdir for each binary format.
87# For now, only ELF is fully supported.
88ifeq ($(elf),yes)
89binfmt-subdir = elf
90else
0a54e401
UD
91# This is probably better than nothing.
92binfmt-subdir = aout
0501d603
UD
93endif
94
57ba7bb4
UD
95# Complete path to sysdep dirs.
96full-config-sysdirs := $(filter /%, $(config-sysdirs)) \
97 $(addprefix $(..), $(filter-out /%, $(config-sysdirs)))
98export full-config-sysdirs := $(full-config-sysdirs)
99
273d56ce
RM
100# Run config.status to update config.make and config.h. We don't show the
101# dependence of config.h to Make, because it is only touched when it
102# changes and so config.status would be run every time; the dependence of
103# config.make should suffice to force regeneration and re-exec, and the new
104# image will notice if config.h changed.
19361cb7
UD
105$(common-objpfx)config.make: $(common-objpfx)config.status \
106 $(..)config.make.in $(..)config.h.in
273d56ce
RM
107 cd $(<D); $(SHELL) $(<F)
108
7da3079b
RM
109# Find all the sysdeps configure fragments, to make sure we re-run
110# configure when any of them changes.
5290baf0 111$(common-objpfx)config.status: $(..)version.h $(..)configure \
57ba7bb4 112 $(foreach dir,$(full-config-sysdirs),\
e50ec9f9 113 $(wildcard \
57ba7bb4 114 $(dir)/Implies) \
f332db02
RM
115 $(patsubst %.in,%,\
116 $(firstword $(wildcard \
57ba7bb4 117 $(addprefix $(dir)/,configure configure.in)))))
273d56ce
RM
118 @cd $(@D); if test -f $(@F); then exec $(SHELL) $(@F) --recheck; else \
119 echo The GNU C library has not been configured. >&2; \
120 echo Run \`configure\' to configure it before building. >&2; \
121 echo Try \`configure --help\' for more details. >&2; \
122 exit 1; fi
28f540f4 123
74015205
UD
124# We don't want CPPFLAGS to be exported to the command running configure.
125unexport CPPFLAGS
126
28f540f4
RM
127# Get the user's configuration parameters.
128ifneq ($(wildcard $(..)configparms),)
129include $(..)configparms
130endif
131ifneq ($(objpfx),)
6e953631
UD
132ifneq ($(wildcard $(common-objpfx)configparms),)
133include $(common-objpfx)configparms
28f540f4
RM
134endif
135endif
28f540f4
RM
136\f
137####
138#### These are the configuration variables. You can define values for
139#### the variables below in the file `configparms'.
140#### Do NOT edit this file.
141####
142
143
deab9dea
RM
144# Set this to either `stdio' or `libio', to compile in either GNU stdio
145# or GNU libio.
146ifndef stdio
147stdio = stdio
148endif
149
28f540f4 150# Common prefix for machine-independent installation directories.
487253ea 151ifeq ($(origin prefix),undefined) # ifndef would override explicit empty value.
28f540f4
RM
152prefix = /usr/local
153endif
154
0413b54c
UD
155# Decide whether we shall build the programs or not. We always do this
156# unless the user tells us (in configparms) or we are building for a
157# standalone target.
158ifndef build-programs
159ifneq ($(config-os),none)
160build-programs=yes
161else
162build-programs=no
163endif
164endif
165
28f540f4 166# Common prefix for machine-dependent installation directories.
487253ea 167ifeq ($(origin exec_prefix),undefined)
28f540f4
RM
168exec_prefix = $(prefix)
169endif
170
171# Where to install the library and object files.
172ifndef libdir
173libdir = $(exec_prefix)/lib
174endif
8d57beea 175inst_libdir = $(install_root)$(libdir)
28f540f4 176
094bacdb
RM
177# Where to install the shared library and dynamic linker.
178ifndef slibdir
179slibdir = $(exec_prefix)/lib
180endif
8d57beea 181inst_slibdir = $(install_root)$(slibdir)
094bacdb 182
28f540f4
RM
183# Prefix to put on files installed in $(libdir). For libraries `libNAME.a',
184# the prefix is spliced between `lib' and the name, so the linker switch
185# `-l$(libprefix)NAME' finds the library; for other files the prefix is
186# just prepended to the whole file name.
487253ea 187ifeq ($(origin libprefix),undefined)
28f540f4
RM
188libprefix =
189endif
190
191# Where to install the header files.
192ifndef includedir
193includedir = $(exec_prefix)/include
194endif
8d57beea 195inst_includedir = $(install_root)$(includedir)
28f540f4 196
28f540f4 197# Where to install machine-independent data files.
a2fe9c76 198# These are the timezone database, and the locale database.
28f540f4
RM
199ifndef datadir
200datadir = $(prefix)/share
201endif
8d57beea 202inst_datadir = $(install_root)$(datadir)
28f540f4
RM
203
204# Where to install the timezone data files (which are machine-independent).
205ifndef zonedir
206zonedir = $(datadir)/zoneinfo
207endif
8d57beea 208inst_zonedir = $(install_root)$(zonedir)
28f540f4 209
3ec41e03
RM
210# Where to install the locale and message catalog data files (which are
211# machine-independent).
a2fe9c76
RM
212ifndef localedir
213localedir = $(datadir)/locale
214endif
8d57beea 215inst_localedir = $(install_root)$(localedir)
a2fe9c76 216
3ec41e03 217# Where to install the locale charmap source files.
19bc17a9
RM
218ifndef i18ndir
219i18ndir = $(datadir)/i18n
a2fe9c76 220endif
8d57beea 221inst_i18ndir = $(install_root)$(i18ndir)
a2fe9c76 222
6973fc01
UD
223# Where to install the shared object for charset transformation.
224ifndef gconvdir
225gconvdir = $(libdir)/gconv
226endif
227inst_gconvdir = $(install_root)$(gconvdir)
228
28f540f4
RM
229# Where to install programs.
230ifndef bindir
231bindir = $(exec_prefix)/bin
232endif
8d57beea 233inst_bindir = $(install_root)$(bindir)
28f540f4 234
7f0ff1b0
UD
235# Where to install internal programs.
236ifndef libexecdir
237libexecdir = $(exec_prefix)/libexec
238endif
239inst_libexecdir = $(install_root)$(libexecdir)
240
28f540f4 241# Where to install administrative programs.
1ef32c3d
UD
242ifndef rootsbindir
243rootsbindir = $(exec_prefix)/sbin
244endif
8d57beea 245inst_rootsbindir = $(install_root)$(rootsbindir)
1ef32c3d 246
28f540f4
RM
247ifndef sbindir
248sbindir = $(exec_prefix)/sbin
249endif
8d57beea 250inst_sbindir = $(install_root)$(sbindir)
28f540f4
RM
251
252# Where to install the Info files.
253ifndef infodir
254infodir = $(prefix)/info
255endif
8d57beea 256inst_infodir = $(install_root)$(infodir)
28f540f4
RM
257
258# Where to install default configuration files. These include the local
259# timezone specification and network data base files.
260ifndef sysconfdir
261sysconfdir = $(prefix)/etc
262endif
8d57beea 263inst_sysconfdir = $(install_root)$(sysconfdir)
28f540f4
RM
264
265# What timezone should be the installed default (e.g., US/Eastern).
266# Run `make -C time echo-zonenames' to see a list of available zone names.
267# The local timezone can be changed with `zic -l TIMEZONE' at any time.
268ifndef localtime
269localtime = Factory
270endif
271
272# Where to install the "localtime" timezone file; this is the file whose
273# contents $(localtime) specifies. If this is a relative pathname, it is
274# relative to $(zonedir). It is a good idea to put this somewhere
275# other than there, so the zoneinfo directory contains only universal data,
276# localizing the configuration data elsewhere.
277ifndef localtime-file
0d8733c4
UD
278localtime-file = $(sysconfdir)/localtime
279inst_localtime-file = $(install_root)$(localtime-file)
28f540f4
RM
280endif
281
59dd8641
RM
282# What to use for leap second specifications in compiling the default
283# timezone files. Set this to `/dev/null' for no leap second handling as
284# 1003.1 requires, or to `leapseconds' for proper leap second handling.
285# Both zone flavors are always available as `posix/ZONE' and `right/ZONE'.
286# This variable determines the default: if it's `/dev/null',
287# ZONE==posix/ZONE; if it's `leapseconds', ZONE==right/ZONE.
288ifndef leapseconds
289leapseconds = /dev/null
290endif
291
28f540f4
RM
292# What timezone's DST rules should be used when a POSIX-style TZ
293# environment variable doesn't specify any rules. For 1003.1 compliance
294# this timezone must use rules that are as U.S. federal law defines DST.
295# Run `make -C time echo-zonenames' to see a list of available zone names.
296# This setting can be changed with `zic -p TIMEZONE' at any time.
297# If you want POSIX.1 compatibility, use `America/New_York'.
298ifndef posixrules
299posixrules = America/New_York
300endif
301
302# Where to install the "posixrules" timezone file; this is file
303# whose contents $(posixrules) specifies. If this is a relative
304# pathname, it is relative to $(zonedir).
305ifndef posixrules-file
306posixrules-file = posixrules
307endif
308
309
310# Directory where your system's native header files live.
311# This is used on Unix systems to generate some GNU libc header files.
312ifndef sysincludedir
313sysincludedir = /usr/include
314endif
315
316
317# Commands to install files.
318ifndef INSTALL_DATA
319INSTALL_DATA = $(INSTALL) -m 644
320endif
321ifndef INSTALL_PROGRAM
322INSTALL_PROGRAM = $(INSTALL)
323endif
324ifndef INSTALL
325INSTALL = install
326endif
327
328
329# The name of the C compiler.
330# If you've got GCC, and it works, use it.
331ifeq ($(origin CC),default)
332CC := gcc
333endif
334
335# The name of the C compiler to use for compilations of programs to run on
336# the host that is building the library. If you set CC to a
337# cross-compiler, you must set this to the normal compiler.
338ifndef BUILD_CC
339BUILD_CC = $(CC)
340endif
341
342# Default flags to pass the C compiler.
343ifndef default_cflags
a8922de8 344default_cflags := -g -O
28f540f4
RM
345endif
346
347# Flags to pass the C compiler when assembling preprocessed assembly code
348# (`.S' files). On some systems the assembler doesn't understand the `#' line
349# directives the preprocessor produces. If you have troubling compiling
350# assembly code, try using -P here to suppress these directives.
351ifndef asm-CPPFLAGS
352asm-CPPFLAGS =
353endif
354
9a0a462c
UD
355# ELF always supports init/fini sections
356ifeq ($(elf),yes)
357have-initfini = yes
358endif
359
779ae82e 360# Installed name of the startup code.
9a0a462c
UD
361ifneq ($(have-initfini),yes)
362# When not having init/fini, there is just one startfile, called crt0.o.
779ae82e
UD
363start-installed-name = crt0.o
364else
9a0a462c 365# On systems having init/fini, crt0.o is called crt1.o, and there are
779ae82e
UD
366# some additional bizarre files.
367start-installed-name = crt1.o
779ae82e
UD
368endif
369
370
28f540f4
RM
371# Command for linking programs with the C library.
372ifndef +link
8e3cc80f
RM
373+link = $(CC) -nostdlib -nostartfiles -o $@ \
374 $(sysdep-LDFLAGS) $(config-LDFLAGS) $(LDFLAGS) \
779ae82e
UD
375 $(addprefix $(csu-objpfx),$(start-installed-name)) \
376 $(+preinit) $(+prector) \
377 $(filter-out $(addprefix $(csu-objpfx),start.o \
378 $(start-installed-name))\
379 $(+preinit) $(link-extra-libs) \
380 $(common-objpfx)libc% $(+postinit),$^) \
5ae9d168 381 $(link-extra-libs) $(link-libc) $(+postctor) $(+postinit)
28f540f4 382endif
e1586792
UD
383# Command for statically linking programs with the C library.
384ifndef +link-static
385+link-static = $(CC) -nostdlib -nostartfiles -static -o $@ \
386 $(sysdep-LDFLAGS) $(LDFLAGS) \
387 $(addprefix $(csu-objpfx),$(start-installed-name)) \
388 $(+preinit) $(+prector) \
389 $(filter-out $(addprefix $(csu-objpfx),start.o \
390 $(start-installed-name))\
391 $(+preinit) $(link-extra-libs-static) \
392 $(common-objpfx)libc% $(+postinit),$^) \
393 $(link-extra-libs-static) $(link-libc-static) $(+postctor) $(+postinit)
394endif
b122c703
RM
395ifndef config-LDFLAGS
396ifeq (yes,$(build-shared))
094bacdb 397config-LDFLAGS = -Wl,-dynamic-linker=$(slibdir)/$(rtld-installed-name)
b122c703
RM
398endif
399endif
3fe9de0d
RM
400ifndef link-libc
401ifeq (yes,$(build-shared))
aa1075ea
RM
402# We need the versioned name of libc.so in the deps of $(others) et al
403# so that the symlink to libc.so is created before anything tries to
404# run the linked programs.
4d6acc61 405link-libc = -Wl,-rpath-link=$(rpath-link) \
aa1075ea 406 $(common-objpfx)libc.so$(libc.so-version) \
a44d2393 407 $(common-objpfx)$(patsubst %,$(libtype.oS),c) $(gnulib)
4cb20290
RM
408# Choose the default search path for the dynamic linker based on
409# where we will install libraries.
410ifneq ($(libdir),$(slibdir))
411default-rpath = $(slibdir):$(libdir)
412else
413default-rpath = $(libdir)
414endif
4d6acc61 415# This is how to find at build-time things that will be installed there.
3db52d94 416rpath-link = $(common-objdir):$(mathobjdir):$(elfobjdir):$(nssobjdir):$(nisobjdir):$(dbobjdir)
c57abfa7 417mathobjdir := $(patsubst ../$(subdir),.,$(common-objpfx)math)
47707456 418elfobjdir := $(patsubst ../$(subdir),.,$(common-objpfx)elf)
6e953631 419nssobjdir := $(patsubst ../$(subdir),.,$(common-objpfx)nss)
3db52d94 420nisobjdir := $(patsubst ../$(subdir),.,$(common-objpfx)nis)
26b4d766 421dbobjdir := $(patsubst ../$(subdir),.,$(common-objpfx)db2)
3fe9de0d
RM
422else
423link-libc = $(common-objpfx)libc.a $(gnulib) $(common-objpfx)libc.a
424endif
425endif
900bec85 426
57ba7bb4
UD
427ifndef link-extra-libs
428ifeq (yes,$(build-shared))
c57abfa7
UD
429ifneq ($(common-objpfx),$(objpfx))
430link-extra-libs = $(foreach lib,$(LDLIBS-$(@F)),\
431 $(wildcard $(common-objpfx)$(lib).so$($(notdir $(lib)).so-version) \
432 $(objpfx)$(lib).so$($(notdir $(lib)).so-version)))
433else
57ba7bb4 434link-extra-libs = $(foreach lib,$(LDLIBS-$(@F)),$(common-objpfx)$(lib).so$($(notdir $(lib)).so-version))
c57abfa7 435endif
57ba7bb4
UD
436else
437link-extra-libs = $(foreach lib,$(LDLIBS-$(@F)),$(common-objpfx)$(lib).a)
438endif
439endif
e1586792
UD
440
441# The static libraries.
442link-libc-static = $(common-objpfx)libc.a $(gnulib) $(common-objpfx)libc.a
443link-extra-libs-static = $(foreach lib,$(LDLIBS-$(@F)),$(common-objpfx)$(lib).a)
444
28f540f4
RM
445ifndef gnulib
446gnulib := -lgcc
447endif
96f873b9 448ifeq ($(elf),yes)
e75154a6
RM
449+preinit = $(addprefix $(csu-objpfx),crti.o)
450+postinit = $(addprefix $(csu-objpfx),crtn.o)
5ae9d168
UD
451+prector = `$(CC) --print-file-name=crtbegin.o`
452+postctor = `$(CC) --print-file-name=crtend.o`
96f873b9 453endif
6e953631
UD
454csu-objpfx = $(common-objpfx)csu/
455elf-objpfx = $(common-objpfx)elf/
57ba7bb4 456db-objpfx = $(common-objpfx)db/
28f540f4 457
03a75825
RM
458# How to run a program we just linked with our library.
459# The program binary is assumed to be $(word 2,$^).
460built-program-file = $(dir $(word 2,$^))$(notdir $(word 2,$^))
461ifneq (yes,$(build-shared))
462built-program-cmd = $(built-program-file)
463else
196980f5 464comma = ,
11336c16
UD
465sysdep-library-path = \
466$(subst $(empty) ,:,$(strip $(patsubst -Wl$(comma)-rpath-link=%, %,\
467 $(filter -Wl$(comma)-rpath-link=%,\
468 $(sysdep-LDFLAGS)))))
03a75825 469define built-program-cmd
880f421f
UD
470$(elf-objpfx)$(rtld-installed-name) \
471 --library-path $(rpath-link)$(patsubst %,:%,$(sysdep-library-path)) \
472 $(built-program-file)
03a75825
RM
473endef
474endif
475
28f540f4
RM
476ifndef LD
477LD := ld -X
478endif
479
480ifndef RANLIB
481RANLIB = ranlib
482endif
483
484# Extra flags to pass to GCC.
522548fb 485+gccwarn := -Wall -Wwrite-strings -Wno-parentheses -Winline -Wstrict-prototypes
28f540f4
RM
486
487# This is the program that generates makefile
488# dependencies from C source files.
489ifndef +mkdep
490+mkdep = $(CC) -M
491endif
492
493# The program that makes Emacs-style TAGS files.
494ETAGS := etags -T
495
496# The `m4' macro processor; this is used by sysdeps/sparc/Makefile (and
497# perhaps others) to preprocess assembly code in some cases.
498M4 = m4
499
500####
501#### End of configuration variables.
502####
503\f
504# This tells some versions of GNU make before 3.63 not to export all variables.
505.NOEXPORT:
506
507# We want to echo the commands we're running without
6d52618b 508# umpteen zillion filenames along with it (we use `...' instead)
28f540f4
RM
509# but we don't want this echoing done when the user has said
510# he doesn't want to see commands echoed by using -s.
511ifneq "$(findstring s,$(MAKEFLAGS))" "" # if -s
512+cmdecho := echo >/dev/null
513else # not -s
514+cmdecho := echo
515endif # -s
516
517# These are the flags given to the compiler to tell
518# it what sort of optimization and/or debugging output to do.
519ifndef +cflags
520# If `CFLAGS' was defined, use that.
521ifdef CFLAGS
522+cflags := $(filter-out -I%,$(CFLAGS))
523endif # CFLAGS
524endif # +cflags
525
fd26970f 526# If none of the above worked, default to "-g -O".
28f540f4
RM
527ifeq "$(strip $(+cflags))" ""
528+cflags := $(default_cflags)
529endif # $(+cflags) == ""
530
28f540f4
RM
531+cflags := $(+cflags) $(+gccwarn)
532+gcc-nowarn := -w
28f540f4
RM
533
534# Don't duplicate options if we inherited variables from the parent.
535+cflags := $(sort $(+cflags))
536
537
538# These are flags given to the C compiler to tell it to look for include
762a2918
UD
539# files (including ones given in angle brackets) in the current directory,
540# in the parent library source directory and in the include directory.
28f540f4 541# `+sysdep-includes' will be defined by Makerules.
dfd2257a
UD
542+includes = -I. $(patsubst %/,-I%,$(objpfx)) $(patsubst %/,-I%,$(..)) \
543 -I$(..)include $($(stdio)-include) $(includes) \
544 $(+sysdep-includes) $(last-includes)
28f540f4 545
96aa2d94 546# Since libio has several internal header files, we use a -I instead
762a2918 547# of many little headers in the include directory.
96aa2d94 548libio-include = -I$(..)libio
28f540f4
RM
549
550# These are the variables that the implicit compilation rules use.
5107cf1d 551CPPFLAGS = $(+includes) $(defines) -include $(..)include/libc-symbols.h \
8a4b65b4
UD
552 $(sysdep-CPPFLAGS) $(CPPFLAGS-$(suffix $@)) $(CPPFLAGS-$(<F)) \
553 $(CPPFLAGS-$(@F))
14e9dd67
UD
554override CFLAGS = $(filter-out %frame-pointer,$(+cflags)) $(sysdep-CFLAGS) \
555 $(CFLAGS-$(suffix $@)) $(CFLAGS-$(<F)) $(CFLAGS-$(@F))
28f540f4
RM
556
557
558# This is the macro that the implicit linking rules use.
559ifneq "$(filter -g,$(+cflags))" "" # -g is in $(+cflags)
560LDFLAGS := -g
561endif
562
f0bf9cb9 563
cc3fa755
UD
564# If everything is compiled with -fPIC (implicitly) we must tell this by
565# defining the PIC symbol.
566ifeq (yes,$(build-pic-default))
567pic-default = -DPIC
568endif
569
f0bf9cb9
RM
570# Enable object files for different versions of the library.
571# Various things use $(object-suffixes) to know what all to make.
572# The compilation rules use $(CPPFLAGS-${SUFFIX}) and $(CFLAGS-${SUFFIX})
573# to pass different flags for each flavor.
9afc8a59 574libtypes = $(foreach o,$(object-suffixes),$(libtype$o))
a35cb74d 575all-object-suffixes := .o .os .op .og .ob .oS
650425ce
UD
576object-suffixes :=
577ifeq (yes,$(build-static))
cc3fa755 578CPPFLAGS-.o = $(pic-default)
14e9dd67 579CFLAGS-.o = $(filter %frame-pointer,$(+cflags))
f0bf9cb9 580libtype.o := lib%.a
650425ce
UD
581object-suffixes += .o
582endif
f0bf9cb9
RM
583ifeq (yes,$(build-shared))
584# Under --enable-shared, we will build a shared library of PIC objects.
40a55d20
UD
585# The PIC object files are named foo.os.
586object-suffixes += .os
587CPPFLAGS-.os = -DPIC
14e9dd67 588CFLAGS-.os = $(filter %frame-pointer,$(+cflags)) $(pic-ccflag)
40a55d20 589libtype.os := lib%_pic.a
26b4d766
UD
590# This can be changed by a sysdep makefile
591pic-ccflag = -fPIC
f0bf9cb9
RM
592endif
593ifeq (yes,$(build-profile))
594# Under --enable-profile, we will build a static library of profiled objects.
40a55d20
UD
595# The profiled object files are named foo.op.
596object-suffixes += .op
cc3fa755 597CPPFLAGS-.op = -DPROF $(pic-default)
40a55d20
UD
598CFLAGS-.op = -pg
599libtype.op = lib%_p.a
f0bf9cb9
RM
600endif
601ifeq (yes,$(build-omitfp))
602# Under --enable-omitfp, we build an the library optimized without
603# debugging information using -fomit-frame-pointer, and build an extra
40a55d20
UD
604# library with debugging information. The debuggable objects are named foo.og.
605object-suffixes += .og
cc3fa755 606CPPFLAGS-.og = $(pic-default)
40a55d20 607CFLAGS-.og = -g
14e9dd67
UD
608CFLAGS-.o = $(filter %frame-pointer,$(+cflags)) -g0 -O99 -fomit-frame-pointer -D__USE_STRING_INLINES
609CFLAGS-.os += -g0 -O99 -fomit-frame-pointer -D__USE_STRING_INLINES
40a55d20 610libtype.og = lib%_g.a
f0bf9cb9 611endif
5a97622d
UD
612ifeq (yes,$(build-bounded))
613# Under --enable-bounded, we build the library with `-fbounded-pointers -g'
40a55d20
UD
614# to runtime bounds checking. The bounded-pointer objects are named foo.ob.
615object-suffixes += .ob
cc3fa755 616CPPFLAGS-.ob = -DBOUNDED_POINTERS $(pic-default)
40a55d20
UD
617CFLAGS-.ob = -g -fbounded-pointers
618libtype.ob = lib%_b.a
5a97622d 619endif
f0bf9cb9 620
9afc8a59
UD
621object-suffixes-for-libc := $(object-suffixes)
622
623ifeq (yes,$(build-shared))
624# Build special library that contains the static-only routines for libc.
625object-suffixes-for-libc += .oS
626
627# Must build the routines as PIC, though, because they can end up in (users')
628# shared objects. We don't want to use CFLAGS-os because users may, for
629# example, make that processor-specific.
630CFLAGS-.oS = $(CFLAGS-.o) $(pic-ccflag)
631CPPFLAGS-.oS = $(CPPFLAGS-.o)
632libtype.oS = lib%_nonshared.a
633endif
634
635
28f540f4
RM
636+gnu-stabs = $(shell echo>&2 '*** BARF ON ME')
637
96bda0ea
RM
638ifndef BUILD_CC
639BUILD_CC = $(CC)
640endif
a641835a
RM
641\f
642# Figure out the version numbers from version.h.
28f540f4 643
0e3426bb
RM
644$(common-objpfx)version.mk: $(..)version.h $(..)Makeconfig
645 sed -n -e 's/^.*RELEASE.*"\([^"]*\)".*$$/release=\1/p' \
646 -e 's/^.*VERSION.*"\([^"]*\)".*$$/version=\1/p' \
a641835a
RM
647 < $< > $@-new
648 mv -f $@-new $@
28f540f4 649
9a0a462c
UD
650common-generated += version.mk
651
4de1d597
RM
652ifeq (yes, $(build-shared))
653
654# Process the shlib-versions file, which tells us what shared library
655# version numbers to use when we install shared objects on this system.
656-include $(common-objpfx)soversions.mk
eca3eb3b 657ifndef avoid-generated
4de1d597 658$(common-objpfx)soversions.mk: $(..)shlib-versions $(..)Makeconfig \
edf5b2d7
UD
659 $(wildcard $(patsubst %, $(..)%/shlib-versions,\
660 $(add-ons))) \
4de1d597 661 $(common-objpfx)config.make
ec4b0518
UD
662 (file="$(wildcard $(patsubst %,$(..)%/shlib-versions,$(add-ons))) \
663 $(..)shlib-versions"; \
edf5b2d7 664 for f in $$file; do \
8a523922
UD
665 sed 's/#.*$$//' $$f | while read conf versions; do \
666 test -n "$$versions" && \
667 test `expr '$(config-machine)-$(config-vendor)-$(config-os)' \
668 : "$$conf"` != 0 || continue; \
edf5b2d7
UD
669 for v in $$versions; do \
670 lib=`echo $$v | sed 's/=.*$$//'`; \
671 if eval "test -z \"\$$vers_lib$$lib\""; then \
672 eval vers_lib$${lib}=yes; \
d41c6f61
UD
673 number=`echo $$v | sed "s/^.*=//"`; \
674 case $$number in \
ba1ffaa1
UD
675 [0-9]*) echo "$$lib.so-version=.$$number"; \
676 echo "all-sonames+=$$lib.so\$$($$lib.so-version)";;\
677 *) echo "$$lib.so-version=$$number"; \
678 echo "all-sonames+=\$$($$lib.so-version)";; \
8a523922 679 esac; \
edf5b2d7 680 fi; \
8a523922
UD
681 done; \
682 done; \
edf5b2d7 683 done;) > $@T; exit 0
4de1d597 684 mv -f $@T $@
eca3eb3b
UD
685endif
686
687postclean-generated += soversions.mk
4de1d597 688
eca3eb3b 689ifndef avoid-generated
4de1d597
RM
690# Get $(version) defined with the release version number.
691-include $(common-objpfx)version.mk
eca3eb3b 692endif
4de1d597 693
c0e45674
UD
694# Generate the header containing the names of all shared libraries.
695# We use a stamp file to avoid uncessary recompilations.
696before-compile += $(common-objpfx)gnu/lib-names.h
60c34a30 697$(common-objpfx)gnu/lib-names.h: $(common-objpfx)gnu/lib-names.stmp; @:
c0e45674
UD
698$(common-objpfx)gnu/lib-names.stmp: $(common-objpfx)soversions.mk
699 $(make-target-directory)
700 @rm -f ${@:stmp=T} $@
701 (echo '/* This file is automatically generated.';\
702 echo ' It defines macros to allow user program to find the shared';\
703 echo ' library files which come as part of GNU libc. */';\
704 echo '#ifndef __GNU_LIB_NAMES_H'; \
705 echo '#define __GNU_LIB_NAMES_H 1'; \
706 echo; \
707 (libs='$(all-sonames)';\
708 for l in $$libs; do \
709 upname=`echo $$l | sed 's/[.]so.*//' | \
7cc27f44
UD
710 tr 'abcdefghijklmnopqrstuvwxyz-' \
711 'ABCDEFGHIJKLMNOPQRSTUVWXYZ_'`; \
c0e45674
UD
712 echo "#define $${upname}_SO \"$$l\""; \
713 done;) | sort; \
714 echo; \
715 echo '#endif /* gnu/lib-names.h */';) > ${@:stmp=T}
716 if test -r ${@:stmp=h} && cmp -s ${@:stmp=h} ${@:stmp=T}; \
717 then rm -f ${@:stmp=T}; \
718 else mv -f ${@:stmp=T} ${@:stmp=h}; fi
719 touch $@
720
721common-generated += gnu/lib-names.h gnu/lib-names.stmp
d41c6f61
UD
722
723# The name under which the run-time dynamic linker is installed.
724# We are currently going for the convention that `/lib/ld.so.1'
725# names the SVR4/ELF ABI-compliant dynamic linker.
726ifndef rtld-installed-name
727ifdef ld.so-version
728rtld-installed-name = $(ld.so-version)
729else
730rtld-installed-name = ld.so.1
731endif
732endif
733
1ef32c3d
UD
734ifndef rtld-version-installed-name
735rtld-version-installed-name = ld-$(version).so
736endif
737
f649c201
UD
738endif # build-shared
739
cbdee279
UD
740ifneq (,$(findstring linuxthreads,$(add-ons)))
741shared-thread-library = $(common-objpfx)linuxthreads/libpthread.so
f649c201
UD
742static-thread-library = $(common-objpfx)linuxthreads/libpthread.a
743have-thread-library = yes
cbdee279
UD
744endif
745
28f540f4 746endif # Makeconfig not yet included