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].
0
votes
1answer
30 views
C compiler for mac?
I'm working through a text on linking, and wanted to work along with some examples in said text.
To better understand whats going on when I invoke the gcc driver, I was looking into doing all the ...
1
vote
4answers
73 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 ...
0
votes
1answer
14 views
How to deal with CC transaction that succeeds after screen timeout?
I'm not sure this is a good question. That said, I don't know exactly what question I should be asking, so if I can just find out that piece of information, I think this will have been worthwhile...
...
-1
votes
0answers
13 views
Is there a way to find the CC address of group messages in Android? [closed]
I am looking for a way in Android to identify the CC address of group MMS messages being sent. I am using a Verizon Galaxy S3. I know previous versions of Android may have handled group MMS messages ...
-2
votes
0answers
43 views
Error in installing a numerical program Titan2D (titan-3.0.0) [closed]
I have this error when I try to install the last version of titan-3.0.0, you can see also the error that I had on the same code on the previous Stackoverflow message:
...
1
vote
1answer
21 views
How to include “cc” and “bcc” fields using mailer extension of Yii Framework
I am working on mail sending functionality using yii framework. I am using mailer extension given on link="http://www.yiiframework.com/extension/mailer".
I have added all files in extension folder. ...
0
votes
1answer
63 views
PHP SMTPClient adding CC and BCC
I found a simple SMTPClient class for sending emails via SMTP. The problem is I need to add CC and BCC recipients to the client. Can someone assist in implementing this?
Heres the class (scroll down ...
1
vote
3answers
61 views
PHP if value, then other email?
I have a PHP form for my event page. Right now it works perfectly to email to myself, and I can CC it to whomever I like without problems. HOWEVER, I'd like to ONLY send it to a specific person if a ...
0
votes
1answer
110 views
ld: library not found for -lgfortran - Mac Symlink issue?
I am trying to install ObsPy with pip.
The installation fails on the cc command below:
cc -bundle -undefined dynamic_lookup -L/usr/local/lib -L/usr/local/opt/sqlite/lib ...
-4
votes
2answers
38 views
How to specify the name of an object file
When I intuitively try to run such command
cc -c source.c header.h -o a_name_different_than_source.o
the following error is thrown
cc: cannot specify -o with -c, -S or -E with multiple files
0
votes
3answers
103 views
Why this output from perror?
I never saw that before:
What is the bottom left corner above? The latest version of the program is
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char **argv)
{
int ch;
...
2
votes
0answers
49 views
Compiling a shared library with or without -c
I was compiling a c program as a shared library to be imported using Ctypes into python. These are the steps that I follow :
cc -c -fPIC simplepbc.c -lcrypto -lpbc -lgmp -o ibc.o
cc -shared ibc.o ...
0
votes
0answers
33 views
Error in installing glibc in lfs7.2 chapter 6.9
Earlier when i compiled glibc using toolchain from the fifth chapter then it compiled but when making dummy.c with empty main() function , we get ld returned status 1.
root:/myfiles/7.2/glibc-build# ...
0
votes
1answer
82 views
MPICH2 compilation issue using Cygwin
Attempting to compile MPICH2 on a Windows machine using Cygwin.
A bit of relevant information
$ uname -> CYGWIN_NT-6.1
$ gcc --version ->
gcc (GCC) 3.4.4 (cygming special, gdc 0.12, using dmd ...
0
votes
1answer
58 views
Javamail get CC from Gmail
if ((a = m.getRecipients(Message.RecipientType.CC)) != null) {
for (int j = 0; j < a.length; j++) {
InternetAddress ia = (InternetAddress)a[j];
if (ia.isGroup()) {
...
0
votes
3answers
108 views
What is the default C mode for the current gcc (especially on Ubuntu)?
When I ask to see the current version of cc I get this.
$ cc --version
cc (Ubuntu/Linaro 4.7.2-2ubuntu1) 4.7.2
Copyright (C) 2012 Free Software Foundation, Inc.
This is free software; see the source ...
0
votes
0answers
39 views
Poco C++ libraries: CC and BCC [closed]
Is there anybody that knows how to add multiple recipients in CC and BCC using Poco ?
I've found only the addRecipient function that adds a To address.
0
votes
0answers
24 views
One compilation working other gives core dump on same sources on AIX
I have two environments on same AIX server for compilation. From one environment compiled binary is working fine locally and on production server as well. But from other environment compiled binary is ...
1
vote
1answer
149 views
GCC, what does -W1 means
I have a legacy Makefile which is using the -W1 argument,
I didn't find any reference to that, I thought it might be a typo, that the '1' is supposed to be 'l'. However, it works...
So, can anyone ...
0
votes
1answer
391 views
Can't compile cc,gcc in ubuntu | no such file or directory
Really need help in this one. When I try to compile using cc, it shows
-bash: /usr/bin/cc: No such file or directory
but all the necessary files cc,gcc,c++ are present in the /usr/bin directory. ...
0
votes
1answer
112 views
gdb can not find source files compiled by cc
I have a source file testcc.c which just print a "Hello, World", I compile it with cc as below
cc -g -o testcc testcc.c
it works fine when I run it.
now I want to debug it with gdb with the ...
1
vote
2answers
53 views
linking a Python module: difference between linking with `ld` and with `cc`
This works:
cc leveldb_ext.cc leveldb_object.cc -o leveldb.so -I /usr/include/python2.7 -lpython2.7 -lleveldb -lsnappy -shared -lc
This does not work:
cc -I /usr/include/python2.7 -g -c ...
0
votes
0answers
123 views
CPP Migration from Solaris to Linux
I am new to work on migration projects and also for Linux (RedHat). Now we are moving a C++ project from Solaris(32 bit) to Linux(64 bit) and compiler Sun CC(solaris) to G++(in Linux) (4.1.2). We are ...
3
votes
2answers
743 views
C comparing char to “\n” warning: comparison between pointer and integer
I have the following part of C code:
char c;
int n = 0;
while ( (c = getchar()) != EOF ){
if (c == "\n"){
n++;
}
}
during compilation, compiler tells me
warning: comparison ...
0
votes
1answer
173 views
Solaris 5-10 CC Compiler missing symbols bug causes link failure [duplicate]
Possible Duplicate:
Solaris 10 CC Preprocessor bug causes undefined symbols
My apologies if this question posting looks familiar. I posted this issue yesterday here: Solaris 10 CC ...
3
votes
1answer
226 views
Solaris 10 CC Preprocessor bug causes undefined symbols
I have a very very simple C++ file as follows that I'm compiling on Solaris 5-10 with the CC compiler. Here is the source code in my file myTest.C:
#include <map>
std::map<int, bool> ...
0
votes
0answers
274 views
Why cc cannot find lgomp while gcc can
on Mac OS X 10.7
I run this command on this file http://www.imagemagick.org/source/wand.c as they said here
http://www.imagemagick.org/script/magick-wand.php
cc -o wand `pkg-config --cflags --libs ...
2
votes
1answer
480 views
Undefined reference to 'pow' even though -lm is a compile flag. [C]
Any reason cc -g -lm -DBLITZ_HOST_IS_LITTLE_ENDIAN would produce an error with code using math.h? Is it possible there's a difference between cc 4.0.3 (documented working version) and 4.6.3 (my ...
0
votes
0answers
106 views
mediaelement.js - v 2.9.4 with CC captions option
Note that the video demo on mediaelementjs.com webpage, its CC caption button is not doing anything when trying to click on "English (loading)". I'm pretty sure it worked fine few weeks ago when I ...
0
votes
1answer
817 views
Phonegap (Cordova) mailto link with CC not working
Hello I am trying to add a simple link something like:
<a href="mailto:me@mydomain.com&cc=me2@domain.com&subject=mysubject">Contact</a>
Instead of putting each content in the ...
0
votes
0answers
108 views
SRT or XML files for CC on iOS
I know Apple has it's own system for closed captioning, but is there a way to directly feed a xml or srt file in my mobile app without having to embed my captioning with other software?
1
vote
0answers
130 views
suppress solaris CC linker warning symbol XXX has differing sizes
I got this linker error message:
ld: warning: symbol `_VersioN' has differing sizes:
(file ./libsfc/libssl48.so value=0x16; file ./libsfc/libsipc.so value=0x15);
When I try to do link ...
1
vote
2answers
285 views
How to make a makefile for Oracle on Solaris/Linux Server?
I have an application which is running properly for Informix database. But now I want it to compile it for Oracle too. What changes should be made in the makefile shown below which is running properly ...
0
votes
3answers
345 views
Makefile: set parameters for commands executed by implicit rules (CFLAGS, LDFLAGS)
I'm very new to makefiles. I'm reading the GNU-make manual, but I'm still unclear about how to set the parameters for the compiler and the linker when they are executed by an implicit rule.
This is ...
1
vote
1answer
335 views
Quick way to override -Werror flag?
If cc configuration is set to use -Werror is there a way to override -Werror flag from the terminal when using make?
0
votes
2answers
31 views
Confusion in Logical AND operation
I have some confusion in how following expression works.
cc file_name.c && ./a.out
When filename.c gets compiled successfully , its exist status would be 0 (zero).
So as per logical ...
-1
votes
3answers
2k views
how to install cc on mac os 10.8 without paying for developer program? [closed]
Several python libraries stopped working after upgrade to Mac OS 10.8. Attempt to re-install them through easy_install or pip brings error message "-bash: cc: command not found". XCode is installed. ...
1
vote
0answers
147 views
Trying to install Glib via cpanm, cc access denied
I'm trying to install the Glib module via cpanm. I have all the prereqs, but during the "building and testing" stage, the installation fails. I checked the build log, and it looks like my access was ...
0
votes
1answer
73 views
How to send an single email to number of users at one time in asp.net?
I want to send a single mail to number of user, I have extract the emails of all those in datatable now i am wondering how can i pass this datatable to BCC or CC in mail. If someone knows how to do ...
0
votes
0answers
150 views
coredump not generated for daemon
I have a C process which is running as a daemon. Because of an error, it is segfaulting and terminates.
To find the problem I have enabled ulimit -c unlimited to get the coredump to analyze. But ...
2
votes
2answers
521 views
Find out CPU core of specific thread at runtime
I am running CC compiler over SUN/Solaris,
I have more then 64 threads assigned by the OS to different cores.
I am interested to know if there is method to get the core id for different threads ...
0
votes
2answers
225 views
Building msgpack-python on Solaris 10 - Use of <stdbool.h> is valid only in a c99 compilation environment
I'm trying to build the python module msgpack-python on Solaris with the Sun compiler and am getting this error during the python ./setup.py build:
/opt/SUNWspro/bin/cc -DNDEBUG -O -xO3 -m32 ...
0
votes
1answer
139 views
What does it mean “internal compiler error: storage failure” on UNIX?
I have to build an application on UNIX, Unixware 2.1.3, with a CCS compiler 3.0 and I keep having this error :
UX:acomp: ERROR: "//home/dino/treeit.h", line 32: internal compiler error: storage ...
0
votes
1answer
294 views
Makefile: $(CC) isn't working with ifeq
So, this is odd. In my makefile I have
CC:=icc
ifeq ($(CC),icc)
CFLAGS := $(ICCFLAGS)
LIBS := $(LIBS) -openmp
else
CFLAGS := $(GCCFLAGS)
LIBS := $(LIBS) -fopenmp
endif
for make, the condition is ...
-3
votes
1answer
124 views
why cc “real time” >> “real time”?
I am having a problem with c compiler
When compiling a simple hello world, user time is >>> real time.
Here the comparison of times between two machines.
It should be noted that the machine is not ...
0
votes
2answers
784 views
Modifying a makefile to compile .cc and .cpp files
I am trying to modify my makefile to support .cpp and .cc, however, I keep getting an error such as
target `source/systemFuncs.cpp' doesn't match the target pattern
I am modifying an existing ...
0
votes
1answer
961 views
Compiling a Class with GCC
Hey all im not sure if ive made a syntactical error hear but ive made a class and get this error when i try to compile it....
dining.h:7:1: error: unknown type name ‘class’
dining.h:7:17: error: ...
0
votes
1answer
95 views
cc compilation error “embedded archives are not allowed”
I cannot seem for the life of me to figure out why this error message keeps appearing on the machine. This happens on a few different programs that I have tried to install, so its something that seems ...
1
vote
1answer
326 views
DBD-mysql error: CPU you selected does not support x86-64 instruction set
I am installing DBD-mysql-4.020 perl module on 5.14.2.
when running make, I encounter the below error:
cc -c -I/u01/app/appadmin/product/perl-5.14.2/lib/site_perl/5.14.2/x86_64-linux/auto/DBI ...
0
votes
2answers
2k views
PHP insert cc into mail function [duplicate]
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. ...



