LinuxQuestions.org
Help answer threads with 0 replies.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Non-*NIX Forums > Programming
User Name
Password
Programming This forum is for all programming questions.
The question does not have to be directly related to Linux and any language is fair game.

Notices


Reply
  Search this Thread
Old 09-08-2004, 01:15 PM   #1
Drunkalot
Member
 
Registered: Aug 2004
Distribution: Linux from Scratch
Posts: 69

Rep: Reputation: 15
C++ Ide


Is there an interface to write c++ programs in linux, like the ODS borland c++ 3.0???


[]s...
 
Old 09-08-2004, 02:12 PM   #2
redjokerx
Member
 
Registered: Aug 2004
Location: San Diego
Distribution: Slackware
Posts: 303

Rep: Reputation: 31
KDevelop, try that out.
 
Old 09-08-2004, 03:08 PM   #3
dmcmillan
LQ Newbie
 
Registered: Sep 2004
Location: Canada
Distribution: Gentoo, Ubuntu
Posts: 6

Rep: Reputation: 0
Wink IDE for See Plus Plus

KDevelop looks like it's pretty good for that sort of thing. I only played around with it, but it was very easy to hack a short little util. Give this a try first.

If you're a little more adventurous you can also customize netbeans believe it or not, and develop c++ with it
www.netbeans.org. If you don't mind a little jury rigging it's a nice environment to program in java, it would be pretty awesome to develop in c++ as well.

It's setup for java when you first get it, but it's extendable via modules, so you can customize it to your language of choice. Of course kdevelop is ready right at the get go. So pretty much a no brainer unless you don't care for the environment and want something different.

Well that's my $0.02.
 
Old 09-08-2004, 07:16 PM   #4
redjokerx
Member
 
Registered: Aug 2004
Location: San Diego
Distribution: Slackware
Posts: 303

Rep: Reputation: 31
Netbeans and C++!!! wow! Although Netbeans is pretty cool, it's slow.
 
Old 09-08-2004, 07:59 PM   #5
irfanhab
Member
 
Registered: Jan 2004
Location: Pakistan
Distribution: OpenSuse 10.2, Slackware 11, Solaris 10
Posts: 415

Rep: Reputation: 34
I love to use Kate, as a IDE for c++
 
Old 09-08-2004, 08:45 PM   #6
LavaDevil94
LQ Guru
 
Registered: Jul 2003
Distribution: Gentoo 2004.2: Who needs exmmpkg when you have emerge?
Posts: 1,795

Rep: Reputation: 47
Emacs is the king, everything you need, just not in a very GUI interface.
 
Old 09-08-2004, 10:56 PM   #7
elvee
Member
 
Registered: Aug 2004
Distribution: mandrake 10
Posts: 38

Rep: Reputation: 15
i use vim
 
Old 09-08-2004, 10:57 PM   #8
redjokerx
Member
 
Registered: Aug 2004
Location: San Diego
Distribution: Slackware
Posts: 303

Rep: Reputation: 31
Emacs when I have to, Kate otherwise.

If you want something simpler than KDevelop, try out Kate. It has a terminal thing, a project like thing which lists your files. It can do syntax highlighting and everything, so pretty good.
 
Old 09-08-2004, 10:58 PM   #9
elvee
Member
 
Registered: Aug 2004
Distribution: mandrake 10
Posts: 38

Rep: Reputation: 15
I used kdevelop, it was nice but i had trouble building so i stopped using it.
 
Old 09-09-2004, 12:54 AM   #10
gizmo_thunder
Member
 
Registered: Apr 2004
Posts: 101

Rep: Reputation: 15
you could use ecclipse.. its an ide for java actually
but there are pluggins for using it for c++ as well
its' nice.. try using it
 
Old 09-09-2004, 04:26 AM   #11
phoenix7
Member
 
Registered: Aug 2004
Distribution: Mandrake 10.2(Mandriva), SuSE 9.3, Slackware 9.1, Xandros 3.1, Knoppix 3.9, FreeBSD 5.3, RedHat9
Posts: 122

Rep: Reputation: 15
RHIDE

Hi
If you can a linux C++ IDE that seems to Borland C++ 3.1, you can use "rhide" instead.
http://www.rhide.com

Regards,
Mohammad
 
Old 09-09-2004, 04:45 AM   #12
Nylex
LQ Addict
 
Registered: Jul 2003
Location: London, UK
Distribution: Slackware
Posts: 7,464

Rep: Reputation: Disabled
Quote:
Originally posted by redjokerx
Netbeans and C++!!! wow! Although Netbeans is pretty cool, it's slow.
It is written in Java though! I didn't know you could use Netbeans for languages other than Java.

Anjuta is another C/C++ IDE. Oh, speaking of Emacs: I use it but was wondering how you compile C++ programs from it. Usually I just close it and enter "g++ myprogram.cpp -o myprogram" in a terminal.
 
Old 09-11-2004, 09:23 AM   #13
Chryzmo
Member
 
Registered: Jun 2003
Location: Virginia
Distribution: Slackware 10.1
Posts: 180

Rep: Reputation: 30
Quote:
Originally posted by Nylex
Oh, speaking of Emacs: I use it but was wondering how you compile C++ programs from it. Usually I just close it and enter "g++ myprogram.cpp -o myprogram" in a terminal.
To compile your code from within Emacs you would do this:
M-x
type: compile
hit enter

Then type the command to compile your code. In this case it would be:
g++ myprogram.cpp -o myprogram

Hit enter and it should compile the code the same as if it were done at a command line, if there are errors, those will be displayed in Emacs, as well.
 
Old 09-11-2004, 03:20 PM   #14
h1tman
Member
 
Registered: Jul 2003
Distribution: Slackware 11
Posts: 439

Rep: Reputation: 30
anjuta?
 
Old 09-12-2004, 04:17 AM   #15
Nylex
LQ Addict
 
Registered: Jul 2003
Location: London, UK
Distribution: Slackware
Posts: 7,464

Rep: Reputation: Disabled
Quote:
Originally posted by Chryzmo
To compile your code from within Emacs you would do this:
M-x
type: compile
hit enter

Then type the command to compile your code. In this case it would be:
g++ myprogram.cpp -o myprogram

Hit enter and it should compile the code the same as if it were done at a command line, if there are errors, those will be displayed in Emacs, as well.
Oh cool, thanks for that.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
RH9 &9.0 Benq CDRW 4012a IDE + IDE CDROM - Install - how to cgtueno Linux - Hardware 6 05-30-2004 02:43 PM
hpt372 ide controller and on-the-fly ide removeing captgoodnight Linux - Hardware 0 01-25-2004 12:38 AM
grub, onboard ide and ide add-in cards sambartle Linux - General 15 11-07-2003 10:44 AM
bad dmesg output when using ide-scsi boot parameter for IDE CD/DVD-ROM Locura Slackware 7 09-29-2003 02:36 AM
how2 make the kernel scan both PCI IDE and Mboard IDE channels? carboncopy Slackware 1 07-23-2003 03:26 PM

LinuxQuestions.org > Forums > Non-*NIX Forums > Programming

All times are GMT -5. The time now is 05:42 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration