Questions tagged [metrowerks]
8 questions
39
votes
14 answers
Is there a way to prevent a method from being overridden in subclasses?
Is anyone aware of a language feature or technique in C++ to prevent a child class from over riding a particular method in the parent class?
class Base {
public:
bool someGuaranteedResult() { return true; }
};
class Child : public Base…

Adam
- 25,966
- 23
- 76
- 87
3
votes
1 answer
Solve boost.thread compilation error with Metrowerks compiler
I'm trying to use boost.thread with metrowerks codewarrior 5.5.3; in the header thread.hpp, I get the error that he's redefining thread::thread_data:
class BOOST_THREAD_DECL thread
{
private:
...
template
struct…

akappa
- 10,220
- 3
- 39
- 56
2
votes
1 answer
How should I write my C code to have the resulting assembly use extra dsll32 and dsra32 instructions?
I'm decompiling a PS2 game that was shipped as a debug build. I've gotten as far as decompiling enough to be able compile an ELF file using the compiler that was originally used (Metrowerks CodeWarrior).
Now I'm doing comparisons between the…

user16316067
- 119
- 5
2
votes
3 answers
C/C++ Resources To Develop Using MetroWerks C/C++
My friend have real Macintosh IIci, that uses Mac System 7.5.5 under a 68k processor, then I've installed Metrowerks C/C++ version 1 I think, but I'm getting errors even in a simple Hello World program:
#include
int main(void)
{
…

Nathan Campos
- 28,769
- 59
- 194
- 300
2
votes
4 answers
Objective-C And MetroWerks C/C++ IDE
I'm learning Objective-C and my friend have a real Macintosh IIci, that uses a Mac System 7(specifically 7.5.5 with a 68k processor) and I've installed Metrowerks C/C++ IDE(I think it's the version 1, but I don't know), but i didn't tested it, then…

Nathan Campos
- 28,769
- 59
- 194
- 300
2
votes
4 answers
C++ code coverage tool for weird target platform
Anyone knows c++ code coverage tool usable under the following conditions:
Target platform is PowerPC CPU inside Nintendo WII dev.kit, that runs custom embedded OS. The only way to exchange data with the PC is to use custom proprietary API (sorry…

Soonts
- 20,079
- 9
- 57
- 130
1
vote
1 answer
Metrowerks CodeWarrior error on debug/run
I am doing ARM assembly programming using Metrowerks Codewarrior 1.2. But the IDE stopped working all of a sudden and showing an error when trying to run or debug the application. I searched for any new version of the software that had fixed it but…

User1234321232
- 517
- 10
- 25
0
votes
1 answer
Protocol Specification of Metro TRK or App TRK
Can somebody point to the protocol docs of Metro TRK and/or App TRK that is used for on device debugging for Symbian Application?

Faisal Feroz
- 12,458
- 4
- 40
- 51