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.
1
vote
0answers
14 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
...
14
votes
4answers
303 views
Why would a compiler generate this assembly?
While stepping through some Qt code I came across the following. The function QMainWindowLayout::invalidate() has the following implementation:
void QMainWindowLayout::invalidate()
{
...
0
votes
0answers
26 views
Template auto-generated code, not a type
I'm attempting to generate a class than can read any type of serialized XSD/XML code. Since I have about 1000 different data defintions, I would love to make the XmlLoader class generic.
However, in ...
3
votes
1answer
93 views
C++ Find and remove references to little-used library
I'm modifying a large collection of legacy C++ code which has a few dependencies on the old commoncpp library. We want to replace commoncpp with something more modern (e.g. Boost).
First I need to ...
-3
votes
2answers
44 views
printf a variable in C [closed]
#include <stdio.h>
#include <stdlib.h>
int main()
{
int x = 1;
printf("please make a selection with your keyboard\n");
sleep(1);
printf("1.\n");
char input;
scanf ("%c", &input ...
0
votes
1answer
46 views
C/C++ compiling different parts of the program with different compilers
I'm writing a program in C++ that requires a call to a subroutine written in an open source C program. The C file is called shd.c. (There is no header file for shd in the program). The C program by ...
0
votes
2answers
30 views
VFP using ARM inline assembly
I am trying to write a simple function to use the VFP on my beagleboard. However, Iḿ getting the following error : expected ´)´ before ´:´ token. Here is the code:
float floatmod(float a, float b) {
...
0
votes
0answers
15 views
matplotlib install error, gcc suspected
I am trying to install matplotlib on a MacBook Pro 10.8.3. All my scientific packages (python, qgis, and numerous others) are installed with Homebrew. pip install matplotlib fails with the following ...
0
votes
1answer
81 views
c-style type cast and operator()
Question was changed!
I use a simple way to hide my enums from local namespaces - enumeration inside of a struct. It goes roughly like this:
struct Color
{
enum Type
{
Red, Green, ...
0
votes
0answers
17 views
Symbol is never used, yet readelf reports it as needed
I have a .o file that does not contain a symbol, that is
objdump -D file.o | grep _M_insert
prints nothing, yet readelf reports it as needed
readelf -a file.o | grep _M_insert
0000000013f7 ...
0
votes
1answer
48 views
C# : DLLImport - DLL Not Found exception
Suppose i want to call c++ functions from a c# code , i am having the following problem :
case 1 :
class abc
{
private :
int a ;
public :
int getValue()
{
return 100;
}
};
...
0
votes
0answers
38 views
stack smashing detected with perl DBD::mysql
I was bugged by the stack smashing detected error of perl with DBD::mysql in Suse.
The full error log is here https://gist.github.com/tsechingho/5617282 .
Could give me some ideas how to resolve ...
0
votes
1answer
14 views
libev-4.15 doesn't compile on OSX 10.8
I'm trying to upgrade from libev-3.8 (which compiles fine on OSX 10.8) to libev-4.15 and getting the following error.
third_party/libev-4.15/ev.h:234: error: expected identifier before numeric ...
0
votes
1answer
38 views
gcc warning: incompatible pointer type
In my code I have:
char DRAW_EX[DRAW_HEIGHT][DRAW_WIDTH] = {
"* *",
" * * ",
" * ",
" * * ",
"* *"
};
char ...
1
vote
2answers
65 views
Preprocessor invalid preprocessor token error
I am reading a book to learn C. In that book is the following example code giving a preprocessor error with gcc (Debian 4.7.2-4) 4.7.2. The error is
file.c: In function ‘main’:
file.c:16:14: error: ...
0
votes
0answers
47 views
Configure GCC for optimization
I trying to build gcc such that we can perform the highest optimization on an Intel E5-2690 x86_64. The default gcc is configured with :
COLLECT_GCC=gcc
...
1
vote
1answer
43 views
Can't read DDS image header on Linux
I use Nvidia nv_dds utility to load DDS image files to use in OpenGL program. It works on Windows but fails on Linux (Ubuntu 12.10).Initially I thought the problem with nv_dds but then found that ...
0
votes
0answers
54 views
vector erase/remove_if compiles on msvc but not on gcc [closed]
i am getting the following error on gcc 4.7.2. it works fine msvc. why is it happening and how do i fix it?
test.cpp: In function int main(int, char**):
test.cpp:29:2: error: no matching function for ...
0
votes
0answers
11 views
how to resolve following errors
I am trying to compile madwifi device driver for kernel 3.8.2.
I have not compiled this kernel but made the config file. I am getting following errors
/root/Desktop/linux-3.8.2/arch/x86/Makefile:88: ...
0
votes
1answer
21 views
Linking with another start-up file
I am trying to link a program with my own start-up file by using the STARTUP directive in a LD script:
...
ENTRY(_start)
STARTUP(my_crt1.o)
...
GCC driver is used to link the program (not to bother ...
5
votes
0answers
115 views
A simple test case between clang++/g++/gfortran
I ran across this question on scicomp which involves computing a sum. There, you can see a c++ and a similar fortran implementation. Interestingly I saw the fortran version was faster by about 32%.
...
2
votes
1answer
38 views
Internal compiler error with nested functions in OpenMP parallel regions
I tried to call the Monte Carlo integration subroutine of GSL library to do some numerical calculation. Because my for loop is rather simple, meaning the results of different runs are independent, I ...
0
votes
0answers
14 views
When ./configure is given conflicting options, which wins?
I'm building a cross-compiling gcc using buildroot, and can supply some additional configuration options to the ./configure step without patching the buildroot sources. However, I want to override an ...
2
votes
1answer
55 views
Enable shared libraries
On my new linux distro(Fedora) if I try to compile something that I have written with glfw I get the following error:
:-1: error: note: 'XF86VidModeQueryExtension' is defined in DSO ...
-1
votes
1answer
75 views
What is the difference between these two strings? [duplicate]
PART 1
I have 2 strings and they are defined in following ways-
char s1[] = "foo";
char *s2 = "foo";
When I try to change a character of these strings, say, the 2nd character -
char s1[1] = 'x';
...
-2
votes
3answers
31 views
Make executable not named a.out?
For example if I run gfortran filename.f90 it will create a.out, but I'd like filename.out instead.
0
votes
1answer
45 views
C++ Ubuntu. Multiple undefined references compiling with FFMPEG libs [closed]
I installed FFMPEG libraries on Ubuntu 12.10 and headers as it is described here .
In my C++ application which uses FFMPEG when I am compiling (gcc) I am getting this :
...
0
votes
0answers
8 views
include array table from file (Symbole could not be resolved)
I use gcc and eclipse jumo with Android IDE v21.:
in main I have table:
char t[] = {1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20};
and call this table:
...
1
vote
2answers
48 views
Calling base class constructor on init in GCC vs MSVC2010
I am cross-compiling a project from MSVC2010 to GCC 4.7 .Each place where I call base class constructor like this :
FPSCamera::FPSCamera(CameraType camType, float fov, int viewportW, int viewportH, ...
-4
votes
2answers
68 views
Backspace character not working when printing to a file
I have simple C program-
main()
{
printf("Foo\b");
}
It prints Fo on the terminal (as expected).
But when I call this program by redirecting the I/O-
./a.out >outfile
The outfile has ...
1
vote
1answer
33 views
Is it legal to statically link libstdc++ and libgcc in a binary-only application?
Is it legal to distribuite a binary-only application which has been built by statically linking unmodified versions of both libstdc++ and libgcc from the GCC suite version 4.7 or greater?
0
votes
2answers
40 views
Bubble Sort Time C program
The test is to create an array of size 10000. Initialize it with the values 10000 down to 1 and then use a bubble sort to reverse the order.As a bubble sort is one of the worst possible sorts, this ...
0
votes
0answers
32 views
SIGSEGV error on gcc (Ideone, codechef) works fine on pc
This is the code for a problem on codechef.
#include<stdio.h>
inline int chkIsDiv(int n1, char* ptr)
{
int i=0, b=0;
while(ptr[i] != '\0')
{
b=b*10+(ptr[i]-48);
...
0
votes
2answers
26 views
gcc fails with spawn: No such file or directory
I downloaded
Ruben’s build of
Cygwin GCC.
However upon running it seems unable to compile any files
$ touch foo.c
$ gcc foo.c
gcc: error: spawn: No such file or directory
As a workaround, I ...
0
votes
0answers
21 views
Python 3 on ChromeOS [migrated]
I just got a chromebook ( Acer C7 ) and would like to do very minimal local development on it. I would like to have Python 3.x at a minimum, and pygame would be even better, but I'm not banking on ...
3
votes
0answers
72 views
What's the difference between GCC builtin vectorization types and C arrays?
I have three functions a(), b() and c() that are supposed to do the same thing:
typedef float Builtin __attribute__ ((vector_size (16)));
typedef struct {
float values[4];
} Struct;
typedef ...
1
vote
2answers
88 views
g++ special handling of printf
Anyone knows why the following code works under g++ 4.7.2? If I change the name printf to another name such as f, it has compiler error saying constexpr can't contain non-const function calls (which ...
2
votes
3answers
58 views
executing a file in C which uses the math library
I was trying to execute a file which uses the math library(more specifically it was using the sqrt() function). So I typed gcc fileName.c -o fileName, it kept saying "undefined reference to `sqrt'". ...
0
votes
1answer
14 views
How to make the “Locals and Expressions” debugging window operational with gcc 4.8?
I am using gcc 4.7 and gcc 4.8 together with QtCreator 2.7.1.
The problem is that when I use gcc 4.8, I am unable to see the values of my variables in the "Locals and Expressions" window in debug ...
0
votes
1answer
48 views
writing strings to file in a loop puts extra chars at the end of file
I'm writing some strings to a file, and then i rewind it. This, i am doing in a loop.
Actually, it works just fine, but at the end of the file, it duplicates some chars from the last string. How do i ...
-1
votes
0answers
42 views
Identifying patterns for global memory addresses
The following program
int32_t g_3, g_8 = 0;
void main() {
int16_t l_2;
for (l_2 = 0; l_2 >= -30; l_2--)
if (g_3) {
int32_t *l_17 = &g_8;
*l_17 = 0;
}
}
when compiled with gcc for ...
0
votes
1answer
25 views
Apple C++ LLVM Compiler 4.x & UNICODE: when needed? Is UNICODE default compiler charset? Making your code compiling both ANSI and UNICODE versions
I have Microsoft C++ compiler experience.
There you could adjust your using/not using UNICODE compilation path very simply.
Following constructions were legitimate and perfectly possible:
#ifdef ...
-1
votes
0answers
33 views
Building GCC for ARM architecture [closed]
I'm wondering if it's possible to compile and build GCC for ARM(specifically armv7-eabi for my phone) . I know it's relatively easy to compile a program using a cross compiler and I have built a ...
10
votes
2answers
87 views
std::string copy constructor NOT deep in GCC 4.1.2?
I wonder if i misunderstood something: does a copy constructor from std::string not copy its content?
string str1 = "Hello World";
string str2(str1);
if(str1.c_str() == str2.c_str()) // Same ...
-4
votes
0answers
39 views
Error compiling C file converted by cython (pyw to c) [closed]
I'm new to here, and this is my weird problem...
I want to do a simple application, using Python as it is easier to understand and write. But I knew that Python is considered slower if compared to C. ...
2
votes
1answer
26 views
Error when inheriting from templated class and calling templated function
I've got some template code that I'm modifying and I've run into an odd error that I can't work around. I was able to recreate the problem with the below simpler (but admittedly pointless) code ...
1
vote
2answers
32 views
cmake reports gcc is broken. Where do I start?
I am trying to compile a project but cmake stops right at the beginning with the message that gcc is broken (see below). I am ignoramus when it comes to cmake, so any help where to get me starting ...
0
votes
1answer
17 views
Finding shared library dependencies when linking executable
I am attempting to cross-compile gstreamer for ARM hosts on a Ubuntu 12.04 (32-bit) build system. None of what I'm about to describe happens with the i686-linux-gnu GCC. I am compiling on Ubuntu ...
0
votes
0answers
10 views
Pymc not working after compilation
I'm trying to install pymc. I used the info given here
I compiled them myself (according to section 2.4 in the documentation). Though I get this error when trying to use it:
What is going wrong ? ...
12
votes
4answers
421 views
Why can I define a function in another function?
see the code below, I define a function in another function,
void test1(void)
{
void test2(void)
{
printf("test2\n");
}
printf("test1\n");
}
int main(void)
{
test1();
return 0;
}
this ...




