mirror of
https://github.com/NGSolve/netgen.git
synced 2024-12-27 14:20:34 +05:00
Revert "Add search path to occt libraries"
This reverts commit 7ac609cbef
.
This commit is contained in:
parent
7ac609cbef
commit
c488fa936a
@ -1,31 +1,10 @@
|
|||||||
import os
|
import os
|
||||||
import sys
|
import sys
|
||||||
import importlib.metadata
|
|
||||||
from pathlib import Path
|
|
||||||
|
|
||||||
from . import config
|
from . import config
|
||||||
_netgen_bin_dir=os.path.realpath(os.path.join(os.path.dirname(__file__),'..',config.NETGEN_PYTHON_RPATH_BIN))
|
_netgen_bin_dir=os.path.realpath(os.path.join(os.path.dirname(__file__),'..',config.NETGEN_PYTHON_RPATH_BIN))
|
||||||
_netgen_lib_dir=os.path.realpath(os.path.join(os.path.dirname(__file__),'..',config.NETGEN_PYTHON_RPATH))
|
_netgen_lib_dir=os.path.realpath(os.path.join(os.path.dirname(__file__),'..',config.NETGEN_PYTHON_RPATH))
|
||||||
|
|
||||||
def _add_shared_lib_path(p: Path):
|
|
||||||
print("Adding shared search path", f.locate().parent)
|
|
||||||
if sys.platform.startswith('win'):
|
|
||||||
os.add_dll_directory(p)
|
|
||||||
elif 'linux' in sys.platform:
|
|
||||||
if str(p) not in os.environ['LD_LIBRARY_PATH']:
|
|
||||||
os.environ['LD_LIBRARY_PATH'] = str(p) + ':' + os.environ['LD_LIBRARY_PATH']
|
|
||||||
elif 'darwin' in sys.platform:
|
|
||||||
if str(p) not in os.environ['DYLD_LIBRARY_PATH']:
|
|
||||||
os.environ['DYLD_LIBRARY_PATH'] = str(p) + ':' + os.environ['DYLD_LIBRARY_PATH']
|
|
||||||
try:
|
|
||||||
importlib.metadata.metadata('netgen-occt')
|
|
||||||
for f in importlib.metadata.files('netgen-occt'):
|
|
||||||
if f.match('*libTKernel*'):
|
|
||||||
print("Adding shared search path", f.locate().parent)
|
|
||||||
_add_shared_lib_path(f.locate().parent)
|
|
||||||
except importlib.metadata.PackageNotFoundError:
|
|
||||||
pass
|
|
||||||
|
|
||||||
__diagnostics_template = """
|
__diagnostics_template = """
|
||||||
Netgen diagnostics:
|
Netgen diagnostics:
|
||||||
sys.platform: {sys.platform}
|
sys.platform: {sys.platform}
|
||||||
|
Loading…
Reference in New Issue
Block a user