GCC is the GNU Compiler Collection. It's the de facto standard C compiler on Linux and supports many other languages and platforms as well.
80
votes
22answers
34k views
How to generate a stacktrace when my gcc C++ app crashes
When my c++ app crashes I would like to generate a stacktrace.
I already asked this but I guess I needed to clarify my needs.
My app is being run by many different users and it also runs on Linux, ...
78
votes
2answers
3k views
What does && mean in void *p = &&abc;
I came across a piece of code void *p = &&abc;. What is the significance of && here?
I know about rvalue references but I think && used in this context is different. What does ...
74
votes
7answers
52k views
Objective C for Windows
What would be the best way to write Objective-C on the Windows platform?
Cygwin and gcc? Is there a way I can somehow integrate this into Visual Studio?
Along those lines - are there any suggestions ...
65
votes
12answers
11k views
GCC compile error with >2 GB of code
I have a huge number of functions totaling around 2.8 GB of object code (unfortunately there's no way around, scientific computing ...)
When I try to link them, I get (expected) relocation ...
61
votes
15answers
78k views
How to get rid of `deprecated conversion from string constant to ‘char*’` warnings in GCC?
So I'm working on an exceedingly large codebase, and recently upgraded to gcc 4.3, which now triggers this warning:
warning: deprecated conversion from string constant to ‘char*’
Obviously, the ...
55
votes
5answers
18k views
What is the difference between g++ and gcc?
What is the difference between g++ and gcc? Which ones should be used for general c++ development?
52
votes
5answers
7k views
Can't install Ruby under Lion with RVM – GCC issues
Most questions regarding this problem are due to missing Xcode; I have Xcode 4.2 installed.
Install attempt:
rvm install 1.9.3
Installing Ruby from source to: /Users/jamie/.rvm/rubies/ruby-1.9.3-p0, ...
51
votes
11answers
2k views
How bad is “if (!this)” in a C++ member function?
If I come across old code that does if (!this) return; in an app, how severe a risk is this? Is it a dangerous ticking time bomb that requires an immediate app-wide search and destroy effort, or is it ...
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 ...
44
votes
10answers
3k views
What is the difference between str==NULL and str[0]=='\0' in C?
I want to know the difference between str == NULL and str[0] == '\0':
int convert_to_float(char *str, double *num)
{
if ((str == NULL) || (str[0] == '\0'))
return(-1);
*num = ...
40
votes
3answers
898 views
Why does GCC pad functions with NOPs?
I've been working with C for a short while and very recently started to get into ASM. When I compile a program:
int main(void)
{
int a = 0;
a += 1;
return 0;
}
The objdump disassembly has ...
40
votes
4answers
49k views
How to add a default include path for gcc in linux?
I'd like gcc to include files from $HOME/include in addition to the usual include directories, but there doesn't seem to be an analogue to $LD_LIBRARY_PATH. I know I can just add the include directory ...
35
votes
5answers
1k views
How can I get what my main function has returned?
In a C program if we want to give some input from terminal then we can give it by:
int main(int argc, char *argv[])
In the same way, if we want to get return value of main() function then how can ...
34
votes
7answers
5k views
Using GCC to produce readable assembly?
I was wondering how to use GCC on my C source file to dump a mnemonic version of the machine code so I could see what my code was being compiled into. You can do this with Java but I haven't been able ...
33
votes
1answer
502 views
How does GCC optimize C code?
I wrote this simple C program:
int main(){
int i; int count = 0;
for(i = 0; i < 2000000000; i++){
count = count + 1;
}
}
I wanted to see how the gcc compiler optimizes this ...
33
votes
4answers
925 views
Bizarre use of conditional operator in Linux
In the 3.0.4 Linux kernel, mm/filemap.c has this line of code:
retval = retval ?: desc.error;
I've tried compiling a similar minimal test case with gcc -Wall and don't get any warnings; the ...
33
votes
5answers
2k views
GCC's assembly output of an empty program on x86, win32
I write empty programs to annoy the hell out of stackoverflow coders, NOT. I am just exploring the gnu toolchain.
Now the following might be too deep for me, but to continuie the empty program saga I ...
32
votes
7answers
16k views
How do I list the symbols in a .so file
How do list the symbols being exported from a .so file. If possible, I'd also like to know their source (e.g. if they are pulled in from a static library).
I'm using gcc 4.0.2, if that makes a ...
31
votes
3answers
14k views
Selectively disable GCC warnings for only part of a translation unit?
What's the closest GCC equivalent to this MSVC preprocessor code?
#pragma warning( push ) // Save the current warning state.
#pragma warning( disable : 4723 ) // C4723: ...
31
votes
15answers
5k views
Recommended gcc warning options for C
Other than -Wall what other warnings have people found useful?
http://gcc.gnu.org/onlinedocs/gcc-4.3.2/gcc/Warning-Options.html
31
votes
9answers
12k views
30
votes
4answers
4k views
Can nullptr be emulated in gcc?
I saw that nullptr was implemented in Visual Studio 2010. I like the concept and want to start using it as soon as possible; however GCC does not support it yet. My code needs to run on both (but ...
30
votes
2answers
7k views
How exactly does __attribute__((constructor)) work?
It seems pretty clear that it is supposed to set things up.
When exactly does it run?
Why are there two brackets?
Is __attribute__ a function? A macro? Syntax?
Does this work in C? C++?
Does the ...
29
votes
1answer
392 views
Dual emission of constructor symbols
Today, I discovered a rather interesting thing about either g++ or nm...constructor definitions appear to have two entries in libraries.
I have a header thing.hpp:
class Thing
{
Thing();
...
28
votes
12answers
867 views
Can different optimization levels lead to functionally different code?
I am curious about the liberties that a compiler has when optimizing. Let's limit this question to GCC and C/C++ (any version, any flavour of standard):
Is it possible to write code which behaves ...
28
votes
1answer
5k views
Xcode 3.2.1 GCC CLANG and LLVM demystification
The readme included with the new Xcode 3.2.1 this week says the following:
Static code analysis is fully integrated within the Xcode IDE via the Build and Analyze option under the Build menu or via ...
28
votes
7answers
20k views
GNU compiler warning “class has virtual functions but non-virtual destructor”
I have defined an interface in c++, i.e. a class containing only pure virtual functions.
I want to explicitly forbid users of the interface to delete the object through a pointer to the interface, so ...
27
votes
10answers
2k views
Why does malloc initialize the values to 0 in gcc?
Maybe it is different from platform to platform, but
when I compile using gcc and run the code below, I get 0 every time in my ubuntu 11.10.
#include <stdio.h>
#include <stdlib.h>
int ...
27
votes
10answers
14k views
How do you get assembler output from C/C++ source in gcc?
How does one do this?
If I want to analyze how something is getting compiled, how would I get the emitted assembly code?
26
votes
7answers
860 views
Is it a good idea to compile a language to C?
All over the web, I am getting the feeling that writing a C backend for a compiler is not such a good idea anymore. GHC's C backend is not being actively developed anymore (this is my unsupported ...
26
votes
3answers
529 views
Can a compiler automatically detect pure functions without the type information about purity?
So I'm arguing with my friend who claims that a compiler like GCC can detect a pure function automatically without any type information. I doubt that.
Languages like D or Haskell have purity in their ...
25
votes
4answers
8k views
Precompiled headers with GCC
Anyone had any success getting precompiled headers working with GCC? I have had no luck in my attempts and I haven't seen many good examples for how to set it up. I've tried on cygwin gcc 3.4.4 and ...
24
votes
1answer
9k views
What does the -all_load linker flag do?
I can't find anywhere what the -all_load flag do when compiling Objective-C code.
I have some issues uploading binaries to Apple, the they say it's because I didn't use this flag, but my code ...
24
votes
12answers
12k views
Why does GCC-Windows depend on cygwin?
I'm not a C++ developer, but I've always been interested in compilers, and I'm interested in tinkering with some of the GCC stuff (particularly LLVM).
On Windows, GCC requires a POSIX-emulation layer ...
24
votes
7answers
19k views
Is there a way to install gcc in OSX without installing Xcode?
I've googled the hell out of it, and it seems like there is no way to install gcc on OS X without installing Xcode (which takes at leats 1.5GB of space). All I need is gcc and none of the other junk ...
23
votes
1answer
241 views
Can GCC be coerced to generate efficient constructors for memory-aligned objects?
I'm optimizing a constructor that is called in one of our app's innermost loops. The class in question is about 100 bytes wide, consists of a bunch of ints, floats, bools, and trivial structs, and ...
23
votes
2answers
3k views
GCC dump preprocessor defines
Is there a way for gcc/g++ to dump its preprocessor defines from the command line?
I mean things like __GNUC__, __STDC__, and so on.
23
votes
8answers
7k views
likely/unlikely macros in the Linux kernel
I've been digging through some parts of the Linux kernel, and found calls like this:
if (unlikely(fd < 0))
{
/* Do something */
}
or
if (likely(!err))
{
/* Do something */
}
I've ...
22
votes
2answers
280 views
Getting an optimization report from GCC
I would like to know if there is an option I can use with GCC to get a detailed report on the optimization actually chosen and performed by the compiler. This is possible with the Intel C compiler ...
22
votes
2answers
438 views
Template instantiation details of GCC and MS compilers
Could anyone provide a comparison or specific details of how is template instantiation
handled at compile and/or link time in GCC and MS compilers? Is this process different
in the context of ...
22
votes
5answers
779 views
Why would you use the ternary operator without assigning a value for the “true” condition (x = x ?: 1)
In the Android open-source qemu code I ran across this line of code:
machine->max_cpus = machine->max_cpus ?: 1; /* Default to UP */
It this just a confusing way of saying:
if ...
22
votes
3answers
9k views
How to generate gcc debug symbol outside the build target?
I know I can generate debug symbol using -g option. However the symbol is embeded in the target file. Could gcc generate debug symbol outside the result executable/library? Like .pdb file of windows ...
21
votes
4answers
979 views
Is there a gcc option to assume all extern “C” functions cannot propagate exceptions?
Is there any way, short of putting an attribute on each function prototype, to let gcc know that C functions can never propagate exceptions, i.e. that all functions declared inside extern "C" should ...
21
votes
6answers
2k views
Should I use C++0x Features Now?
With the official release of VS 2010, is it safe for me to start using the partially-implemented C++0x feature set in my new code?
The features that are of interest to me right now are both ...
21
votes
5answers
10k views
What is __gxx_personality_v0 for?
This is a second-hand question from an OS development site, but it made me curious since I couldn't find a decent explanation anywhere.
When compiling and linking a free-standing C++ program using ...
21
votes
4answers
10k views
How do you use gcc to generate assembly code in Intel syntax?
The gcc -S option will generate assembly code in AT&T syntax, is there a way to generate files in Intel syntax? Or is there a way to convert between the two?
20
votes
10answers
3k views
Stack trace for C++ using gcc
We use stack traces in proprietary assert like macro to catch developer mistakes - when error is caught, stack trace is printed.
I find gcc's pair backtrace()/backtrace_symbols() methods ...
20
votes
4answers
4k views
Are function static variables thread-safe in GCC?
In the example code
void foo()
{
static Bar b;
...
}
compiled with GCC is it guaranteed that b will be created and initialized in a thread-safe manner ?
In gcc's man page, found the ...
20
votes
9answers
4k views
Invoking GCC as “cc” versus “gcc”
I am aware that on most GNU/Linux systems, GCC can be invoked by the name "cc" from the command line (as opposed to "gcc"). Is there any difference in GCC's behavior when it is invoked one way versus ...
20
votes
7answers
8k views
Where is the gcov symbols?
I'm trying to compile a simple app with gcov and getting the following link errors:
gcc AllTests.o CuTestTest.o CuTest.o -o TestTest
AllTests.o: In function `global constructors keyed to ...