Error while ACE 5.3.1 or 5.4.1 compiling and installing by MinGW 3.3.3Hi,
I have installed MinGW packages:
binutils-2.13.90-20030111-1.tar.gz
gcc-core-3.3.3-20040217-1.tar.gz
gcc-g++-3.3.3-20040217-1.tar.gz
mingw-runtime-3.3.tar.gz
w32api-2.5.tar.gz
Also I've configured environment due to ACE-INSTALL.html according
MinGW compiler. OS: WinXP SP2.
$ACE_ROOT=F:\ACE531
I get next compiling error:
F:\ACE531\ace>gmake
gmake.EXE[1]: Entering directory `F:/ACE531/ace'
d:\Utils\Unix\diff.EXE: -: Invalid argument
gmake.EXE[1]: Leaving directory `F:/ACE531/ace'
gmake.EXE[1]: Entering directory `F:/ACE531/ace'
d:/Utils/Unix/gmake.EXE -f Makefile.dirs SUBDIR_TARGET=all
RMCast.subdir
gmake.EXE[2]: Entering directory `F:/ACE531/ace'
d:/Utils/Unix/gmake.EXE -f Makefile -C RMCast all
gmake.EXE[3]: Entering directory `F:/ACE531/ace/RMCast'
Installing libACE_RMCast.dll -> F:\ACE531/ace
d:\Utils\Unix\cp.EXE: F:ACE531aceRMCast/libACE_RMCast.dll: No such
file or directory
Installing libACE_RMCast.dll -> F:\ACE531/ace
d:\Utils\Unix\cp.EXE: F:ACE531aceRMCast/libACE_RMCast.dll: No such
file or directory
gmake.EXE[3]: *** [F:\ACE531/ace/libACE_RMCast.dll] Error 1
gmake.EXE[3]: Leaving directory `F:/ACE531/ace/RMCast'
gmake.EXE[2]: *** [RMCast.subdir] Error 2
gmake.EXE[2]: Leaving directory `F:/ACE531/ace'
gmake.EXE[1]: *** [all.nested] Error 2
gmake.EXE[1]: Leaving directory `F:/ACE531/ace'
d:\Utils\Unix\gmake.EXE: *** [all] Error 2
There are no folder separators in path (for exampl...
RE: [ace-users] Re: ACE 5.4.0 won't compile after GCC upgrade (3.3.3 -> 3.4.3)Hi Tom,
> > > The "resolution" was to upgrade to ACE-5.4.3 or later, which has
> > > code fixes to help with the newer compiler. Not sure how
> much would
> > > need to change, but you may be able to inspect the differences
in
> > > that part of the code wrt the newer ACE release to backport the
> > > fixes.
> > Thanks, I've downloaded and am building. Is ACE-5.4.3 the latest
> > production release ?
>
> Well, the definition of "production release" for ACE is a bit murky
> imho.
Production release is one with 2 numbers. E.g., 5.4
> The developers on this list (almost) always recommend using the
> latest package, which is typically labeled a "beta release".
> The latest
> would be 5.4.4. The developers always recommend *not* using the
> "production release", since the next release labeled "beta"
> is always a bug-fix-only release.
I believe I qualify as a "developer", but have a different take.
Production releases are tested well, and often better than the BFO
beta. There may be fixes in BFO, but there may be additional bugs also
- it happened at 5.4.1.
For those wishing to adopt a version of ACE and stick with it, you'll
need a version you can get support (fixes and advice) for. For
example, Riverace supports releases (e.g., 5.4) and fix kits that
Riverace releases for those (i...
RE: [ace-users] Re: ACE 5.4.0 won't compile after GCC upgrade (3.3.3 -> 3.4.3) #2Hi J.T.,
Right... The issue is a bit odd... Here's the check I added for ACE:
dnl This check was added to work around a system-supplied header
dnl (/usr/include/netinet/ip.h) that won't compile with Visual Age C++
dnl unless the _NO_BITFIELDS preprocessor macro is defined. The
comments
dnl there recommend use of _NO_BITFIELDS (and recode where needed to
allow
dnl that), but we won't just turn it on. Check to see if it's needed.
Note
dnl that this check is related to headers but done before we really
know if
dnl the header is present. Thus, if the bare compile fails, but
succeeds
dnl with _NO_BITFIELDS, set the flag, else leave things alone.
-Steve
--
Steve Huston, Riverace Corporation
Adding Service to Open Source Software
ACE book info at http://www.riverace.com/acebooks/
> -----Original Message-----
> From: J.T. Conklin [mailto:jtc@acorntoolworks.com]
> Sent: Wednesday, April 13, 2005 2:21 PM
> To: Colm McHugh
> Cc: Steve Huston; ace-users@cs.wustl.edu
> Subject: Re: [ace-users] Re: ACE 5.4.0 won't compile after
> GCC upgrade (3.3.3 -> 3.4.3)
>
>
> Colm McHugh <cmchugh@callixa.com> writes:
> >>Sure... Why do you say <sys/machine.h> is a prerequisite for
> >><netinet/tcp.h>? I addressed a problem related to this in
> the autoconf
> >>support for AIX that'll go in the next beta, but it doesn't
involve...
RE: [ace-users] Re: ACE 5.4.0 won't compile after GCC upgrade (3.3.3 -> 3.4.3) #2Hi Colm,
Ok, thanks for that explanation.
I solved this a different way for a similar problem that showed up
with Visual Age C++ on AIX 5.2... When the 5.4.5 beta comes out,
please try this again and hopefully no further workarounds will be
needed.
Thanks,
-Steve
--
Steve Huston, Riverace Corporation
Adding Service to Open Source Software
ACE book info at http://www.riverace.com/acebooks/
> -----Original Message-----
> From: Colm McHugh [mailto:cmchugh@callixa.com]
> Sent: Wednesday, April 13, 2005 1:05 PM
> To: Steve Huston
> Cc: ace-users@cs.wustl.edu
> Subject: Re: [ace-users] Re: ACE 5.4.0 won't compile after
> GCC upgrade (3.3.3 -> 3.4.3)
>
>
>
> >Sure... Why do you say <sys/machine.h> is a prerequisite for
> ><netinet/tcp.h>? I addressed a problem related to this in
> the autoconf
> >support for AIX that'll go in the next beta, but it doesn't involve
> >machine.h.
> >
> Hi Steve,
>
> that statement is based on the compilation sequence shown
> below (done on
> an AIX 5.2):
>
> $ cat t2.cpp
> #include <sys/machine.h>
> #include <netinet/tcp.h>
> int main()
> {}
> $ g++ t2.cpp
> $ cat t1.cpp
> #include <netinet/tcp.h>
> int main()
> {}
> $ g++ t1.cpp
> In file incl...
RE: [ace-users] ACE 5.3Hi,
5.3 is ancient, visual age 7 is brand new, I don't think anyone is using
this and you problaby will find issues because this is not tested.
Regards,
Johnny Willemsen
Remedy IT
Postbus 101
2650 AC Berkel en Rodenrijs
The Netherlands
www.theaceorb.nl / www.remedy.nl
> -----Original Message-----
> From: owner-ace-users@cse.wustl.edu
> [mailto:owner-ace-users@cse.wustl.edu] On Behalf Of Praveen
> Kumar Gulati
> Sent: woensdag 19 oktober 2005 9:08
> To: ace-users@cs.wustl.edu
> Subject: [ace-users] ACE 5.3 - TAO 1.3 on AIX 5.3 with
> compiler Visual Age Version 7.0
>
> Hi
>
> I am trying to build ACE 5.3 - TAO 1.3 on AIX 5.3 with
> compiler Visual Age Version 7.0.
>
> Do you already know some issues in above combination?
>
> Whether some one is already using above combination?
>
> Regards
>
> Praveen Gulati
>
>
...
RE: [ace-users] ACE 5.3This is a multi-part message in MIME format.
------=_NextPart_000_01BC_01C5D46D.2EF26B10
Content-Type: text/plain;
charset="us-ascii"
Content-Transfer-Encoding: quoted-printable
Hi Praveen,
=20
Riverace will have an AIX 5.3/Visual Age 7 machine running next week.
We have a sponsor for porting ACE 5.4 to the platform. If you'd like
to sponsor us porting back to ACE 5.3, please let me know.
=20
Best regards,
=20
-Steve
--
Steve Huston, Riverace Corporation
"How to Use ACE Effectively" class Oct 17-19!
See http://www.riverace.com/training.htm
-----Original Message-----
From: owner-ace-users@cse.wustl.edu
[mailto:owner-ace-users@cse.wustl.edu] On Behalf Of Praveen Kumar
Gulati
Sent: Wednesday, October 19, 2005 3:08 AM
To: ace-users@cs.wustl.edu
Subject: [ace-users] ACE 5.3 - TAO 1.3 on AIX 5.3 with compiler Visual
Age Version 7.0
Hi
I am trying to build ACE 5.3 - TAO 1.3 on AIX 5.3 with compiler Visual
Age Version 7.0.
Do you already know some issues in above combination?=20
Whether some one is already using above combination?
Regards
Praveen Gulati
------=_NextPart_000_01BC_01C5D46D.2EF26B10
Content-Type: text/html;
charset="us-ascii"
Content-Transfer-Encoding: quoted-printable
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META HTTP-EQUIV=3D"Content-Type" CONTENT=3D"text/html; =
charset=3Dus-ascii&q...
Re: [ace-users] g++ 3.4.3 and ACE 5.5 & TAO 1.5Hi,
Please upgrade to ACE/TAO 1.5.3 which you can obtain from
http://download.dre.vanderbilt.edu.
Regards,
Johnny Willemsen
Remedy IT
Postbus 101
2650 AC Berkel en Rodenrijs
The Netherlands
www.theaceorb.nl / www.remedy.nl
"M@uro!!" <mauro.gaddo@gmail.com> wrote in message
news:<1161692263.239945.111960@m7g2000cwm.googlegroups.com>...
> During compiling on HP-UX 11.11 with g++ i have the following error:
>
> g++ -DHAVE_CONFIG_H -I../.. -I.. -DACE_HAS_ACE_TOKEN
> -DACE_HAS_ACE_SVCCONF -DACE_BUILD_DLL -DHPUX_VERS=1111 -w -W -Wall
> -Wpointer-arith -g -O2 -pthread -pipe -I. -I.. -MT
> libACE_la-OS_NS_stdio.lo -MD -MP -MF .deps/libACE_la-OS_NS_stdio.Tpo -c
> ../../ace/OS_NS_stdio.cpp -fPIC -DPIC -o .libs/libACE_la-OS_NS_stdio.o
> ../../ace/OS_NS_stdio.cpp: In function `int ACE_OS::fprintf(FILE*,
> const wchar_t*, ...)':
> ../../ace/OS_NS_stdio.cpp:242: error: `::vfwprintf' has not been
> declared
>
> Can someone helps me?
>
> Thanks!!
> M.
>
...
[ace-users] Re: ACE 5.4.0 won't compile after GCC upgrade (3.3.3 -> 3.4.3)
Hi Tom,
> Well, the definition of "production release" for ACE is a bit murky
> imho.
Please see
http://www.cs.wustl.edu/~schmidt/ACE_wrappers/docs/ACE-development-process.html
for the canonical definition of terms. If there's something unclear
there please let me know and I'll fixit.
> The developers on this list (almost) always recommend using the
> latest package, which is typically labeled a "beta release".
Right, the reason we do that is because the "latest release" (which is
most commonly a beta release) is the only thing the DOC group
developers "support".
> The latest would be 5.4.4. The developers always recommend *not*
> using the "production release", since the next release labeled
> "beta" is always a bug-fix-only release. So I usually use the x.x.1
> release (the BFO release) but would probably recommend using 5.4.4
> on any platform, as do the developers.
I think you probably know this already, but for the benefit of others
on the mailing list the DOC grou doesn't actually support *anything*
officially for non-sponsors, i.e., our work is all on a "best effort
or no effort at all" basis, as per the explanation in
http://www.cs.wustl.edu/~schmidt/ACE_wrappers/docs/ACE-bug-process.html
However, some companies like Riverace, OCI, PrismTech, etc. use our
"official" (i.e., non-beta) releases as the basis f...
Re: [ace-users] Errors while compiling c++ 3.4.2Hi Eyal,
I believe we've fixed these problems in the latest version of
ACE that's tucked inside our CVS repository. Can you please take a
look at this version available in
http://deuce.doc.wustl.edu/Download.html
and see if things work better. If not, please let us know so we can
fix them before we release ACE 5.4.3 in a week or so.
Thanks,
Doug
>> I get the following while compiling:
>>
>> /usr/bin/c++ -D_POSIX_C_SOURCE=199506L -DNDEBUG -DUSING_GCC
>> -D_POSIX_PTHREAD_SEMANTICS -DLINUX -I../inc
>> -I../3rd_party...
[ace-users] ACE 5.3------=_Part_17_4772698.1129705681813
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: quoted-printable
Content-Disposition: inline
Hi
I am trying to build ACE 5.3 - TAO 1.3 on AIX 5.3 with compiler Visual Age
Version 7.0.
Do you already know some issues in above combination?
Whether some one is already using above combination?
Regards
Praveen Gulati
------=_Part_17_4772698.1129705681813
Content-Type: text/html; charset=ISO-8859-1
Content-Transfer-Encoding: quoted-printable
Content-Disposition: inline
<font size=3D"2">
<p>Hi</p>
<p>I am trying to build ACE 5.3 - TAO 1.3 on AIX 5.3 with compiler Visual A=
ge Version 7.0.</p>
<p>Do you already know some issues in above combination? </p>
<p>Whether some one is already using above combination?</p>
<p>Regards</p>
<p>Praveen Gulati</p></font>
------=_Part_17_4772698.1129705681813--
------=_Part_209_12524537.1129714684175
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: quoted-printable
Content-Disposition: inline
Hi
Thanks. I will come back to you after some time.
I have already built with some minor changes.
ACE is only a small component in my application, which is currently runnin=
g
in Solaris.
I am in process of porting other components to AIX, after that I will brin=
g
up the application, if there are any issues, I will fall ba...
Re: [ace-users] Compiling ACE 5.3 with GCC 3.4.3Hi,
When x.3 was released there was no GCC 3.4 version, so this will just not
work, please upgrade to a newer version of ACE/TAO.
Regards,
Johnny Willemsen
Remedy IT
Postbus 101
2650 AC Berkel en Rodenrijs
The Netherlands
www.theaceorb.nl / www.remedy.nl
"Seng-Quee.Liang" <Seng-Quee.Liang@Sun.COM> wrote in message
news:<mailman.1894.1170813530.25808.ace-users@mail.cse.wustl.edu>...
> Hi,
>
> I'm a newbie to ACE and this is my 1st posting to this alias, and would
> appreciate any help.
>
> I have a requirement to use ACE 5.3 on Solaris 10 SPARC. I had followed
> the building & installation information on ACE website to the letter and
> had no problems compiling it with Sun Studio 11.
>
> However, when I tried compiling it with GCC 3.4.3, I'm swamped with a
> host of problems. Being a newbie to ACE, I'm wondering
>
> a) if I'm setting the right config.h/platform_macros.GNU for GCC
> compile;
> b) if I should be trying add flags into these files to get it to
> compile.
>
> Any pointers or advice is sincerely appreciated.
>
>
> Thanks in advance.
>
> Best Regards,
> /SengQuee
>
> -------- config.h for Studio 11 -----
> #include "ace/config-sunos5.9.h"
>
> -------- platform_macros.GNU for Studio 11 -----
> include $(ACE_ROOT)/include/makeinclude/platform_sunos5_sunc++.GNU
&...
[ace-users] ACE 5.4.0 won't compile after GCC upgrade (3.3.3 -> 3.4.3)[Apologies if this shows up twice, there was a mailer error with my first attempt to post]
Hi,
I found the same problem reported recently on the mailing list
("compiling ACE under Fedora core 3", March 1st) but no resolution was
reported there, so I thought I'd post a full description here.
ACE VERSION: 5.4
HOST MACHINE and OPERATING SYSTEM: AIX 5.1
COMPILER: GNU GCC G++ 3.4.3
CONTENTS OF $ACE_ROOT/ace/config.h:
// config-aix5.1.h,v 1.5 2003/12/16 17:49:48 elliott_c Exp
//
// Config file for AIX 5.1
// This define is needed for building with Visual Age C++ 5 in incremental
// mode. In the batch mode build, platform_aix_ibm.GNU sets it. The
incremental
// mode compiler won't be supported after ACE 5.3, so this will also go away
// in that timeframe, so don't worry about future AIX versions.
#if !defined (ACE_AIX_VE...
Re: [tao-users] ACE 5.3.5 + TAO 1.3.5 + CIAO 0.3.5 beta released
Hi Folks,
It's been about a year since we released ACE 5.3 and TAO 1.3.
We are therefore planning to release ACE 5.4 and TAO 1.4 by
mid-December. The ACE+TAO x.3.5 beta that Venkita just announced will
be the penultimate beta towards that goal. In addition to all the
enhancements that he mentioned in the release notes, we also plan to
add the following enhancements before the x.4 release:
----------------------------------------
.. ACE subsetting enhancements
.. ORB footprint and compilation-time enhancements
.. CORBA Security Service capabilities
.. Load Balancing Servi...
RE: [ace-users] Re: ACE 5.4 compilation error on HP-UX 11.11/GNU g++ 3.4.3The needed fix is, indeed, in ACE 5.5. If, for some reason, you need
to stay on 5.4, the 5.4e Fix Kit from Riverace has this problem fixed
as well. The fix is needed for g++ 3.4 on any platform.
-Steve
--
Steve Huston, Riverace Corporation
Helping you succeed with ACE
See http://www.riverace.com/support.htm
> -----Original Message-----
> From: owner-ace-users@cse.wustl.edu
> [mailto:owner-ace-users@cse.wustl.edu] On Behalf Of Douglas C.
Schmidt
> Sent: Saturday, March 11, 2006 7:01 PM
> To: ecoboja@yahoo.com; ace-users@cs.wustl.edu
> Subject: [ace-users] Re: ACE 5.4 compilation error on HP-UX
> 11.11/GNU g++ 3.4.3
>
>
> Hi,
>
> Thanks for using the PRF.
>
> >> ACE VERSION: 5.4
>
> Please upgrade to ACE 5.5, which you can download from
>
> http://deuce.doc.wustl.edu/Download.html
>
> The DOC groups at Washington University, UC Irvine, and Vanderbilt
> University only provide "best effort" support for non-sponsors for
the
> latest release, as described in
>
> http://www.cs.wustl.edu/~schmidt/ACE_wrappers/docs/ACE-bug-pro
> cess.html
>
> Thus, if you need more "predictable" help for ACE 5.4, I recommend
> that you check out
>
>...
Re: [tao-users] ACE 5.3.5 + TAO 1.3.5 + CIAO 0.3.5 beta released #2
Hi Tom,
> We are currently arm-wrestling with TAO-1.3.3 on VxWorks-5.5/Tornado-2.2
> built with non-native exceptions and with implicit templates. Implicit
> templates are desirable since we are now using STL and those nested
> templates make explicit instantiation almost impossible. Non-native
> exceptions are important since native exceptions lead to a factor of 4.5
> increase in code size (!!).
>
> Implicit templates cause trouble with singletons, since the VxWorks-2.x
> loader does not respect weakly-defined symbols, so one can not load
> multiple mo...
Re: [tao-users] ACE 5.3.5 + TAO 1.3.5 + CIAO 0.3.5 beta released #2 #2
Hi Alex,
> What are OCI's plan's for a supported TAO 1.4 release and developer
> guide? Will this effect the release of the 1.3 guide?
This is an excellent question - I'm sure Malcolm Spence will pitch in
when he has a chance and I suspect that OCI will be supporting TAO 1.4
in due time. None of the changes in TAO 1.4 should affect the
relevance of the info in the TAO 1.3 developer's guide - there's just
more new stuff to document as time permits.
Take care,
Doug
...
[ace-users] Compiling ACE 5.3 with GCC 3.4.3Hi,
I'm a newbie to ACE and this is my 1st posting to this alias, and would
appreciate any help.
I have a requirement to use ACE 5.3 on Solaris 10 SPARC. I had followed
the building & installation information on ACE website to the letter and
had no problems compiling it with Sun Studio 11.
However, when I tried compiling it with GCC 3.4.3, I'm swamped with a
host of problems. Being a newbie to ACE, I'm wondering
a) if I'm setting the right config.h/platform_macros.GNU for GCC
compile;
b) if I should be trying add flags into these files to get it to
compile.
Any pointers or advice is sincerely appreciated.
Thanks in advance.
Best Regards,
/SengQuee
-------- config.h for Studio 11 -----
#include "ace/config-sunos5.9.h"
-------- platform_macros.GNU for Studio 11 -----
include $(ACE_ROOT)/include/makeinclude/platform_sunos5_sunc++.GNU
-------- config.h for GCC 3.4.3 --------
#include "ace/config-sunos5.4-g++.h"
-------- platform_macros.GNU for GCC 3.4.3 ---------
include $(ACE_ROOT)/include/makeinclude/platform_sunos5_g++.GNU
--------- Compilation output with GCC ------------------------------
gmake[1]: Entering directory `/export/sw-images/ace/ACE_wrappers/ace'
g++ -W -Wall -Wpointer-arith -pipe -O3 -g -fno-exceptions
-fcheck-new -D_REENTRANT -I/export/sw-images/ace/ACE_wrappers
-DACE_BUILD_DLL -DACE_OS_BUILD_DLL -c -fPIC -o .shobj/Basic_Types.o
Basic_Types.cpp
In file...
[tao-users] Re: ACE+TAO+CIAOHi folks,
It's been a long time (5 months) since we put out the x.4.2
ACE+TAO+CIAO beta, and the current x.4.3 beta contains many
improvements, fixes, and new features. It would be great if you could
put this through its paces and let us know what problems you find so
we can fix them ASAP. We plan to release the x.4.4 beta fairly soon
(i.e., within a month), so your thorough testing will greatly improve
its stability and portabilty!
Thanks very much,
Doug
>> Since this is the season of giving, we are happy to announce a new beta
>> of ACE-5....
[ace-users] Errors while compiling c++ 3.4.2I get the following while compiling:
/usr/bin/c++ -D_POSIX_C_SOURCE=199506L -DNDEBUG -DUSING_GCC
-D_POSIX_PTHREAD_SEMANTICS -DLINUX -I../inc
-I../3rd_party/ACE-5.3.0/ACE_wrappers -fPIC -pedantic -fno-for-scope
-Wno-long-long -Wno-deprecated -o Trace.o.linux -c Trace.cpp
In file included from
.../3rd_party/ACE-5.3.0/ACE_wrappers/ace/Unbounded_Set.h:306,
from ../3rd_party/ACE-5.3.0/ACE_wrappers/ace/Memory_Pool.h:30,
from ../3rd_party/ACE-5.3.0/ACE_wrappers/ace/Malloc.h:414,
from ../3rd_party/ACE-5.3.0/ACE_wrappers/ace/String_Base....
Re: [ace-users] Re: ACE 5.4 compiling problems with g++ 3.4.3Hi
> First, please use the problem-report-form when asking questions. ACE 5.4 is
> not supported with newer GCC versions. All these issues are resolved in the
> upcoming x.4.3 release.
>
> For the time being, try to add the following to your config.h
>
> # if (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4))
> # define ACE_EXPLICIT_TEMPLATE_DESTRUCTOR_TAKES_ARGS
> # endif /* __GNUC__ >= 3.4 */
>
> You are correct, the download link doesn't work. Bala, do you have an idea
> what is happening with the downlo...
[ace-users] Re: ACE 5.4 compilation error on HP-UX 11.11/GNU g++ 3.4.3Hi,
Thanks for using the PRF.
>> ACE VERSION: 5.4
Please upgrade to ACE 5.5, which you can download from
http://deuce.doc.wustl.edu/Download.html
The DOC groups at Washington University, UC Irvine, and Vanderbilt
University only provide "best effort" support for non-sponsors for the
latest release, as described in
http://www.cs.wustl.edu/~schmidt/ACE_wrappers/docs/ACE-bug-process.html
Thus, if you need more "predictable" help for ACE 5.4, I recommend
that you check out
http://www.cs.wustl.edu/~schmidt/commercial-support.html
for a list of companies that will provide you with ACE+TAO commercial
support.
Thanks,
Doug
>> HOST MACHINE and OPERATING SYSTEM:
>> HP Superdome 9000/800 HP-UX B.11.11
>> TARGET MACHINE and OPERATING SYSTEM, if different from HOST: COMPILER
>> NAME AND VERSION (AND PATCHLEVEL):
>> GNU g++ 3.4.3
>> THE $ACE_ROOT/ace/config.h FILE:
>> ace/config-hpux-11.00.h
>> THE $ACE_ROOT/include/makeinclude/platform_macros.GNU FILE
>> ($ACE_ROOT)/include/makeinclude/platform_hpux_gcc.GNU
>> CONTENTS OF $ACE_ROOT/bin/MakeProjectCreator/config/default.features
>> None
>> AREA/CLASS/EXAMPLE AFFECTED:
>> ace/Unbounded_Queue.cpp fails to compile
>> DOES THE PROBLEM AFFECT:
>> COMPILATION? Yes
>> LINKING? No
>> On Unix systems, did you run make realc...
[ace-users] Re: ACE 5.4 compiling problems with g++ 3.4.3Hi Klaus,
First, please use the problem-report-form when asking questions. ACE 5.4 is
not supported with newer GCC versions. All these issues are resolved in the
upcoming x.4.3 release.
For the time being, try to add the following to your config.h
# if (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4))
# define ACE_EXPLICIT_TEMPLATE_DESTRUCTOR_TAKES_ARGS
# endif /* __GNUC__ >= 3.4 */
You are correct, the download link doesn't work. Bala, do you have an idea
what is happening with the download links.
Regards,
Johnny Willemsen
Remedy IT
...
[tao-users] ACE 5.3.5 + TAO 1.3.5 + CIAO 0.3.5 beta releasedHi
We are happy to announce a new beta of ACE-5.3.5, TAO-1.3.5 and
CIAO-0.3.5. This beta comes with new ORB level services that were
developed over the past few months by folks at Washington University
and University of Rhode Island. Please see the release notes attached
with this email for more information.
As usual the latest release is available at:
http://deuce.doc.wustl.edu/Download.html
The doxygen documentation for the beta will be updated in the next few
hours!
We highly encourage you to download the present beta and use it with
your applications and let us know if there are any p...
[ace-users] Tests failed : ACE 5.5.2 - AIX 5.3Hi,
My first mail before my message in the group failed (my subscription was not
activated).
The PRF below describes my problems. I can compile and link but several
ACE's tests fail. I only use ACE library and only compile it by cd'ing in
the ace directory before running make. I already made some fixes described
below to compile and to link the library. I'm not abble to interpret the
faild tests to identify the problem source or area.
I didn't find the scoreboard before my mail. I see that several tests fails
for
all compilations on AIX. I try to reassure myself by looking these results,
it's
not only for my configuration. But it's a daily build with last development
version.
For the 5.5.2 stable version they should probably not fail ?
Regards,
PO Houot.
ACE VERSION: 5.5.2
HOST MACHINE and OPERATING SYSTEM:
bash-3.00$ uname -a
AIX localhost 3 5 0040983B4C00 unknown unknown AIX
bash-3.00$ oslevel -r
5300-05
TARGET MACHINE and OPERATING SYSTEM, if different from HOST:
Same as host
COMPILER NAME AND VERSION (AND PATCHLEVEL):
bash-3.00$ g++ -v
Using built-in specs.
Target: powerpc-ibm-aix5.3.0.0
Configured with: ../gcc-4.1.1/configure --disable-nls
Thread model: aix
gcc version 4.1.1
This compiler is installed from packages provided by UCLA AIX Software
library
THE $ACE_ROOT/ace/config.h FILE :
bash-3.00$ more $ACE_ROOT/ace/config.h
#include "ace/config-aix-5.x.h"
T...