[info=9a30dc62a764d2d812c0ebc6a9b89e9b4a50990c86e46d728132c2af9a70fbc6]
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/gc?expand=0&rev=53
This commit is contained in:
parent
6c8588a2ed
commit
3339760dfb
@ -1,3 +1,3 @@
|
|||||||
mtime: 1707038742
|
mtime: 1725861758
|
||||||
commit: 5bdc7c6cc259dd2cbf72295ec11cc4c98fa042314838ecd213c5b0e06551080c
|
commit: 9a30dc62a764d2d812c0ebc6a9b89e9b4a50990c86e46d728132c2af9a70fbc6
|
||||||
url: https://src.opensuse.org/clibs/gc
|
url: https://src.opensuse.org/clibs/gc
|
||||||
|
BIN
build.specials.obscpio
(Stored with Git LFS)
BIN
build.specials.obscpio
(Stored with Git LFS)
Binary file not shown.
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:b9183fe49d4c44c7327992f626f8eaa1d8b14de140f243edb1c9dcff7719a7fc
|
|
||||||
size 1216440
|
|
BIN
gc-8.2.8.tar.gz
(Stored with Git LFS)
Normal file
BIN
gc-8.2.8.tar.gz
(Stored with Git LFS)
Normal file
Binary file not shown.
20
gc.changes
20
gc.changes
@ -1,3 +1,23 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Sep 9 05:56:13 UTC 2024 - Jan Engelhardt <jengelh@inai.de>
|
||||||
|
|
||||||
|
- Update to release 8.2.8
|
||||||
|
* Allow GC_size() argument to be null
|
||||||
|
* Fix 'un-mprotect vdb failed' abort with out-of-memory reason
|
||||||
|
on Linux
|
||||||
|
* Fix GC_is_visible for case of arg pointing exactly to object
|
||||||
|
upper bound
|
||||||
|
* Fix double lock in GC_malloc called from backtrace()
|
||||||
|
* Fix heap blocks size computation by GC_get_memory_use
|
||||||
|
* Fix infinite resend lost signals if a thread is restarted by
|
||||||
|
SIGQUIT
|
||||||
|
* Fix null pointer dereference in GC_is_visible if type_descr
|
||||||
|
is null
|
||||||
|
* Fix potential address overflow in GC_add_to_heap
|
||||||
|
* Fix potential buffer overrun during read in GC_text_mapping
|
||||||
|
* Use atomic store to set GC_first_nonempty in
|
||||||
|
GC_do_parallel_mark
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sun Feb 4 09:20:25 UTC 2024 - Jan Engelhardt <jengelh@inai.de>
|
Sun Feb 4 09:20:25 UTC 2024 - Jan Engelhardt <jengelh@inai.de>
|
||||||
|
|
||||||
|
23
gc.spec
23
gc.spec
@ -17,7 +17,7 @@
|
|||||||
|
|
||||||
|
|
||||||
Name: gc
|
Name: gc
|
||||||
Version: 8.2.6
|
Version: 8.2.8
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: A garbage collector for C and C++
|
Summary: A garbage collector for C and C++
|
||||||
License: BSD-3-Clause
|
License: BSD-3-Clause
|
||||||
@ -27,7 +27,7 @@ URL: http://www.hboehm.info/gc/
|
|||||||
#Git-Clone: https://github.com/ivmai/bdwgc
|
#Git-Clone: https://github.com/ivmai/bdwgc
|
||||||
Source: https://github.com/ivmai/bdwgc/releases/download/v%version/%name-%version.tar.gz
|
Source: https://github.com/ivmai/bdwgc/releases/download/v%version/%name-%version.tar.gz
|
||||||
BuildRequires: autoconf >= 2.64
|
BuildRequires: autoconf >= 2.64
|
||||||
BuildRequires: gcc-c++
|
BuildRequires: c++_compiler
|
||||||
BuildRequires: libtool
|
BuildRequires: libtool
|
||||||
BuildRequires: pkg-config
|
BuildRequires: pkg-config
|
||||||
BuildRequires: pkgconfig(atomic_ops)
|
BuildRequires: pkgconfig(atomic_ops)
|
||||||
@ -81,13 +81,9 @@ autoreconf -fi
|
|||||||
# see bugzilla.redhat.com/689877
|
# see bugzilla.redhat.com/689877
|
||||||
export CPPFLAGS="-DUSE_GET_STACKBASE_FOR_MAIN"
|
export CPPFLAGS="-DUSE_GET_STACKBASE_FOR_MAIN"
|
||||||
export CXXFLAGS="%optflags"
|
export CXXFLAGS="%optflags"
|
||||||
%configure --disable-static --docdir="%_docdir/%name" \
|
%configure --disable-static --docdir="%_docdir/%name" --with-gnu-ld \
|
||||||
--with-gnu-ld \
|
--enable-cplusplus --enable-large-config --enable-threads=posix \
|
||||||
--enable-cplusplus \
|
--enable-parallel-mark --with-libatomic-ops=yes
|
||||||
--enable-large-config \
|
|
||||||
--enable-threads=posix \
|
|
||||||
--enable-parallel-mark \
|
|
||||||
--with-libatomic-ops=yes
|
|
||||||
# --with-libatomic-ops=yes means to use the system library
|
# --with-libatomic-ops=yes means to use the system library
|
||||||
|
|
||||||
%make_build
|
%make_build
|
||||||
@ -104,8 +100,7 @@ done
|
|||||||
make check -j1
|
make check -j1
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%post -n libgc1 -p /sbin/ldconfig
|
%ldconfig_scriptlets -n libgc1
|
||||||
%postun -n libgc1 -p /sbin/ldconfig
|
|
||||||
|
|
||||||
%files -n libgc1
|
%files -n libgc1
|
||||||
%_libdir/libcord.so.1*
|
%_libdir/libcord.so.1*
|
||||||
@ -115,10 +110,8 @@ make check -j1
|
|||||||
%_docdir/%name/
|
%_docdir/%name/
|
||||||
%_libdir/libcord.so
|
%_libdir/libcord.so
|
||||||
%_libdir/libgc*.so
|
%_libdir/libgc*.so
|
||||||
%_libdir/pkgconfig/bdw-gc.pc
|
%_libdir/pkgconfig/*.pc
|
||||||
%_mandir/man3/gc.3*
|
%_mandir/man3/gc.3*
|
||||||
%_includedir/gc.h
|
%_includedir/gc*
|
||||||
%_includedir/gc_cpp.h
|
|
||||||
%_includedir/gc/
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
Loading…
x
Reference in New Issue
Block a user