473,624 Members | 2,005 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Compiling DCOracle2 on RH Linux 8.0

All,

I am trying to compile DCOracle2 on RedHat 8.0 and make is giving me
the following error:

gcc -pthread -fPIC -DNDEBUG -g -O3 -Wall -Wstrict-prototypes
-I/usr/local/include/python2.3 -I/usr/local/include/python2.3 @DEFS@
-I/oracle/app/oracle/9i/rdbms/demo
-I/oracle/app/oracle/9i/network/public
-I/oracle/app/oracle/9i/plsql/public
-I/oracle/app/oracle/9i/rdbms/public -DORACLE9i -c ././dco2.c -o
../dco2.o
gcc: cannot specify -o with -c or -S and multiple compilations
Did I do something wrong?

Thanks for your help.
Jul 18 '05 #1
3 1670
re*****@yahoo.c om (Ron Reidy) wrote in message news:<ab******* *************** ****@posting.go ogle.com>...
I am trying to compile DCOracle2 on RedHat 8.0 and make is giving me
the following error:

gcc -pthread -fPIC -DNDEBUG -g -O3 -Wall -Wstrict-prototypes
-I/usr/local/include/python2.3 -I/usr/local/include/python2.3 @DEFS@
-I/oracle/app/oracle/9i/rdbms/demo
-I/oracle/app/oracle/9i/network/public
-I/oracle/app/oracle/9i/plsql/public
-I/oracle/app/oracle/9i/rdbms/public -DORACLE9i -c ././dco2.c -o
./dco2.o
gcc: cannot specify -o with -c or -S and multiple compilations
Did I do something wrong?


No. The DCOracle2 build process isn't very robust.

Look at src/Makefile. Find a line that says "DEFS=%DEFS " and change
it to "DEFS=-fno-strict-aliasing"
Jul 18 '05 #2
dr*****@wizard. net (David Ripton) wrote in message news:<87******* *************** ****@posting.go ogle.com>...
re*****@yahoo.c om (Ron Reidy) wrote in message news:<ab******* *************** ****@posting.go ogle.com>...
I am trying to compile DCOracle2 on RedHat 8.0 and make is giving me
the following error:

gcc -pthread -fPIC -DNDEBUG -g -O3 -Wall -Wstrict-prototypes
-I/usr/local/include/python2.3 -I/usr/local/include/python2.3 @DEFS@
-I/oracle/app/oracle/9i/rdbms/demo
-I/oracle/app/oracle/9i/network/public
-I/oracle/app/oracle/9i/plsql/public
-I/oracle/app/oracle/9i/rdbms/public -DORACLE9i -c ././dco2.c -o
./dco2.o
gcc: cannot specify -o with -c or -S and multiple compilations
Did I do something wrong?


No. The DCOracle2 build process isn't very robust.

Look at src/Makefile. Find a line that says "DEFS=%DEFS " and change
it to "DEFS=-fno-strict-aliasing"


David,

Thanks. That worked well. Now, how do I install it? The only copies
of dco2.so that exist are in the directory tree where I built the
library. In searching for any kind of install directios, I found
nothing like 'make install', etc.

Thanks you your help.
Jul 18 '05 #3
Ron Reidy wrote:
dr*****@wizard .net (David Ripton) wrote in message news:<87******* *************** ****@posting.go ogle.com>...

re*****@yahoo .com (Ron Reidy) wrote in message news:<ab******* *************** ****@posting.go ogle.com>...
I am trying to compile DCOracle2 on RedHat 8.0 and make is giving me
the following error:

gcc -pthread -fPIC -DNDEBUG -g -O3 -Wall -Wstrict-prototypes
-I/usr/local/include/python2.3 -I/usr/local/include/python2.3 @DEFS@
-I/oracle/app/oracle/9i/rdbms/demo
-I/oracle/app/oracle/9i/network/public
-I/oracle/app/oracle/9i/plsql/public
-I/oracle/app/oracle/9i/rdbms/public -DORACLE9i -c ././dco2.c -o
./dco2.o
gcc: cannot specify -o with -c or -S and multiple compilations
Did I do something wrong?

No. The DCOracle2 build process isn't very robust.

Look at src/Makefile. Find a line that says "DEFS=%DEFS " and change
it to "DEFS=-fno-strict-aliasing"


David,

Thanks. That worked well. Now, how do I install it? The only copies
of dco2.so that exist are in the directory tree where I built the
library. In searching for any kind of install directios, I found
nothing like 'make install', etc.

Ron -

At the same sevel as the src folder where you built dco2.so, you should
find a DCOracle2 folder. Put dco2.so in that folder, and copy that
folder into your $PYTHONPATH (site-packages/ would do fine). Then you
should be able to start your python and import DCOracle2.

HTH,

Bill

Thanks you your help.

Jul 18 '05 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
1623
by: Skip Montanaro | last post by:
Connections to remote Oracle databases doesn't seem possible with DCOracle2. I have no problem making remote connections using Perl's DBI::Oracle package, so I know it's possible in theory. Is this capability available in DCOracle2 but just not documented perhaps? Thx, Skip
0
1356
by: the_rev_dharma_roadkill | last post by:
I've have some fun getting DCOracle2 (python-to-oracle interface) going on HP/Compaq Tru64 with Oracle8i Release 3 (oracle 8.1.7). I'd like to share an answer/bug-fix with you: After un-tarring the source... 1) edit setup.py. Change the lines: CFLAGS = LFLAGS = LIBS=
2
1647
by: Timo Virkkala | last post by:
I'm having some trouble with Python2.2 and DCOracle2. I'm successfully executing a query, and getting the result I'm hoping for - with an added bonus of some interesting encoding. The beginning of the result set I get looks like this: , ... So, where are those \x00 -characters coming? It should read: , ...
0
1071
by: Dave Harrison | last post by:
Hi All, Im trying to use the DCOracle2 library but I've never worked with Oracle before, yet have to investigate the effort involved in porting a database we have to it. When I try running a `make` in the DCOracle2 dir having set the env variables correctly I get the following error : make || ./builderrors)
0
1106
by: Dave Harrison | last post by:
hi all, Im trying to install DCOracle2 but I cant seem to find out how to install the Oracle header files that the library needs (...rdbms/demo is empty). Ive installed both the db and the client, but still no header files. can anyone help out with a pointer ?
0
1039
by: Keana | last post by:
Hi, I am trying to retrieve data from an Oracle DB table. One of the columns is defined as 'Long Raw' data type and contains multi-line string data (with newlines). My query returns 'None' for this column although there is data in the rows I am retrieving. Can someone tell me how to get around this problem? I am using DCOracle2 v2.1.2 and Oracle 9i and Python 2.2.2.
2
1981
by: pepericou | last post by:
I'm trying to developp an application which use Zope and DCOracle2 module to access Oracle database. I've install the DCOracle2 product on Windows XP, but when I create a python function to access my database, I' have the following error when I test it : import DCOracle2 is unauthorized Can You help me ? Thank you
0
1302
by: Marcel Hartmann | last post by:
Hi, I have problems to get ZOracleDA run in Zope - I cannot found a solution wheter in Zope Groups nor searching google and I think it's a python problem. The connection in python - without zope - functions without problems and the missing library (see errors later) is obviously found. Is it possible to set an library path for python? I tested changing the ld.conf.so and running ldconfig or setting LD_LIBRARY_PATH environment var, but...
2
1546
by: Chris | last post by:
Hello I'm using DCOracle2 with Python 2.1 and Oracle 8.1.7 on Solaris and while it's working most of the time, I have random ORA-01084 invalid argument in OCI call errors that occur on INSERT. Out of 18000 queries all using the same DB connection I have like 15 errors of this type. It's always the same SQL queries (2 different INSERT and some other SELECT), only the parameters change and they're always valid. When the error occur I can...
0
8173
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8621
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
8475
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
7159
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6110
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5563
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4079
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4174
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
1785
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.