[omniORB] Error including other idls
Mark Duncan
mduncan@pathfire.com
Tue, 27 Mar 2001 17:02:41 -0500
Yes, I am using the C++ back-end. I don't see anything that looks quivalent
to that.
-----Original Message-----
From: JMenzies@weather.com [mailto:JMenzies@weather.com]
Sent: Tuesday, March 27, 2001 4:24 PM
To: Mark Duncan
Cc: omniorb-list@uk.research.att.com
Subject: RE: [omniORB] Error including other idls
My apologies. The flag I listed is only available for generating Python
code.
I don't have the C++ module installed here. What back-end are you using? I
assume C++.
Does "omnniidl -bcxx -u" show anything that looks equivalent to -Wbinline?
Mark Duncan
<mduncan@path To: "'JMenzies@weather.com'"
<JMenzies@weather.com>
fire.com> cc:
omniorb-list@uk.research.att.com
Subject: RE: [omniORB] Error
including other idls
03/27/01
04:06 PM
I get an error saying that is an invalid flag.
Mark
-----Original Message-----
From: JMenzies@weather.com [mailto:JMenzies@weather.com]
Sent: Tuesday, March 27, 2001 3:22 PM
To: Mark Duncan
Cc: omniorb-list@uk.research.att.com;
owner-omniorb-list@uk.research.att.com
Subject: Re: [omniORB] Error including other idls
Try compiling your idl with the -Wbinline switch/flag.
Mark Duncan
<mduncan@pathfire.com> To:
omniorb-list@uk.research.att.com
Sent by: cc:
owner-omniorb-list@uk.resear Subject:
[omniORB] Error including other idls
ch.att.com
03/27/01 03:02 PM
Hi,
We are trying to upgrade to omniORB3 while also porting to linux. We seem
to be having issues with including other idls within and idl. It appears
that the stub code that is generated includes definitions from both idls. I
looked at the previous versions of the stub code and that is definitely not
the case. Am I missing a flag somewhere that is causing this to happen?
Example code:
test1.idl:
module test1
{
interface echo1
{
string echo1 ();
};
};
test2.idl
#include "test1.idl"
module test2
{
interface echo2
{
string echo2 ();
};
};
Thanks,
Mark