Tagged Questions
11
votes
1answer
1k views
What's the difference in GCC between -std=gnu++0x and -std=c++0x and which one should be used?
I'm having troubles with <stdint.h> when using -std=c++0x in GCC 4.4.3 (for Android):
// using -std=c++0x
#include <stdint.h>
uint64_t value; // error: 'uint64_t' does not name a type
...
7
votes
1answer
287 views
GCC equivalent to VC's floating point model switch?
Does GCC have an equivalent compiler switch to VC's floating point model switch (/fp)?
In particular, my application benefits from compiling with /fp:fast and precision is not a big deal, how should ...
7
votes
5answers
5k views
When should I use GCC's -pipe option?
The GCC 4.1.2 documentation has this to say about the -pipe option:
-pipe
Use pipes rather than temporary files for communication between the various stages of compilation. This fails to work ...
3
votes
2answers
270 views
Add GCC options to top of C source file
Is is possible to put something at the top of the C source file, like
// GCC_OPTIONS=-g,-Wall
that will add those options automatically to gcc every time you compile this file?
2
votes
5answers
572 views
How do I force the size of a 'bool' under GCC
I'm currently porting some code from another platform and bools on the new platform are 1-byte sized. This is breaking our loading code as the values are stored as 32-bit values. Furthermore, speed is ...
1
vote
1answer
191 views
What's optimal march & mtune options for gcc for “Pentium4 and above” processors
My C++ application (compiled using g++) needs to work on Pentium-4 (32-bit) and above. However, it's typically used with Core2Duo or better processors.
I'm currently using: -march=pentium4 ...
1
vote
2answers
75 views
What is the gcc equivalent option for the -qfuncsect option of XL compiler of AIX?
XL Compiler of AIX seems to have the -qfuncsect option which places each function in a seperate object control section with the effect that when the final executable is created it helps in removing ...
0
votes
1answer
25 views
When and where is _DEBUG defined?
I have the following sample code in one of my header files:
#ifdef _DEBUG
#define _DEBUG_NEW_REDEFINE_NEW 0
#include "debug_new.h"
#else
#define DEBUG_NEW new
#endif
The application which ...
0
votes
4answers
508 views
how to disable compiler optimization in gcc
I am trying to learn assembly language. I have searched and found how to disassemble a "c" file but I think it produces some optimized version of the program. Is there any way so that I can find the ...