I am curious as how to install the CC command line compiler for my uni C++ projects I am not interested in g++ or gcc or whatever I want to use CC exactly so I get the desired affect of when I use it in class, however I class we use CentOS so I dont know if this makes a difference

Recommended Answers

All 3 Replies

Are you sure its not using gcc? Most distros alias 'cc' to 'gcc' which is probably what is happening here.

sk@sk:~$ which cc
/usr/bin/cc
sk@sk:~$ ls -al `which cc`
lrwxrwxrwx 1 root root 20 Oct 15  2004 /usr/bin/cc -> /etc/alternatives/cc
sk@sk:~$ ls -al /etc/alternatives/cc
lrwxrwxrwx 1 root root 12 Feb  1  2007 /etc/alternatives/cc -> /usr/bin/gcc
sk@sk:~$ which gcc
/usr/bin/gcc

In this case "cc" is a symlink to "/etc/alternatives/cc" which is a symlink to "/usr/bin/gcc".

What this means: cc=gcc.

Well if you type gcc you will see this:

sk@svn:~$ gcc
The program 'gcc' can be found in the following packages:
 * gcc
 * pentium-builder
Try: sudo apt-get install <selected package>
-bash: gcc: command not found

So you should probably:

sk@svn:~$ sudo apt-get install gcc
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.