Skip to content

Commit 1457090

Browse files
committed
trying to fix linker bug on windows
1 parent 2231f93 commit 1457090

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,8 @@
4747
rdkit_prefix += "/Library"
4848
boost_include = "include"
4949

50+
print(rdkit_prefix, '>>')
51+
sys.exit(0)
5052
ext_modules = [
5153
Pybind11Extension(
5254
"graphium_cpp",
@@ -94,7 +96,7 @@
9496
"c10",
9597
f"boost_python{python_version}",
9698
],
97-
library_dirs=[os.path.join(rdkit_prefix, "lib"), os.path.join(torch_dir, "lib"), torch_dir],
99+
library_dirs=[os.path.join(rdkit_prefix, "lib"), os.path.join(torch_dir, "lib")],
98100
extra_compile_args=package_compile_args,
99101
)
100102
]

0 commit comments

Comments
 (0)