SHA256
6
0
forked from pool/hpx

fix missing % in if macro #2

Manually merged
HPC merged 2 commits from NMorey/hpx:main into main 2025-11-03 16:15:40 +01:00
2 changed files with 3 additions and 3 deletions

View File

@@ -3,7 +3,7 @@ Fri Oct 31 16:18:47 UTC 2025 - Nicolas Morey <nicolas.morey@suse.com>
- Update to 1.11.1
- See https://hpx-docs.stellar-group.org/tags/v1.11.0-rc1/html/releases/whats_new_1_11_0.html
- Disable build for SLE <= 15.6 as it does not fully support C++17
- Disable build for SLE < 16.0 as it does not fully support C++17
-------------------------------------------------------------------
Wed Sep 24 09:29:37 CEST 2025 - aschnell@suse.com

View File

@@ -48,8 +48,8 @@ BuildRequires: libboost_thread-devel >= 1.71
BuildRequires: openmpi-macros-devel
Requires: libhpx1 = %{version}-%{release}
ExcludeArch: i586 %arm
if 0%{?sle_version} > 0 && 0%{?sle_version} <= 150600
# SLE up to 15.6 only has GCC < 8 which does not have full C++17 support and fails to build
%if 0%{?suse_version} < 1600
# SLE < 16.0 only has GCC < 8 which does not have full C++17 support and fails to build
ExclusiveArch: do_not_build
%endif