orbitcpp-list Mailing List for orbitcpp (Page 19)
Status: Beta
Brought to you by:
philipd
You can subscribe to this list here.
1999 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(7) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2000 |
Jan
(19) |
Feb
(45) |
Mar
(53) |
Apr
(64) |
May
(22) |
Jun
(6) |
Jul
(56) |
Aug
(11) |
Sep
(32) |
Oct
(27) |
Nov
(43) |
Dec
(25) |
2001 |
Jan
(11) |
Feb
(26) |
Mar
(16) |
Apr
(19) |
May
(19) |
Jun
(28) |
Jul
(16) |
Aug
(12) |
Sep
(7) |
Oct
(9) |
Nov
(1) |
Dec
(35) |
2002 |
Jan
(45) |
Feb
(66) |
Mar
(25) |
Apr
(20) |
May
(15) |
Jun
(1) |
Jul
(1) |
Aug
(3) |
Sep
(7) |
Oct
|
Nov
(2) |
Dec
(26) |
2003 |
Jan
(8) |
Feb
|
Mar
|
Apr
(4) |
May
(3) |
Jun
(2) |
Jul
(2) |
Aug
(1) |
Sep
|
Oct
|
Nov
(1) |
Dec
|
2004 |
Jan
|
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2005 |
Jan
|
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(1) |
Nov
|
Dec
|
2006 |
Jan
(2) |
Feb
|
Mar
|
Apr
|
May
(2) |
Jun
(2) |
Jul
(4) |
Aug
(4) |
Sep
(4) |
Oct
(17) |
Nov
(23) |
Dec
(5) |
2007 |
Jan
(37) |
Feb
(20) |
Mar
(16) |
Apr
(23) |
May
(20) |
Jun
(12) |
Jul
(20) |
Aug
(25) |
Sep
(15) |
Oct
(8) |
Nov
(5) |
Dec
(3) |
2008 |
Jan
(9) |
Feb
(6) |
Mar
(37) |
Apr
(28) |
May
(12) |
Jun
(9) |
Jul
(30) |
Aug
(7) |
Sep
(20) |
Oct
(26) |
Nov
(50) |
Dec
(75) |
2009 |
Jan
(63) |
Feb
(46) |
Mar
(54) |
Apr
(53) |
May
(125) |
Jun
(102) |
Jul
(90) |
Aug
(46) |
Sep
(26) |
Oct
(32) |
Nov
(9) |
Dec
(29) |
2010 |
Jan
(9) |
Feb
(8) |
Mar
(45) |
Apr
(56) |
May
(74) |
Jun
(73) |
Jul
(34) |
Aug
(48) |
Sep
(23) |
Oct
(3) |
Nov
|
Dec
(3) |
2011 |
Jan
(5) |
Feb
(3) |
Mar
(17) |
Apr
(3) |
May
(2) |
Jun
(3) |
Jul
(4) |
Aug
(8) |
Sep
(17) |
Oct
(6) |
Nov
(5) |
Dec
(10) |
2012 |
Jan
(3) |
Feb
(15) |
Mar
(4) |
Apr
(2) |
May
(1) |
Jun
(2) |
Jul
(5) |
Aug
(3) |
Sep
|
Oct
(2) |
Nov
(1) |
Dec
(2) |
2013 |
Jan
(2) |
Feb
(3) |
Mar
(1) |
Apr
(4) |
May
(4) |
Jun
(3) |
Jul
(6) |
Aug
(52) |
Sep
(3) |
Oct
(5) |
Nov
(1) |
Dec
(8) |
2014 |
Jan
(1) |
Feb
(16) |
Mar
(9) |
Apr
(11) |
May
(16) |
Jun
(15) |
Jul
(13) |
Aug
(4) |
Sep
(2) |
Oct
(3) |
Nov
|
Dec
(3) |
2015 |
Jan
(5) |
Feb
(1) |
Mar
(5) |
Apr
(1) |
May
(5) |
Jun
(3) |
Jul
(4) |
Aug
(2) |
Sep
(1) |
Oct
|
Nov
|
Dec
(1) |
2016 |
Jan
(1) |
Feb
(2) |
Mar
(3) |
Apr
|
May
(2) |
Jun
(1) |
Jul
|
Aug
|
Sep
(1) |
Oct
|
Nov
(3) |
Dec
(1) |
2017 |
Jan
|
Feb
(1) |
Mar
(1) |
Apr
(5) |
May
(1) |
Jun
(2) |
Jul
(1) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Bang, S. <Ste...@ta...> - 2001-11-23 09:21:26
|
Platform: Intel PIII, RedHat linux 7.3, gcc 2.96, ORBit 0.5.8, ORBit C++ 0.30.1 Has anyone successfully used the CosNaming stuff in ORBit-C++? I'm trying to get an application that works with OmniORB 2.8 on a debian woody machine, up and running on a RedHat 7.2 machine. On the debian machine I tried different C++ ORBs (TAO, Mico, ORBit/ORBit-C++, and OmniORB), so I have #ifdef guards around ORB-specific things, and can make the application compile with both ORBit and OmniORB. I have compiled, but never run the application compiled with ORBit on the debian machine. Earlier experiments with a "Hello World" program showed that an ORBit client attempting to access the OmniORB name server daemon, would crash the daemon. On the RedHat machine I have tried using the ORBit name server, and it doesn't work. I'm listing the code I'm using to initialize the ORB, and find the name service (I'm starting the program with -ORBNamingIOR option): TPSCorbaInit::TPSCorbaInit(int& argc, char* argv[]) { try { // Initialize the ORB and the BOA (no POA yet) m_orb = CORBA::ORB_init(argc, argv); CORBA::Object_var tmpPOA = m_orb->resolve_initial_references("RootPOA"); m_objectAdaptor = PortableServer::POA::_narrow(tmpPOA); // CosNaming initialization CORBA::Object_var tmp, tmp2; tmp = m_orb->resolve_initial_references("NameService"); CosNaming::NamingContext_var namingContext = CosNaming::NamingContext::_narrow(tmp); CosNaming::Name appCtxName; appCtxName.length(2); appCtxName[0].id = "TandbergTV"; appCtxName[1].id = "somename"; CosNaming::NamingContext_var applicationContext; try { tmp2 = namingContext->resolve(appCtxName); m_tandbergtvNC = CosNaming::NamingContext::_narrow(tmp2); } catch (CosNaming::NamingContext::NotFound&) { m_tandbergtvNC = namingContext->bind_new_context(appCtxName); } } catch(const CORBA::Exception&) { cerr << argv[0] << ": TPSCorbaInit caught CORBA exception!" << endl; } catch(...) { cerr << argv[0] << ": TPSCorbaInit Caught non-CORBA exception!" << endl; } } I've been running this code in gdb, and what seems to be happening, is that - the namingContext smart pointer gets a valid object - the namingContext->resolve() call fails, and an exception is thrown - the exception is handled by the catch (CosNaming::NamingContext::NotFound&) clause - the namingContext->bind_new_context() call fails, and a new exception is thrown (I don't know which yet. It is not a CORBA::SystemException, at least), and the result is an m_tandbergtvNC with a null object reference, which obviously isn't ideal Do I need special privileges to call bind_new_context() in the ORBit name server? All hints, guesses, and clues are appreciated. Thanx! - Steinar (In the meantime I'm working on getting OmniORB up and running on the RedHat box. However, the only OmniORB available as a source RPM is 3.0.4, which is probably a very different creature from the 2.8 I've been using on debian.) This email, its content and any attachments is PRIVATE AND CONFIDENTIAL to TANDBERG Television. If received in error please notify the sender and destroy the original message and attachments. |
From: Omar B. <ben...@ct...> - 2001-10-31 14:05:09
|
Hi, Well I am newbie to orbitcpp (actually orbit too). I tried to compile the oaf.idl stubs to try using oaf services as client. I compiled the C binding just fine (except a warning about using underscores in identifiers ...) but i have my files. but when I try to compile Cpp binding I type : [omar@benhamid gen]$ orbit-idl -lc++ --noskels /usr/share/idl/oaf.idl and here's what i get ... /usr/share/idl/oaf-factory.idl:24: Warning: `obj_oaf_id' underscores within identifiers are discouraged for use with C-language IDL mappings /usr/share/idl/oaf.idl:33: codefrag not expected in my folder i got all .hh and .cc files (including skeletons) with only a comment. here is config information about my framework and i am using orbitcpp 0.30.1 on a mandrake 8.1 distribution: [omar@benhamid gen]$ oaf-config --version 0.6.6 [omar@benhamid gen]$ orbit-config --version ORBit 0.5.8 and at last here are the first 33 lines of my oaf.idl: [omar@benhamid omar]# head -n 33 /usr/share/idl/oaf.idl /* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- */ /* * oaf.idl: IDL definition of the OAF daemon CORBA interfaces. * * Copyright (C) 1999, 2000 Red Hat, Inc. * Copyright (C) 1999, 2000 Eazel, Inc. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation; either version 2 of the * License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this library; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * * Authors: Elliot Lee <so...@re...>, * */ #ifndef __OAF_IDL__ #define __OAF_IDL__ #if !defined(OAF_COMPILATION) && defined(__ORBIT_IDL__) %{ #pragma include_defs liboaf/oaf.h %} #pragma inhibit push /* <-- Line 33 it crashes here. */ -- Omar Benhamid Ecole Centrale de Paris mailto:ben...@ct... |
From: Braden M. <br...@en...> - 2001-10-22 03:53:47
|
On Sun, 2001-10-21 at 21:31, Sam Couter wrote: > Braden McDaniel <br...@en...> wrote: > > 1. The current build overwrites the user variables CFLAGS and > > CXXFLAGS. [ ... ] I have fixed > > this and I can provide a patch. > > Yes please. Use the Patch Manager at SourceForge. > > > 2. The build system winds up redundantly defining some > > variables, and automake 1.5 spews warnings as a result. I > > have fixed this and I can provide a patch. > > Yes please. Use the Patch Manager at SourceForge. Will do. > I'm currently finishing the final year of my university degree, so I > won't be able to look at these patches for a few weeks, but after that > I'll have all the time in the world. :) Since these fixes touch a lot of the same files, it will be much easier for me to create sane patches once the outstanding issues for which I've provided fixes have been addressed. (I could just send you a big patch that does a bunch of different things, but I know I don't like it much when people do that to me. :-) So I will probably hold off on submitting more patches for now. > > 3. The project does the exact opposite of what the libtool > > documentation recommends, and ties it's package version > > number to the library version number. How come? > > No idea. That's how it was before I got involved. It should probably be > fixed. > > > 4. A number of the tests build with "-static" in CXXFLAGS. > > AFAICT, this is a linker option, so it should go in LDFLAGS. > > But why is it being used? > > No idea, and it probably shouldn't be used. Okay. I'll provide patches for these issues, too. > > 5. The build currently creates and installs a static library for > > the IDL compiler. Unless I'm missing something, this is > > completely useless. I think I can fix this, but I think it > > would involved creating an additional configure script just > > for the compiler. This script would be called by the main > > configure script (see AC_CONFIG_SUBDIRS). I'd be happy to > > work on this, but first I wanted to make sure there's > > interest in such a change. > > It is useless, as it's a dynamically loaded plugin for orbit-idl. It's > never linked against directly. > > But it doesn't cost much to build the static version, so don't put too > much effort into making it not build the static version. It costs about twice as much, timewise, as it would just to build the shared module. (And here, at least, the compiler doesn't exactly zip through the orbitcpp sources.) > I think making > an additional configure script just for the compiler is a bad idea. Why? The reason this would be necessary is that libtool doesn't provide a means to selectively build shared/static libs on a per-library basis. This selection is done per configure script. -- Braden McDaniel e-mail: <br...@en...> <http://endoframe.com> Jabber: <br...@ja...> |
From: Sam C. <sa...@to...> - 2001-10-22 01:31:57
|
Braden McDaniel <br...@en...> wrote: > 1. The current build overwrites the user variables CFLAGS and > CXXFLAGS. [ ... ] I have fixed > this and I can provide a patch. Yes please. Use the Patch Manager at SourceForge. > 2. The build system winds up redundantly defining some > variables, and automake 1.5 spews warnings as a result. I > have fixed this and I can provide a patch. Yes please. Use the Patch Manager at SourceForge. I'm currently finishing the final year of my university degree, so I won't be able to look at these patches for a few weeks, but after that I'll have all the time in the world. :) > 3. The project does the exact opposite of what the libtool > documentation recommends, and ties it's package version > number to the library version number. How come? No idea. That's how it was before I got involved. It should probably be fixed. > 4. A number of the tests build with "-static" in CXXFLAGS. > AFAICT, this is a linker option, so it should go in LDFLAGS. > But why is it being used? No idea, and it probably shouldn't be used. > 5. The build currently creates and installs a static library for > the IDL compiler. Unless I'm missing something, this is > completely useless. I think I can fix this, but I think it > would involved creating an additional configure script just > for the compiler. This script would be called by the main > configure script (see AC_CONFIG_SUBDIRS). I'd be happy to > work on this, but first I wanted to make sure there's > interest in such a change. It is useless, as it's a dynamically loaded plugin for orbit-idl. It's never linked against directly. But it doesn't cost much to build the static version, so don't put too much effort into making it not build the static version. I think making an additional configure script just for the compiler is a bad idea. --=20 Sam Couter | Internet Engineer | http://www.topic.com.au/ sa...@to... | tSA Consulting | OpenPGP key ID: DE89C75C, available on key servers OpenPGP fingerprint: A46B 9BB5 3148 7BEA 1F05 5BD5 8530 03AE DE89 C75C |
From: Braden M. <br...@en...> - 2001-10-21 22:51:23
|
Some build issues and questions... 1. The current build overwrites the user variables CFLAGS and CXXFLAGS. Generally, you want to use the automake variables AM_CFLAGS and AM_CXXFLAGS for compiler options that should be provided by the build scripts. But... the options that the build is putting in CFLAGS and CXXFLAGS ("-g -O0") are the kind of options that the user should provide. I have fixed this and I can provide a patch. 2. The build system winds up redundantly defining some variables, and automake 1.5 spews warnings as a result. I have fixed this and I can provide a patch. 3. The project does the exact opposite of what the libtool documentation recommends, and ties it's package version number to the library version number. How come? 4. A number of the tests build with "-static" in CXXFLAGS. AFAICT, this is a linker option, so it should go in LDFLAGS. But why is it being used? 5. The build currently creates and installs a static library for the IDL compiler. Unless I'm missing something, this is completely useless. I think I can fix this, but I think it would involved creating an additional configure script just for the compiler. This script would be called by the main configure script (see AC_CONFIG_SUBDIRS). I'd be happy to work on this, but first I wanted to make sure there's interest in such a change. -- Braden McDaniel e-mail: <br...@en...> <http://endoframe.com> Jabber: <br...@ja...> |
From: Braden M. <br...@en...> - 2001-10-20 08:41:58
|
On Sat, 2001-10-20 at 03:03, Sam Couter wrote: > Braden McDaniel <br...@en...> wrote: > > Might there be interest in an RPM specfile for orbitcpp? I'm reasonably > > competent--though far from expert--at making them; and I'd be happy to > > provide one. > > Feel free to write one; I can commit it. > > I'm sure someone will use it. RPM based systems aren't exactly uncommon. Well, I went ahead and created it for my own purposes after posting that message. :-) It's in the patch manager. I also submitted a patch to fix the `distclean' target. -- Braden McDaniel e-mail: <br...@en...> <http://endoframe.com> Jabber: <br...@ja...> |
From: Sam C. <sa...@to...> - 2001-10-20 07:03:39
|
Braden McDaniel <br...@en...> wrote: > Might there be interest in an RPM specfile for orbitcpp? I'm reasonably > competent--though far from expert--at making them; and I'd be happy to > provide one. Feel free to write one; I can commit it. I'm sure someone will use it. RPM based systems aren't exactly uncommon. --=20 Sam Couter | Internet Engineer | http://www.topic.com.au/ sa...@to... | tSA Consulting | OpenPGP key ID: DE89C75C, available on key servers OpenPGP fingerprint: A46B 9BB5 3148 7BEA 1F05 5BD5 8530 03AE DE89 C75C |
From: Braden M. <br...@en...> - 2001-10-20 03:27:51
|
Might there be interest in an RPM specfile for orbitcpp? I'm reasonably competent--though far from expert--at making them; and I'd be happy to provide one. -- Braden McDaniel e-mail: <br...@en...> <http://endoframe.com> Jabber: <br...@ja...> |
From: christophe P. <chr...@cy...> - 2001-10-01 09:43:05
|
On 01 Oct 2001 16:59:47 +0800, 52jy wrote: > I've installed ORBit-0.5.8-1 > I want to build orbitcpp-0.30.1 but it always fails > btw : I use gcc-3.0 on RH-7.1 > > Could you help me???? I found problems in compiling TAO/ACE on Redhat 7.1 with gcc 3.0 or standard redhat gcc 2.96 My problems disapeared after an upgrade to gcc 2.96.85 .. (not entirely) Anyway, gcc 3.0 introduces binary compatibility problems ( link levels). I am not sure but the code demangler is changed between 2.xx and 3.xx gcc version. Now, TAO/ACE and Orbit-cpp work fine with gcc 2.96.85 and RedHad 7.1 whith correct libc, libstdc++, ... |
From: <52...@ya...> - 2001-10-01 08:59:57
|
I've installed ORBit-0.5.8-1 I want to build orbitcpp-0.30.1 but it always fails btw : I use gcc-3.0 on RH-7.1 Could you help me???? the follow is configure messages and make messages [root@jyjy520 orbitcpp-0.30.1]# make everything-skels.c: In function `_ORBIT_skel_UnionServer_opVariable': everything-skels.c:6497: warning: const qualifier ignored on asm everything-skels.c:6502: warning: const qualifier ignored on asm everything-skels.c:6507: warning: const qualifier ignored on asm everything-skels.c:6512: warning: const qualifier ignored on asm everything-skels.c:6525: warning: const qualifier ignored on asm everything-skels.c:6533: warning: const qualifier ignored on asm everything-skels.c:6544: warning: const qualifier ignored on asm everything-skels.c:6562: warning: const qualifier ignored on asm everything-skels.c:6577: warning: const qualifier ignored on asm everything-skels.c:6589: warning: const qualifier ignored on asm everything-skels.c:6601: warning: const qualifier ignored on asm everything-skels.c:6606: warning: const qualifier ignored on asm everything-skels.c:6610: warning: const qualifier ignored on asm everything-skels.c:6614: warning: const qualifier ignored on asm everything-skels.c:6629: warning: const qualifier ignored on asm everything-skels.c:6640: warning: const qualifier ignored on asm everything-skels.c:6651: warning: const qualifier ignored on asm everything-skels.c:6674: warning: const qualifier ignored on asm everything-skels.c:6686: warning: const qualifier ignored on asm everything-skels.c:6697: warning: const qualifier ignored on asm c++ -DHAVE_CONFIG_H -I. -I. -I../../../orb -I../../.. -I../../.. -I/usr/include/glib-1.2 -I/usr/lib/glib/include -I/usr/local/include -g -O0 -Wall -W -c everything-cpp-skels.cc In file included from /usr/local/include/orb/orbit.h:63, from ../../../orb/orbitcpp_types.hh:30, from ../../../orb/orbitcpp.hh:36, from everything-cpp-common.hh:11, from everything-cpp-stubs.hh:11, from everything-cpp-skels.hh:8, from everything-cpp-skels.cc:6: /usr/local/include/orb/env.h:51: warning: non-static const member `CORBA_TypeCode_struct* const <anonymous struct>::tc' in class without a constructor /usr/local/include/orb/env.h:56: warning: non-static const member `CORBA_TypeCode_struct* const <anonymous struct>::tc' in class without a constructor everything-cpp-skels.cc: In static member function `static _orbitcpp::c::test_VariableLengthStruct* POA_test::StructServer::_skel_opVariable(void*, const _orbitcpp::c::test_VariableLengthStruct*, _orbitcpp::c::test_VariableLengthStruct*, _orbitcpp::c::test_VariableLengthStruct**, CORBA_Environment*)': everything-cpp-skels.cc:363: no matching function for call to `_orbitcpp::Data_out<test::VariableLengthStruct>::Data_out(_orbitcpp::Data_out<test::VariableLengthStruct>)' ../../../orb/orbitcpp_smartptr.hh:291: candidates are: _orbitcpp::Data_out<T>::Data_out(_orbitcpp::Data_out<T>&) [with T = test::VariableLengthStruct] ../../../orb/orbitcpp_smartptr.hh:286: _orbitcpp::Data_out<T>::Data_out(_orbitcpp::Data_var<T>&) [with T = test::VariableLengthStruct] ../../../orb/orbitcpp_smartptr.hh:283: _orbitcpp::Data_out<T>::Data_out(T*&) [with T = test::VariableLengthStruct] everything-cpp-skels.cc:363: initializing argument 3 of `virtual test::VariableLengthStruct* POA_test::StructServer::opVariable(const test::VariableLengthStruct&, test::VariableLengthStruct&, _orbitcpp::Data_out<test::VariableLengthStruct>)' from result of `_orbitcpp::Data_out<T>::Data_out(T*&) [with T = test::VariableLengthStruct]' everything-cpp-skels.cc: In static member function `static _orbitcpp::c::test_CompoundStruct* POA_test::StructServer::_skel_opCompound(void*, const _orbitcpp::c::test_CompoundStruct*, _orbitcpp::c::test_CompoundStruct*, _orbitcpp::c::test_CompoundStruct**, CORBA_Environment*)': everything-cpp-skels.cc:383: no matching function for call to `_orbitcpp::Data_out<test::CompoundStruct>::Data_out(_orbitcpp::Data_out<test::CompoundStruct>)' ../../../orb/orbitcpp_smartptr.hh:291: candidates are: _orbitcpp::Data_out<T>::Data_out(_orbitcpp::Data_out<T>&) [with T = test::CompoundStruct] ../../../orb/orbitcpp_smartptr.hh:286: _orbitcpp::Data_out<T>::Data_out(_orbitcpp::Data_var<T>&) [with T = test::CompoundStruct] ../../../orb/orbitcpp_smartptr.hh:283: _orbitcpp::Data_out<T>::Data_out(T*&) [with T = test::CompoundStruct] everything-cpp-skels.cc:383: initializing argument 3 of `virtual test::CompoundStruct* POA_test::StructServer::opCompound(const test::CompoundStruct&, test::CompoundStruct&, _orbitcpp::Data_out<test::CompoundStruct>)' from result of `_orbitcpp::Data_out<T>::Data_out(T*&) [with T = test::CompoundStruct]' everything-cpp-skels.cc: In static member function `static _orbitcpp::c::test_StrSeq* POA_test::SequenceServer::_skel_opStrSeq(void*, const _orbitcpp::c::test_StrSeq*, _orbitcpp::c::test_StrSeq*, _orbitcpp::c::test_StrSeq**, CORBA_Environment*)': everything-cpp-skels.cc:436: no matching function for call to `_orbitcpp::Sequence_out<test::StrSeq>::Sequence_out(_orbitcpp::Sequence_out<test::StrSeq>)' ../../../orb/orbitcpp_smartptr.hh:494: candidates are: _orbitcpp::Sequence_out<T>::Sequence_out(_orbitcpp::Sequence_out<T>&) [with T = test::StrSeq] ../../../orb/orbitcpp_smartptr.hh:493: _orbitcpp::Sequence_out<T>::Sequence_out(_orbitcpp::Data_var<T>&) [with T = test::StrSeq] ../../../orb/orbitcpp_smartptr.hh:492: _orbitcpp::Sequence_out<T>::Sequence_out(T*&) [with T = test::StrSeq] everything-cpp-skels.cc:436: initializing argument 3 of `virtual test::StrSeq* POA_test::SequenceServer::opStrSeq(const test::StrSeq&, test::StrSeq&, _orbitcpp::Sequence_out<test::StrSeq>)' from result of `_orbitcpp::Sequence_out<T>::Sequence_out(T*&) [with T = test::StrSeq]' everything-cpp-skels.cc: In static member function `static _orbitcpp::c::test_BoundedStructSeq* POA_test::SequenceServer::_skel_opBoundedStructSeq(void*, const _orbitcpp::c::test_BoundedStructSeq*, _orbitcpp::c::test_BoundedStructSeq*, _orbitcpp::c::test_BoundedStructSeq**, CORBA_Environment*)': everything-cpp-skels.cc:456: no matching function for call to `_orbitcpp::Sequence_out<test::BoundedStructSeq>::Sequence_out(_orbitcpp::Sequence_out<test::BoundedStructSeq>)' ../../../orb/orbitcpp_smartptr.hh:494: candidates are: _orbitcpp::Sequence_out<T>::Sequence_out(_orbitcpp::Sequence_out<T>&) [with T = test::BoundedStructSeq] ../../../orb/orbitcpp_smartptr.hh:493: _orbitcpp::Sequence_out<T>::Sequence_out(_orbitcpp::Data_var<T>&) [with T = test::BoundedStructSeq] ../../../orb/orbitcpp_smartptr.hh:492: _orbitcpp::Sequence_out<T>::Sequence_out(T*&) [with T = test::BoundedStructSeq] everything-cpp-skels.cc:456: initializing argument 3 of `virtual test::BoundedStructSeq* POA_test::SequenceServer::opBoundedStructSeq(const test::BoundedStructSeq&, test::BoundedStructSeq&, _orbitcpp::Sequence_out<test::BoundedStructSeq>)' from result of `_orbitcpp::Sequence_out<T>::Sequence_out(T*&) [with T = test::BoundedStructSeq]' everything-cpp-skels.cc: In static member function `static char* POA_test::BasicServer::_skel_opString(void*, const char*, char**, char**, CORBA_Environment*)': everything-cpp-skels.cc:558: no matching function for call to `_orbitcpp::String_out<Char>::String_out(_orbitcpp::String_out<Char>)' ../../../orb/orbitcpp_smartptr.hh:1008: candidates are: _orbitcpp::String_out<CharT>::String_out(_orbitcpp::String_out<CharT>&) [with CharT = Char] ../../../orb/orbitcpp_smartptr.hh:1003: _orbitcpp::String_out<CharT>::String_out(_orbitcpp::String_var<CharT, false>&) [with CharT = Char] ../../../orb/orbitcpp_smartptr.hh:999: _orbitcpp::String_out<CharT>::String_out(CharT*&) [with CharT = Char] everything-cpp-skels.cc:558: initializing argument 3 of `virtual char* POA_test::BasicServer::opString(const char*, char*&, _orbitcpp::String_out<Char>)' from result of `_orbitcpp::String_out<CharT>::String_out(CharT*&) [with CharT = Char]' everything-cpp-skels.cc: In static member function `static CORBA_char** POA_test::BasicServer::_skel_opStrArray(void*, CORBA_char* const*, CORBA_char**, CORBA_char***, CORBA_Environment*)': everything-cpp-skels.cc:636: no matching function for call to `_orbitcpp::ArrayVariable_out<test::StrArray_slice, 2>::ArrayVariable_out(_orbitcpp::ArrayVariable_out<test::StrArray_slice, 2>)' ../../../orb/orbitcpp_smartptr.hh:703: candidates are: _orbitcpp::ArrayVariable_out<T_slice, len>::ArrayVariable_out(_orbitcpp::ArrayVariable_out<T_slice, len>&) [with T_slice = test::StrArray_slice, unsigned int len = 2] ../../../orb/orbitcpp_smartptr.hh:697: _orbitcpp::ArrayVariable_out<T_slice, len>::ArrayVariable_out(_orbitcpp::ArrayVariable_var<T_slice, len>&) [with T_slice = test::StrArray_slice, unsigned int len = 2] ../../../orb/orbitcpp_smartptr.hh:694: _orbitcpp::ArrayVariable_out<T_slice, len>::ArrayVariable_out(T_slice*&) [with T_slice = test::StrArray_slice, unsigned int len = 2] everything-cpp-skels.cc:636: initializing argument 3 of `virtual test::StrArray_slice* POA_test::BasicServer::opStrArray(const _orbitcpp::String_var<Char, true>*, _orbitcpp::String_var<Char, true>*, _orbitcpp::ArrayVariable_out<test::StrArray_slice, 2>)' from result of `_orbitcpp::ArrayVariable_out<T_slice, len>::ArrayVariable_out(T_slice*&) [with T_slice = test::StrArray_slice, unsigned int len = 2]' everything-cpp-skels.cc: In static member function `static _orbitcpp::c::test_VariableLengthUnion* POA_test::UnionServer::_skel_opVariable(void*, const _orbitcpp::c::test_VariableLengthUnion*, _orbitcpp::c::test_VariableLengthUnion*, _orbitcpp::c::test_VariableLengthUnion**, CORBA_Environment*)': everything-cpp-skels.cc:1062: no matching function for call to `_orbitcpp::Data_out<test::VariableLengthUnion>::Data_out(_orbitcpp::Data_out<test::VariableLengthUnion>)' ../../../orb/orbitcpp_smartptr.hh:291: candidates are: _orbitcpp::Data_out<T>::Data_out(_orbitcpp::Data_out<T>&) [with T = test::VariableLengthUnion] ../../../orb/orbitcpp_smartptr.hh:286: _orbitcpp::Data_out<T>::Data_out(_orbitcpp::Data_var<T>&) [with T = test::VariableLengthUnion] ../../../orb/orbitcpp_smartptr.hh:283: _orbitcpp::Data_out<T>::Data_out(T*&) [with T = test::VariableLengthUnion] everything-cpp-skels.cc:1062: initializing argument 3 of `virtual test::VariableLengthUnion* POA_test::UnionServer::opVariable(const test::VariableLengthUnion&, test::VariableLengthUnion&, _orbitcpp::Data_out<test::VariableLengthUnion>)' from result of `_orbitcpp::Data_out<T>::Data_out(T*&) [with T = test::VariableLengthUnion]' everything-cpp-skels.cc: In static member function `static CORBA_any* POA_test::AnyServer::_skel_opAnyLong(void*, const CORBA_any*, CORBA_any*, CORBA_any**, CORBA_Environment*)': everything-cpp-skels.cc:1117: no matching function for call to `_orbitcpp::DataVar_out<CORBA::Any>::DataVar_out(_orbitcpp::DataVar_out<CORBA::Any>)' ../../../orb/orbitcpp_smartptr.hh:414: candidates are: _orbitcpp::DataVar_out<T>::DataVar_out(_orbitcpp::DataVar_out<T>&) [with T = CORBA::Any] ../../../orb/orbitcpp_smartptr.hh:409: _orbitcpp::DataVar_out<T>::DataVar_out(_orbitcpp::DataVar_var<T>&) [with T = CORBA::Any] ../../../orb/orbitcpp_smartptr.hh:406: _orbitcpp::DataVar_out<T>::DataVar_out(T*&) [with T = CORBA::Any] everything-cpp-skels.cc:1117: initializing argument 3 of `virtual CORBA::Any* POA_test::AnyServer::opAnyLong(const CORBA::Any&, CORBA::Any&, _orbitcpp::DataVar_out<CORBA::Any>)' from result of `_orbitcpp::DataVar_out<T>::DataVar_out(T*&) [with T = CORBA::Any]' everything-cpp-skels.cc: In static member function `static CORBA_any* POA_test::AnyServer::_skel_opAnyString(void*, const CORBA_any*, CORBA_any*, CORBA_any**, CORBA_Environment*)': everything-cpp-skels.cc:1137: no matching function for call to `_orbitcpp::DataVar_out<CORBA::Any>::DataVar_out(_orbitcpp::DataVar_out<CORBA::Any>)' ../../../orb/orbitcpp_smartptr.hh:414: candidates are: _orbitcpp::DataVar_out<T>::DataVar_out(_orbitcpp::DataVar_out<T>&) [with T = CORBA::Any] ../../../orb/orbitcpp_smartptr.hh:409: _orbitcpp::DataVar_out<T>::DataVar_out(_orbitcpp::DataVar_var<T>&) [with T = CORBA::Any] ../../../orb/orbitcpp_smartptr.hh:406: _orbitcpp::DataVar_out<T>::DataVar_out(T*&) [with T = CORBA::Any] everything-cpp-skels.cc:1137: initializing argument 3 of `virtual CORBA::Any* POA_test::AnyServer::opAnyString(const CORBA::Any&, CORBA::Any&, _orbitcpp::DataVar_out<CORBA::Any>)' from result of `_orbitcpp::DataVar_out<T>::DataVar_out(T*&) [with T = CORBA::Any]' everything-cpp-skels.cc: In static member function `static CORBA_any* POA_test::AnyServer::_skel_opAnyStruct(void*, const CORBA_any*, CORBA_any*, CORBA_any**, CORBA_Environment*)': everything-cpp-skels.cc:1157: no matching function for call to `_orbitcpp::DataVar_out<CORBA::Any>::DataVar_out(_orbitcpp::DataVar_out<CORBA::Any>)' ../../../orb/orbitcpp_smartptr.hh:414: candidates are: _orbitcpp::DataVar_out<T>::DataVar_out(_orbitcpp::DataVar_out<T>&) [with T = CORBA::Any] ../../../orb/orbitcpp_smartptr.hh:409: _orbitcpp::DataVar_out<T>::DataVar_out(_orbitcpp::DataVar_var<T>&) [with T = CORBA::Any] ../../../orb/orbitcpp_smartptr.hh:406: _orbitcpp::DataVar_out<T>::DataVar_out(T*&) [with T = CORBA::Any] everything-cpp-skels.cc:1157: initializing argument 3 of `virtual CORBA::Any* POA_test::AnyServer::opAnyStruct(const CORBA::Any&, CORBA::Any&, _orbitcpp::DataVar_out<CORBA::Any>)' from result of `_orbitcpp::DataVar_out<T>::DataVar_out(T*&) [with T = CORBA::Any]' everything-cpp-skels.cc: In static member function `static CORBA_TypeCode_struct* POA_test::AnyServer::_skel_opTypeCode(void*, CORBA_TypeCode_struct*, CORBA_TypeCode_struct**, CORBA_TypeCode_struct**, CORBA_Environment*)': everything-cpp-skels.cc:1180: no matching function for call to `_orbitcpp::ObjectPtr_out<CORBA::TypeCode, CORBA::TypeCode*>::ObjectPtr_out(_orbitcpp::ObjectPtr_out<CORBA::TypeCode, CORBA::TypeCode*>)' ../../../orb/orbitcpp_smartptr.hh:155: candidates are: _orbitcpp::ObjectPtr_out<O, O_ptr>::ObjectPtr_out(_orbitcpp::ObjectPtr_out<O, O_ptr>&) [with O = CORBA::TypeCode, O_ptr = CORBA::TypeCode*] ../../../orb/orbitcpp_smartptr.hh:150: _orbitcpp::ObjectPtr_out<O, O_ptr>::ObjectPtr_out(_orbitcpp::ObjectPtr_var<O, O_ptr>&) [with O = CORBA::TypeCode, O_ptr = CORBA::TypeCode*] ../../../orb/orbitcpp_smartptr.hh:146: _orbitcpp::ObjectPtr_out<O, O_ptr>::ObjectPtr_out(O_ptr&) [with O = CORBA::TypeCode, O_ptr = CORBA::TypeCode*] everything-cpp-skels.cc:1180: initializing argument 3 of `virtual CORBA::TypeCode* POA_test::AnyServer::opTypeCode(CORBA::TypeCode*, CORBA::TypeCode*&, _orbitcpp::ObjectPtr_out<CORBA::TypeCode, CORBA::TypeCode*>)' from result of `_orbitcpp::ObjectPtr_out<O, O_ptr>::ObjectPtr_out(_orbitcpp::ObjectPtr_var<O, O_ptr>&) [with O = CORBA::TypeCode, O_ptr = CORBA::TypeCode*]' everything-cpp-skels.cc: In static member function `static _orbitcpp::c::VariableLengthStruct* POA_StructServer::_skel_opVariable(void*, const _orbitcpp::c::VariableLengthStruct*, _orbitcpp::c::VariableLengthStruct*, _orbitcpp::c::VariableLengthStruct**, CORBA_Environment*)': everything-cpp-skels.cc:1558: no matching function for call to `_orbitcpp::Data_out<VariableLengthStruct>::Data_out(_orbitcpp::Data_out<VariableLengthStruct>)' ../../../orb/orbitcpp_smartptr.hh:291: candidates are: _orbitcpp::Data_out<T>::Data_out(_orbitcpp::Data_out<T>&) [with T = VariableLengthStruct] ../../../orb/orbitcpp_smartptr.hh:286: _orbitcpp::Data_out<T>::Data_out(_orbitcpp::Data_var<T>&) [with T = VariableLengthStruct] ../../../orb/orbitcpp_smartptr.hh:283: _orbitcpp::Data_out<T>::Data_out(T*&) [with T = VariableLengthStruct] everything-cpp-skels.cc:1558: initializing argument 3 of `virtual VariableLengthStruct* POA_StructServer::opVariable(const VariableLengthStruct&, VariableLengthStruct&, _orbitcpp::Data_out<VariableLengthStruct>)' from result of `_orbitcpp::Data_out<T>::Data_out(T*&) [with T = VariableLengthStruct]' everything-cpp-skels.cc: In static member function `static _orbitcpp::c::CompoundStruct* POA_StructServer::_skel_opCompound(void*, const _orbitcpp::c::CompoundStruct*, _orbitcpp::c::CompoundStruct*, _orbitcpp::c::CompoundStruct**, CORBA_Environment*)': everything-cpp-skels.cc:1578: no matching function for call to `_orbitcpp::Data_out<CompoundStruct>::Data_out(_orbitcpp::Data_out<CompoundStruct>)' ../../../orb/orbitcpp_smartptr.hh:291: candidates are: _orbitcpp::Data_out<T>::Data_out(_orbitcpp::Data_out<T>&) [with T = CompoundStruct] ../../../orb/orbitcpp_smartptr.hh:286: _orbitcpp::Data_out<T>::Data_out(_orbitcpp::Data_var<T>&) [with T = CompoundStruct] ../../../orb/orbitcpp_smartptr.hh:283: _orbitcpp::Data_out<T>::Data_out(T*&) [with T = CompoundStruct] everything-cpp-skels.cc:1578: initializing argument 3 of `virtual CompoundStruct* POA_StructServer::opCompound(const CompoundStruct&, CompoundStruct&, _orbitcpp::Data_out<CompoundStruct>)' from result of `_orbitcpp::Data_out<T>::Data_out(T*&) [with T = CompoundStruct]' everything-cpp-skels.cc: In static member function `static _orbitcpp::c::StrSeq* POA_SequenceServer::_skel_opStrSeq(void*, const _orbitcpp::c::StrSeq*, _orbitcpp::c::StrSeq*, _orbitcpp::c::StrSeq**, CORBA_Environment*)': everything-cpp-skels.cc:1631: no matching function for call to `_orbitcpp::Sequence_out<test::StrSeq>::Sequence_out(_orbitcpp::Sequence_out<test::StrSeq>)' ../../../orb/orbitcpp_smartptr.hh:494: candidates are: _orbitcpp::Sequence_out<T>::Sequence_out(_orbitcpp::Sequence_out<T>&) [with T = test::StrSeq] ../../../orb/orbitcpp_smartptr.hh:493: _orbitcpp::Sequence_out<T>::Sequence_out(_orbitcpp::Data_var<T>&) [with T = test::StrSeq] ../../../orb/orbitcpp_smartptr.hh:492: _orbitcpp::Sequence_out<T>::Sequence_out(T*&) [with T = test::StrSeq] everything-cpp-skels.cc:1631: initializing argument 3 of `virtual StrSeq* POA_SequenceServer::opStrSeq(const StrSeq&, StrSeq&, _orbitcpp::Sequence_out<test::StrSeq>)' from result of `_orbitcpp::Sequence_out<T>::Sequence_out(T*&) [with T = test::StrSeq]' everything-cpp-skels.cc: In static member function `static _orbitcpp::c::BoundedStructSeq* POA_SequenceServer::_skel_opBoundedStructSeq(void*, const _orbitcpp::c::BoundedStructSeq*, _orbitcpp::c::BoundedStructSeq*, _orbitcpp::c::BoundedStructSeq**, CORBA_Environment*)': everything-cpp-skels.cc:1651: no matching function for call to `_orbitcpp::Sequence_out<BoundedStructSeq>::Sequence_out(_orbitcpp::Sequence_out<BoundedStructSeq>)' ../../../orb/orbitcpp_smartptr.hh:494: candidates are: _orbitcpp::Sequence_out<T>::Sequence_out(_orbitcpp::Sequence_out<T>&) [with T = BoundedStructSeq] ../../../orb/orbitcpp_smartptr.hh:493: _orbitcpp::Sequence_out<T>::Sequence_out(_orbitcpp::Data_var<T>&) [with T = BoundedStructSeq] ../../../orb/orbitcpp_smartptr.hh:492: _orbitcpp::Sequence_out<T>::Sequence_out(T*&) [with T = BoundedStructSeq] everything-cpp-skels.cc:1651: initializing argument 3 of `virtual BoundedStructSeq* POA_SequenceServer::opBoundedStructSeq(const BoundedStructSeq&, BoundedStructSeq&, _orbitcpp::Sequence_out<BoundedStructSeq>)' from result of `_orbitcpp::Sequence_out<T>::Sequence_out(T*&) [with T = BoundedStructSeq]' everything-cpp-skels.cc: In static member function `static char* POA_BasicServer::_skel_opString(void*, const char*, char**, char**, CORBA_Environment*)': everything-cpp-skels.cc:1753: no matching function for call to `_orbitcpp::String_out<Char>::String_out(_orbitcpp::String_out<Char>)' ../../../orb/orbitcpp_smartptr.hh:1008: candidates are: _orbitcpp::String_out<CharT>::String_out(_orbitcpp::String_out<CharT>&) [with CharT = Char] ../../../orb/orbitcpp_smartptr.hh:1003: _orbitcpp::String_out<CharT>::String_out(_orbitcpp::String_var<CharT, false>&) [with CharT = Char] ../../../orb/orbitcpp_smartptr.hh:999: _orbitcpp::String_out<CharT>::String_out(CharT*&) [with CharT = Char] everything-cpp-skels.cc:1753: initializing argument 3 of `virtual char* POA_BasicServer::opString(const char*, char*&, _orbitcpp::String_out<Char>)' from result of `_orbitcpp::String_out<CharT>::String_out(CharT*&) [with CharT = Char]' everything-cpp-skels.cc: In static member function `static CORBA_char** POA_BasicServer::_skel_opStrArray(void*, CORBA_char* const*, CORBA_char**, CORBA_char***, CORBA_Environment*)': everything-cpp-skels.cc:1831: no matching function for call to `_orbitcpp::ArrayVariable_out<test::StrArray_slice, 2>::ArrayVariable_out(_orbitcpp::ArrayVariable_out<test::StrArray_slice, 2>)' ../../../orb/orbitcpp_smartptr.hh:703: candidates are: _orbitcpp::ArrayVariable_out<T_slice, len>::ArrayVariable_out(_orbitcpp::ArrayVariable_out<T_slice, len>&) [with T_slice = test::StrArray_slice, unsigned int len = 2] ../../../orb/orbitcpp_smartptr.hh:697: _orbitcpp::ArrayVariable_out<T_slice, len>::ArrayVariable_out(_orbitcpp::ArrayVariable_var<T_slice, len>&) [with T_slice = test::StrArray_slice, unsigned int len = 2] ../../../orb/orbitcpp_smartptr.hh:694: _orbitcpp::ArrayVariable_out<T_slice, len>::ArrayVariable_out(T_slice*&) [with T_slice = test::StrArray_slice, unsigned int len = 2] everything-cpp-skels.cc:1831: initializing argument 3 of `virtual StrArray_slice* POA_BasicServer::opStrArray(const _orbitcpp::String_var<Char, true>*, _orbitcpp::String_var<Char, true>*, _orbitcpp::ArrayVariable_out<test::StrArray_slice, 2>)' from result of `_orbitcpp::ArrayVariable_out<T_slice, len>::ArrayVariable_out(T_slice*&) [with T_slice = test::StrArray_slice, unsigned int len = 2]' everything-cpp-skels.cc: In static member function `static _orbitcpp::c::VariableLengthUnion* POA_UnionServer::_skel_opVariable(void*, const _orbitcpp::c::VariableLengthUnion*, _orbitcpp::c::VariableLengthUnion*, _orbitcpp::c::VariableLengthUnion**, CORBA_Environment*)': everything-cpp-skels.cc:2257: no matching function for call to `_orbitcpp::Data_out<VariableLengthUnion>::Data_out(_orbitcpp::Data_out<VariableLengthUnion>)' ../../../orb/orbitcpp_smartptr.hh:291: candidates are: _orbitcpp::Data_out<T>::Data_out(_orbitcpp::Data_out<T>&) [with T = VariableLengthUnion] ../../../orb/orbitcpp_smartptr.hh:286: _orbitcpp::Data_out<T>::Data_out(_orbitcpp::Data_var<T>&) [with T = VariableLengthUnion] ../../../orb/orbitcpp_smartptr.hh:283: _orbitcpp::Data_out<T>::Data_out(T*&) [with T = VariableLengthUnion] everything-cpp-skels.cc:2257: initializing argument 3 of `virtual VariableLengthUnion* POA_UnionServer::opVariable(const VariableLengthUnion&, VariableLengthUnion&, _orbitcpp::Data_out<VariableLengthUnion>)' from result of `_orbitcpp::Data_out<T>::Data_out(T*&) [with T = VariableLengthUnion]' everything-cpp-skels.cc: In static member function `static CORBA_any* POA_AnyServer::_skel_opAnyLong(void*, const CORBA_any*, CORBA_any*, CORBA_any**, CORBA_Environment*)': everything-cpp-skels.cc:2312: no matching function for call to `_orbitcpp::DataVar_out<CORBA::Any>::DataVar_out(_orbitcpp::DataVar_out<CORBA::Any>)' ../../../orb/orbitcpp_smartptr.hh:414: candidates are: _orbitcpp::DataVar_out<T>::DataVar_out(_orbitcpp::DataVar_out<T>&) [with T = CORBA::Any] ../../../orb/orbitcpp_smartptr.hh:409: _orbitcpp::DataVar_out<T>::DataVar_out(_orbitcpp::DataVar_var<T>&) [with T = CORBA::Any] ../../../orb/orbitcpp_smartptr.hh:406: _orbitcpp::DataVar_out<T>::DataVar_out(T*&) [with T = CORBA::Any] everything-cpp-skels.cc:2312: initializing argument 3 of `virtual CORBA::Any* POA_AnyServer::opAnyLong(const CORBA::Any&, CORBA::Any&, _orbitcpp::DataVar_out<CORBA::Any>)' from result of `_orbitcpp::DataVar_out<T>::DataVar_out(T*&) [with T = CORBA::Any]' everything-cpp-skels.cc: In static member function `static CORBA_any* POA_AnyServer::_skel_opAnyString(void*, const CORBA_any*, CORBA_any*, CORBA_any**, CORBA_Environment*)': everything-cpp-skels.cc:2332: no matching function for call to `_orbitcpp::DataVar_out<CORBA::Any>::DataVar_out(_orbitcpp::DataVar_out<CORBA::Any>)' ../../../orb/orbitcpp_smartptr.hh:414: candidates are: _orbitcpp::DataVar_out<T>::DataVar_out(_orbitcpp::DataVar_out<T>&) [with T = CORBA::Any] ../../../orb/orbitcpp_smartptr.hh:409: _orbitcpp::DataVar_out<T>::DataVar_out(_orbitcpp::DataVar_var<T>&) [with T = CORBA::Any] ../../../orb/orbitcpp_smartptr.hh:406: _orbitcpp::DataVar_out<T>::DataVar_out(T*&) [with T = CORBA::Any] everything-cpp-skels.cc:2332: initializing argument 3 of `virtual CORBA::Any* POA_AnyServer::opAnyString(const CORBA::Any&, CORBA::Any&, _orbitcpp::DataVar_out<CORBA::Any>)' from result of `_orbitcpp::DataVar_out<T>::DataVar_out(T*&) [with T = CORBA::Any]' everything-cpp-skels.cc: In static member function `static CORBA_any* POA_AnyServer::_skel_opAnyStruct(void*, const CORBA_any*, CORBA_any*, CORBA_any**, CORBA_Environment*)': everything-cpp-skels.cc:2352: no matching function for call to `_orbitcpp::DataVar_out<CORBA::Any>::DataVar_out(_orbitcpp::DataVar_out<CORBA::Any>)' ../../../orb/orbitcpp_smartptr.hh:414: candidates are: _orbitcpp::DataVar_out<T>::DataVar_out(_orbitcpp::DataVar_out<T>&) [with T = CORBA::Any] ../../../orb/orbitcpp_smartptr.hh:409: _orbitcpp::DataVar_out<T>::DataVar_out(_orbitcpp::DataVar_var<T>&) [with T = CORBA::Any] ../../../orb/orbitcpp_smartptr.hh:406: _orbitcpp::DataVar_out<T>::DataVar_out(T*&) [with T = CORBA::Any] everything-cpp-skels.cc:2352: initializing argument 3 of `virtual CORBA::Any* POA_AnyServer::opAnyStruct(const CORBA::Any&, CORBA::Any&, _orbitcpp::DataVar_out<CORBA::Any>)' from result of `_orbitcpp::DataVar_out<T>::DataVar_out(T*&) [with T = CORBA::Any]' everything-cpp-skels.cc: In static member function `static CORBA_TypeCode_struct* POA_AnyServer::_skel_opTypeCode(void*, CORBA_TypeCode_struct*, CORBA_TypeCode_struct**, CORBA_TypeCode_struct**, CORBA_Environment*)': everything-cpp-skels.cc:2375: no matching function for call to `_orbitcpp::ObjectPtr_out<CORBA::TypeCode, CORBA::TypeCode*>::ObjectPtr_out(_orbitcpp::ObjectPtr_out<CORBA::TypeCode, CORBA::TypeCode*>)' ../../../orb/orbitcpp_smartptr.hh:155: candidates are: _orbitcpp::ObjectPtr_out<O, O_ptr>::ObjectPtr_out(_orbitcpp::ObjectPtr_out<O, O_ptr>&) [with O = CORBA::TypeCode, O_ptr = CORBA::TypeCode*] ../../../orb/orbitcpp_smartptr.hh:150: _orbitcpp::ObjectPtr_out<O, O_ptr>::ObjectPtr_out(_orbitcpp::ObjectPtr_var<O, O_ptr>&) [with O = CORBA::TypeCode, O_ptr = CORBA::TypeCode*] ../../../orb/orbitcpp_smartptr.hh:146: _orbitcpp::ObjectPtr_out<O, O_ptr>::ObjectPtr_out(O_ptr&) [with O = CORBA::TypeCode, O_ptr = CORBA::TypeCode*] everything-cpp-skels.cc:2375: initializing argument 3 of `virtual CORBA::TypeCode* POA_AnyServer::opTypeCode(CORBA::TypeCode*, CORBA::TypeCode*&, _orbitcpp::ObjectPtr_out<CORBA::TypeCode, CORBA::TypeCode*>)' from result of `_orbitcpp::ObjectPtr_out<O, O_ptr>::ObjectPtr_out(_orbitcpp::ObjectPtr_var<O, O_ptr>&) [with O = CORBA::TypeCode, O_ptr = CORBA::TypeCode*]' make[3]: *** [everything-cpp-skels.o] Error 1 make[3]: Leaving directory `/temp/orbitcpp-0.30.1/test/everything/generated' make[2]: *** [all-recursive] Error 1 make[2]: Leaving directory `/temp/orbitcpp-0.30.1/test/everything' make[1]: *** [all-recursive] Error 1 make[1]: Leaving directory `/temp/orbitcpp-0.30.1/test' make: *** [all-recursive] Error 1 [root@jyjy520 orbitcpp-0.30.1]# -------------------------------------------------------------------- 奇摩電子信箱•溝通心世界 http://mail.kimo.com.tw < 網 路 生 活•盡 在 奇 摩 > http://www.kimo.com.tw |
From: Artem Gr <ar...@bi...> - 2001-09-07 17:22:24
|
AT> PortableServer::POA_var myrdvPOA = rootPOA->create_POA("myrdv_poa",poa_manager,policies); Is PolicyList implemented already in orbitcpp? 8 ) AT> The exception i get is, i think, a CORBA::exception AT> Have anybody got an idea ? Catch it and print it with try{ ... }catch( CORBA::Exception &e ){ e._print( cout ); } if i'm not mistaken. |
From: Antoine T. <ath...@al...> - 2001-09-07 10:14:52
|
Hello I have a question Is there any known bug with the PortableServer::POA::deactivate_object function Because i have problem thing i don't understand Here's the corresponding code _________________________________________________________________________ CORBA::PolicyList policies; policies.length(3); policies[(CORBA::ULong)0] = rootPOA->create_lifespan_policy(PortableServer::PERSISTENT); policies[1] = rootPOA->create_id_assignment_policy(PortableServer::USER_ID); policies[2] = rootPOA->create_servant_retention_policy(PortableServer::RETAIN); PortableServer::POA_var myrdvPOA = rootPOA->create_POA("myrdv_poa",poa_manager,policies); PortableServer::ObjectId_var sessionManagermanagerId =PortableServer::string_to_ObjectId("MyrdvSessionManager"); PortableServer::ObjectId_var adminDoormanagerId =PortableServer::string_to_ObjectId("MyrdvAdminDoor"); // Create the servants SessionManagerImpl_var sessionManagerServant = new SessionManagerImpl(myrdv, myrdvPOA, statRoot, false); AdminDoorImpl_var adminDoorServant = new AdminDoorImpl(orb, statRoot, myrdv, sessionManagerServant, false); // Activate the servant with the ID on myPOA myrdvPOA->activate_object_with_id(sessionManagermanagerId, sessionManagerServant); myrdvPOA->activate_object_with_id(adminDoormanagerId, adminDoorServant); // Write reference to file CORBA::Object_var ref = myrdvPOA->id_to_reference(sessionManagermanagerId.in()); string string_ref = orb->object_to_string(ref.in()); ofstream refFile(phpdoor_ior.c_str()); refFile << string_ref << endl; refFile.close(); ref = myrdvPOA->id_to_reference(adminDoormanagerId.in()); string_ref = orb->object_to_string(ref.in()); refFile.open(admindoor_ior.c_str()); refFile << string_ref << endl; refFile.close(); CORBA::Object_var reference = myrdvPOA->servant_to_reference(sessionManagerServant); reference = myrdvPOA->servant_to_reference(adminDoorServant); orb->run(); orb->destroy(); unlink(phpdoor_ior.c_str()); unlink(admindoor_ior.c_str()); cout << "Deactivation of adminDoormanager" << endl; try { myrdvPOA->deactivate_object(sessionManagermanagerId.in()); } catch (...) { cout << "catch exception" << endl; } cout << "Deactivation du SessionManager" << endl; try { myrdvPOA->deactivate_object(adminDoormanagerId.in()); } catch (...) { cout << "catch exception" << endl; } poa_manager->deactivate(TRUE, TRUE); ______________________________________________________________ So, the problem is when a want to deactivate my sessionManager or my Admindoor a get an exception, but my program continues and, when a want to deactivate the both objects, the programs freezes at the second deactivation The exception i get is, i think, a CORBA::exception Have anybody got an idea ? Thanks in advance Antoine Thierry - AlphaCentauri |
From: Artem Gr <ar...@bi...> - 2001-09-05 16:38:10
|
SC> Artem Gr <ar...@bi...> wrote: >> Policy class is mentioned in orbitcpp headers but isn't implemented... SC> Feel free to implement it. :) SC> I don't know if I know enough to do it myself. PolicyList class and create_POA method seems easy to implement... And we can report bugs in existing implementation, but there is nothing we can do if there is no implementation at all... Understanding "ORBit C API" into "orbitcpp API" mapping is more difficult, becouse there is no documentation covering some hidden issues (like where POA_ptr type is located? I can't find its definition in sources or headers). Besides, I currently doesn't have much time. >> Is there a (preferred) way to use ORBit C API >> in places where orbitcpp API doesn't work? SC> ORBit-C++ objects and the equivalent ORBit structs are binary-compatible. SC> You should be able to cast back and forth between them. SC> The preferred method is for someone to implement the missing bits of SC> ORBit-C++. Any patches are appreciated, even if they're not complete. I'm currently forced to use MICO, becouse I just need working CORBA-compliant implementation. ORBit is much smaller and compiles much faster, sad I can't use it. |
From: Sam C. <sa...@to...> - 2001-09-04 02:06:18
|
Artem Gr <ar...@bi...> wrote: > Policy class is mentioned in orbitcpp headers but isn't implemented... Feel free to implement it. :) I don't know if I know enough to do it myself. > Is there a (preferred) way to use ORBit C API > in places where orbitcpp API doesn't work? ORBit-C++ objects and the equivalent ORBit structs are binary-compatible. You should be able to cast back and forth between them. The preferred method is for someone to implement the missing bits of ORBit-C++. Any patches are appreciated, even if they're not complete. --=20 Sam Couter | Internet Engineer | http://www.topic.com.au/ sa...@to... | tSA Consulting | OpenPGP key ID: DE89C75C, available on key servers OpenPGP fingerprint: A46B 9BB5 3148 7BEA 1F05 5BD5 8530 03AE DE89 C75C |
From: Sam C. <sa...@to...> - 2001-09-03 08:17:25
|
Artem Gr <ar...@bi...> wrote: >=20 > As we can see, orbitcpp generate "static const" for "Properties", > but only "const" for "Propery". > But all initialized class member must be declared "static" in C++, > therefore gcc complains (and exits with error): A fix for this has been comitted to CVS; Please test it and let me know if I messed it up. --=20 Sam Couter | Internet Engineer | http://www.topic.com.au/ sa...@to... | tSA Consulting | OpenPGP key ID: DE89C75C, available on key servers OpenPGP fingerprint: A46B 9BB5 3148 7BEA 1F05 5BD5 8530 03AE DE89 C75C |
From: Artem Gr <ar...@bi...> - 2001-09-01 11:45:04
|
Policy class is mentioned in orbitcpp headers but isn't implemented... : ( Source: 8<--------------------------------------------------------------------->8 CORBA::Policy policies; policies.length(4); policies[0] = rootPoa->create_lifespan_policy (PortableServer::PERSISTENT); policies[1] = rootPoa->create_request_processing_policy(PortableServer::USE_SERVANT_MANAGER); policies[2] = rootPoa->create_servant_retention_policy(PortableServer::RETAIN); policies[3] = rootPoa->create_id_uniqueness_policy(PortableServer::UNIQUE_ID); policies[4] = rootPoa->create_id_assignment_policy(PortableServer::SYSTEM_ID) 8<--------------------------------------------------------------------->8 Error: 8<--------------------------------------------------------------------->8 corba_t.cc: In method `void corba_t::start()': corba_t.cc:26: aggregate `class CORBA::Policy policies' has incomplete type and cannot be initialized corba_t.cc:28: `PERSISTENT' undeclared in namespace `PortableServer' corba_t.cc:29: `USE_SERVANT_MANAGER' undeclared in namespace `PortableServer' corba_t.cc:30: `RETAIN' undeclared in namespace `PortableServer' corba_t.cc:31: `UNIQUE_ID' undeclared in namespace `PortableServer' corba_t.cc:32: `SYSTEM_ID' undeclared in namespace `PortableServer' corba_t.cc:34: parse error before `::' make: *** [obj/corba_t.o] Error 1 8<--------------------------------------------------------------------->8 P.S. Is there a (preferred) way to use ORBit C API in places where orbitcpp API doesn't work? |
From: Artem Gr <ar...@bi...> - 2001-09-01 11:36:54
|
For 8<--------------------------------------------------------------------->8 interface Checker { struct Property { ... } typedef sequence<Property> Properties; ... } 8<--------------------------------------------------------------------->8 orbitcpp 0.30.1 generates following const definitions in class Checker: 8<--------------------------------------------------------------------->8 const CORBA::TypeCode_ptr _tc_Property = (CORBA::TypeCode_ptr)&::_orbitcpp::c::TC_Checker_Property_struct; static const CORBA::TypeCode_ptr _tc_Properties = (CORBA::TypeCode_ptr)&::_orbitcpp::c::TC_Checker_Properties_struct; 8<--------------------------------------------------------------------->8 As we can see, orbitcpp generate "static const" for "Properties", but only "const" for "Propery". But all initialized class member must be declared "static" in C++, therefore gcc complains (and exits with error): 8<--------------------------------------------------------------------->8 In file included from Checker-cpp-stubs.hh:11, from Checker-cpp-common.cc:6: Checker-cpp-common.hh:55: ANSI C++ forbids initialization of member `_tc_Property' Checker-cpp-common.hh:55: making `_tc_Property' static 8<--------------------------------------------------------------------->8 P.S. All is working fine when we manually replace generated "const" with "static const". I currently use following perl program (between corba-idl and g++) as temporary solution: 8<--------------------------------------------------------------------->8 #!/usr/bin/perl my $file = shift @ARGV; die "usage patch.pl FILE" if ! -r $file; open( 'fh', "< $file" ) or die "Can't open $file: $!"; my $body = join( '', <fh> ); close( 'fh' ); my $rw = "\tstatic const CORBA::TypeCode_ptr"; $body =~ s/\tconst CORBA::TypeCode_ptr/$rw/ig; open( 'fh', "> $file" ) or die "Can't open > $file: $!"; print {'fh'} $body; close( 'fh' ) or die "Can't close $file: $!"; 8<--------------------------------------------------------------------->8 |
From: <MHL...@t-...> - 2001-08-31 18:17:58
|
Am 31.08.2001 00:43 schrieb(en) Andreas Tretow: > >Manually edit the file .../include/orb/corba_sequences.h and change the > >lines > > > >#define _CORBA_sequence_CORBA_any_defined > >typedef struct CORBA_sequence_CORBA_any_struct CORBA_AnySeq; > >typedef struct CORBA_sequence_CORBA_any_struct > CORBA_sequence_CORBA_any; > > > >into > > > >/* #define _CORBA_sequence_CORBA_any_defined > >typedef struct CORBA_sequence_CORBA_any_struct CORBA_AnySeq; > >typedef struct CORBA_sequence_CORBA_any_struct > CORBA_sequence_CORBA_any; */ > > > > Errr, nope. This is what I get: > > [root@locutus orbitcpp-0.30.1]# make > Making all in compiler > make[1]: Entering directory `/home/bimbo/install/orbitcpp-0.30.1/compiler' > make[1]: Nothing to be done for `all'. > make[1]: Leaving directory `/home/bimbo/install/orbitcpp-0.30.1/compiler' > Making all in orb > make[1]: Entering directory `/home/bimbo/install/orbitcpp-0.30.1/orb' > /bin/sh ../libtool --mode=compile c++ -DHAVE_CONFIG_H -I. -I. -I. -I.. > -I.. -g -O0 -Wall -c orbitcpp_types.cc > rm -f .libs/orbitcpp_types.lo > c++ -DHAVE_CONFIG_H -I. -I. -I. -I.. -I.. -g -O0 -Wall > -Wp,-MD,.deps/orbitcpp_types.pp -c orbitcpp_types.cc -fPIC -DPIC > -o .libs/orbitcpp_types.lo > In file included from ../orb/orbitcpp_types.hh:30, > from orbitcpp_types.cc:29: > /usr/include/orb/orbit.h:48:18: glib.h: No such file or directory > In file included from /usr/include/IIOP/IIOP.h:5, > from /usr/include/orb/orbit.h:55, > from ../orb/orbitcpp_types.hh:30, > from orbitcpp_types.cc:29: > /usr/include/ORBitutil/util.h:4:18: glib.h: No such file or directory Strange, strange ... I can't see any reasons why remarking some lines in a header file (that are no includes) could affect the -I options in the make system. No this must be a different error independent from the other. Hang on, I'll have a look whether I can reproduce it. -- Martin |
From: Andreas T. <and...@du...> - 2001-08-30 22:43:30
|
>Manually edit the file .../include/orb/corba_sequences.h and change the >lines > >#define _CORBA_sequence_CORBA_any_defined >typedef struct CORBA_sequence_CORBA_any_struct CORBA_AnySeq; >typedef struct CORBA_sequence_CORBA_any_struct CORBA_sequence_CORBA_any; > >into > >/* #define _CORBA_sequence_CORBA_any_defined >typedef struct CORBA_sequence_CORBA_any_struct CORBA_AnySeq; >typedef struct CORBA_sequence_CORBA_any_struct CORBA_sequence_CORBA_any; */ Errr, nope. This is what I get: [root@locutus orbitcpp-0.30.1]# make Making all in compiler make[1]: Entering directory `/home/bimbo/install/orbitcpp-0.30.1/compiler' make[1]: Nothing to be done for `all'. make[1]: Leaving directory `/home/bimbo/install/orbitcpp-0.30.1/compiler' Making all in orb make[1]: Entering directory `/home/bimbo/install/orbitcpp-0.30.1/orb' /bin/sh ../libtool --mode=compile c++ -DHAVE_CONFIG_H -I. -I. -I. -I.. -I.. -g -O0 -Wall -c orbitcpp_types.cc rm -f .libs/orbitcpp_types.lo c++ -DHAVE_CONFIG_H -I. -I. -I. -I.. -I.. -g -O0 -Wall -Wp,-MD,.deps/orbitcpp_types.pp -c orbitcpp_types.cc -fPIC -DPIC -o .libs/orbitcpp_types.lo In file included from ../orb/orbitcpp_types.hh:30, from orbitcpp_types.cc:29: /usr/include/orb/orbit.h:48:18: glib.h: No such file or directory In file included from /usr/include/IIOP/IIOP.h:5, from /usr/include/orb/orbit.h:55, from ../orb/orbitcpp_types.hh:30, from orbitcpp_types.cc:29: /usr/include/ORBitutil/util.h:4:18: glib.h: No such file or directory In file included from /usr/include/IIOP/IIOP-types.h:9, from /usr/include/IIOP/IIOP.h:7, from /usr/include/orb/orbit.h:55, from ../orb/orbitcpp_types.hh:30, from orbitcpp_types.cc:29: /usr/include/ORBitutil/basic_types.h:4:18: glib.h: No such file or directory In file included from /usr/include/IIOP/IIOP.h:10, from /usr/include/orb/orbit.h:55, from ../orb/orbitcpp_types.hh:30, from orbitcpp_types.cc:29: /usr/include/IIOP/iiop-endian.h:4:18: glib.h: No such file or directory In file included from /usr/include/orb/dii.h:30, from /usr/include/orb/orbit.h:61, from ../orb/orbitcpp_types.hh:30, from orbitcpp_types.cc:29: /usr/include/orb/interface_repository.h:5:18: glib.h: No such file or directory In file included from /usr/include/orb/orb.h:30, from /usr/include/orb/orbit.h:67, from ../orb/orbitcpp_types.hh:30, from orbitcpp_types.cc:29: /usr/include/orb/interface_repository.h:5:18: glib.h: No such file or directory make[1]: *** [orbitcpp_types.lo] Error 1 make[1]: Leaving directory `/home/bimbo/install/orbitcpp-0.30.1/orb' make: *** [all-recursive] Error 1 -- Andreas Tretow and...@du... |
From: <MHL...@t-...> - 2001-08-30 21:19:50
|
Am 30.08.2001 20:47 schrieb(en) Andreas Tretow: > Thanks Martin, > > but /usr/include/orb/corba_sequences.h contains these lines. So, may I > guess that that's not it? :-( > Damn. > No, you should put /* ... */ around these lines, i.e. remark them: Manually edit the file .../include/orb/corba_sequences.h and change the lines #define _CORBA_sequence_CORBA_any_defined typedef struct CORBA_sequence_CORBA_any_struct CORBA_AnySeq; typedef struct CORBA_sequence_CORBA_any_struct CORBA_sequence_CORBA_any; into /* #define _CORBA_sequence_CORBA_any_defined typedef struct CORBA_sequence_CORBA_any_struct CORBA_AnySeq; typedef struct CORBA_sequence_CORBA_any_struct CORBA_sequence_CORBA_any; */ |
From: Andreas T. <and...@du...> - 2001-08-30 18:47:40
|
Thanks Martin, but /usr/include/orb/corba_sequences.h contains these lines. So, may I guess that that's not it? :-( Damn. >In file .../include/orb/corba_sequences.h put the following lines in /* ... >*/: > > #define _CORBA_sequence_CORBA_any_defined > typedef struct CORBA_sequence_CORBA_any_struct CORBA_AnySeq; > typedef struct CORBA_sequence_CORBA_any_struct CORBA_sequence_CORBA_any; -- Andreas Tretow and...@du... |
From: <MHL...@t-...> - 2001-08-30 17:18:22
|
Am 30.08.2001 11:51 schrieb(en) Andreas Tretow: > Hi Everybody, > > I would appreciate any help or pointers as to what my problem with > compilation could be. > My setup: RH 7.1 (standard compiler 2.96.81 and gcc 2.95.3, same > problems with each version) > # rpm -qa | grep -i orbit > ORBit-devel-0.5.8-ximian.2 > ORBit-0.5.8-ximian.2 > > I get the following output: > [...] > gcc -DHAVE_CONFIG_H -I. -I. -I../../../orb -I../../.. -I../../.. > -I/usr/include/glib-1.2 -I/usr/lib/glib/include -I/usr/include -g > -O0 -Wall -W -c everything-common.c > everything-common.c:622: `TC_CORBA_sequence_CORBA_any_struct' undeclared > here (not in a function) [...] This is weird! I do remember a thread on orbit-list before version 0.5.8 was announced that sounded like the following patch solving your problem would be applied. However looking at my own brand-new Linux-installation I don't see anything has changed: In file .../include/orb/corba_sequences.h put the following lines in /* ... */: #define _CORBA_sequence_CORBA_any_defined typedef struct CORBA_sequence_CORBA_any_struct CORBA_AnySeq; typedef struct CORBA_sequence_CORBA_any_struct CORBA_sequence_CORBA_any; The section sais that CORBA_sequence_CORBA_any is defined but this is very untrue at least for the typecode. So later on the automatically (by the idl-compiler) generated stubs that define the typecode and implement CORBA_sequence_CORBA_any are not compiled in. That's why eventually the compiler mocks. Phil: Didn't you port the test "everything" to plain orbit? Does it pass there? Cu, Martin P.S.: I'm deeply sorry and ask you to apologize my having annoyed others on the list with wrong information ("do you really have ORBit 0.5.8 installed?") |
From: Andreas T. <and...@du...> - 2001-08-30 09:51:19
|
Hi Everybody, I would appreciate any help or pointers as to what my problem with compilation could be. My setup: RH 7.1 (standard compiler 2.96.81 and gcc 2.95.3, same problems with each version) # rpm -qa | grep -i orbit ORBit-devel-0.5.8-ximian.2 ORBit-0.5.8-ximian.2 I get the following output: (cd .libs && rm -f liborbitcppCosNaming.la && ln -s ../liborbitcppCosNaming.la liborbitcppCosNaming.la) make[2]: Leaving directory `/home/bimbo/install/orbitcpp-0.30.1/services/name' make[2]: Entering directory `/home/bimbo/install/orbitcpp-0.30.1/services' make[2]: Nothing to be done for `all-am'. make[2]: Leaving directory `/home/bimbo/install/orbitcpp-0.30.1/services' make[1]: Leaving directory `/home/bimbo/install/orbitcpp-0.30.1/services' Making all in test make[1]: Entering directory `/home/bimbo/install/orbitcpp-0.30.1/test' Making all in everything make[2]: Entering directory `/home/bimbo/install/orbitcpp-0.30.1/test/everything' Making all in generated make[3]: Entering directory `/home/bimbo/install/orbitcpp-0.30.1/test/everything/generated' gcc -DHAVE_CONFIG_H -I. -I. -I../../../orb -I../../.. -I../../.. -I/usr/include/glib-1.2 -I/usr/lib/glib/include -I/usr/include -g -O0 -Wall -W -c everything-common.c everything-common.c:622: `TC_CORBA_sequence_CORBA_any_struct' undeclared here (not in a function) everything-common.c:622: initializer element is not constant everything-common.c:622: (near initialization for `anon_subtypes_array128[0]') everything-common.c: In function `test_FixedLengthStruct__free': everything-common.c:2616: warning: unused parameter `dat' everything-common.c:2617: warning: unused parameter `free_strings' everything-common.c: In function `test_VariableLengthStruct__free': everything-common.c:2637: warning: unused parameter `dat' everything-common.c: In function `test_CompoundStruct__free': everything-common.c:2662: warning: unused parameter `dat' everything-common.c: In function `CORBA_sequence_CORBA_string__free': everything-common.c:2702: warning: unused parameter `dat' everything-common.c: In function `CORBA_sequence_test_CompoundStruct__free': everything-common.c:2766: warning: unused parameter `dat' everything-common.c: In function `CORBA_sequence_CORBA_long__free': everything-common.c:2832: warning: unused parameter `dat' everything-common.c: In function `CORBA_sequence_test_StrSeq__free': everything-common.c:2957: warning: unused parameter `dat' everything-common.c: In function `test_StructWithSequenceInIt__free': everything-common.c:3124: warning: unused parameter `dat' everything-common.c: In function `test_TestException__free': everything-common.c:3201: warning: unused parameter `dat' everything-common.c: In function `test_TestStruct2__free': everything-common.c:3234: warning: unused parameter `dat' everything-common.c: In function `test_TestException2__free': everything-common.c:3258: warning: unused parameter `dat' everything-common.c: In function `test_LongArray__free': everything-common.c:3283: warning: unused parameter `dat' everything-common.c:3283: warning: unused parameter `free_strings' everything-common.c: In function `test_StrArray__free': everything-common.c:3301: warning: unused parameter `dat' everything-common.c: In function `test_StrArrayMultiDimensional__free': everything-common.c:3327: warning: unused parameter `dat' everything-common.c: In function `test_VariableLengthStructArray__free': everything-common.c:3360: warning: unused parameter `dat' everything-common.c: In function `test_FixedLengthUnion__free': everything-common.c:3394: warning: unused parameter `dat' everything-common.c:3395: warning: unused parameter `free_strings' everything-common.c: In function `test_VariableLengthUnion__free': everything-common.c:3480: warning: unused parameter `dat' everything-common.c: In function `test_EnumUnion__free': everything-common.c:3525: warning: unused parameter `dat' everything-common.c:3525: warning: unused parameter `free_strings' everything-common.c: In function `test_BooleanUnion__free': everything-common.c:3553: warning: unused parameter `dat' everything-common.c: In function `test_StrArray2__free': everything-common.c:3585: warning: unused parameter `dat' everything-common.c: In function `test_ArrayUnion__free': everything-common.c:3611: warning: unused parameter `dat' everything-common.c: In function `FixedLengthStruct__free': everything-common.c:3643: warning: unused parameter `dat' everything-common.c:3644: warning: unused parameter `free_strings' everything-common.c: In function `VariableLengthStruct__free': everything-common.c:3664: warning: unused parameter `dat' everything-common.c: In function `CompoundStruct__free': everything-common.c:3689: warning: unused parameter `dat' everything-common.c: In function `CORBA_sequence_CompoundStruct__free': everything-common.c:3792: warning: unused parameter `dat' everything-common.c: In function `CORBA_sequence_StrSeq__free': everything-common.c:3980: warning: unused parameter `dat' everything-common.c: In function `StructWithSequenceInIt__free': everything-common.c:4081: warning: unused parameter `dat' everything-common.c: In function `TestException__free': everything-common.c:4158: warning: unused parameter `dat' everything-common.c: In function `LongArray__free': everything-common.c:4190: warning: unused parameter `dat' everything-common.c:4190: warning: unused parameter `free_strings' everything-common.c: In function `StrArray__free': everything-common.c:4207: warning: unused parameter `dat' everything-common.c: In function `StrArrayMultiDimensional__free': everything-common.c:4231: warning: unused parameter `dat' everything-common.c: In function `VariableLengthStructArray__free': everything-common.c:4264: warning: unused parameter `dat' everything-common.c: In function `FixedLengthUnion__free': everything-common.c:4297: warning: unused parameter `dat' everything-common.c:4297: warning: unused parameter `free_strings' everything-common.c: In function `VariableLengthUnion__free': everything-common.c:4382: warning: unused parameter `dat' everything-common.c: In function `EnumUnion__free': everything-common.c:4427: warning: unused parameter `dat' everything-common.c:4427: warning: unused parameter `free_strings' everything-common.c: In function `BooleanUnion__free': everything-common.c:4454: warning: unused parameter `dat' everything-common.c: In function `StrArray2__free': everything-common.c:4485: warning: unused parameter `dat' everything-common.c: In function `ArrayUnion__free': everything-common.c:4509: warning: unused parameter `dat' make[3]: *** [everything-common.o] Error 1 make[3]: Leaving directory `/home/bimbo/install/orbitcpp-0.30.1/test/everything/ generated' make[2]: *** [all-recursive] Error 1 make[2]: Leaving directory `/home/bimbo/install/orbitcpp-0.30.1/test/everything' make[1]: *** [all-recursive] Error 1 make[1]: Leaving directory `/home/bimbo/install/orbitcpp-0.30.1/test' make: *** [all-recursive] Error 1 Thanks a lot in advance Andreas -- Andreas Tretow and...@du... |
From: Sune <su...@mo...> - 2001-08-28 08:39:47
|
john prokopek wrote: > just to be clear, the development package is seperate from the main orbit package. > > [jprok@miles g++-2]$ rpm --query -a | grep -i orbit > ORBit-0.5.8-2 > ORBit-devel-0.5.8-2 > And just to be clear, I don't use rpm, but thanks for clarifying. /Sune -- A casual stroll through the lunatic asylum shows that faith does not prove anything. - Nietzsche |
From: john p. <jpr...@sn...> - 2001-08-28 01:02:41
|
btw, you will get an abundance of the following during the build everything-common.c: In function `CORBA_sequence_StrSeq__free': everything-common.c:4220: warning: unused parameter `dat' everything-common.c: In function `StructWithSequenceInIt__free': everything-common.c:4323: warning: unused parameter `dat' everything-common.c: In function `TestException__free': everything-common.c:4401: warning: unused parameter `dat' everything-common.c: In function `LongArray__free': everything-common.c:4433: warning: unused parameter `dat' everything-common.c:4433: warning: unused parameter `free_strings' everything-common.c: In function `StrArray__free': everything-common.c:4450: warning: unused parameter `dat' everything-common.c: In function `StrArrayMultiDimensional__free': everything-common.c:4474: warning: unused parameter `dat' everything-common.c: In function `VariableLengthStructArray__free': everything-common.c:4507: warning: unused parameter `dat' everything-common.c: In function `FixedLengthUnion__free': everything-common.c:4540: warning: unused parameter `dat' -----Original Message----- From: orb...@li... [mailto:orb...@li...]On Behalf Of Sune Molgaard Sent: Monday, August 27, 2001 7:47 PM To: orb...@li... Subject: Re: [orbitcpp-list] Trouble compiling john prokopek wrote: > did you install the latest orbit developement package. > I believe I did. I downloaded the source of 0.5.8, and compiled it myself. /Sune -- Show me a man who lives alone and has a perpetually clean kitchen, and 8 times out of 9 I'll show you a man with detestable spiritual qualities. - Charles Bukowski _______________________________________________ orbitcpp-list mailing list orb...@li... http://lists.sourceforge.net/lists/listinfo/orbitcpp-list |