forked from pool/libfabric
Accepting request 998811 from science:HPC
OBS-URL: https://build.opensuse.org/request/show/998811 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libfabric?expand=0&rev=33
This commit is contained in:
commit
727dd06214
13
disable-flatten-attr.patch
Normal file
13
disable-flatten-attr.patch
Normal file
@ -0,0 +1,13 @@
|
||||
diff --git a/prov/opx/include/rdma/opx/fi_opx_compiler.h b/prov/opx/include/rdma/opx/fi_opx_compiler.h
|
||||
index 80493bd..e216faa 100644
|
||||
--- a/prov/opx/include/rdma/opx/fi_opx_compiler.h
|
||||
+++ b/prov/opx/include/rdma/opx/fi_opx_compiler.h
|
||||
@@ -41,7 +41,7 @@
|
||||
#define L2_CACHE_LINE_SIZE (64)
|
||||
|
||||
#ifdef NDEBUG // No Debug, Optimizing
|
||||
-#define __OPX_FORCE_INLINE_AND_FLATTEN__ static inline __attribute__ ((always_inline, flatten))
|
||||
+#define __OPX_FORCE_INLINE_AND_FLATTEN__ static inline __attribute__ ((always_inline))
|
||||
#define __OPX_FORCE_INLINE__ static inline __attribute__ ((always_inline))
|
||||
#else // NDEBUG
|
||||
#define __OPX_FORCE_INLINE_AND_FLATTEN__ static inline
|
@ -1,3 +1,12 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Aug 1 20:01:18 UTC 2022 - Martin Liška <mliska@suse.cz>
|
||||
|
||||
- Add disable-flatten-attr.patch that drops flatten attribute.
|
||||
Note the flatten attribute results in huge compile time hog
|
||||
in inliner (same the binary size would be huge).
|
||||
- Use %make_build and enable LTO (boo#1133235).
|
||||
- Synchronize used Patches.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jun 23 10:36:09 UTC 2022 - Nicolas Morey-Chaisemartin <nmoreychaisemartin@suse.com>
|
||||
|
||||
|
@ -27,6 +27,9 @@ Group: Development/Tools/Other
|
||||
URL: http://www.github.com/ofiwg/libfabric
|
||||
Source: libfabric-%{version}%{git_ver}.tar.bz2
|
||||
Source1: fabtests-rpmlintrc
|
||||
Patch0: libfabric-libtool.patch
|
||||
Patch1: prov-opx-Correctly-disable-OPX-if-unsupported.patch
|
||||
Patch2: disable-flatten-attr.patch
|
||||
BuildRequires: autoconf
|
||||
BuildRequires: automake
|
||||
BuildRequires: libfabric-devel = %{version}
|
||||
@ -38,12 +41,15 @@ Fabtests provides a set of examples that uses libfabric, a fabric software libra
|
||||
|
||||
%prep
|
||||
%setup -q -n libfabric-%{version}%{git_ver}
|
||||
%patch0 -p1
|
||||
%patch1
|
||||
%patch2 -p1
|
||||
|
||||
%build
|
||||
cd fabtests
|
||||
./autogen.sh
|
||||
%configure %{?_with_libfabric}
|
||||
make %{?_smp_mflags}
|
||||
%make_build
|
||||
|
||||
%install
|
||||
%make_install -C fabtests
|
||||
|
@ -1,3 +1,12 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Aug 1 20:01:18 UTC 2022 - Martin Liška <mliska@suse.cz>
|
||||
|
||||
- Add disable-flatten-attr.patch that drops flatten attribute.
|
||||
Note the flatten attribute results in huge compile time hog
|
||||
in inliner (same the binary size would be huge).
|
||||
- Use %make_build and enable LTO (boo#1133235).
|
||||
- Synchronize used Patches.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jun 23 10:36:09 UTC 2022 - Nicolas Morey-Chaisemartin <nmoreychaisemartin@suse.com>
|
||||
|
||||
|
@ -29,6 +29,7 @@ Source: %{name}-%{version}%{git_ver}.tar.bz2
|
||||
Source1: baselibs.conf
|
||||
Patch0: libfabric-libtool.patch
|
||||
Patch1: prov-opx-Correctly-disable-OPX-if-unsupported.patch
|
||||
Patch2: disable-flatten-attr.patch
|
||||
URL: http://www.github.com/ofiwg/libfabric
|
||||
BuildRequires: autoconf
|
||||
BuildRequires: automake
|
||||
@ -72,9 +73,9 @@ services, such as RDMA. This package contains the development files.
|
||||
%setup -q -n %{name}-%{version}%{git_ver}
|
||||
%patch0 -p1
|
||||
%patch1
|
||||
%patch2 -p1
|
||||
|
||||
%build
|
||||
%define _lto_cflags %{nil}
|
||||
rm -f config/libtool.m4
|
||||
autoreconf -fi
|
||||
# defaults: with-dlopen and without-valgrind can be over-rode:
|
||||
@ -88,7 +89,7 @@ autoreconf -fi
|
||||
--enable-psm3 \
|
||||
%endif
|
||||
--disable-static
|
||||
make %{?_smp_mflags}
|
||||
%make_build
|
||||
|
||||
%install
|
||||
%make_install
|
||||
|
Loading…
Reference in New Issue
Block a user