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
24 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
0answers
15 views
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
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 ...
2
votes
0answers
51 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
75 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
56 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
12 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
46 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
35 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
23 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 ...
0
votes
0answers
28 views
Building GCC for ARM architecture
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
83 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
34 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
31 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
9 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
9 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 ? ...
11
votes
4answers
390 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 ...
0
votes
0answers
59 views
C Program Compile Error (with header file)
Here is my code of Header File.
Header File name 16f877a.h
its code get from this link
My File name led.c
#include "16f877a.h" //IC selection
#fuses XT, NOWDT, NOPROTECT, NOLVP
#use delay (clock ...
0
votes
0answers
5 views
How to install PyGSL? (Windows 7, 64 bit, Python 2.7, GSL 1.15)
I'm trying to install PyGSL on my computer (64 bit Windows 7), with Python 2.7 and GSL 1.15 installed. I'm pretty much stuck and I would love for some extra help. GSL installed fine, but its the ...
1
vote
2answers
62 views
Is __int128_t arithmetic emulated by GCC, even with SSE?
I've heard that the 128-bit integer data-types like __int128_t provided by GCC are emulated and therefore slow. However, I understand that the various SSE instruction sets (SSE, SSE2, ..., AVX) ...
4
votes
5answers
98 views
C side effects in gcc (prefix/postfix operator and precedence)
i have small C code:
#include<stdio.h>
int main()
{
int z[]= {1,2,3,4,5,6};
int i = 2, j;
printf("i=%d \n",i);
z[i] = i++;
for (j=0;j < 6;j++ )
printf ("%d ...
1
vote
1answer
18 views
Can gcc check printf formats when using gettext?
Gcc can check that printf arguments match the format given. But that only works when the argument to printf is liternal. And obviously so, gcc needs to know the format.
Now when the code is ...
0
votes
2answers
75 views
gcc optimization flag break code
This code works fine when no optimization flag are set:
#include <cstdio>
int main(){
float *ptr = ({float var[10] = {1,2,3,4,5,6,7,8,9,10}; var;});
float *ptr1 = ({float var[10]; for(int ...
1
vote
4answers
66 views
Is this a valid C program?
I wrote a program, where the size of an array is taken as an input from user.
#include <stdio.h>
main()
{
int x;
scanf("%d", &x);
int y[x];
/* some stuff */
}
This program ...
1
vote
1answer
41 views
Problems Compiling simple C program against custom Linux Kernel
I recently compiled a custom kernel which defines a new address family/protocol family called "AF_CUSTOM"
Such, include/linux/socket.h in the my kernel source was changed, as seen here(as well as for ...
0
votes
1answer
6 views
rbenv install is failing (telling me to install GCC, but it's already installed)
So, my client has me working on a legacy app which is running Rails 2.3.8 and Ruby 1.8.7, so I'm attempting to install the proper version of ruby using rbenv but it keeps giving me this error:
→ ...
3
votes
1answer
37 views
piping a string to gcc with python's subprocess.Popen
I have a c++ style text file that I'm trying to pipe to gcc to remove the comments. Initially, I tried a regex approach, but had trouble handling things like nested comments, string literals and EOL ...
1
vote
1answer
31 views
How do you get the start and end addresses of a custom ELF section in C (gcc)?
I've seen the usage of of the gcc __section__ attribute (especially in the Linux kernel) to collect data (usually function pointers) into custom ELF sections. How is the "stuff" that gets put in those ...
0
votes
1answer
34 views
<built-in>:1:2: warning: use of C++0x long long integer constant [-Wlong-long]
What is this warning about? It seems to be warning about long long constants in built ins. This is from GCC version 4.7.3 (Ubuntu/Linaro 4.7.3-1ubuntu1).
In file included from ...
0
votes
1answer
38 views
compiling multiple files with -D option using gcc
I have a project with multiple .cpp and .h files. I have a file called Globals.h which is included in all .cpp files.
Now when compiling this file I use some -D options. These options affect all ...
1
vote
2answers
61 views
arbitrarily sized enum values
I'm compiling code that was written for GCC, in Visual C++ 2012. I'm getting warnings thrown about enum value truncation with the following enum (due to the value being outside the range of an int):
...
2
votes
1answer
65 views
'long long long' is too long for GCC using log4cpp
I am developing a QT application where I use the logging library log4cpp.
But now, where the headerfiles of log4pp are included, I get this compiling error:
'long long long' is too long for GCC
When ...
0
votes
0answers
5 views
memory limit for cygwin gcc compiled program
According to this! cygwin have a memory limit, but we can easily change it by running program with peflags --cygwin-heap foo.exe
When i send the compiled program with cygwin1.dll to my friends, they ...
0
votes
1answer
19 views
How to add gdi32.lib from command line
I have found an example where gdi32.lib should be linked in some way, but I don't know how to do this from GCC command line. All the examples I've found suggest to do this somewhere in project ...
0
votes
0answers
45 views
Why am I getting longjmp causes uninitialized stack frame error
I am getting this error.
"longjmp causes uninitialized stack frame".
Any idea, what is the reason for it.
0
votes
3answers
34 views
passing arg 1 of `foo' from incompatible pointer type
Why this shows warning:
#include<stdio.h>
foo (const char **p)
{
}
int main(int argc , char **argv)
{
foo(argv);
}
But following does not show any warning
char * cp;
const char ...
3
votes
1answer
40 views
Why does GCC not complain about _Bool in c89 mode?
Why does the following command produce no warnings or errors, even though _Bool is not part of C89?
$ echo "_Bool x;" | gcc -x c -c -std=c89 -pedantic -Wall -Wextra -
For comparison, changing ...
0
votes
0answers
25 views
GCC Errors when compiling on Android (ARM) for Android (ARM)
I want to compile C Code on Android (ARM) for Android (ARM).
I have managed to get a cross-compiled gcc (arm-eabi-gcc: ...
0
votes
1answer
57 views
intializing a structure array in c with #define
The following code gives me this warning:
tag_info.h:17: warning: missing braces around initializer
tag_info.h:17: warning: (near initialization for âtag_list_data[0].subtagsâ)
I have tried alot of ...
2
votes
2answers
74 views
Boost log, GCC 4.4 and CMake
I am trying to get a simple boost.log example running on Linux using GCC 4.4.5, CMake 2.8.2 and Boost 1.53.0.
Compiling boost and boost log succeeded, but I keep getting issues when linking my test ...
0
votes
1answer
41 views
Noob ASM Questions
I'm trying to learn a bit of assembly over here, and I need a bit of help from the pros!
test.s:
.data
helloworld:
.asciz "printf test! %i\n"
.text
.globl main
main:
push $0x40
push ...
0
votes
1answer
12 views
GCC link all included files
I have a main.c, which includes a couple of files.
(The files I include are in the same directory.)
Now when I run gcc, I need to pass all the files that I have included in main.c.
Is there any ...
6
votes
1answer
152 views
Does gcc use Intel's SSE 4.2 instructions for text processing if available?
I read here that Intel introduced SSE 4.2 instructions for accelerating string processing.
Quote from the article:
The SSE 4.2 instruction set, first implemented in Intel's Core i7,
provides ...
0
votes
2answers
20 views
cannot find -lcuda when linking with g++
I'm trying to link these object files with the command:
g++ NT_FFT_Decomp.o T_FFT_Decomp.o SNT_FFT_Comp.o ST_FFT_Comp.o VNT_FFT_Comp.o VT_FFT_Comp.o CUDA_FFT_Comp.o Globals.o main.o \
...
0
votes
1answer
17 views
CUDA linking errors with g++
I have written a makefile that compiles multiple files and then link them together. this is the output of my file:
g++ -c -Wall -U DEBUG -U FILE -U HighPriority -U OnlyCUDA -U CUDA -U THREAD_NUM -U ...
-3
votes
1answer
59 views
garbage value in C array
I am trying to write a C code that will print a pyramid structure on screen, something like this.
The corresponding code I've written is something like this.
#include <stdio.h>
#include ...
4
votes
4answers
178 views
What is this GCC error on Linux, and how do I solve it? gcc: internal compiler error: Illegal instruction (program as)
I type gcc hello.c and this appears:
gcc: internal compiler error: Illegal instruction (program as)
Please submit a full bug report,
with preprocessed source if appropriate.
See ...
1
vote
1answer
50 views
How can I stop gcc under Cygwin from adding “.exe” to compiled executables?
I would like to know how I can prevent gcc under Cygwin from automatically adding the .exe extension to compiled files, because I just caused myself a lot of confusion with "missing files". For ...
1
vote
2answers
71 views
My first C compile with gcc. Which file do I use?
This is my first time compiling a C application. I'm using gcc on a Ubuntu box. Tutorials say to use syntax:
gcc main.c -o HelloWorld
but my program doesn't have a "main.c".
Can anyone suggest a ...






