473,398 Members | 2,427 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,398 software developers and data experts.

Precompilation error

pjr
Hi..

I am trying to compile a set of code using aCC 3.52(HP-UX
11.00) and visibroker 3.3. I am running into following error.

I appreciate any ideas that can help me resolve this error.
Error 328: "/usr/local/vbroker/include/ir_c.hh", line 6795 # Function
'>>' has not been defined yet; cannot call.
_strm >*_obj;
^^^^^^^^^^
Error 328: "/usr/local/vbroker/include/ir_c.hh", line 7365 # Function
'>>' has not been defined yet; cannot call.
_strm >*_obj;
^^^^^^^^^^
Error 328: "/usr/local/vbroker/include/ir_c.hh", line 10097 # Function
'>>' has not been defined yet; cannot call.
_strm >*_obj;
^^^^^^^^^^

Thanks
Nov 4 '08 #1
4 1872
pjr wrote:
Hi..

I am trying to compile a set of code using aCC 3.52(HP-UX
11.00) and visibroker 3.3. I am running into following error.

I appreciate any ideas that can help me resolve this error.
Error 328: "/usr/local/vbroker/include/ir_c.hh", line 6795 # Function
'>>' has not been defined yet; cannot call.
_strm >*_obj;
^^^^^^^^^^
Error 328: "/usr/local/vbroker/include/ir_c.hh", line 7365 # Function
'>>' has not been defined yet; cannot call.
_strm >*_obj;
^^^^^^^^^^
Error 328: "/usr/local/vbroker/include/ir_c.hh", line 10097 # Function
'>>' has not been defined yet; cannot call.
_strm >*_obj;
^^^^^^^^^^

Thanks
LOL @ 10000 lines file.

Take a look here:
http://www.parashift.com/c++-faq-lit...t.html#faq-5.8
Nov 4 '08 #2
On Mon, 03 Nov 2008 21:06:46 -0800, pjr wrote:
Hi..

I am trying to compile a set of code using aCC 3.52(HP-UX
11.00) and visibroker 3.3. I am running into following error.

I appreciate any ideas that can help me resolve this error.
This may help:

http://www.parashift.com/c++-faq-lit...t.html#faq-5.8
Error 328: "/usr/local/vbroker/include/ir_c.hh", line 6795 # Function
'>>' has not been defined yet; cannot call.
_strm >*_obj;
It seems likely that the compiler is telling you exactly what the problem
is, but it is impossible to say for sure without seeing any code.

BTW, what does "precompilation" mean?
^^^^^^^^^^
Error 328: "/usr/local/vbroker/include/ir_c.hh", line 7365 # Function
'>>' has not been defined yet; cannot call.
_strm >*_obj;
^^^^^^^^^^
Error 328: "/usr/local/vbroker/include/ir_c.hh", line 10097 # Function
'>>' has not been defined yet; cannot call.
_strm >*_obj;
^^^^^^^^^^

Thanks
--
Lionel B
Nov 4 '08 #3
pjr
On Nov 4, 3:25*am, anon <a...@no.invalidwrote:
pjr wrote:
Hi..
* * * *I am trying to compile a set of code using *aCC 3.52(HP-UX
11.00) *and visibroker 3.3. * I am running into following error.
* * * * *I appreciate any ideas that can help me resolve thiserror.
Error 328: "/usr/local/vbroker/include/ir_c.hh", line 6795 # Function
'>>' has not been defined yet; cannot call.
* * * * _strm >*_obj;
* * * * ^^^^^^^^^^
Error 328: "/usr/local/vbroker/include/ir_c.hh", line 7365 # Function
'>>' has not been defined yet; cannot call.
* * * * _strm >*_obj;
* * * * ^^^^^^^^^^
Error 328: "/usr/local/vbroker/include/ir_c.hh", line 10097 # Function
'>>' has not been defined yet; cannot call.
* * * * _strm >*_obj;
* * * * ^^^^^^^^^^
* * * * Thanks

LOL @ 10000 lines file.

Take a look here:http://www.parashift.com/c++-faq-lit...t.html#faq-5.8


The file /usr/local/vbroker/include/ir_c.hh is part of visibroker.
Here is the code excerpt from this file

//
================================================== ====================================
_VISEXPORT inline friend Istream& operator>>(Istream& _strm,
Description_ptr & _obj) {
_obj = new Description;
_strm >*_obj; // Line number 6795
return _strm;
}
_VISEXPORT inline friend Istream& operator>>(Istream& _strm,
Description_ptr & _obj) {
_obj = new Description;
_strm >*_obj; // Line 7365
return _strm;
}

_VISEXPORT inline friend Istream& operator>>(Istream& _strm,
FullInterfaceDescription_ptr & _obj) {
_obj = new FullInterfaceDescription;
_strm >*_obj; // Line 10097
return _strm;
}
//
================================================== ====================================

OS - HP-UX 11.00
aCC compiler - 3.52
Visibroker - 3.3

Note: The compilation with aCC compiler 3.13 works fine. But I
have to make it work with 3.52 because of other software dependencies.

Lionel,

I should have made it compilation error. It was late at
night when I posted this :)
Nov 4 '08 #4
pjr wrote:
On Nov 4, 3:25 am, anon <a...@no.invalidwrote:
>pjr wrote:
>>Hi..
I am trying to compile a set of code using aCC 3.52(HP-UX
11.00) and visibroker 3.3. I am running into following error.
I appreciate any ideas that can help me resolve this error.
Error 328: "/usr/local/vbroker/include/ir_c.hh", line 6795 # Function
'>>' has not been defined yet; cannot call.
_strm >*_obj;
^^^^^^^^^^
Error 328: "/usr/local/vbroker/include/ir_c.hh", line 7365 # Function
'>>' has not been defined yet; cannot call.
_strm >*_obj;
^^^^^^^^^^
Error 328: "/usr/local/vbroker/include/ir_c.hh", line 10097 # Function
'>>' has not been defined yet; cannot call.
_strm >*_obj;
^^^^^^^^^^
Thanks
LOL @ 10000 lines file.

Take a look here:http://www.parashift.com/c++-faq-lit...t.html#faq-5.8

The file /usr/local/vbroker/include/ir_c.hh is part of visibroker.
Here is the code excerpt from this file

//
[...]
>
_VISEXPORT inline friend Istream& operator>>(Istream& _strm,
FullInterfaceDescription_ptr & _obj) {
_obj = new FullInterfaceDescription;
_strm >*_obj; // Line 10097
return _strm;
}
Assuming:
1) #define _VISEXPORT
2) typedef FullInterfaceDescription* FullInterfaceDescription_ptr;

what is Istream?
Nov 5 '08 #5

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

Similar topics

1
by: Bingo | last post by:
I'm confused by something to do with precompilation... It is my understanding that if you have an sample.aspx with <%@ page inherits="sampleNameSpace.sampleClass" %> in visual studio.net then...
3
by: Patrick Paquin | last post by:
Hi, I have an application ("appls") on my website. This application is a subfolder of the website root. This subfolder is configured as an application in the IIS Manager When I want...
2
by: Balasubramanian Ramanathan | last post by:
I am getting this error while precompiling a website for deployment. Errorstack information error ASPRUNTIME: Object '/c107cdc3_b65c_4b6c_9d8f_82fe5a457fdb/ctofbyvagqsbvrgsc7xzxa5o_9.rem' has...
0
by: ad | last post by:
I deployment a precompiled asp.net applicaiton to server. But when user request the web page, server result in an error message This tag is generate by a precompilation tool, can't be delete. ...
2
by: archana | last post by:
Hi all, Can anyone tell me drawbacks of precompilation using ngen over jit compilation apart from that it generate native code for complete il code? thanks in advance
0
by: Dinesh | last post by:
Hi I treid executing a CICS program in unix. I got an error saying that An unexpected token "UNION " was found following "FF_DT CURRENT DATE". Expected tokens may include: "<space>"....
1
by: Eyes | last post by:
Hello sir/madam, My COBOL program is :: *******TOP OF PROGRAM********* IDENTIFICATION DIVISION. PROGRAM-ID. HELLO. *************************************** PROCEDURE DIVISION. DISPLAY...
1
by: Jason Huang | last post by:
Hi, I tested my ASPNet web application and then found it takes a long time to start at the first time. So I surfed the web and found using aspnet_compile method. When I execute the...
2
by: Jeff Dege | last post by:
I have a VS2005 Web Site that's giving me some trouble. Our process model requires that all shipped applications be compiled on a dedicated compile box, straight from version control, without...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
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...
0
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...
0
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...
0
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...

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.