Skip to content

Commit

Permalink
Allow pybind to load tbb12.dll and tbb12_debug.dll
Browse files Browse the repository at this point in the history
  • Loading branch information
ssheorey authored Jul 30, 2024
1 parent c93c6cf commit 39fb3d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/open3d/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def load_cdll(path):
pass

if sys.platform == 'win32': # Unix: Use rpath to find libraries
load_cdll(str(next((Path(__file__).parent).glob("*tbb12.*"))))
load_cdll(str(next((Path(__file__).parent).glob("tbb12*dll"))))

# Enable CPU rendering based on env vars
if _build_config["BUILD_GUI"] and sys.platform.startswith("linux") and (
Expand Down

0 comments on commit 39fb3d3

Please sign in to comment.