Tagged Questions
cc is a common name for a C compiler executable or driver. It is the default for the $(CC) make variable. For email CC fields, please use [carbon-copy]. For the Creative Commons licence, please use [creative-commons].
3
votes
4answers
189 views
UNIX cc executable location
When I compile a .c file using the cc command, it creates an a.out executable. I've noticed that it creates the a.out file inside my current directory. Is there a way to make the a.out file be ...
2
votes
1answer
66 views
Linux cc compilation of library in directory within project?
My directory structure looks like the following:
-xmllib
-libxml++-1.0.a
-main.cc
..and I issue the command:
cc -lstdc++ -L./xmllib -llibxml++-1.0.a main.cc
But then it tells me that it ...
1
vote
6answers
87 views
struct definition inside main() causing Segmentation Fault
Is it not possible to define structure inside main() .
I tried the following only to get a Segmentation Fault:
#include <stdio.h>
#include <unistd.h>
#include <strings.h>
#define ...
1
vote
3answers
103 views
Is there any way is ther to create a “.O” file without main() function in “.C” file
In linux : C++
Is there any way is ther to create a ".O" file without main() function in ".C" file .
iam using
"cc -c file.c -o file.o " with sun compiler
" gcc -Wall -c file.c " with ...
1
vote
3answers
197 views
C Programming - Writing text file that compiles itself
I'm trying to write a file to disk that gets then recompiled automatically. Unfortunately, sth does not seem to work and I'm getting an error message I don't yet understand (I'm a C Beginner :-). If I ...
1
vote
1answer
131 views
What does '-Olimit 2000' mean for cc
I try to compile an old program (which was compiled by cc) using gcc. In the makefile there is one line like this:
CFLAGS = -O2 -Olimit 2000 -w
There is no '-Olimit 2000' in gcc. I am wondering ...
1
vote
1answer
99 views
Debian cc flat_namespace
How can I install headerdoc on a UNIX system, Debian, when I hit make, it complains
cc1: error: unrecognized command line option "-flat_namespace" when I remove that option from Makefile it won't ...
0
votes
2answers
37 views
PHP insert cc into mail function [closed]
Possible Duplicate:
PHP Mail, CC Field
I am using the following php to send an email. I need to add cc to my email. When I try to insert into header the html message show the raw html. ...
0
votes
2answers
74 views
Undefined function in CC compiler (minix)
I have a mysterious problem!
In the main.c I have the following:
#include "jogo.h"
int main(){
int i;
sef_startup();
vg_init(0x105);
batalha_naval();
sleep(5);
vg_exit();
...
0
votes
2answers
38 views
cc static linking: How to import all symbols of just one .a library?
I have 2 static libraries,
libalgha.a with 2 functions: func1() and func2()
and
libbeta.a with 2 functions: func3() and func4()
I have 1 executable (mytest) linked with these 2 libs. The ...
0
votes
0answers
68 views
Ocaml is not creating .o file
I'm new to ocaml and ubuntu and I'm trying to compile a very simple ocaml file following this tutorial : http://wiki.njh.eu/OCaml_and_SDL
The problem is that it's not compiling I have the following ...
0
votes
1answer
37 views
Where is the documentation for writing Eclipse toolchain plugins?
We're running Solaris 2.10 and using the native Solaris build tools (CC & dbx), for which there is no support in Eclipse 8. I up to writing the plugins to support these tools, but I'm having a ...
0
votes
0answers
111 views
cc compiling on mac 10.5.8 fails on terminal with stdlib not found
I am trying to compile a simple c program on the mac terminal (platform.c) which looks like
#include <stdlib.h>
#include <stdio.h>
main(){printf("osx%d", (int) (sizeof(void *)*8));}
on ...
0
votes
1answer
111 views
Issue on Solaris CC optimization flag
May I ask a question about the CC compiler in Solaris environment.
I try to compile a Solaris release library with "-O" using Solaris CC compiler. I can compile the debug library previously using ...
0
votes
2answers
197 views
cross compilation from Solaris sparc to Solaris x86
May I know if I can cross compile the Solaris x86 library from Solaris sparc server?
The source code is mainly in C++ (some C). I need to use the Solaris C++ compiler CC to compile. I understand that ...
0
votes
5answers
268 views
Problem usage memory in C
Please help :)
OS : Linux
Where in " sleep(1000);", at this time "top (display Linux tasks)" wrote me 7.7 %MEM use.
valgrind : not found memory leak.
I understand, wrote correctly and all malloc ...
0
votes
1answer
93 views
cant clearing memory in struct [closed]
please help find error.
Need clearing struct malloc, my example is usage many memory (memory leak).
command "top" wrote 7.7% usage memory, in sleep function... this is not correct 7.7%
PID USER ...
0
votes
4answers
312 views
Can't assign struct variable in header file
I have a header file including a structure like this:
typedef struct
{
int index = -1;
stack_node *head;
} stack;
But when compiling with cc it shows error at the assignment line (int index ...
0
votes
2answers
40 views
why does the following program give error when it is checked with cppcheck analyzer
#include "stdio.h"
int main (void) {
char xx[1000] = "hello";
sprintf (xx, "xyzzy plugh %s", xx);
printf ("%s\n", xx);
return 0;
}
::::(error) Undefined behaviour: xx is used wrong ...
0
votes
2answers
62 views
why will the following error occur during compilation
As part of my program, I used following code:
///////////////
98:::printf("%d",abc->stv)
//////////////
100::if(abc)
//////////////
(the following error was produced)
Possible null pointer ...
0
votes
2answers
79 views
Is there a cc equivalent to the -Wformat gcc flag?
My company uses a massive makefile which uses CC to compile, not gcc. I would like to use the -Wformat flag to show errors where types in printf and sprintf don't match with the provided arguments.
...
0
votes
2answers
385 views
“Undefined reference” when linking C code in Linux
I have a code library (written entirely in C) that I typically compile under Windows, into a .DLL.
I want to compile it under Linux so I can distribute it. I don't care if I distribute it as a .a, a ...
0
votes
3answers
1k views
What does CC?= in a Makefile mean?
I have a Makefile for a C program that has the declaration
CC?=gcc
Changing it to
CC?=g++
does NOT make it compile with g++. Changing it to
CC=g++
DOES make it use g++.
So I wonder what the ...
-1
votes
1answer
28 views
suggest me when will the following warning occurs during compilation
temp....is used wrong in call to sprintf or snprintf.
If copying takes place bteween objects that overlap as a result of a call to sprintf() or snprintf(), results are undefined.