mirror of
https://github.com/python/cpython.git
synced 2025-08-04 17:08:35 +00:00
gh-94847: Don't force inlining in debug builds of libmpdec (GH-94848)
This commit is contained in:
parent
c961d14f85
commit
97b4121f93
3 changed files with 13 additions and 0 deletions
|
@ -3697,6 +3697,11 @@ AS_VAR_IF([with_system_libmpdec], [yes], [
|
|||
LIBMPDEC_CFLAGS="-I\$(srcdir)/Modules/_decimal/libmpdec"
|
||||
LIBMPDEC_LDFLAGS="-lm \$(LIBMPDEC_A)"
|
||||
LIBMPDEC_INTERNAL="\$(LIBMPDEC_A)"
|
||||
|
||||
dnl Disable forced inlining in debug builds, see GH-94847
|
||||
AS_VAR_IF([with_pydebug], [yes], [
|
||||
AS_VAR_APPEND([LIBMPDEC_CFLAGS], [" -DTEST_COVERAGE"])
|
||||
])
|
||||
])
|
||||
|
||||
AC_SUBST([LIBMPDEC_CFLAGS])
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue