Temporarily turn off the tests, optimizations and debug build

For faster development of the Platform-Python stack
This commit is contained in:
Tomas Orsava 2017-10-24 11:05:18 +02:00
parent af5fb68888
commit df43cbbde3
1 changed files with 3 additions and 3 deletions

View File

@ -30,7 +30,7 @@ License: Python
# Expensive optimizations (mainly, profile-guided optimizations)
%ifarch %{ix86} x86_64
%bcond_without optimizations
%bcond_with optimizations
%else
# On some architectures, the optimized build takes tens of hours, possibly
# longer than Koji's 24-hour timeout. Disable optimizations here.
@ -38,14 +38,14 @@ License: Python
%endif
# Run the test suite in %%check
%bcond_without tests
%bcond_with tests
# Ability to reuse RPM-installed pip using rewheel
%bcond_without rewheel
# Extra build for debugging the interpreter or C-API extensions
# (the -debug subpackages)
%bcond_without debug_build
%bcond_with debug_build
# Support for the GDB debugger
%bcond_without gdb_hooks