[cx-oracle-users] Some build problems of cx_Oracle 4.1 beta1 on Win32
Brought to you by:
atuining
From: Harri P. <har...@tr...> - 2004-11-18 17:13:54
|
Me again, with another set of problems: With Visual C++ 6.0 it stumbles on Variable.c, which appears to have long long's in it, which Visual C++ 6.0 does not support. Moving to VC 7.1: With Visual C++ 7.1 I got further, but had some trouble as win32api was not installed in my vc7 environment (why is it needed?) Hand tweaking setup.py around that got me a linker warning: LINK : warning LNK4044: unrecognized option '/s', and then it bailed out trying to link against oci.dll? setup.py line: extraLinkArgs.append(os.path.join(oracleHome, "bin", "oci.dll")) was at cause: Changing that to: extraLinkArgs.append(os.path.join(oracleHome, "oci","msvc","lib", "oci.lib")) made it to link. (Oracle 9.2 client, Python 2.3.4, VC++7.1) I'll continue tomorrow... Regards, Harri This message, including any attachments, is intended only for the person(s) to whom it is addressed. If you received it in error, please let us know and delete the message from your system. This message may be confidential and may fall under the duty of non-disclosure. Any use by others than the intended addressee is prohibited. Trema shall not be liable for any damage related to the electronic transmission of this message, such as failure or delay of its delivery, interception or manipulation by third parties, or transmission of viruses or other malicious code. |