You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# use python with pymalloc (look for "pythonX.Ym" files)
PY_USE_PYMALLOC=1
however, the build system does not check whether these values are set to a true value (that is: 1), but instead it is only important that the variable is assigned any value:
the build configuration obviously uses boolean values, e.g.
py/build/config-lnx.def
Lines 24 to 25 in 35138a0
however, the build system does not check whether these values are set to a
true
value (that is:1
), but instead it is only important that the variable is assigned any value:py/build/gnumake-lnx-gcc.inc
Line 1 in 35138a0
the consequence is that e.g. setting
PY_USE_PYMALLOC=0
will still enable pymalloc, even though the declaration suggests otherwise.I suggest to either
1
(very much preferred)The text was updated successfully, but these errors were encountered: