[omniORB] Error including other idls

Mark Duncan mduncan@pathfire.com
Tue, 27 Mar 2001 16:06:17 -0500


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