1
0
mirror of https://git.savannah.gnu.org/git/gnulib.git synced 2025-08-08 17:22:05 +03:00
Files
gnulib/modules/mbswidth-bench-tests
Bruno Haible e3f3b8258d Compile benchmark programs without assertions.
* modules/mbiter-bench-tests (Makefile.am): Compile bench-mbiter with
-DNDEBUG.
* modules/mbiterf-bench-tests (Makefile.am): Compile bench-mbiterf with
-DNDEBUG.
* modules/mbuiter-bench-tests (Makefile.am): Compile bench-mbuiter with
-DNDEBUG.
* modules/mbuiterf-bench-tests (Makefile.am): Compile bench-mbuiterf
with -DNDEBUG.
* modules/mbswidth-bench-tests (Makefile.am): Compile bench-mbswidth
with -DNDEBUG.
* modules/crypto/md5-buffer-tests (Makefile.am): Compile bench-md5 with
-DNDEBUG.
* modules/crypto/sha1-buffer-tests (Makefile.am): Compile bench-sha1
with -DNDEBUG.
* modules/crypto/sha256-buffer-tests (Makefile.am): Compile bench-sha224
and bench-sha256 with -DNDEBUG.
* modules/crypto/sha512-buffer-tests (Makefile.am): Compile bench-sha384
and bench-sha512 with -DNDEBUG.
2023-07-25 22:56:19 +02:00

23 lines
549 B
Plaintext

Files:
tests/bench-mbswidth.c
tests/bench-multibyte.h
tests/bench.h
Depends-on:
mbrtoc32-regular
mbswidth
setlocale
striconv
getrusage
gettimeofday
configure.ac:
Makefile.am:
noinst_PROGRAMS += bench-mbswidth
# Note: Despite NDEBUG being set here, mbswidth.o is compiled with the
# global CPPFLAGS. For complete removal of assert() invocations, pass
# CPPFLAGS="-DNDEBUG" when configuring the package.
bench_mbswidth_CPPFLAGS = $(AM_CPPFLAGS) -DNDEBUG
bench_mbswidth_LDADD = $(LDADD) $(LIBUNISTRING) $(SETLOCALE_LIB) $(MBRTOWC_LIB) $(LIBC32CONV)