The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
80 views

unistd.h implementation

My toolchain (Realview) does not have implementation of unistd.h, I have a code that I need to use that is using unistd.h, some function like access, open. So I need to implement this functions by ...
2
votes
1answer
108 views

Force the Compiler Not to Link to Certain Object Files

I'm currently investigating the possibility to force the rvct compiler not to link in specific translation units and just pretend that it has linked it. Our product is running very tight on space ...
0
votes
0answers
93 views

Strict-aliasing Optimization in ARM RealView Compiler [closed]

I'm wondering if realview compiler does strict-aliasing optimization like gcc. If rvct does support strict-aliasing optimization, I would like to find out which flag to enable/disable this feature. ...
3
votes
5answers
675 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 ...
1
vote
1answer
252 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
50 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
2answers
759 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 ...
3
votes
3answers
1k 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 ...
0
votes
1answer
479 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 ...