We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f703be7 commit 2614f44Copy full SHA for 2614f44
setup.py
@@ -31,8 +31,7 @@
31
# determine if we run with Python 3.
32
PY3 = (sys.version_info[0] == 3)
33
34
-# Figure out which boost library to use. This doesn't appear to consult
35
-# LD_LIBRARY_PATH.
+# Figure out the tagged name of boost_python library.
36
def get_boost_libraries():
37
"""Check for installed boost_python shared library.
38
@@ -52,7 +51,7 @@ def get_boost_libraries():
52
51
if not found:
53
import platform
54
import warnings
55
- ldevname = 'LD_LIBRARY_PATH'
+ ldevname = 'LIBRARY_PATH'
56
if platform.system() == 'Darwin':
57
ldevname = 'DYLD_FALLBACK_LIBRARY_PATH'
58
wmsg = ("Cannot detect name suffix for the %r library. "
0 commit comments