Skip to content
This repository was archived by the owner on Feb 23, 2026. It is now read-only.
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions argobots.spec
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Name: argobots
%global tag %{major}.%{minor}%{?prerelease}

Version: %{major}.%{minor}%{?prerelease:~%{prerelease}}
Release: 1%{?dist}
Release: 2%{?dist}
Summary: Lightweight, low-level threading and tasking framework
Group: System Environment/Libraries
License: UChicago Argonne, LLC -- Argobots License
Expand All @@ -19,6 +19,7 @@ Patch0: %{version}..%{commit}.patch
Patch1: https://github.com/pmodels/argobots/commit/411e5b344642ebc82190fd8b125db512e5b449d1.patch
# Restore the libunwind support
Patch2: https://github.com/pmodels/argobots/commit/bb0c908abfac4bfe37852eee621930634183c6aa.patch
Patch3: https://github.com/liw/argobots/commit/7d445e79f2cae0b19f630eabc892ba109cfde195.patch

BuildRequires: pkgconfig

Expand Down Expand Up @@ -79,7 +80,7 @@ if true || [ ! -f configure ]; then
./autogen.sh
fi
# defaults: with-dlopen can be over-rode:
%configure --enable-valgrind --enable-stack-unwind --enable-option-checking=fatal
%configure --enable-valgrind --enable-stack-unwind --enable-option-checking=fatal --disable-mem-pool
make %{?_smp_mflags} V=1

%install
Expand Down Expand Up @@ -115,6 +116,9 @@ rm -f %{buildroot}%{_libdir}/*.{l,}a
%doc README

%changelog
* Fri Mar 07 2025 Li Wei <liwei@hpe.com> - 1.2-2
- Add patch for mprotect experiment

* Wed Oct 02 2024 Cedric Koch-Hofer <cedric.koch-hofer@intel.com> - 1.2-1
- Update to 1.2
- Add patch 411e5b3 Fix DAOS-14248: ULTs stacks dump works only once
Expand Down
8 changes: 8 additions & 0 deletions packaging/Makefile_distro_vars.mk
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,14 @@ DISTRO_VERSION ?= $(VERSION_ID)
ORIG_TARGET_VER := 15.5
SED_EXPR := 1p
endif
ifeq ($(CHROOT_NAME),opensuse-leap-15.6-x86_64)
VERSION_ID := 15.6
DISTRO_ID := sl15.6
DISTRO_BASE := LEAP_15
DISTRO_VERSION ?= $(VERSION_ID)
ORIG_TARGET_VER := 15.6
SED_EXPR := 1p
endif
endif
ifeq ($(ID),centos)
ID = el
Expand Down