Re: [cx-oracle-users] how to build cx_oracle statically
Brought to you by:
atuining
From: Alexander G. <xr...@ya...> - 2010-06-16 08:30:19
|
Hello, Bernard Delmée <bdelmee@...> writes: > Anyone with an idea or HP-UX expertise, please chime in! so far I've managed to omit dependency on libnnz10.so by linking against "static" version of libclnt (-lclntst10). This involved editing cx_Oracle's setup.py to remove "clntsh" from libs: ilink@tunis:~/src/cx_Oracle-5.0.3 > grep libs setup.py libs = ["oci"] libs = ["oci"] # libs = ["clntsh", "ttsh10"] libs = [] libraries = libs, ilink@tunis:~/src/cx_Oracle-5.0.3 > Another way is to add libttsh10, and you can see it being commented out in the above grep output. The ttsh10 seems to satisfy libnnz10's deps, and comments in setup.py suggest doing so on HP-UX. -- WBR, xrgtn |