Build Python with -O3
https://fedoraproject.org/wiki/Changes/Python_built_with_gcc_O3 Resolves: RHEL-49615
This commit is contained in:
parent
2aa39aaa1f
commit
a5cbec13ee
@ -20,7 +20,7 @@ URL: https://www.python.org/
|
|||||||
#global prerel ...
|
#global prerel ...
|
||||||
%global upstream_version %{general_version}%{?prerel}
|
%global upstream_version %{general_version}%{?prerel}
|
||||||
Version: %{general_version}%{?prerel:~%{prerel}}
|
Version: %{general_version}%{?prerel:~%{prerel}}
|
||||||
Release: 1%{?dist}
|
Release: 2%{?dist}
|
||||||
License: Python-2.0.1
|
License: Python-2.0.1
|
||||||
|
|
||||||
|
|
||||||
@ -201,6 +201,15 @@ Provides: bundled(python3dist(packaging)) = 23
|
|||||||
%global py_INSTSONAME_optimized libpython%{LDVERSION_optimized}.so.%{py_SOVERSION}
|
%global py_INSTSONAME_optimized libpython%{LDVERSION_optimized}.so.%{py_SOVERSION}
|
||||||
%global py_INSTSONAME_debug libpython%{LDVERSION_debug}.so.%{py_SOVERSION}
|
%global py_INSTSONAME_debug libpython%{LDVERSION_debug}.so.%{py_SOVERSION}
|
||||||
|
|
||||||
|
# The -O flag for the compiler, optimized builds
|
||||||
|
# https://fedoraproject.org/wiki/Changes/Python_built_with_gcc_O3
|
||||||
|
%global optflags_optimized -O3
|
||||||
|
# The -O flag for the compiler, debug builds
|
||||||
|
# -Wno-cpp avoids some warnings with -O0
|
||||||
|
%global optflags_debug -O0 -Wno-cpp
|
||||||
|
# Remove the default -O2 flag, our flags are applied in %%build/%%install
|
||||||
|
%global __global_compiler_flags %(echo '%{__global_compiler_flags}' | sed 's/-O[[:digit:]]//')
|
||||||
|
|
||||||
# Disable automatic bytecompilation. The python3 binary is not yet be
|
# Disable automatic bytecompilation. The python3 binary is not yet be
|
||||||
# available in /usr/bin when Python is built. Also, the bytecompilation fails
|
# available in /usr/bin when Python is built. Also, the bytecompilation fails
|
||||||
# on files that test invalid syntax.
|
# on files that test invalid syntax.
|
||||||
@ -865,12 +874,12 @@ BuildPython() {
|
|||||||
# See also: https://bugzilla.redhat.com/show_bug.cgi?id=1818857
|
# See also: https://bugzilla.redhat.com/show_bug.cgi?id=1818857
|
||||||
BuildPython debug \
|
BuildPython debug \
|
||||||
"--without-ensurepip --with-pydebug" \
|
"--without-ensurepip --with-pydebug" \
|
||||||
"-O0 -Wno-cpp"
|
"%{optflags_debug}"
|
||||||
%endif # with debug_build
|
%endif # with debug_build
|
||||||
|
|
||||||
BuildPython optimized \
|
BuildPython optimized \
|
||||||
"--without-ensurepip %{optimizations_flag}" \
|
"--without-ensurepip %{optimizations_flag}" \
|
||||||
""
|
"%{optflags_optimized}"
|
||||||
|
|
||||||
# ======================================================
|
# ======================================================
|
||||||
# Installing the built code:
|
# Installing the built code:
|
||||||
@ -975,14 +984,14 @@ EOF
|
|||||||
%if %{with debug_build}
|
%if %{with debug_build}
|
||||||
InstallPython debug \
|
InstallPython debug \
|
||||||
%{py_INSTSONAME_debug} \
|
%{py_INSTSONAME_debug} \
|
||||||
-O0 \
|
"%{optflags_debug}" \
|
||||||
%{LDVERSION_debug}
|
%{LDVERSION_debug}
|
||||||
%endif # with debug_build
|
%endif # with debug_build
|
||||||
|
|
||||||
# Now the optimized build:
|
# Now the optimized build:
|
||||||
InstallPython optimized \
|
InstallPython optimized \
|
||||||
%{py_INSTSONAME_optimized} \
|
%{py_INSTSONAME_optimized} \
|
||||||
"" \
|
"%{optflags_optimized}" \
|
||||||
%{LDVERSION_optimized}
|
%{LDVERSION_optimized}
|
||||||
|
|
||||||
# Install directories for additional packages
|
# Install directories for additional packages
|
||||||
@ -1704,6 +1713,10 @@ CheckPython optimized
|
|||||||
# ======================================================
|
# ======================================================
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Wed Jul 17 2024 Charalampos Stratakis <cstratak@redhat.com> - 3.12.4-2
|
||||||
|
- Build Python with -O3
|
||||||
|
- https://fedoraproject.org/wiki/Changes/Python_built_with_gcc_O3
|
||||||
|
|
||||||
* Fri Jun 28 2024 Tomáš Hrnčiar <thrnciar@redhat.com> - 3.12.4-1
|
* Fri Jun 28 2024 Tomáš Hrnčiar <thrnciar@redhat.com> - 3.12.4-1
|
||||||
- Update to 3.12.4
|
- Update to 3.12.4
|
||||||
Resolves: RHEL-44103
|
Resolves: RHEL-44103
|
||||||
|
@ -34,6 +34,9 @@
|
|||||||
- debugtest:
|
- debugtest:
|
||||||
dir: python/selftest
|
dir: python/selftest
|
||||||
run: "VERSION={{ pybasever }} PYTHON=python{{ pybasever }}d X='-i test_check_probes' ./parallel.sh"
|
run: "VERSION={{ pybasever }} PYTHON=python{{ pybasever }}d X='-i test_check_probes' ./parallel.sh"
|
||||||
|
- optimizedflags:
|
||||||
|
dir: python/flags
|
||||||
|
run: "python{{ pybasever }} ./assertflags.py -O3"
|
||||||
- debugflags:
|
- debugflags:
|
||||||
dir: python/flags
|
dir: python/flags
|
||||||
run: "python{{ pybasever }}d ./assertflags.py -O0"
|
run: "python{{ pybasever }}d ./assertflags.py -O0"
|
||||||
|
Loading…
Reference in New Issue
Block a user