Tagged Questions
The compiler-options tag has no wiki summary.
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
...
9
votes
1answer
2k views
“Register for COM Interop” vs “Make assembly COM visible”
What is the real difference between these two options? What I know is:
Register for COM Interop
This options executes regasm on the assembly and registers the assembly as an COM component(or maybe ...
7
votes
3answers
669 views
Disabling C++0x features in VC 2010?
Does C++0x mode in VC++ 2010 has an off switch? I am working on a project that supposed to compile on non 0x compilers, and therefore I want to compile against the current standard. (Even if non of ...
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 ...
6
votes
1answer
806 views
What is the difference between the /Ox and /O2 compiler options?
Microsoft's C++ compiler (cl.exe, as included with Visual Studio) offers several optimization switches. The difference between most of them seems self-explanatory, but it's not clear to me what the ...
6
votes
2answers
190 views
Why doesn't {$ifopt FINITEFLOAT ON} compile?
I have the construct:
{$ifopt FINITEFLOAT ON}
{$message 'FINITEFLOAT option ON' }
{$else }
{$message 'FINITEFLOAT option OFF' }
{$endif }
in my source and it won't compile! It's got to be ...
6
votes
9answers
1k views
C#: Benefit of explicitly stating “unsafe” / compiler option
I understand pointers and the rare need to use them in C# code. My question is: what is the reasoning behind having to explicitly state "unsafe" in a block of code. Additionally, why must a compiler ...
5
votes
3answers
718 views
Visual C++ Compiler Optimization Flags: Difference Between /O2 and /Ot
What's the difference between the /Ot flag ("favor fast code") and the /O2 flag ("maximize speed")?
(Ditto with /Os and /O1.)
5
votes
1answer
147 views
Compiler switch to disable const_cast sematics in c-style casts?
Recently I stumbled over code such as this:
void foo(const Bar* b) {
...
takes_nonconst_param_fn((Bar*)b);
...
Obviously, the developer didn't know what he was doing, but if the compiler ...
5
votes
2answers
811 views
The g++'s -g option equivalent to VS2010 cl compiler?
With g++ with -g option, I can use gdb for debugging purposes.
What's the equivalent to this option with Visual Studio 2010 cl.exe compiler?
This page has different libraries (debug/release) for ...
3
votes
2answers
271 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?
3
votes
2answers
238 views
How do I create a WT project in MSVC?
if anyone has used WT successfully with MSVC (mine is 2005), could you please provide some details on how this can be done?
I have installed WT fine , then ran some examples. The problems begin when I ...
2
votes
2answers
84 views
Qmake: how to remove compiler flag for a certain project, without changing qmake.conf?
I'm using qmake and Visual Studio. In release build qmake adds /GL and /O2 flags to all projects, and I need to remove those two flags for certain libraries within my whole Qt project. Is there a way? ...
2
votes
1answer
389 views
Why is /Gm the default option in debug configuration as opposed to /MP?
After I disabled /Gm and enabled /MP, the build time on VS2010 is reduced significantly.
I am confused as to why /Gm is the default. I think /MP is better.
(If /Gm is enabled, /MP is not activated ...
2
votes
5answers
575 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
140 views
Google protocol buffers cross compiling
My problems of using Google protocol buffers has two parts, one is about compiler options, another is cross compiling. The build machine is a Power6, 64bit; host machine is a PowerPC450, 32bit. Gcc ...
1
vote
2answers
98 views
What happens if both EHsc and EHa are specified
I am handling a legacy code.
To fix some bug, I have to give EHa to some of the files. I tested giving both EHsc and EHa to the whole project when building. This solves my problem but gives warnings ...
1
vote
1answer
185 views
Compilig SDL and OpenGL inside of Code Blocks on Ubuntu
So anytime I compile my code using the terminal I have to compile with: -lSDL -lGL -lGLU
How do I do this in Code Blocks? I have tried putting those into the build options for the project, but this ...
1
vote
1answer
61 views
Small build of amalgamated SQLite3 source
I'd like to use the compiler options described here to generate a smaller SQLite3 library. However, these options (including -Os it seems) expressly don't work with the amalgamated source, which is my ...
1
vote
1answer
195 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
1answer
686 views
MS C++ (CL) compiled executable does not work on Windows 2000 [closed]
Possible Duplicate:
Issue using Visual Studio 2010 compiled C++ DLL in Windows 2000
Similar to these questions:
Can I use Visual Studio 2010's C++ compiler with Visual Studio 2008's ...
1
vote
2answers
213 views
Can g++ check the throw specifiers?
Two questions about this :
Is there a way to force g++ to ignore the throw specifiers ?
(for example, as I remember, Visual Studio ignores the throw specifiers, different from throw())
Is it ...
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 ...
1
vote
0answers
93 views
Adding -fno-omit-frame-pointer option in ARMARCH5gnu in VxWorks leads to random crashes
Application crashes randomly when -fno-omit-frame-pointer option is added during compilation.
This problem happens in ARMARCH5gnu architecture in VxWorks.
Any pointers in the direction for resolving ...
1
vote
1answer
720 views
How can I set options in SConstruct for C compiler depending on compiler type?
I need to set additional options for C compiler, e.g. add flag to turn all warnings ON, depending on the type of the compiler. E.g. for MSVC I should use
env.Append(CPPFLAGS = "/Wall")
but for ...
1
vote
2answers
497 views
[c#]How to specify /GS, options to c# application?
As you know, /GS are Visual C++ Compiler or Linker Options.
Can i Specify /GS in c# compiler or linker?
Are these flags enabled by default in c# applications?
[Edit]: change the question ...
0
votes
2answers
46 views
Compiler options selective application
can compiler options be applied selectively on my files?
I want some files to be covered by some option but not the other files.
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
1answer
105 views
C# CodeDom Multiple CompilerOptions
I would like to add multiple CompilerOptions with CodeDom, but I cannot figure out how to do so.
What I am currently trying:
CompilerParameters cp = new CompilerParameters(referencedAssemblies, ...
0
votes
1answer
109 views
Xcode 3.2.5: Make “Treat Warnings as Errors” and “Run Static Analyzer” both true for new projects
The Problem
Every time I create a new project in Xcode I have to go to Project > Edit Project Settings and navigate to Treat Warnings as Errors and Run Static Analyzer to turn them on. For the life ...
0
votes
4answers
511 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 ...
0
votes
1answer
264 views
Can MSVC _penter and _pexit hooks be disabled on a per function basis?
There are compiler options in MSVC to enable the automatic generation of instrumentation calls on entering and exiting functions. These hooks are called _penter() and _pexit(). The options to the ...