Top "Gcc" questions

GCC is the GNU Compiler Collection.

version `CXXABI_1.3.8' not found (required by ...)

When I run my program following a compile, I get the following error: ./prog: /usr/lib/x86_64-linux-gnu/libstdc++.so.6: …

c++ linux gcc boost gcc4.9
How do I set up CLion to compile and run?

I just downloaded CLion from https://www.jetbrains.com/ because I just love the rest of their products. However, I'm …

gcc g++ clion jetbrains-ide
CUDA incompatible with my gcc version

I have troubles compiling some of the examples shipped with CUDA SDK. I have installed the developers driver (version 270.41.19) and …

gcc cuda debian
What is the "Illegal Instruction: 4" error and why does "-mmacosx-version-min=10.x" fix it?

I get Illegal Instruction: 4 errors with binaries compiled with GCC 4.7.2 under Mac OS X 10.8.2 ("Mountain Lion"), when those binaries are …

macos gcc osx-lion osx-mountain-lion osx-leopard
How to Install gcc 5.3 with yum on CentOS 7.2?

I am using CentOS 7.2 When I use yum groupinstall "Development Tools", gcc version is 4.8.5, like this: I would like to …

gcc installation centos7 yum gcc5
How to disable GCC warnings for a few lines of code

In Visual C++, it's possible to use #pragma warning (disable: ...). Also I found that in GCC you can override per …

c gcc compiler-warnings pragma
Why do I get "a label can only be part of a statement and a declaration is not a statement" if I have a variable that is initialized after a label?

I have the following simplified code: #include <stdio.h> int main () { printf("Hello "); goto Cleanup; Cleanup: char *str = "…

c gcc
Disable all gcc warnings

I'm working on a project that will read compiler error messages of a particular variety and do useful things with …

gcc g++ warnings
How to create a static library with g++?

Can someone please tell me how to create a static library from a .cpp and a .hpp file? Do I …

c++ gcc compiler-construction g++
How to prevent gcc optimizing some statements in C?

In order to make a page dirty (switching on the dirty bit in the page table entry), I touch the …

c gcc