Keep LDFLAGS if --coverage

This commit is contained in:
DesWurstes 2019-02-25 11:34:52 +03:00 committed by GitHub
parent 85d0e1bcce
commit 310111e093
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -156,7 +156,7 @@ AC_CHECK_TYPES([__int128])
if test x"$enable_coverage" = x"yes"; then if test x"$enable_coverage" = x"yes"; then
AC_DEFINE(COVERAGE, 1, [Define this symbol to compile out all VERIFY code]) AC_DEFINE(COVERAGE, 1, [Define this symbol to compile out all VERIFY code])
CFLAGS="$CFLAGS -O0 --coverage" CFLAGS="$CFLAGS -O0 --coverage"
LDFLAGS="--coverage" LDFLAGS="$LDFLAGS --coverage"
else else
CFLAGS="$CFLAGS -O3" CFLAGS="$CFLAGS -O3"
fi fi