Tagged Questions

3
votes
4answers
339 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
877 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
1answer
467 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 ...