jujuwie
Nov 6, 2008, 01:16 PM
hello,
I have got problems when debugging a C++ sample application (default settings) in Eclipse Ganymede (Mac Os X10.5.5 + darwin) which consists of the following classes:
// BaseClass.h
class BaseClass {
public:
int member1;
int member2[5];
BaseClass();
virtual ~BaseClass();
};
// BaseClass.cpp
#include "BaseClass.h"
BaseClass::BaseClass() {
member1 = 55;
member2[3] = 33;
}
BaseClass::~BaseClass() {
}
// InheritedClass.h
#include "BaseClass.h"
class InheritedClass : public BaseClass {
public:
InheritedClass();
virtual ~InheritedClass();
};
// InheritedClass.cpp
#include "InheritedClass.h"
InheritedClass::InheritedClass() {
}
InheritedClass::~InheritedClass() {
}
// MainPgm.cpp
#include "InheritedClass.h"
using namespace std;
int main() {
InheritedClass myObj;
return 0; // breakpoint at this line
}
when stopping at the breakpoint (see comment) and when unfolding the details of myObj in the debug view "Variables":
myObj
-> BaseClass
-> member1
-> // empty and following error (see below)
'Label Job' has encountered a problem.
An internal error occurred during: "Label Job".
Details:
An internal error occurred during: "Label Job".
Zero length BigInteger
does anybody know where that comes from or even more useful how to get rid of it? I am new to Mac and to Ganymede. How about Ganymede for Mac? Buggy? ...
thx, Judith
I have got problems when debugging a C++ sample application (default settings) in Eclipse Ganymede (Mac Os X10.5.5 + darwin) which consists of the following classes:
// BaseClass.h
class BaseClass {
public:
int member1;
int member2[5];
BaseClass();
virtual ~BaseClass();
};
// BaseClass.cpp
#include "BaseClass.h"
BaseClass::BaseClass() {
member1 = 55;
member2[3] = 33;
}
BaseClass::~BaseClass() {
}
// InheritedClass.h
#include "BaseClass.h"
class InheritedClass : public BaseClass {
public:
InheritedClass();
virtual ~InheritedClass();
};
// InheritedClass.cpp
#include "InheritedClass.h"
InheritedClass::InheritedClass() {
}
InheritedClass::~InheritedClass() {
}
// MainPgm.cpp
#include "InheritedClass.h"
using namespace std;
int main() {
InheritedClass myObj;
return 0; // breakpoint at this line
}
when stopping at the breakpoint (see comment) and when unfolding the details of myObj in the debug view "Variables":
myObj
-> BaseClass
-> member1
-> // empty and following error (see below)
'Label Job' has encountered a problem.
An internal error occurred during: "Label Job".
Details:
An internal error occurred during: "Label Job".
Zero length BigInteger
does anybody know where that comes from or even more useful how to get rid of it? I am new to Mac and to Ganymede. How about Ganymede for Mac? Buggy? ...
thx, Judith
