diff options
author | Adhemerval Zanella <azanella@linux.vnet.ibm.com> | 2013-11-11 11:23:02 -0200 |
---|---|---|
committer | Adhemerval Zanella <azanella@linux.vnet.ibm.com> | 2013-11-11 11:24:07 -0200 |
commit | 450a2e2d19bcf668b44778edef55c11d98aad2c6 (patch) | |
tree | fd2057cf8a6b1e7dc4c1c126845224ee862791de /benchtests/Makefile | |
parent | 8ec3f656d6edf6f16216105131fc8b0542216a5b (diff) | |
download | glibc-450a2e2d19bcf668b44778edef55c11d98aad2c6.zip glibc-450a2e2d19bcf668b44778edef55c11d98aad2c6.tar.gz glibc-450a2e2d19bcf668b44778edef55c11d98aad2c6.tar.bz2 |
benchtests: Add strtod benchmark
Diffstat (limited to 'benchtests/Makefile')
-rw-r--r-- | benchtests/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/benchtests/Makefile b/benchtests/Makefile index aec395a..5eb65e5 100644 --- a/benchtests/Makefile +++ b/benchtests/Makefile @@ -32,7 +32,9 @@ string-bench := bcopy bzero memccpy memchr memcmp memcpy memmem memmove \ string-bench-ifunc := $(addsuffix -ifunc, $(string-bench)) string-bench-all := $(string-bench) $(string-bench-ifunc) -benchset := $(string-bench-all) +stdlib-bench := strtod + +benchset := $(string-bench-all) $(stdlib-bench) LDLIBS-bench-acos = -lm LDLIBS-bench-acosh = -lm |