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.

learn more… | top users | synonyms

1
vote
0answers
18 views

GCC 4.6.3 vs 4.7.3: Difference in printing greg_t for x86_64

I am attempting to fix a build error. The offending line of code is as follows: fprintf(crashLog, "RIP: %lX\n", context->uc_mcontext.gregs[REG_RIP]); And hence: gregs is of type gregset_t ...
-4
votes
0answers
25 views

error: required from here (GCC 4.7) what is wrong?

The following code will cause the error with GCC4.7 required from here I do not understand why but this work fine in VS2010 and VS2012 thanks //---parser.h --------// template<class T , class ...
-2
votes
0answers
31 views

Where to download Arm-unknown-linux toolchain that support C++11 [closed]

there, I need to know where i can download a toolchain for Arm-Linux that support C++11 running eclipse europa on window and I want to crosscompile to Arm my project code i C++11 based. thanks alot ...
1
vote
1answer
111 views

Linker Error : gcc

everyone i am getting this every time, while compiling programs, configuring and installing some things like binutils, textinfo, etc.. /usr/local/bin/ld: this linker was not configured to use ...
2
votes
1answer
55 views

generating 64 bit code on 32bit debian system

Could you please describe that how have you installed gcc-multilib and g++-multilib on 32bit debian machine to generate 64 bit code? I installed gcc-4.7.2 on my 32bit debian system(and also installed ...
0
votes
0answers
41 views

boost graph_concepts.hpp error: graph trait functions (out_degree, out_edges, source, target, etc) are not declared

I've a problem with boost graph traits. I've created a graph_adaptor to wrap my old graph represntation. I've also redefined the trait (out_edge, out_degree, and so on) functions. When I try to ...
0
votes
3answers
74 views

Linker error: undefined reference to symbol 'pthread_rwlock_trywrlock@@GLIBC_2.2.5'

I've been developing with CentOS, Qt 4.7, and GCC 4.4 I've just installed Red Hat Developer Toolset 1.1 which includes GCC 4.7.2, and at the end of make, I get an error /usr/bin/ld: ../../bin/Solo: ...
0
votes
0answers
24 views

Error building boost on Mountain lion using gcc-mp-4.7 installed from macports

I've run into a very very hairy issue. My end goal is to build the cpp-netlib. cpp-netlib uses C++-11, it was throwing linker errors with original boost build in my machine. The reason I'd built boost ...
0
votes
0answers
59 views

boost::format and boost::str report error after added -std=c++11

I dont know why after I added -std=c++11, my application still build success, but code editor red underline my boost::format and boost::str. And I could not resolve it. my environment ubuntu eclipse ...
0
votes
0answers
88 views

Cannot find make_shared from std::memory or std::tr1 (gcc 4.7) [duplicate]

I don’t understand why I cannot find make_shared from std::memory or std::tr1 include header. I only see 1 version of gcc in my machine ls -lh /usr/bin/g++ lrwxrwxrwx 1 root root 7 Sep 22 2012 ...
6
votes
1answer
88 views

gcc nullptr issue

I am porting existing code to compile under gcc 4.7.2 and have run into a strange issue with nullptr. I have managed to boil it down to a simple test case: #include <stdio.h> const char* ...
0
votes
1answer
742 views

What is the issue with Ubuntu (12.10) and GCC 4.7/4.8?

Since several versions of GCC and Ubuntu I am experiencing annoying issues with paths and naming of several header and object files that are necessary for the installation of GCC. Description: After ...
5
votes
2answers
148 views

Is std::async broken in gcc 4.7 on linux? [closed]

I'm testing std::async in isolation before using it in real code, to verify that it works correctly on my platform (which is ubuntu 12.10 64-bit). It works (somewhat rarely) and usually just hangs. ...
1
vote
1answer
136 views

Why is scanf(“%hhu”, char*) overwriting other variables when they are local?

The title says it all. I'm using GCC 4.7.1 (bundled with CodeBlocks) and I faced a strange issue. Consider this: int main() { unsigned char a = 0, b = 0, c = 0; scanf("%hhu", &a); ...
0
votes
2answers
72 views

Using unique_ptr to control a file descriptor

In theory, I should be able to use a custom pointer type and deleter in order to have unique_ptr manage an object that is not a pointer. I tried the following code: #ifndef UNIQUE_FD_H #define ...
1
vote
0answers
78 views

c++11: Type transformation of an enum-class-type derivative via alias-template

Consider the following code, which compiles fine in clang but not in gcc (4.7.2): template<typename T> using remove_ref_typed = typename std::remove_reference<T>::type; // ...
0
votes
0answers
35 views

Use g++ 4.7.2 with Xcode 3.2.6

I'm kind of desperate with this... I'm new to Xcode and developping in C++ with OSX, and frankly I'm disappointed with Xcode so far; every little customization has been a pain. I'm not using Xcode 4 ...
1
vote
1answer
99 views

G++ -M32 -M64 switches on Windows

How can I install gcc 4.7.2 for codeblocks that supports both 32 and 64 compilation? If I install the x32 bit compiler: x32-4.7.2-release-win32-sjlj-rev10 it will compile with -m32 but give a bunch ...
5
votes
1answer
117 views

Does std::vector satisfy the container requirements for Boost.Interprocess allocators?

In Boost.Interprocess documentation it is said as requirement for containers to be stored in shared memory: STL containers may not assume that memory allocated with an allocator can be deallocated ...
1
vote
3answers
281 views

C++11 clocks: g++ steady_clock::is_steady == false?

So accurate timing is important to me, and I was investigating the 3 types of clocks specified in C++ 11, namely system_clock, steady_clock, and high_resolution_clock. My initial concern was testing ...
0
votes
0answers
99 views

Are there any differences in gcc 4.7.2 implementations?

Any idea why this std::thread related code runs compiled with gcc 4.7.2 on LiveWorkSpace.org but fails on Ideone.com and on my Ubuntu 12.04 machine with terminate called after throwing an instance ...
1
vote
1answer
344 views

mex files in 32-bit matlab on 64-bit Ubuntu

I am trying to compile object detection program from http://people.cs.uchicago.edu/~rbg/latent/, without any luck, however. I installed 64-bit Ubuntu 12.10, 32-bit MATLAB 2012a. I also have gcc ...
0
votes
1answer
80 views

linking error: undefined reference to icu_50::UnicodeString::UnicodeString()

I am trying to compile my project where I've declared as class members some: icu::UnicodeString label; icu::UnicodeString tags; icu::UnicodeString domain; icu::UnicodeString data; After having ...
1
vote
0answers
177 views

Compilation error with OpenMP with OpenSUSE 12.2

Using the sample code at http://openmp.org/wp/openmp-compilers/, I tried to run the simple program on my Linux machine (running OpenSUSE 12.2) but failed to get it to compile. Here is the sample ...
2
votes
2answers
178 views

gcc 4.7 and recursive constexpr functions

I'm playing a little bit with constexpr recursion and try to see how it is compiled and I don't understand under which circumstances gcc choose to calculate the recursion at compile time or at run ...
1
vote
1answer
619 views

Error when running OpenNI 2 class ( gcc 4.7.2 / ubuntu 12.10 )

I'm trying to compile an run a very basic program given below (test.cpp) which calls the OpenNI class. You can see the files and dirs they're in here. Sorry that some characters screws up a little bit ...
1
vote
0answers
665 views

GCC-4.7.2 installation on Cygwin fails

Because default GCC in Cygwin is 4.5.3, I tried to install GCC 4.7.2. I have dowloaded tar.bz archive from here, put it to cygwin\usr\gcc-4.7.2 and proceed the following sequence: tar xvf ...
0
votes
1answer
278 views

cannot run C compiled programs while installing GCC4.7

there is some problem while installing GCC4.7 . Please help me fix this error. http://solarianprogrammer.com/2012/04/13/building-gcc-4-7-on-ubuntu-12-04/ I was trying to install GCC4.7 by ...
0
votes
0answers
81 views

distribute gcc 4.7 program with shared libraries on OS X

I've compiled a command-line tool against some C++ dynamic libraries using GCC 4.7 on Mac OS X 10.8. On the development system, the compiler was installed by MacPorts into /opt/local and the libraries ...
0
votes
1answer
67 views

Function not getting called

I'm implementing a http server in C. I have a custom fuction for writing headers. When I call it, it doesn't do anything. I have placed an arbitrary printf inside the function, to make sure that it's ...
1
vote
3answers
54 views

Side-effect not working

I have created a buffer class to use with networking, and I use a side-effect to get the buffer pointer, as well as the size. I have created a simple test that displays the same behaviour as the ...
2
votes
2answers
346 views

map::emplace() with a custom value type

I'm having trouble using map::emplace(). Can anyone help me figure out the right syntax to use? I am effectively trying to do the same thing as in this example. Here is my version: #include ...
1
vote
2answers
319 views

GCC compilation yields “real.h:53: error: 'SIZEOF_LONG' undeclared here (not in a function)”

I'm trying to compile GCC 4.7.2 on a Buffalo LinkStation Pro Duo (after unlocking it) which runs Linux 2.6.31.8 armv5tel. Unfortunately, make throws quite some errors, starting with gcc -c ...
1
vote
1answer
56 views

Templates and g++ 4.7

I have this code namespace MSL{ template <typename T> class TListNode; template <typename T> class TList; ... and template <typename T> int TList<T>::add(T v) { ...
0
votes
1answer
229 views

gcc utf-8 string literal compile error

I'm using g++(GCC) 4.7.2 on Ubuntu. Just trying to figure out how to get the "u8" string literal prefix to compile. I thought it was "built in" with this version of gcc. #include <iostream> ...
16
votes
1answer
300 views

GCC bug or UB? Should this code compile?

The code below compiles fine with clang, but does not compile with GCC (tried 4.1.2, 4.5.4 and 4.7.2): template <typename T> struct A { struct B { }; }; template <typename T> bool ...
1
vote
2answers
631 views

#include <string> causes lots of '<blank>' has not been declared errors

I'm trying to compile my 'graphics' engine, but am having a problem after including <string> (Debian Testing 64bit). Here's the error: jarrett@jarrett-g74s:~/projects/icebreak/ice_engine$ ...
0
votes
0answers
150 views

Missing ___emutls_get_address with gcc-4.7 and openMP

I am trying to compile a program using a self-compiled GCC-4.7.1 on Mac OS 10.8.2. The program uses openMP and the compilation succeeds; however, when I try to run the program, the dynamic linker ...
12
votes
4answers
261 views

gcc c++11 limits for user defined constants and template parameter packs

I've been playing with user defined constants in gcc 4.7.2 and ran into some sort of size limiting factors which I do not quite understand. The idea was to define a constexpr operator "" for fixed ...
23
votes
3answers
250 views

c++: copy by value to function params produce two objects in vs2012

Here's code that produces different output in g++ 4.7 and vs2012 (cl17). #include <iostream> using namespace std; class A { public: A() { cout << "1" << endl; } ~A() { ...
5
votes
2answers
153 views

difference_type not found

When I try to use std::distance with a custom iterator under gcc 4.7, it complains about not finding the difference_type. I have sadly no idea why it fails. #include <iterator> class nit { ...
4
votes
1answer
161 views

const QList<int> warnings = QList<int>() << 0; segfaults with gcc 4.7.2

So the code mentioned on the topic line causes segmentation fault with Qt 4.8.3 & gcc 4.7.2 This is at outside of any classes/structs at .cpp-file and works with gcc 4.4 const QList<int> ...
3
votes
1answer
549 views

C++ error: was not declared in this scope with private after public

Attempting to modify the code from this page. Here's the problem code: #include <iostream> #include <array> template<class T> class const_reverse_wrapper { public: ...
2
votes
1answer
462 views

C++11 Initializing class static const array

Here's what I am trying. MinGW g++ 4.7.0. #include <iostream> #include <string> class Fruit { public: enum Value { APPLE, ORANGE, BANANA, NONE }; static const Value VALUES[4] = { ...
1
vote
1answer
307 views

Whats the difference between thread_posixs and thread_win32 in gcc port of windows?

I wanted to download the latest available version of gcc 4.7.2 compiler for windows. When i got to this page where i was supposed to see a download link , i confronted with two categories: ...
2
votes
2answers
82 views

Static Instance of A Class Does Not Handle Resource Deletion Properly At Program Exit

I discovered this accidentally today when I was working on my project. Basically, in my project, I have something similar to below for resource handling. class Resource { public: static Resource ...
1
vote
0answers
186 views

Linker exits when linking glew statically

I'm having an issue when linking glew-1.9.0 statically with my project. collect2.exe: error: ld returned 5 exit status For the smallest test possible, just creating an OpenGL context (through SFML ...
0
votes
0answers
246 views

macports gcc4.7 can't find pthread.h

I have installed gcc4.7 with macports and tryding to build Ogre3d 1.8. The problem is that pthread.h is not found. I can't find pthread.h anywhere on my system (Mac OSX 10.6.8) and I can't find any ...
29
votes
1answer
793 views

Lambda not found when defined in an inline function in G++ 4.7

I have the following function defined in a header file (the library it is part of aims at being header-only): typedef bool (*FieldComparer)(const std::string&, const std::string&); inline ...
0
votes
1answer
154 views

C++11: thread_local or array of OpenCL 1.2 cl_kernel objects?

I need to run several C++11 threads (GCC 4.7.1) parallely in host. Each of them needs to use a device, say a GPU. As per OpenCL 1.2 spec (p. 357): All OpenCL API calls are thread-safe75 except ...

1 2