]> git.ipfire.org Git - thirdparty/glibc.git/blame - stdlib/Makefile
Update i386 ULPs for recently added math tests
[thirdparty/glibc.git] / stdlib / Makefile
CommitLineData
400aa020 1# Copyright (C) 1991-2009, 2011, 2012 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
c6251f03
RM
23headers := stdlib.h bits/stdlib.h bits/stdlib-ldbl.h \
24 monetary.h bits/monetary-ldbl.h \
42be025f 25 inttypes.h stdint.h bits/wordsize.h \
f0cf0902
RM
26 errno.h sys/errno.h bits/errno.h \
27 ucontext.h sys/ucontext.h \
28 alloca.h fmtmsg.h
28f540f4
RM
29
30routines := \
7cc27f44 31 atof atoi atol atoll \
28f540f4
RM
32 abort \
33 bsearch qsort msort \
f65fd747 34 getenv putenv setenv secure-getenv \
c08bc50a 35 exit on_exit atexit cxa_atexit cxa_finalize old_atexit \
610e67ed 36 quick_exit at_quick_exit cxa_at_quick_exit \
59dd8641
RM
37 abs labs llabs \
38 div ldiv lldiv \
28f540f4 39 mblen mbstowcs mbtowc wcstombs wctomb \
a18f587d 40 random random_r rand rand_r \
60478656
RM
41 drand48 erand48 lrand48 nrand48 mrand48 jrand48 \
42 srand48 seed48 lcong48 \
43 drand48_r erand48_r lrand48_r nrand48_r mrand48_r jrand48_r \
44 srand48_r seed48_r lcong48_r \
45 drand48-iter \
2f6d1f1b 46 strtol strtoul strtoll strtoull \
0501d603 47 strtol_l strtoul_l strtoll_l strtoull_l \
28f540f4 48 strtof strtod strtold \
0501d603 49 strtof_l strtod_l strtold_l \
fa0bc87c 50 system canonicalize \
857fa1b8 51 a64l l64a \
b9b49b44 52 rpmatch strfmon strfmon_l getsubopt xpg_basename fmtmsg \
af69217f
UD
53 strtoimax strtoumax wcstoimax wcstoumax \
54 getcontext setcontext makecontext swapcontext
72f10127 55aux = grouping groupingwc tens_in_limb
28f540f4 56
c08bc50a
UD
57# These routines will be omitted from the libc shared object.
58# Instead the static object files will be included in a special archive
59# linked against when the shared library will be used.
610e67ed 60static-only-routines = atexit at_quick_exit
c08bc50a 61
9f6c1fc4 62test-srcs := tst-fmtmsg
3ca97e8f
UD
63tests := tst-strtol tst-strtod testmb testrand testsort testdiv \
64 test-canon test-canon2 tst-strtoll tst-environ \
f17c2202
RM
65 tst-xpg-basename tst-random tst-random2 tst-bsearch \
66 tst-limits tst-rand48 bug-strtod tst-setcontext \
2282c90c 67 test-a64l tst-qsort tst-system testmb2 bug-strtod2 \
a12dcecc 68 tst-atof1 tst-atof2 tst-strtod2 tst-strtod3 tst-rand48-2 \
148e12ed 69 tst-makecontext tst-strtod4 tst-strtod5 tst-qsort2 \
92505456 70 tst-makecontext2 tst-strtod6 tst-unsetenv1 \
84b3fd84 71 tst-makecontext3 bug-getcontext bug-fmtmsg1 \
af92131a 72 tst-secure-getenv tst-strtod-overflow tst-strtod-round
84b3fd84 73tests-static := tst-secure-getenv
28f540f4 74
574b268e
UD
75include ../Makeconfig
76
77ifeq ($(build-shared),yes)
78tests += tst-putenv
79endif
3ef21326
RM
80
81# Several mpn functions from GNU MP are used by the strtod function.
0e3426bb 82mpn-routines := inlines add_n addmul_1 cmp divmod_1 divrem udiv_qrnnd \
b5a08c5a 83 lshift rshift mod_1 mul mul_1 mul_n sub_n submul_1
3ef21326
RM
84mpn-headers = longlong.h gmp.h gmp-impl.h gmp-mparam.h asm-syntax.h
85
86routines := $(strip $(routines) $(mpn-routines)) \
87 dbl2mpn ldbl2mpn \
88 mpn2flt mpn2dbl mpn2ldbl
9c7ff11a 89aux += fpioconst mp_clz_tab
574b268e
UD
90
91tests-extras += tst-putenvmod
376e973a 92extra-test-objs += tst-putenvmod.os
3ef21326 93
574b268e 94generated += isomac isomac.out tst-putenvmod.so
3ef21326 95
e07bb02a
UD
96CFLAGS-bsearch.c = $(uses-callbacks)
97CFLAGS-msort.c = $(uses-callbacks)
98CFLAGS-qsort.c = $(uses-callbacks)
6bbc689e
UD
99CFLAGS-system.c = -fexceptions
100CFLAGS-system.os = -fomit-frame-pointer
f1c30c98 101CFLAGS-fmtmsg.c = -fexceptions
dff14448 102
c75ccd4c
RM
103CFLAGS-strfmon.c = $(libio-mtsafe)
104CFLAGS-strfmon_l.c = $(libio-mtsafe)
917e27b8 105
a4db3439 106CFLAGS-tst-bsearch.c = $(stack-align-test-flags)
06f6ca90 107CFLAGS-tst-qsort.c = $(stack-align-test-flags)
148e12ed 108CFLAGS-tst-makecontext2.c = $(stack-align-test-flags)
a4db3439 109
28f540f4 110include ../Rules
3ef21326 111
e25054c4 112# Testdir has to be named stdlib and needs to be writable
9f835f5f 113test-canon-ARGS = --test-dir=${common-objpfx}stdlib
e25054c4 114
98d3e993 115tst-strtod-ENV = LOCPATH=$(common-objpfx)localedata
df859a0c 116tst-strtod3-ENV = LOCPATH=$(common-objpfx)localedata
d6220e9e 117tst-strtod4-ENV = LOCPATH=$(common-objpfx)localedata
64f6281c 118tst-strtod5-ENV = LOCPATH=$(common-objpfx)localedata
16edf13b 119testmb2-ENV = LOCPATH=$(common-objpfx)localedata
400aa020 120bug-fmtmsg1-ENV = SEV_LEVEL=foo,11,newsev
98d3e993 121
1eb687d0 122# Run a test on the header files we use.
c08bc50a 123tests: $(objpfx)isomac.out
2cca3867
AJ
124
125ifeq (no,$(cross-compiling))
126tests: $(objpfx)tst-fmtmsg.out
127endif
ca41028b
UD
128
129$(objpfx)isomac.out: $(objpfx)isomac
7eff7a05 130 $(dir $<)$(notdir $<) '$(CC)' \
08f60b25 131 '-I../include $(+sysdep-includes) $(sysincludes) -I..' > $<.out
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
2cca3867 138 $(SHELL) -e $< $(common-objpfx) '$(run-program-prefix)' $(common-objpfx)stdlib/
574b268e
UD
139
140$(objpfx)tst-putenv: $(objpfx)tst-putenvmod.so
d4c2917f 141LDFLAGS-tst-putenv = $(no-as-needed)
574b268e
UD
142
143$(objpfx)tst-putenvmod.so: $(objpfx)tst-putenvmod.os
144 $(build-module)
145CFLAGS-tst-putenvmod.c = -DNOT_IN_libc=1
75ea32ab
UD
146
147ifeq ($(build-shared),yes)
148link-libm = $(common-objpfx)math/libm.so
149else
150link-libm = $(common-objpfx)math/libm.a
151endif
152$(objpfx)bug-getcontext: $(link-libm)