Compile C++ under linux, need help


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Compile C++ under linux, need help
# 1  
Old 09-09-2008
Compile C++ under linux, need help

I am a Linux noob, and have been trying to compile some source in Linux and I am lost. I am a game modder and I have some open source code which I have compiled in windows a million times but now I need to compile in Linux.

If this thread fails to help me, I will credit anyone who can personally help me when I do my next project.

So far I have Debian 4.0 and Ubutu 8.04 desktops on VMware server. I am NOT a command line kind of guy, so the Intel Linux compiler and Kdevelope applications are of peak interest to me. The problem is I can't get them installed on about (4) versions of Linux.

When I launch install.sh for the intel compiler I select "run in terminal" since "Run" does nothing and then it tells me "one of the missing commands is g++" and "locate and install the proper g++ package". I assume that means I need to install something before I install the Intel compiler. I researched g++ package for Debian and found the etch g++ portable compiler package. I downloaded it but don't know what to do with it, there is no install file. <<---windows brain-washed

My questions are:
Am I on the right track?
How do I proceed from this point?

Before you answer...this is a learning process for me, please be specific.
# 2  
Old 09-09-2008
If you have internet access then open a terminal and type (assuming you're logged in as 'root')
Code:
sudo apt-get install g++

to install g++ (GNU C++ Compiler). You'll be asked for your password if you're not logged in as root. And this is ok.
# 3  
Old 09-09-2008
Compile C++ under linux, need help

When I do that it asks me for a password then when I enter what I think it shoud be it says "username is not in the sudoers file". "this incident will be reported"
# 4  
Old 09-09-2008
Try su - instead, enter the root password, and then apt-get install g++. You'll then need to exit from the root shell.
# 5  
Old 09-10-2008
compile c++

Well, I tried your first suggestion on ubutu instead of debian and presto! it worked. I installed the intel compiler and it finished. So thanks for that! Is it supposed to have an application shortcut? because I can't find the application...heh

I am thinking maybe it launches automaticlly when I initiate a file in my source code???

Thanks for your help thus far!
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

can i get UNIX kernel and compile it like Linux ?

I am not a newbie to Linux, i have been using Linux as my desktop for 4 years, but i am just an end user to Linux, no advanced knowledge to it. I knew that, i can download generic linux kernel and compile it by myself, but how about Unix? how can i get an Unix kernel and compile it ? or no this... (5 Replies)
Discussion started by: wong.sie.ung
5 Replies

2. Programming

Linux 11.2 to 10.2 Proc Compile error

I am trying to compile a proc++ program on linux using an 11.2 client and pointing to a 10.2 database running on Solaris. The compiler is able to connect to the database but the semantic checks fail as if it cannot see any objects in the database. I tried a test, only selecting 'X' into a... (0 Replies)
Discussion started by: rdudash
0 Replies

3. Linux

Request: Compile Earlier Version of XTIDE and upload XTTPD binary on 64 bit Linux

Can someone try to compile this older version of xtide (attached) on 64-bit Intel/Linux and upload the xttpd binary? I have a friend who needs an older version up and running because the newer version does not support his required harmonic files. Thanks! (7 Replies)
Discussion started by: Neo
7 Replies

4. UNIX for Dummies Questions & Answers

Compiling gcc to compile make to compile yaboot

I have just installed OpenBSD on a 333MHz PPC iMac G3. It has a 6GB HDD that has been partitioned as 1GB MacOS 8.5.1, 3GB MacOS X 10.3.9, 2GB OpenBSD 4.8. I now need to install a bootloader so that my computer can recognize the OpenBSD partition at startup. I have been trying to install... (0 Replies)
Discussion started by: t04st3r
0 Replies

5. UNIX for Dummies Questions & Answers

Trying to native compile Linux Dialog

Hi, as my thread has been moved to Debian. I don't run Debian machine. My machine is Linux embedded router - mipsel. Sources come from Debian, but Dialog sources are GNU, so no Debian specific. Native compilation vs. crosscompilation, exactly to let you know, that I don't run Debian... (2 Replies)
Discussion started by: jack2
2 Replies

6. UNIX for Dummies Questions & Answers

HoHow to compile Linux dialog - "curses.h" missing ?

Hi, I tried native compile Linux dialog for Linux embedded device and got "curses.h" error message. As Linux dialog is already compiled and working as Debian .deb package (installed it). What is a way to import curses.h from other package sources to work for dialog sources compilation in my... (2 Replies)
Discussion started by: darius2
2 Replies

7. UNIX for Dummies Questions & Answers

how to compile linux kernel on redhat

Hello, Please let me know how to compile a linux kernel on redhat. I am relatively new in this area so please be a little patient with me. Here is the file I was consulting with the following details: Compiling the Linux Kernel on Redhat 7.1 This page describes how to install... (2 Replies)
Discussion started by: bhattbonny
2 Replies

8. SuSE

How do I compile source undfer Suse Linux?

I've been usuing Suse 9.1 & 10 on 2 different machines for a while and have so far relied on ready compiled versions of programs in RPMs in order to install them. I'm unclear what is envolved in compiling from the source code myself. I did a general google on the topic and found some unclear... (3 Replies)
Discussion started by: Mark Ward
3 Replies

9. Programming

Compile freeBSD binaries in Linux

I have to compile some c-programm as a binary for freeBSD, but I have no possibility to install and work with freeBSD itself - can I compile the needed bninaries in other OSes (Linux or Windows)??? (0 Replies)
Discussion started by: shalmoo
0 Replies

10. Programming

compile C under linux?

hi everyone, i am a beginner of C and doing a subject which involved c programming under unix. i tried compile the c program under linux. but i can only get the a.out file in /usr/bin, not in the current dir. can anyone know how to change the sys. configration. Please help. thanks (2 Replies)
Discussion started by: ctchung
2 Replies
Login or Register to Ask a Question