Skip to content
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
7 changes: 5 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 Down Expand Up @@ -79,7 +79,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 --enable-checks=no
make %{?_smp_mflags} V=1

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

%changelog
* Tue Mar 04 2025 Li Wei <liwei@hpe.com> - 1.2-2
- Test --enable-checks=no

* 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
1 change: 1 addition & 0 deletions debian/rules
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
CONFIGURE_FLAGS += --enable-stack-unwind
# configure with Valgrind support
CONFIGURE_FLAGS += --enable-valgrind
CONFIGURE_FLAGS += --enable-checks=no

%:
dh $@
Expand Down