]> git.ipfire.org Git - thirdparty/glibc.git/blame - stdlib/Makefile
Update NEWS
[thirdparty/glibc.git] / stdlib / Makefile
CommitLineData
b168057a 1# Copyright (C) 1991-2015 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
41bdb6e2
AJ
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.
28f540f4
RM
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
41bdb6e2 12# Lesser General Public License for more details.
28f540f4 13
41bdb6e2 14# You should have received a copy of the GNU Lesser General Public
59ba27a6
PE
15# License along with the GNU C Library; if not, see
16# <http://www.gnu.org/licenses/>.
28f540f4
RM
17
18#
19# Makefile for stdlib routines
20#
21subdir := stdlib
22
a5f891ac
JM
23include ../Makeconfig
24
f62c8abc 25headers := stdlib.h bits/stdlib.h bits/stdlib-ldbl.h bits/stdlib-float.h \
c6251f03 26 monetary.h bits/monetary-ldbl.h \
42be025f 27 inttypes.h stdint.h bits/wordsize.h \
f0cf0902
RM
28 errno.h sys/errno.h bits/errno.h \
29 ucontext.h sys/ucontext.h \
cc7834d6
OB
30 alloca.h fmtmsg.h \
31 bits/stdlib-bsearch.h
28f540f4
RM
32
33routines := \
7cc27f44 34 atof atoi atol atoll \
28f540f4
RM
35 abort \
36 bsearch qsort msort \
f65fd747 37 getenv putenv setenv secure-getenv \
c08bc50a 38 exit on_exit atexit cxa_atexit cxa_finalize old_atexit \
ba384f6e 39 quick_exit at_quick_exit cxa_at_quick_exit cxa_thread_atexit_impl \
59dd8641
RM
40 abs labs llabs \
41 div ldiv lldiv \
28f540f4 42 mblen mbstowcs mbtowc wcstombs wctomb \
a18f587d 43 random random_r rand rand_r \
60478656
RM
44 drand48 erand48 lrand48 nrand48 mrand48 jrand48 \
45 srand48 seed48 lcong48 \
46 drand48_r erand48_r lrand48_r nrand48_r mrand48_r jrand48_r \
47 srand48_r seed48_r lcong48_r \
48 drand48-iter \
2f6d1f1b 49 strtol strtoul strtoll strtoull \
0501d603 50 strtol_l strtoul_l strtoll_l strtoull_l \
28f540f4 51 strtof strtod strtold \
0501d603 52 strtof_l strtod_l strtold_l \
fa0bc87c 53 system canonicalize \
857fa1b8 54 a64l l64a \
b9b49b44 55 rpmatch strfmon strfmon_l getsubopt xpg_basename fmtmsg \
af69217f
UD
56 strtoimax strtoumax wcstoimax wcstoumax \
57 getcontext setcontext makecontext swapcontext
72f10127 58aux = grouping groupingwc tens_in_limb
28f540f4 59
c08bc50a
UD
60# These routines will be omitted from the libc shared object.
61# Instead the static object files will be included in a special archive
62# linked against when the shared library will be used.
610e67ed 63static-only-routines = atexit at_quick_exit
c08bc50a 64
9f6c1fc4 65test-srcs := tst-fmtmsg
3ca97e8f
UD
66tests := tst-strtol tst-strtod testmb testrand testsort testdiv \
67 test-canon test-canon2 tst-strtoll tst-environ \
f17c2202 68 tst-xpg-basename tst-random tst-random2 tst-bsearch \
2e807f29
SL
69 tst-limits tst-rand48 bug-strtod tst-setcontext \
70 tst-setcontext2 test-a64l tst-qsort tst-system testmb2 \
71 bug-strtod2 tst-atof1 tst-atof2 tst-strtod2 tst-strtod3 \
72 tst-rand48-2 tst-makecontext tst-strtod4 tst-strtod5 \
73 tst-qsort2 tst-makecontext2 tst-strtod6 tst-unsetenv1 \
84b3fd84 74 tst-makecontext3 bug-getcontext bug-fmtmsg1 \
2a27fd6d 75 tst-secure-getenv tst-strtod-overflow tst-strtod-round \
ba384f6e 76 tst-tininess tst-strtod-underflow tst-tls-atexit
84b3fd84 77tests-static := tst-secure-getenv
28f540f4 78
ba384f6e
SP
79modules-names = tst-tls-atexit-lib
80
574b268e
UD
81ifeq ($(build-shared),yes)
82tests += tst-putenv
83endif
3ef21326
RM
84
85# Several mpn functions from GNU MP are used by the strtod function.
0e3426bb 86mpn-routines := inlines add_n addmul_1 cmp divmod_1 divrem udiv_qrnnd \
b5a08c5a 87 lshift rshift mod_1 mul mul_1 mul_n sub_n submul_1
3ef21326
RM
88mpn-headers = longlong.h gmp.h gmp-impl.h gmp-mparam.h asm-syntax.h
89
90routines := $(strip $(routines) $(mpn-routines)) \
91 dbl2mpn ldbl2mpn \
92 mpn2flt mpn2dbl mpn2ldbl
9c7ff11a 93aux += fpioconst mp_clz_tab
574b268e
UD
94
95tests-extras += tst-putenvmod
376e973a 96extra-test-objs += tst-putenvmod.os
3ef21326 97
574b268e 98generated += isomac isomac.out tst-putenvmod.so
3ef21326 99
e07bb02a
UD
100CFLAGS-bsearch.c = $(uses-callbacks)
101CFLAGS-msort.c = $(uses-callbacks)
102CFLAGS-qsort.c = $(uses-callbacks)
6bbc689e
UD
103CFLAGS-system.c = -fexceptions
104CFLAGS-system.os = -fomit-frame-pointer
f1c30c98 105CFLAGS-fmtmsg.c = -fexceptions
dff14448 106
c75ccd4c
RM
107CFLAGS-strfmon.c = $(libio-mtsafe)
108CFLAGS-strfmon_l.c = $(libio-mtsafe)
917e27b8 109
a4db3439 110CFLAGS-tst-bsearch.c = $(stack-align-test-flags)
06f6ca90 111CFLAGS-tst-qsort.c = $(stack-align-test-flags)
148e12ed 112CFLAGS-tst-makecontext2.c = $(stack-align-test-flags)
a4db3439 113
f214606a
JM
114# Run a test on the header files we use.
115tests-special += $(objpfx)isomac.out
116
117ifeq ($(run-built-tests),yes)
118tests-special += $(objpfx)tst-fmtmsg.out
119endif
120
28f540f4 121include ../Rules
3ef21326 122
e25054c4 123# Testdir has to be named stdlib and needs to be writable
9f835f5f 124test-canon-ARGS = --test-dir=${common-objpfx}stdlib
e25054c4 125
400aa020 126bug-fmtmsg1-ENV = SEV_LEVEL=foo,11,newsev
98d3e993 127
ca41028b 128$(objpfx)isomac.out: $(objpfx)isomac
7eff7a05 129 $(dir $<)$(notdir $<) '$(CC)' \
f0881698
JM
130 '-I../include $(+sysdep-includes) $(sysincludes) -I..' > $<.out; \
131 $(evaluate-test)
1eb687d0 132
e69924e3 133isomac-CFLAGS = -O
1eb687d0
UD
134$(objpfx)isomac: isomac.c
135 $(native-compile)
9f6c1fc4
UD
136
137$(objpfx)tst-fmtmsg.out: tst-fmtmsg.sh $(objpfx)tst-fmtmsg
8540f6d2
JM
138 $(SHELL) $< $(common-objpfx) '$(test-program-prefix-before-env)' \
139 '$(run-program-env)' '$(test-program-prefix-after-env)' \
140 $(common-objpfx)stdlib/; \
f0881698 141 $(evaluate-test)
574b268e
UD
142
143$(objpfx)tst-putenv: $(objpfx)tst-putenvmod.so
d4c2917f 144LDFLAGS-tst-putenv = $(no-as-needed)
574b268e 145
fab7ce3f 146$(objpfx)tst-putenvmod.so: $(objpfx)tst-putenvmod.os $(link-libc-deps)
574b268e 147 $(build-module)
9cd47470 148libof-tst-putenvmod = extramodules
75ea32ab 149
79520f4b
JM
150$(objpfx)bug-getcontext: $(libm)
151$(objpfx)tst-strtod-round: $(libm)
152$(objpfx)tst-tininess: $(libm)
153$(objpfx)tst-strtod-underflow: $(libm)
154$(objpfx)tst-strtod6: $(libm)
ba384f6e
SP
155
156tst-tls-atexit-lib.so-no-z-defs = yes
157
79520f4b 158$(objpfx)tst-tls-atexit: $(shared-thread-library) $(libdl)
ba384f6e 159$(objpfx)tst-tls-atexit.out: $(objpfx)tst-tls-atexit-lib.so