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
0answers
168 views
hammer.js rotation resets on next touch
I am trying to improve on this tutorial script http://www.appliness.com/multitouch-with-hammer-js/
Apart from some nonsense code, the problem is with rotation. It works fine on the first rotation, ...
0
votes
1answer
384 views
gcc-3.4 compilation error
I need gcc-3.4 for compilation f some software.
I installed on my Ubuntu-12.4 using following instruction :--
http://superuser.com/questions/351742/how-to-install-gcc-3-4-on-ubuntu-11-10
sudo dpkg ...
1
vote
1answer
120 views
Compiling qemu neo with gcc3.4
I have realized that it's lots of trouble and pain to compile qemu with gcc4,
so I have installed gcc-3.2 toolchain in my linux box and now I'm compiling qemu,
These are the steps that I have followed ...
0
votes
3answers
191 views
will never be executed, gcc about the line: while(fgets(line, MAX_LINE, stdin) != NULL)
I'm looking for an explanation why gcc are giving this warning for me.
I'm compiling with the gcc-3 on cygwin with the -Wunreachable-code flag, and the gcc says this warning for me:
main.c:223: ...
1
vote
1answer
159 views
Internal compiler error with Boost.Spirit
I'm trying to compile the following seemingly simple code using GCC 3.4.6 and Boost 1.43 and it's generating an internal compiler error:
#include <string>
#include ...
2
votes
2answers
160 views
Curiously Recursive Template Pattern in GCC 3.4 (MoSync to be exact)
I'm currently trying to write an Artemis like game component/entity system in C++. I was planning on getting this system to work with a cross platform tool for writing applications on Android and iOS ...
2
votes
2answers
135 views
STL error _without_ any STL in code
I am using gcc 3.4.4 on cygwin. I am getting this rather perplexing STL error message in my code below which does not use STL at all:
#include <iostream>
using namespace std;
const int N = ...
1
vote
1answer
196 views
GCC 3.4 vs 4.4 for C++ based MEX files?
What are the trade-offs/concerns for using gcc 3.4 vs 4.4 for compiling modern Matlab MEX files?
I need to compile some off-the-shelf C++ code (kdtree) as a MEX file for use with MATLAB (R2012a) ...
0
votes
1answer
60 views
Space determine for a C program
Can I determine the space taken by a C program. Currently I am using GCC compiler on WIndows XP. Actually I want to check how much space consume by the C program.
It is very good if some function ...
0
votes
1answer
174 views
gcc 3.4 internal compiler error with std::map.find
has anybody come across the following error with gcc 3.4, boost 1.34.1
The conflicting code is along the lines of:
class Symbol
{
/// ...
bool operator<( const Symbol& rhs ) const;
};
typedef ...
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 ...
1
vote
1answer
446 views
alternatives to GCC 3.4.3 option -fstack-protector-all?
I'm trying to set option -fstack-protector-all in GCC 3.4.3 compiler for enabling some stack smashing protection scenarios. However when compiling with this i got error: unrecognized command line ...
3
votes
2answers
282 views
Is this a gcc optimization bug? [closed]
Here's my code:
bool func(const MY_STRUCT *const ptr, some_struct *x, int y)
{
printf("IN: %p\n", ptr); // ok
for (int i = 0; i < y; ++i) {
if (ptr->foo(x[i].key) == 0) {
...
0
votes
3answers
46 views
Possibility to simulate -Werror option behavior with GCC 3.4?
Is there any hope to force GCC 3.4 compiler to make all warnings into errors like GCC's 4.4 -Werror option does ?
Thanks
1
vote
1answer
101 views
Upgrading GCC from 2.9x
I've been trying to upgrade the compiler from 2.95.2 on my PS2 Linux machine (mips) and my head is about to explode. I am not going to claim that I am good with linux.
I'll go over the process I've ...
4
votes
1answer
184 views
Issue on RHEL4 release using boost 1.36 and C++
I am struggling with a mysterious problem
I only see on my RHEL4 release build. Some of my unit tests (using boost 1.36 unit test framework) fail on RHEL4 (gcc 3.4.6) and using release build-type. I ...
9
votes
1answer
491 views
are gcc-3 binaries compatible with gcc-4
I have a static library that has been compiled with gcc 3.4.3 .I would like to use this in code that will now be compiled with gcc-4.
I've read vaguely that gcc-3 and gcc-4 binaries are not ...
3
votes
2answers
253 views
Question about ubuntu gcc compiler
I installed the build-essential package for ubuntu x86_64, compiling c programs and c++ programs work fine, but in the compiled binary, "Ubuntu linaro" appears. is there a way to remove this?
1
vote
3answers
538 views
dynamic_cast failed when hidding symbol
I have many static libraries. One is static_lib_a.a. I create a dynamic library, dynamic_lib.so to put them together.
In static_lib_a.a, it uses xerces 3.1.1 to parse xml. The following is the code ...
1
vote
1answer
684 views
C: Utility to analyze .obj files, to measure size of some of the functions in exact bytes?
I needed to look-up the exact byte size of few C functions.
Any recommendation of any utility which is able to analyze .obj files generated by the gcc compiler?
0
votes
1answer
324 views
Cannot link streams code with gcc
I have a problem compiling the following code:
// writing on a text file
#include <iostream>
#include <fstream>
using namespace std;
int main () {
ofstream myfile ("example.txt");
if ...
1
vote
2answers
569 views
vector<bool>::push_back bug in GCC 3.4.3?
The following code crashes for me using GCC to build for ARM:
#include <vector>
using namespace std;
void foo(vector<bool>& bools) {
bools.push_back(true);
}
int main(int argc, ...
3
votes
3answers
737 views
Why isn't the gcc 4.x.x series compilers installed by MinGW by default?
Currently, MinGW's only installs the 3.x.x series of the gcc compiler by default. However, it looks like the 4.x.x series of compilers have been out for some time, and as others have mentioned, it ...