summaryrefslogtreecommitdiff
path: root/bindings
diff options
context:
space:
mode:
authorAnders Waldenborg <anders@0x63.nu>2012-11-20 22:27:55 +0000
committerAnders Waldenborg <anders@0x63.nu>2012-11-20 22:27:55 +0000
commit17cfe87c390265187d16a60ff4d7687802a07bba (patch)
tree119947cd72bc577c975916e18159a2550fc960e8 /bindings
parent7d1b42a842754ac4db08b3bbf0087c7c8fb202fa (diff)
downloadllvm-17cfe87c390265187d16a60ff4d7687802a07bba.tar.gz
llvm-17cfe87c390265187d16a60ff4d7687802a07bba.tar.bz2
llvm-17cfe87c390265187d16a60ff4d7687802a07bba.tar.xz
[python] fix get_library()
Before this fix, the LLVM Python bindings on SVN trunk always fail with: Exception: LLVM shared library not found! since it's still looking for a library named "LLVM-3.1svn". Besides updating the LLVM version in the library name, this patch also changes llvm.get_library() to make it possible to run the unit tests without installing the LLVM shared library into a default linker search path. e.g. after this patch, running the llvm/python unit tests with: LD_LIBRARY_PATH=../build/Debug+Asserts/lib nosetests -v bindings/python/llvm/tests/ would work on Linux. Patch from Scott Tsai (with some minor modifications) Patch also acked by Gregory Szorc git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@168390 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'bindings')
-rw-r--r--bindings/python/llvm/common.py50
1 files changed, 35 insertions, 15 deletions
diff --git a/bindings/python/llvm/common.py b/bindings/python/llvm/common.py
index 0c5fcd03d8..17c22b8ef4 100644
--- a/bindings/python/llvm/common.py
+++ b/bindings/python/llvm/common.py
@@ -12,10 +12,14 @@ from ctypes import c_void_p
from ctypes import cdll
import ctypes.util
+import platform
+
+# LLVM_VERSION: sync with PACKAGE_VERSION in autoconf/configure.ac and CMakeLists.txt
+# but leave out the 'svn' suffix.
+LLVM_VERSION = '3.3'
__all__ = [
'c_object_p',
- 'find_library',
'get_library',
]
@@ -87,20 +91,36 @@ class CachedProperty(object):
return value
-def find_library():
- # FIXME should probably have build system define absolute path of shared
- # library at install time.
- for lib in ['LLVM-3.1svn', 'libLLVM-3.1svn', 'LLVM', 'libLLVM']:
- result = ctypes.util.find_library(lib)
- if result:
- return result
-
- return None
-
def get_library():
"""Obtain a reference to the llvm library."""
- lib = find_library()
- if not lib:
- raise Exception('LLVM shared library not found!')
- return cdll.LoadLibrary(lib)
+ # On Linux, ctypes.cdll.LoadLibrary() respects LD_LIBRARY_PATH
+ # while ctypes.util.find_library() doesn't.
+ # See http://docs.python.org/2/library/ctypes.html#finding-shared-libraries
+ #
+ # To make it possible to run the unit tests without installing the LLVM shared
+ # library into a default linker search path. Always Try ctypes.cdll.LoadLibrary()
+ # with all possible library names first, then try ctypes.util.find_library().
+
+ names = ['LLVM-' + LLVM_VERSION, 'LLVM-' + LLVM_VERSION + 'svn']
+ t = platform.system()
+ if t == 'Darwin':
+ pfx, ext = 'lib', '.dylib'
+ elif t == 'Windows':
+ pfx, ext = '', '.dll'
+ else:
+ pfx, ext = 'lib', '.so'
+
+ for i in names:
+ try:
+ lib = cdll.LoadLibrary(pfx + i + ext)
+ except OSError:
+ pass
+ else:
+ return lib
+
+ for i in names:
+ t = ctypes.util.find_library(i)
+ if t:
+ return cdll.LoadLibrary(t)
+ raise Exception('LLVM shared library not found!')