Re: Editor for C & C++ language

2005-10-23 Thread Mohsen Pahlevanzadeh

vittorio wrote:

Working usually under kde I'm looking for something similar to the llc-win32 
program under ms-windows - that is a development environment where you can 
edit your c++ program, compile it, debug it step by step, and finally run it 
in a suitable window.
I tried the nice editor kate which allows to compile the file only. No 
debugging, no running.

Is  there anything of the kind of llc-win32?
Ciao
Vittorio
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"
 


May be yoo need to an IDE insted of editor.
You can use kdevelop package.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Editor for C & C++ language

2005-10-23 Thread Peter Clutton
On 10/23/05, Johnny Billquist <[EMAIL PROTECTED]> wrote:
> emacs can do anything. Put it might not be graphical enough for your taste
> if you come from Windows...

I agree that Emacs rocks. I come from a Windows background and
appreciated the control, and just plain coolness of Emacs. Took a
little getting used to, but a fine book by O'Rielly, and alot of
practice helped ease the transition. A useful group of indenting
styles for C and C++ makes it easy to find the appropriate one, or
make your own.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Editor for C & C++ language

2005-10-23 Thread Giorgos Keramidas
On 2005-10-23 12:52, vittorio <[EMAIL PROTECTED]> wrote:
> In my freebsd portable I have xemacs that is "sensitive" to many
> environments (I use it for the statiscal program R and for pdflatex)
> among which  C++ .  In  fact the C++ program I edit triggers a C++
> menu and many options among which there are also debug and compile.
> This latter unfortunately calls a "make -k" command while I'd like to
> run "g++ prog.c -g -o prog" as usual.  Could someone  explain what
> shoujld I do to modify xemacs as I want?

This is probably an effect of the default value of ``compile-command''.

What do you see if you type:

M-: (list compile-command) RET

should be ("make -k").  By customizing this variable, or setting it to a
local value when C++ code is edited, you should be able to make the menu
entry invoke any command you find more useful.

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Editor for C & C++ language

2005-10-23 Thread vittorio
Alle 02:34, domenica 23 ottobre 2005, Giorgos Keramidas ha scritto:
> On 2005-10-22 22:07, vittorio <[EMAIL PROTECTED]> wrote:
> > Working usually under kde I'm looking for something similar to the
> > llc-win32 program under ms-windows - that is a development environment
> > where you can edit your c++ program, compile it, debug it step by
> > step, and finally run it in a suitable window.
> >
> > I tried the nice editor kate which allows to compile the file only. No
> > debugging, no running.
> >
> > Is  there anything of the kind of llc-win32?
>
> I'm using Emacs as my IDE for years now.  It's not exactly what someone
> who is used to windowing environments would call a "GUI IDE", but it can
> do the following:
>
> - Edit the source code (with syntax highlighting if need be)
>
> - Compile (with the hit of a single key, once configured)
>
> - Parse compiler output and move to the file/line of an error,
>   then to the next error, etc.
> - Interactively debug C, C++, Perl, Python, or LISP programs,
>   line by line -- working as a "control program" for GNU gdb
>
> and that's only a minor subset of the features it has.

Well, as a matter of fact I'm obliged at wok to use windows but my pet OS are 
both BSDs.
In my freebsd portable I have xemacs that is "sensitive" to many environments 
(I use it for the statiscal program R and for pdflatex)  among which  C++ . 
In  fact the C++ program I edit triggers a C++ menu and many options among 
which there are also debug and compile. This latter unfortunately calls a 
"make -k" command while I'd like to run "g++ prog.c -g -o prog" as usual.
Could someone  explain what shoujld I do to modify xemacs as I want?

Ciao
Vittorio 
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Editor for C & C++ language

2005-10-23 Thread Frank Staals

vittorio wrote:

Working usually under kde I'm looking for something similar to the llc-win32 
program under ms-windows - that is a development environment where you can 
edit your c++ program, compile it, debug it step by step, and finally run it 
in a suitable window.
I tried the nice editor kate which allows to compile the file only. No 
debugging, no running.

Is  there anything of the kind of llc-win32?
Ciao
Vittorio
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


 

If you have an up to date system with at least 512MB ram I reccommend 
Eclipse with CDT as someone else allready mentioned. But a bit less 
system-resources-draining is anjuta, which works pretty nice. 
http://anjuta.sourceforge.net/ The anjuta 1 ( stable ) port is available 
in the portstree devel/anjuta . Their developement release ( 2.X ) isn't 
available in the portstree and should be manually installed.




--
-Frank Staals


___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Editor for C & C++ language

2005-10-22 Thread Giorgos Keramidas
On 2005-10-22 22:07, vittorio <[EMAIL PROTECTED]> wrote:
> Working usually under kde I'm looking for something similar to the
> llc-win32 program under ms-windows - that is a development environment
> where you can edit your c++ program, compile it, debug it step by
> step, and finally run it in a suitable window.

> I tried the nice editor kate which allows to compile the file only. No
> debugging, no running.

> Is  there anything of the kind of llc-win32?

I'm using Emacs as my IDE for years now.  It's not exactly what someone
who is used to windowing environments would call a "GUI IDE", but it can
do the following:

- Edit the source code (with syntax highlighting if need be)
  
- Compile (with the hit of a single key, once configured)
  
- Parse compiler output and move to the file/line of an error,
  then to the next error, etc.
  
- Interactively debug C, C++, Perl, Python, or LISP programs,
  line by line -- working as a "control program" for GNU gdb

and that's only a minor subset of the features it has.

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Editor for C & C++ language

2005-10-22 Thread Marcin Waldowski

On 2005-10-22 22:07 vittorio wrote:

Working usually under kde I'm looking for something similar to the llc-win32 
program under ms-windows - that is a development environment where you can 
edit your c++ program, compile it, debug it step by step, and finally run it 
in a suitable window.
I tried the nice editor kate which allows to compile the file only. No 
debugging, no running.

Is  there anything of the kind of llc-win32?
Ciao
Vittorio


Check out Eclipse platform with CDT plugin:
http://www.eclipse.org/cdt/
which has a great debuger

With LeakTracert for checkig memory leaks you have almost everything for 
c++ developement.


Best regards,
Marcin

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Editor for C & C++ language

2005-10-22 Thread Andrew Pogrebennyk
On Sat, Sat, 22 Oct 2005 22:07:19 +0200 (GMT)
vittorio <[EMAIL PROTECTED]> wrote:

> Working usually under kde I'm looking for something similar to the
> llc-win32 program under ms-windows - that is a development
> environment where you can edit your c++ program, compile it, debug it
> step by step, and finally run it in a suitable window.
> I tried the nice editor kate which allows to compile the file only.
> No debugging, no running.
> Is  there anything of the kind of llc-win32?
> Ciao
> Vittorio

I don't know what llc-win32 is, but try using Code::Blocks Studio
(http://www.codeblocks.org/) or Dev-C++
(http://www.bloodshed.net/devcpp.html). The last is written in
Delphi and I have no idea if it could be compiled under FreeBSD.
Good luck with that.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Editor for C & C++ language

2005-10-22 Thread Kirk Strauser
On Saturday 22 October 2005 03:07 pm, vittorio wrote:
> Working usually under kde I'm looking for something similar to the
> llc-win32 program under ms-windows - that is a development environment
> where you can edit your c++ program, compile it, debug it step by step, and
> finally run it in a suitable window.

Since you're using KDE anyway, check out KDevelop.  It's similar to Visual 
Studio.

I'm with Johnny, though.  I could live in Emacs quite happily.
-- 
Kirk Strauser


pgppDhztYKnhi.pgp
Description: PGP signature


Re: Editor for C & C++ language

2005-10-22 Thread Johnny Billquist
On Sat, 22 Oct 2005, vittorio wrote:

> Working usually under kde I'm looking for something similar to the llc-win32
> program under ms-windows - that is a development environment where you can
> edit your c++ program, compile it, debug it step by step, and finally run it
> in a suitable window.
> I tried the nice editor kate which allows to compile the file only. No
> debugging, no running.
> Is  there anything of the kind of llc-win32?

emacs can do anything. Put it might not be graphical enough for your taste
if you come from Windows...

Johnny

Johnny Billquist  || "I'm on a bus
  ||  on a psychedelic trip
email: [EMAIL PROTECTED]   ||  Reading murder books
pdp is alive! ||  tryin' to stay hip" - B. Idol
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"