Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
4answers
338 views

why is my code performing poorly when built with Realview tools but better with Codesourcery?

I have a C project which was previously being built with Codesourcery's gnu tool chain. Recently it was converted to use Realview's armcc compiler but the performance that we are getting with Realview ...
3
votes
3answers
876 views

How to include a newline in a C++ macro or how to use C++ templates to do the same?

I saw the following question: http://stackoverflow.com/questions/98944/how-to-generate-a-newline-in-a-cpp-macro Let me give a brief requirement of a need in newline in a C++ preprocessor. Am working ...
1
vote
1answer
157 views

constructor of global static member not being called when compiled with rvct

Well, this is kind of complex to explain. I'm compiling a static library which has a header that looks something similar to this: class Foo{ static int Goo(){ DoSomethingExciting(); ...
1
vote
0answers
41 views

how to migrate from AXD to realview

I always debug our arm project by AXD for a AT91 RM9200 board, but now I want to try realview debugger, it seems it is more powerful. there is a configuration script for AXD in order to remap memory, ...
1
vote
1answer
465 views

overriding enumeration base type using pragma or code change

Problem: I am using a big C/C++ code base which works on gcc & visual studio compilers where enum base type is by default 32-bit(integer type). This code also has lots of inline + embedded ...
0
votes
1answer
399 views

Debugging using RealView Debug(RVDebug)

I dont know if this is a very specific question, but still posting in hope that there might be few who have this prior experience/background and can point something to me in my problem. I am havign a ...