Tagged Questions
The compiler-flags tag has no wiki summary.
47
votes
21answers
3k views
Useful GCC flags for C
Beyond setting -Wall, and setting -std=XXX, what other really useful, but less known compiler flags are there for use in C?
I'm particularly interested in any additional warnings, and/or and turning ...
7
votes
1answer
152 views
What does the “Prefer 32-bit” compiler flag mean for Visual Studio 11 managed apps (C#, VB)?
Just got the Visual Studio 11 developer preview installed. I see a new option in the project properties called "Prefer 32-bit" when compiling a managed (C#, VB) application with the AnyCPU target ...
6
votes
8answers
578 views
Automatically find compiler options for fastest exe on given machine?
Is there a method to automatically find the best compiler options (on a given machine), which result in the fastest possible executable?
Naturally, I use g++ -O3, but there are additional flags that ...
6
votes
1answer
653 views
What's the difference between the -symbolic and -shared GCC flags?
From the documentation's description, they seem to do the same thing except that "not all systems" support shared and "only some systems" support symbolic (it's unclear if these are the same set of ...
5
votes
2answers
175 views
How does gcc's -pg flag works?
I'm trying to understand how does the -pg (or -p) flag works when compiling a C code with gcc.
The official gcc documentation, only states:
-pg
Generate extra code to write profile ...
5
votes
5answers
398 views
built grep slower than grep that comes with Linux
I am trying to understand why grep built by me is much slower than the one that comes with the system and trying to find what compiler options are used by grep that comes with the system.
OS Version: ...
5
votes
6answers
10k views
gcc optimization flags for Xeon?
I'd want your input which gcc compiler flags to use when optimizing for Xeons?
There's no 'xeon' in mtune or march so which is the closest match?
4
votes
6answers
200 views
Why there is no compiler error when return statement is not present?
Unlike Java, in C/C++ following is allowed:
int* foo ()
{
if(x)
return p;
// what if control reaches here
}
This often causes crashes and hard to debug problems. Why standard doesn't enforce ...
4
votes
2answers
1k views
Specific compiler flags for specific files in Xcode
I've been tasked to work on a project that has some confusing attributes.
The project is of the nature that it won't compile for the iPhone Simulator And the iPhone Device with the same compile ...
4
votes
1answer
2k views
What's the “DNS_BLOCK_ASSERTIONS” (C compiler flag)?
What's the "DNS_BLOCK_ASSERTIONS" (C compiler flag)?
4
votes
4answers
30k views
g++ compiler flags - Optimization and flags for making a static library - C++
I am just starting with g++ compiler on LINUX and got some questions on the compiler flags. Here are they
Optimizations
I read about optimization flags -O1,-O2 and -O3 in the g++ manual page. I ...
4
votes
6answers
514 views
strange results of simple floating point operations - bad FPU internal state?
I have a software project in which I sometimes get strange results from small, simple floating point operations. I assume there is something I have missed, and would like some tips about how to debug ...
3
votes
1answer
180 views
How to add SIMD-related compiler flags in visual studio 2010
I found this list of flags:
http://www.ncsa.illinois.edu/UserInfo/Resources/Software/Intel/Compilers/10.0/main_for/mergedProjects/optaps_for/common/optaps_dsp_targ.htm
and I'd like to try and add ...
3
votes
1answer
167 views
I tried: valgrind, _GLIBCXX_DEBUG, -fno-strict-aliasing; how do I debug this error?
I have a really strange error that I've spend several days trying to figure out, and so now I want to see if anybody has any comments to help me understand what's happening.
Some background. I'm ...
3
votes
3answers
767 views
C++ -malign-double compiler flag
I need some help on compiler flags in c++. I'm using a library that is a port to linux from windows, that has to be compiled with the -malign-double flag, "for Win32 compatibility". It's my ...
3
votes
3answers
479 views
C compiler flag to ignore sign
I am currently dealing with code purchased from a third party contractor. One struct has an unsigned char field while the function that they are passing that field to requires a signed char. The ...
2
votes
2answers
110 views
Compiler flags change code behavior (O2, Ox)
The following code works as expected with flags Od, O1 but fails with O2, Ox. Any ideas why?
edit: by "fails" I mean that the function does nothing, and seems to just return.
void thread_sleep()
{
...
2
votes
3answers
123 views
Why is /Wp64 deprecated?
Why is the /Wp64 flag in Visual C++ deprecated?
cl : Command line warning D9035 :
option 'Wp64' has been deprecated and will be removed in a future release
2
votes
1answer
98 views
How do I make GCC instantiate a class instance with non-trivial const/dest?
I am implementing a profiler. I want to use the Constructor/Destructor idiom to keep track of when I enter/exit a function.
A rough outline of my code is as follows:
class Profile
{
...
2
votes
1answer
361 views
How to see which flags -march=native will activate?
I'm compiling my C++ app using GCC 4.3. Instead of manually selecting the optimization flags I'm using -march=native, which in theory should add all optimization flags applicable to the hardware I'm ...
2
votes
1answer
1k views
Does set_target_properties in CMake override CMAKE_CXX_FLAGS?
At the beginning of my CMake project, I'm setting general compilation flags in the variable CMAKE_CXX_FLAGS, like
set(CMAKE_CXX_FLAGS "-W -Wall ${CMAKE_CXX_FLAGS}")
Later on, I need to append ...
2
votes
2answers
243 views
Compiler flag to reveal functions like strdup
I've been given some starter code for a project I have to complete in a class I'm taking. The code compiles fine on the university computers however when I try to compile the code on my own computer I ...
2
votes
1answer
1k views
ARM Cortex-A8: How to make use of both NEON and vfpv3
I'm using Cortex-A8 processor and I'm not understanding how to use the -mfpu flag.
On the Cortex-A8 there are both vfpv3 and neon co-processors. Previously I was not knowing how to use neon so I was ...
2
votes
1answer
180 views
What exactly does GCC -fobjc-direct-dispatch option do?
The GCC manual says:
-fobjc-direct-dispatch
Allow fast jumps to the message dispatcher. On
Darwin this is accomplished via the comm page.
Can I assume this flag eliminates dynamic ...
2
votes
1answer
115 views
What is compiler flagging for numbers in C#?
What is compiler flagging for numbers in C#? What is the advantage of this work? I can't understand this concept.
2
votes
1answer
204 views
Crash in msvcp90d.dll when retrieving an iterator from a boost::tokenizer
When I retrieve the begin() iterator of a boost::tokenizer, I get a crash in msvcp90d.dll, that says "ITERATOR LIST CORRUPTED", which looks suspiciously like issues I have run into before with the ...
1
vote
1answer
124 views
Xcode Project-Wide compiler flag
With Xcode 4.2 and the LLVM compiler, when compiling for ARMv6 there are some very weird bugs in the generated application (such as "width" property of CGSize returning the "height" instead). To fix ...
1
vote
1answer
186 views
Why GCC option -Os is not used during compilation?
Clang warns me,
clang: warning: argument unused during compilation: '-Os'
During compile with make. Why it doesn't accept the optimization flag?
1
vote
0answers
127 views
Mixing memory-aligned and unaligned code
I recently compiled GotoBLAS2 (MacOSX 10.6) and linked it to my code, leading to all kind of wrong results. I ran everything through valgrind noticing some illegal reads from the GotoBLAS. When ...
1
vote
0answers
102 views
Mercurial Branches vs. Compilation Flags: One Codebase — Multiple Products
Say I'm creating a set of products that share much of their code but not all of it (For example: an application with multiple front ends: command line, Windows/MAC/Linux GUI, mobile (minimal) GUI, web ...
1
vote
4answers
298 views
C++ adding Debugging code that only runs at for Debugging
As the question explains: I would like to add some debugging code that only runs when the program is attached to the debugger. I would imagine that this `flag` or `pre-processor` variable would be ...
1
vote
1answer
99 views
What's special about gcc flags that start with “tree”?
There are a lot of optimization settings starting with tree. Some are:
-ftree-builtin-call-dce
-ftree-ccp
-ftree-ch
-ftree-copyrename
-ftree-dce
-ftree-dominator-opts
-ftree-dse
-ftree-ter
What's ...
1
vote
1answer
687 views
How can I pass the output of a command as a compiler flag through a Qt project file?
I'm trying to add the output of "git describe" to the about window of my application, so it's easier to find out what version of the application people use.
I can do it by adding the following ...
1
vote
7answers
3k views
What flag silences GCC's warning about no new-line at file-endings?
I just read this post about why new-line warnings exist, but to be honest my team has people working on several different platforms and with several different editors (everyone uses what bests suites ...
0
votes
1answer
27 views
How to determine compiler is currently in ARC mode?
I have several inline static C functions. And I call Objective-C codes including [-release].
The problem is I have to compile this code both of ARC or non-ARC targets. So I think I need conditional ...
0
votes
2answers
60 views
Best compiler flags for an objective C project with the opencv framekwork
I´m compiling and ios project using an opencv framework, so I´m interested to know what are the best compiler flags to my project.
The project process a lot of matrix pixels , so I need from the side ...
0
votes
4answers
115 views
How do I force gcc to inline a function?
Does attribute((always_inline)) force a function to be inlined by gcc?
0
votes
0answers
18 views
Mixing PIC and non-PIC objects in a shared library
This question is related to this one as well as its answer.
I just discovered some ugliness in a build I'm working on. The situation looks somewhat like the following (written in gmake format); ...
0
votes
1answer
56 views
Extract build flags from XCode from the command line
I'm using X-Code 4.2 and wish to use the VIM editor and clang-complete vim script to do code completion. It works fine if I manually set up the clang-complete configuration to reflect the settings in ...
0
votes
1answer
23 views
GCC_ENABLE_CPP_EXCEPTIONS and Objective-C
I have a pure Objective-C project (no C++ anywhere). Can I turn off GCC_ENABLE_CPP_EXCEPTIONS or do Objective-C exceptions rely on this?
0
votes
1answer
34 views
Using -msse compiler flag
I am running benchmarking software that allows the use of compiler flags, so I'm trying to use a mix of various flags to find out what works best. My question is, does each version of msse have to be ...
0
votes
0answers
227 views
How to set compiler flags in makefile for ifort90(Intel Fortran 90 compiler)?
I am kind of new to the ifort90 compiler(Intel fortran 90) so I have some problem setting the flags in makefiles.MY goal is to debug a executable file called myExec.x by using gdb. I got the makefile ...
0
votes
2answers
120 views
Is there standard of debug mode compilation flag in C compiler?
Is there any pre-defined flag by standard specification (ANSI/C89/C99) for debug-mode-compilation in C compiler?
I know DEBUG and NDEBUG flags, but I am not sure about whether they're in the C ...
0
votes
1answer
505 views
Xcode: Build Settings - Other Linker Flags: What is -licucore?
-licucore was already in Other Linker Flags for a target that I added to my project. Isn't it normally blank?
0
votes
1answer
220 views
What is the equivalent of GCC's fno-strict-aliasing flag for ICC, the Intel Compiler?
The Intel compiler appears to accept the -fno-strict-aliasing flag verbatim, but I have not seen that behavior documented anywhere, and the flag may be ignored. Flags such as -no-ansi-alias look ...
0
votes
1answer
71 views
mono optimizer flags (--shared emit per-domain code) (--intrins)
can someone explain what these two optimization flags do?
--intrins = Intrinsic method implementations
--shared = Emit per-domain code
best Regards
Goblin
0
votes
3answers
99 views
Any way to tell g++ to use another binary for compiling?
This question may sound a little absurd. Facts:
I have a program written in C++.
It uses lot of in-house libs.
I don't have read permission to the libs.
So I have to build with a given tool which ...
0
votes
0answers
117 views
Disabling and enabling flags while including header files
Hi.
I've got a simple PCH which looks like this:
#pragma once
#include <string>
#include <cstdlib>
#include <d3dx9.h>
All of the source files in my project are compiled with g++ ...
0
votes
1answer
89 views
Is there a way to make a c++ compiler flag as default
Just like we specify input flags in the settings of the project in Xcode
Can I make few flags like -O3 or -fopenmp as default flags in command line when I use Terminal.
So that I dont have to type ...
0
votes
2answers
1k views
Visual Studio C++ compiler flag: what is -Zm200?
I use Qt for C++ development, and today I produced a .vcproj file from a .pro file.
I noticed under the vcproj project properties, Qt added this flag into the C/C++ -> Command Line -> Additional ...