Re: [cx-oracle-users] cx_Oracle and libclntsh(FreeBSD)
Brought to you by:
atuining
From: Glyph <gl...@tw...> - 2012-09-10 16:14:33
|
On Sep 10, 2012, at 3:27 AM, ix...@po... wrote: > I want to use cx_Oracle for connect to Oracle DB. I using FreeBSD 9.0(i386) as client. > After I installed all the necessary ports for linux-emulations(32bit fedora emul. port) and > oracle client 10.2.0.3, I can't make setup.py build: I don't know the specifics here, either related to FreeBSD or Oracle, but I do know that FreeBSD and Linux binaries are different. As I understand it, FreeBSD's linux compatibility layer will let you run Linux executables, but it won't let arbitrary FreeBSD programs load arbitrary linux shared objects into their own address space. In this case, you'll probably need a full Linux build of Python, so that you can import the module as if everything were running on Linux. Good luck, -g |