Adam Majer
e1c5a89560
- New upstream version 1.64.0 + process - new library providing cross platform methods to - create child processes - setup stream for child processes - sync and async communication streams with children - sync and async wait - process termination + geometry library had some breaking changes, - ublas_transformer is renamed to matrix_transformer - explicit modifier is added to constructors of rtree index::dynamic_* parameters - strategy::area::huiller replaced by strategy::area::spherical + context library updates - deprecated API:execution-context - fixed bad assembly for fcontext on ppc64/sysv/elf + Updated libraries: any, atomic, config, container, context, conversion, core, coroutine2, fiber, hash, interprocess, intrusive, lexicalcast, math, multi-index containers, multiprecision, predef, program options, regex, smart pointers, test ,typeindex, typetraits, unordered, variant + for details, see http://www.boost.org/users/history/version_1_64_0.html - Build PyNumpy module + add build requires on python-numpy - test_lowcase.patch: upstreamed - refreshed patches: boost-strict_aliasing.patch, gcc_path.patch, python_mpi.patch - mpi_upstream.patch: pending upstream fixes to OpenMPI build - python_library_name.patch: we are building python versions in different stagings so drop library renames. OBS-URL: https://build.opensuse.org/request/show/489639 OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/boost?expand=0&rev=194
28 lines
744 B
Diff
28 lines
744 B
Diff
Author: Adam Majer <adam.majer@suse.de>
|
|
Summary: Fix MPI module loading
|
|
|
|
MPI requires dl.RTLD_NOW|dl.RTLD_GLOBAL flags to load
|
|
properly.
|
|
|
|
|
|
Index: boost_1_64_0/libs/mpi/build/__init__.py
|
|
===================================================================
|
|
--- boost_1_64_0.orig/libs/mpi/build/__init__.py
|
|
+++ boost_1_64_0/libs/mpi/build/__init__.py
|
|
@@ -1,10 +1,7 @@
|
|
import sys
|
|
-if sys.platform == 'linux2':
|
|
- import DLFCN as dl
|
|
- flags = sys.getdlopenflags()
|
|
- sys.setdlopenflags(dl.RTLD_NOW|dl.RTLD_GLOBAL)
|
|
- import mpi
|
|
- sys.setdlopenflags(flags)
|
|
-else:
|
|
- import mpi
|
|
+import DLFCN as dl
|
|
+flags = sys.getdlopenflags()
|
|
+sys.setdlopenflags(dl.RTLD_NOW|dl.RTLD_GLOBAL)
|
|
+import boost.parallel.mpi.mpi
|
|
+sys.setdlopenflags(flags)
|
|
|