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.
0
votes
1answer
16 views
Building the FBX SDK on Linux
Trying to get one of the samples compiled on Ubuntu 12.04
I’m using
make -f Makefile-x64-static
However, I get the error
make: gcc4: Command not found
I tried switching from gcc4 to gcc in the ...
1
vote
1answer
66 views
Pointer to array of opaque structures
I have an odd problem with gcc 4.3 and I wanted to know if it is a specific problem with the compiler or if it is a general C problem.
Granted, I use a really odd construct, but I like it, because it ...
0
votes
0answers
22 views
Redirect error to file in gcc in C#
I am building a webpage in ASP.NET using C# where user can write code in C and compile it to see the OUTPUT.
On the click of submit button. I want to redirect the error to a text file
string path = ...
0
votes
0answers
14 views
.text linking error with gcc
I am getting Linking error while compiling my project with gcc 4.6.3:
".text.vMkDesComputeRoundKeys.5707+0x8): relocation truncated to fit: 16 bit abs against `.LC0'".
What does it mean and how I ...
1
vote
0answers
46 views
BOOST_STATIC_ASSERT doesnt compile on gcc 4.2 whereas it does on 3.4.6
I am porting the project to compile with 4.2 compare to 3.4.6
I get the error while compiling following code in gcc 4.2 whereas it works fine in gcc3.4.6
error: invalid application of ‘sizeof’ to ...
1
vote
2answers
120 views
g++ warning: will never be executed
Inherited a C++ project. I'm building in RHEL 5.5 with gcc 4.1.2 via a makefile. The project is huge (hundreds of files) and in general the code is pretty good. However, every so often during ...
0
votes
1answer
55 views
Impact on upgrade gcc or binutils
I want to use Red Hat Enterprise Linux 5.8 to compile folly, and gcc is 4.1.2. But folly needs gcc >=4.6. So I need to upgrade gcc to 4.6, maybe binutils etc. If new toolchain generates binary files ...
4
votes
2answers
123 views
std::forward_as_tuple in G++ 4.5.0
I have a pressing need for the function std::forward_as_tuple, but am restricted to using GCC 4.5.0 (I know this is a bad situation to put oneself into, but it would solve a lot of problems for me, so ...
1
vote
3answers
128 views
typedef - Primitive type to primitive type
Is it valid C++ to have a typedef for a primitive type to another primitive type ?
typedef int long;
On VS 2012, warning is issued but compiles fine.
warning C4091: 'typedef ' : ignored on left ...
2
votes
1answer
533 views
How to make OpenMP work with MinGW-64 under Cygwin?
The Scenario
I am developing an application in C99 ANSI C that uses OpenMP and GMP. It's natural habitat will be a linux machine with plenty of cores, so there's basically no big trouble there, but ...
1
vote
1answer
57 views
Accessing templated methods of a templated base class [duplicate]
Possible Duplicate:
Error calling template method in “templated-base-class”
The following code compiles with MSVC10 but not with gcc 4.2.1:
template<class BaseQNativeWindow>
class ...
0
votes
1answer
264 views
Why does gcc4 not unroll this loop?
In the gcc 4.4.6 docs it is stated:
-funroll-all-loops:
Unroll all loops, even if their number of iterations is uncertain
when the loop isentered.
I am compiling this code:
int unroll(){
...
0
votes
0answers
673 views
GCC 4.6.2 fails to install on CentOS 6.3 [closed]
I'm trying to install gcc 4.6.2 on CentOS 6.3 but get an error after hours of it building.
Here's a screen of what happens.
I've been using this walk through and everything has worked thus far. The ...
0
votes
2answers
614 views
GCC 4.6.3 fail to install Debian
I'm having trouble installing gcc 4.6.3 on Debian squeeze. 4.4 is currently installed but I need 4.6.x to run php-hiphop. I've tried looking for similar problems but haven't found any with the error I ...
2
votes
2answers
93 views
Bizarre template error message with gcc 4.6
I'm getting a truly bizarre error message from gcc 4.6 about a template member function. Here is a minimal example:
template<typename T>
class Pimpl
{
public:
Pimpl(const Pimpl&) {}
...
1
vote
3answers
157 views
What is the meaning of “array type has incomplete element type”?
I have the following simple lines of code:
#include <glib.h>
#include <stdio.h>
void my_func () {
GHashTable htbls[3]; /* ASSUME LINE NUMBER IS N */
/* Do something */
}
int ...
3
votes
1answer
234 views
Why does this code cause a Floating point exception - SIGFPE
Using gcc 4.7:
$ gcc --version
gcc (GCC) 4.7.0 20120505 (prerelease)
Code listing (test.c):
#include <stdint.h>
struct test {
int before;
char start[0];
unsigned int v1;
...
1
vote
0answers
180 views
building GCC on ARM: undefined reference to `ggc_alloc_zone_vec_rtvec_def'
I'm trying to compile GCC on synology DS109 NAS disk which is powered by Marvell Kirkwood mv6281 ARM Processor.
It is currently running quite outdated GCC 4.2.3 which is the newest vesion that I ...
2
votes
0answers
99 views
“ld: unknown/unsupported architecture name for: -arch i686” error when installing gcc-4.0.1 on a mac with Darwin 12.1.0
I am trying to install gcc-4.0.1 on a mac with Darwin 12.1.0 . I did the configuration with ./configure --prefix=/usr/local/gcc-4.0.1 --enable-languages=c,c++ . It gives me the following error message ...
2
votes
2answers
178 views
Boost 1.44 with Python 2.7.1 on RHEL5 using gcc-4.1.2
Ugh! I have hit one of those errors where I am really clueless. I have built/installed Python (2.7.1) and I've built/installed boost (1.44.0) against that version of python. I don't see any errors in ...
0
votes
0answers
34 views
What happened to symbol names in readelf -r output as of gcc/gfortran 4?
Formerly (gcc 3.x etc.) when I used "readelf -r" on a debug-compiled object file, e.g. "sym.o" which contains, among other things, Fortran commons (it's legacy code), I would get something of the ...
3
votes
2answers
184 views
Post-increment, function calls, sequence point concept in GCC
There is a code fragment that GCC produce the result I didn't expect:
(I am using gcc version 4.6.1 Ubuntu/Linaro 4.6.1-9ubuntu3 for target i686-linux-gnu)
[test.c]
#include <stdio.h>
int ...
1
vote
1answer
266 views
I have got a 'pure virtual method called' message when i test the new <thread> feature of c++11 using the g++4.7.0, under 32bit-ubuntu-12.04
//test.cpp
#include<iostream>
#include<thread>
using namespace std;
void call()
{
cout<<"hello world"<<endl;
}
int main()
{
thread t(call);
t.join();
return 0;
...
0
votes
1answer
186 views
How do I check by using __STDC_VERSION__ if is -std=c1x in use?
I know that for C11, I can test #if(__STDC_VERSION >= 20112L). But for -std=c1x
what macro and/or value should I test it?
what's the nomenclature of this standard? or maybe a informal name, if ...
0
votes
0answers
208 views
ld: library not found for -lSystem.B collect2: ld returned 1 exit status
I have added libSystem.B.dylib from Project-->Target-->Build Phases-->Link Binary With Libraries to my Project.
The library is also available in /opt/local/lib folder. I have added this ...
0
votes
0answers
205 views
Error while installing cryoPID on ubuntu 12.04 [closed]
While installing cryopid on Ubuntu 12.04 i get the following error:
/tmp/cccoAke5.o: In function `fprintf':
/usr/include/x86_64-linux-gnu/bits/stdio2.h:98: undefined reference to `__fprintf_chk'
...
0
votes
0answers
66 views
Segmentation fault with gcc 4.7 and mico 2.3
We have a project where we use Corba technology and since we updated gcc compiler up to 4.7-1.1 version, it is segmentation fault there. We use mico-2.3.13 and to be more precise, here is core dump ...
24
votes
2answers
1k views
c++ Why is my date parsing not threadsafe?
boost::posix_time::ptime parseDate(const std::string& format, const std::string& localDate)
{
std::istringstream is(localDate);
is.imbue(std::locale(is.getloc(), new ...
1
vote
1answer
276 views
How to generate location independent code using GNU ARM toolchain?
I am using ARM ELF toolchain for my project. I am working on a bootloader which needs to be location independent as it will relocate it self from flash to ram upon reset. I have tried hard to figure ...
1
vote
1answer
149 views
GCC4 - ARMv5 register allocations
Is there a way to ask GCC to generate code that uses the registers in a way unlike the standard ABI for that architecture.
I am using an ARMv4 chip (LPC2000) and I need my fast interrupts to be ...
1
vote
1answer
434 views
error: unable to find string literal operator “” SLASHES
I'm trying to build qtCreator 2.3 with gcc 4.7 and I'm getting following error:
error: unable to find string literal operator "" .
I'm using in qtCreator source dir:
mingw32-make -lto
Any thouthgs?
0
votes
0answers
42 views
gcc strange error
Maybe I don't know something, but even after looking on my code for several times I still think that my code is correct, and should be able to work:
static char* test_InsertElem(tree* head,const ...
3
votes
3answers
2k views
gcc complains: variable-sized object may not be initialized
I've looked at these and they do not answer my question:
variable-sized object may not be initialized
C compile error: "Variable-sized object may not be initialized"
Error: Variable-sized ...
1
vote
1answer
92 views
QApplication compiles with gcc 4.7 but crashes
from here http://nuwen.net/mingw.html I've downloaded gcc 4.7 and I've set this up in qt. Everything compiles fine in qt, unfortunately when I run my app (from qt) it crashes.
Any thougts?
Edit (this ...
2
votes
2answers
161 views
Examples showing how switching to a modern C compiler can help discover bugs?
I am preparing a note to convince people that switching from GCC2 to GCC4 (as a C compiler) is a good idea.
In particular, I think it can reveal existing bugs. I would like to give examples, but as a ...
2
votes
1answer
1k views
Strange diagnostic pragma behavior in GCC 4.6
I have a C program with a couple of static functions that are not (yet) used. I want to disable warnings for those specific functions. I do not want to disable all -Wunused-function warnings. I am ...
0
votes
1answer
302 views
Access violation 0xc0000005 on exit with JNI Cygwin code on Windows XP
I'm stumped on this. I have JNI code that works on Ubuntu 11 and MacOSX but cause problems with Windows.
JRE version: 6.0_31-b05
OS: Windows XP with gcc 4. Modified jni_md.h to avoid the _int64 ...
0
votes
1answer
321 views
Strange errors in intel's tbb
I've build intel's tbb, and in my qt pro file I've included following line:
INCLUDEPATH += "C:\\Downloads\\libraries\\tbb40_297oss\\include"
but when I try to compile my project I'm getting an ...
0
votes
2answers
143 views
Undefined reference to cmph functions even after installing cpmh library
I am using gcc 4.4.3 on ubuntu. I installed cmph library tools 0.9-1 using command
sudo apt-get install libcmph-tools
Now, when I tried to compile example program vector_adapter_ex1.c , gcc is able ...
1
vote
1answer
363 views
gcc error with Python C API code - “ISO C++ forbids casting between pointer-to-function and pointer-to-object”
The following code fragment does nothing, but illustrates the problem. It was extracted from some Boost Python code, which uses the Numpy C API. This was tested with the backport of a gcc 4.7 snapshot ...
0
votes
2answers
316 views
C++ derived class exception not caught with base class
Exceptions are not being caught in a case where I expect them to be caught. The code is in 1 function in 1 cpp file which is compiled into a static library by GCC 4.2 and then linked into a Cocoa ...
1
vote
1answer
333 views
great size pointer in gcc
I want to define a great size pointer(64 bit or 128 bit) in gcc which is not depend on platform.
I think there is something like __ptr128 or __ptr64 in MSDN.
sizeof(__ptr128) is 16 bytes.
...
0
votes
2answers
406 views
cloog and ppl error (graphite-ppl.c) in GCC 4.6.2 installation
I'm trying to install gcc 4.6.2 with ppl and cloog in 64 bit ubuntu 10.10. I get the following error when I do make.
make[3]: Entering directory ...
-1
votes
1answer
558 views
gcc 4.6.2 installation with cloog and ppl
I want to install gcc 4.6.2 with cloog and ppl. I have both the libraries installed in my system. When I try to do ./configure --enable-languages=c,c++ --with-ppl=/usr/lib --with-cloog=/usr/lib, I get ...
5
votes
3answers
159 views
gcc4 template bug or more likely id10t error
The following code compiles just fine under Visual Studio but neither gcc 4.6.2 or 4.7 can handle it. It seems to be valid but gcc can't seem to resolve the difference between const and non const ...
2
votes
3answers
429 views
Tools and methods to identify/prevent static buffer overruns
Are there any tools or methods that can identify buffer overruns in statically defined arrays (ie. char[1234] rather than malloc(1234))?
I spent most of yesterday tracking down crashes and odd ...
7
votes
2answers
638 views
why does it cause termination if I try to throw something inside a catch block in C++
I have the following C++ code and it gives me a surprise.
The problem is that if I throw something except re-throw inside the catch block,
the program will be terminated by calling abort and give the ...
5
votes
1answer
836 views
GCC 4.5 vs 4.4 linking with dependencies
I am observing a difference when trying to do the same operation on GCC 4.4 and GCC 4.5. Because the code I am doing this with is proprietary, I am unable to provide it, but I am observing a similar ...
3
votes
3answers
718 views
How to make gcc uses march=native as default?
Is there a way to change the specs file so that it will pass -march=native if nothing is specified in command line?
Related things in the default specs file is:
*cc1:
%(cc1_cpu)
*cc1_cpu:
...
0
votes
2answers
659 views
Error compiling the compiler GCC
I know, it's an irony to compile a compiler. But I need a specific version of this compiler, and the CentOS 5.x repositories have not the most recent versions of GCC.
The version what i need is 4.3.2 ...