Skip to content

Commit

Permalink
Select libNeXus.so in dlopen.py Refs #6201
Browse files Browse the repository at this point in the history
This is required for some Linux systems.
  • Loading branch information
martyngigg committed Feb 5, 2013
1 parent 00c2187 commit c56f730
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Code/Mantid/Framework/PythonAPI/MantidFramework.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ def get_libpath(mainlib, dependency):
# the thread-local storage not being initialized properly unles
# it is loaded before other libraries.
dlloader(get_libpath(pythonlib, 'stdc++'))
dlloader(get_libpath(pythonlib, 'libNeXus'))
dlloader(get_libpath(pythonlib, 'libNeXus.so'))
dlloader(get_libpath(pythonlib, 'libMantidKernel'))
dlloader(get_libpath(pythonlib, 'libMantidGeometry'))
dlloader(get_libpath(pythonlib, 'libMantidAPI'))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ def get_libpath(mainlib, dependency):
# the thread-local storage not being initialized properly unles
# it is loaded before other libraries.
dlloader(get_libpath(pythonlib, 'stdc++'))
dlloader(get_libpath(pythonlib, 'libNeXus'))
dlloader(get_libpath(pythonlib, 'libNeXus.so'))
# Load the dependencies
for dep in depends:
dlloader(get_libpath(pythonlib, dep))
Expand Down

0 comments on commit c56f730

Please sign in to comment.