Compile the debug build with -Og rather than -O0
That is, "optimize for debugging experience" rather than "don't optimize".
This commit is contained in:
parent
e354fb5703
commit
091b4b20e9
@ -14,7 +14,7 @@ URL: https://www.python.org/
|
|||||||
# WARNING When rebasing to a new Python version,
|
# WARNING When rebasing to a new Python version,
|
||||||
# remember to update the python3-docs package as well
|
# remember to update the python3-docs package as well
|
||||||
Version: %{pybasever}.0
|
Version: %{pybasever}.0
|
||||||
Release: 9%{?dist}
|
Release: 10%{?dist}
|
||||||
License: Python
|
License: Python
|
||||||
|
|
||||||
|
|
||||||
@ -742,7 +742,7 @@ BuildPython() {
|
|||||||
%if %{with debug_build}
|
%if %{with debug_build}
|
||||||
BuildPython debug \
|
BuildPython debug \
|
||||||
"--without-ensurepip --with-pydebug" \
|
"--without-ensurepip --with-pydebug" \
|
||||||
"-O0"
|
"-Og"
|
||||||
%endif # with debug_build
|
%endif # with debug_build
|
||||||
|
|
||||||
BuildPython optimized \
|
BuildPython optimized \
|
||||||
@ -1551,6 +1551,9 @@ CheckPython optimized
|
|||||||
# ======================================================
|
# ======================================================
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Thu Sep 27 2018 Petr Viktorin <pviktori@redhat.com> - 3.7.0-10
|
||||||
|
- Compile the debug build with -Og rather than -O0
|
||||||
|
|
||||||
* Thu Aug 30 2018 Miro Hrončok <mhroncok@redhat.com> - 3.7.0-9
|
* Thu Aug 30 2018 Miro Hrončok <mhroncok@redhat.com> - 3.7.0-9
|
||||||
- Require python3-setuptools from python3-devel to prevent packaging errors (#1623914)
|
- Require python3-setuptools from python3-devel to prevent packaging errors (#1623914)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user