Thread overview
crash in scppn
Oct 18, 2004
Johnny Willemsen
Oct 19, 2004
Arjan Knepper
Oct 20, 2004
Johnny Willemsen
Oct 20, 2004
Arjan Knepper
Oct 23, 2004
Jan Knepper
Oct 25, 2004
Johnny Willemsen
Oct 19, 2004
Walter
October 18, 2004
Hi,

When trying to port ACE/TAO I get a crash in scppn, just a crash getting a windows from windows if I want to send a report to Microsoft, no more info. How can I deliver more info that would help you to identify the problem. The output is below. The code can be obtained from cvs.doc.wustl.edu

Regards,

Johnny Willemsen

C:\ACE\latest\ACE_wrappers\ace>make
make[1]: Entering directory `/cygdrive/c/ACE/latest/ACE_wrappers/ace'

GNUmakefile: /cygdrive/c/ACE/latest/ACE_wrappers/ace/GNUmakefile.ACE MAKEFLAGS= --unix -w

dmc -Ar  -ND  -g      -Ic:\ace\latest\ace_wrappers -DACE_NO_INLINE -Ic:\ace\latest\ace_wrappers
 -DACE_HAS_ACE_TOKEN -DAC
E_HAS_ACE_SVCCONF -DACE_BUILD_DLL  -c  -o .shobj/ACE.o ACE.cpp
ACE.cpp:
--- errorlevel 1
make[1]: *** [.shobj/ACE.o] Error 1
make[1]: Leaving directory `/cygdrive/c/ACE/latest/ACE_wrappers/ace'
make: *** [ACE] Error 2

C:\ACE\latest\ACE_wrappers\ace>


October 19, 2004
Johnny Willemsen wrote:
> How can I deliver more info that would help you to identify the problem. The 
> 
> dmc -Ar  -ND  -g      -Ic:\ace\latest\ace_wrappers -DACE_NO_INLINE -Ic:\ace\latest\ace_wrappers  -DACE_HAS_ACE_TOKEN -DAC

I have had simular problems in the past using -g, try using -gl (line numbers only) to see whether or not the generation of debug info is the cause of trouble.

Arjan
October 19, 2004
"Johnny Willemsen" <jwillemsen@remedy.nl> wrote in message news:cl1191$nl9$1@digitaldaemon.com...
> Hi,
>
> When trying to port ACE/TAO I get a crash in scppn, just a crash getting a windows from windows if I want to send a report to Microsoft, no more
info.
> How can I deliver more info that would help you to identify the problem.
The
> output is below. The code can be obtained from cvs.doc.wustl.edu

This should help: www.digitalmars.com/bugs.html


October 20, 2004
Hi,

I checked this and even without -g the crash still occurs. The problem is that this is a huge file so it will take some time to figure out the construct that is causing the crash

Johnny
"Arjan Knepper" <arjan@ask.me> wrote in message
news:cl2cov$23e5$1@digitaldaemon.com...
> Johnny Willemsen wrote:
>> How can I deliver more info that would help you to identify the problem.
>> The
>> dmc -Ar  -ND  -g      -Ic:\ace\latest\ace_wrappers -DACE_NO_INLINE -Ic:\ace\latest\ace_wrappers
>>  -DACE_HAS_ACE_TOKEN -DAC
>
> I have had simular problems in the past using -g, try using -gl (line numbers only) to see whether or not the generation of debug info is the cause of trouble.
>
> Arjan





October 20, 2004
You could place some

#pragma messages ( "some label" ) in the file

to find out where the compilers crashes.

Johnny Willemsen wrote:
> Hi,
> 
> I checked this and even without -g the crash still occurs. The problem is
> that this is a huge file so it will take some time to figure out the
> construct that is causing the crash
> 
> Johnny
> "Arjan Knepper" <arjan@ask.me> wrote in message
> news:cl2cov$23e5$1@digitaldaemon.com...
> 
>>Johnny Willemsen wrote:
>>
>>>How can I deliver more info that would help you to identify the problem.
>>>The
>>>dmc -Ar  -ND  -g      -Ic:\ace\latest\ace_wrappers -DACE_NO_INLINE -Ic:\ace\latest\ace_wrappers
>>> -DACE_HAS_ACE_TOKEN -DAC
>>
>>I have had simular problems in the past using -g, try using -gl (line
>>numbers only) to see whether or not the generation of debug info is the
>>cause of trouble.
>>
>>Arjan
> 
> 
> 
> 
> 
> 
October 23, 2004
Or use the '-v' option to have the compiler work verbose and spit our what it does...



Arjan Knepper wrote:
> You could place some
> 
> #pragma messages ( "some label" ) in the file
> 
> to find out where the compilers crashes.
> 
> Johnny Willemsen wrote:
> 
>> Hi,
>>
>> I checked this and even without -g the crash still occurs. The problem is
>> that this is a huge file so it will take some time to figure out the
>> construct that is causing the crash
>>
>> Johnny
>> "Arjan Knepper" <arjan@ask.me> wrote in message
>> news:cl2cov$23e5$1@digitaldaemon.com...
>>
>>> Johnny Willemsen wrote:
>>>
>>>> How can I deliver more info that would help you to identify the problem.
>>>> The
>>>> dmc -Ar  -ND  -g      -Ic:\ace\latest\ace_wrappers -DACE_NO_INLINE -Ic:\ace\latest\ace_wrappers
>>>> -DACE_HAS_ACE_TOKEN -DAC
>>>
>>>
>>> I have had simular problems in the past using -g, try using -gl (line
>>> numbers only) to see whether or not the generation of debug info is the
>>> cause of trouble.
>>>
>>> Arjan
>>
>>
>>
>>
>>
>>
>>


-- 
ManiaC++
Jan Knepper

But as for me and my household, we shall use Mozilla...
www.mozilla.org
October 25, 2004
Hi,

I have tried this, but it seems there are several methods on which the compiler crashes. I am just to busy at this moment to have a detailed looked. If someone else is interested look at http://cvs.doc.wustl.edu how to get all the sources. Maybe next month I have more time

Regards,

Johnny
"Jan Knepper" <jan@smartsoft.us> wrote in message
news:cldtsb$1ed$1@digitaldaemon.com...
> Or use the '-v' option to have the compiler work verbose and spit our what it does...
>
>
>
> Arjan Knepper wrote:
>> You could place some
>>
>> #pragma messages ( "some label" ) in the file
>>
>> to find out where the compilers crashes.
>>
>> Johnny Willemsen wrote:
>>
>>> Hi,
>>>
>>> I checked this and even without -g the crash still occurs. The problem
>>> is
>>> that this is a huge file so it will take some time to figure out the
>>> construct that is causing the crash
>>>
>>> Johnny
>>> "Arjan Knepper" <arjan@ask.me> wrote in message
>>> news:cl2cov$23e5$1@digitaldaemon.com...
>>>
>>>> Johnny Willemsen wrote:
>>>>
>>>>> How can I deliver more info that would help you to identify the
>>>>> problem.
>>>>> The
>>>>> dmc -Ar  -ND  -g      -Ic:\ace\latest\ace_wrappers -DACE_NO_INLINE -Ic:\ace\latest\ace_wrappers
>>>>> -DACE_HAS_ACE_TOKEN -DAC
>>>>
>>>>
>>>> I have had simular problems in the past using -g, try using -gl (line numbers only) to see whether or not the generation of debug info is the cause of trouble.
>>>>
>>>> Arjan
>>>
>>>
>>>
>>>
>>>
>>>
>>>
>
>
> -- 
> ManiaC++
> Jan Knepper
>
> But as for me and my household, we shall use Mozilla... www.mozilla.org