зеркало из https://github.com/mono/mail-archives.git
146 строки
5.0 KiB
HTML
146 строки
5.0 KiB
HTML
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
|
<HTML>
|
|
<HEAD>
|
|
<TITLE> [Mono-list] Beginners Questions : How to....
|
|
</TITLE>
|
|
<LINK REL="Index" HREF="index.html" >
|
|
<LINK REL="made" HREF="mailto:jonpryor%40vt.edu">
|
|
<META NAME="robots" CONTENT="index,nofollow">
|
|
|
|
<LINK REL="Previous" HREF="016560.html">
|
|
<LINK REL="Next" HREF="016563.html">
|
|
</HEAD>
|
|
<BODY BGCOLOR="#ffffff">
|
|
<H1>[Mono-list] Beginners Questions : How to....
|
|
</H1>
|
|
<B>Jonathan Pryor
|
|
</B>
|
|
<A HREF="mailto:jonpryor%40vt.edu"
|
|
TITLE="[Mono-list] Beginners Questions : How to....">jonpryor@vt.edu
|
|
</A><BR>
|
|
<I>Sun, 26 Oct 2003 11:55:09 -0500</I>
|
|
<P><UL>
|
|
<LI> Previous message: <A HREF="016560.html">[Mono-list] Beginners Questions : How to....
|
|
</A></li>
|
|
<LI> Next message: <A HREF="016563.html">[Mono-list] Help on running ASP.net on Apache
|
|
</A></li>
|
|
<LI> <B>Messages sorted by:</B>
|
|
<a href="date.html#16562">[ date ]</a>
|
|
<a href="thread.html#16562">[ thread ]</a>
|
|
<a href="subject.html#16562">[ subject ]</a>
|
|
<a href="author.html#16562">[ author ]</a>
|
|
</LI>
|
|
</UL>
|
|
<HR>
|
|
<!--beginarticle-->
|
|
<PRE>On Sun, 2003-10-26 at 10:47, Qutronic wrote:
|
|
<snip/>
|
|
><i> So here are my "beginners" questions:
|
|
</I>><i> - Which IDE should I use?
|
|
</I>
|
|
Emacs! Vim!
|
|
|
|
OK, those aren't IDEs (though Emacs could qualify as an OS).
|
|
|
|
There are at least three IDEs on Linux: Eclipse (aimed at Java),
|
|
KDevelop (C++) and Anjuta (C, C++).
|
|
|
|
Eclipse has partial support for C# (see below for more information), but
|
|
it's not quite up to it's Java support (last I checked).
|
|
|
|
KDevelop and Anjuta might have Syntax highlighting support for C#, but
|
|
that's probably the extent of it. I haven't heard anything about
|
|
support for using the "mcs" compiler, for example.
|
|
|
|
This is a question that should get a better answer in the future.
|
|
SharpDevelop is rumored to be targeting Linux post 1.0. But until then,
|
|
there might not be anything. Sorry.
|
|
|
|
><i> - How can I get it installed and working?
|
|
</I>
|
|
Grab the RPMs (KDevelop, Anjuta)? Except for Eclipse, which is a tar.gz
|
|
(tar xzf eclipse-<version>.tar.gz). You can get the .tar.gz at
|
|
eclipse.org.
|
|
|
|
Eclipse C# syntax highlighting is a separate download, available at:
|
|
|
|
<A HREF="http://black-sun.sourceforge.net/">http://black-sun.sourceforge.net/</A>
|
|
|
|
><i> - Is there a graphical Development Enviroment at all?
|
|
</I>
|
|
Sort of. See above.
|
|
|
|
><i> - How can I get the mono debugger to work?
|
|
</I>
|
|
The mono debugger is in a unstable state. So... you don't get it to
|
|
work.
|
|
|
|
This should be fixed (I hope?) by Mono 1.0.
|
|
|
|
As a partial replacement, there's always System.Console.WriteLine. :-)
|
|
|
|
Mono (the jit) also has a --trace argument, which can be used to spit
|
|
out extra tracing information. Use --debug to get line-number
|
|
information in exception stack traces (use mcs -g to generate debugging
|
|
information).
|
|
|
|
><i> I tried to build it on my machine, but I can't get beyond
|
|
</I>><i> "configure".
|
|
</I>><i> Configure keeps complaining "Cant find jay".
|
|
</I>><i> - What is jay, and what do I have to do to get it working on my
|
|
</I>><i> machine?
|
|
</I>
|
|
"Jay" is a C# version of Yacc. If that's confusing, ignore it.
|
|
|
|
It can be found in the "Mono Class Libraries and C# Compiler" source
|
|
download:
|
|
|
|
<A HREF="http://www.go-mono.com/archive/mcs-0.28.tar.gz">http://www.go-mono.com/archive/mcs-0.28.tar.gz</A>
|
|
|
|
It's also in the "mcs" CVS repository.
|
|
|
|
Within the tarball/repository, "jay" is in the "jay" sub-directory.
|
|
|
|
It has a Makefile, so just enter the "jay" directory and type "make".
|
|
The "jay" binary will be placed in the same directory, so you'll need to
|
|
ensure that "mcs/jay" is in your PATH so that the debugger Makefiles can
|
|
find it.
|
|
|
|
><i> May be there is a paper out there in the www that some one has written
|
|
</I>><i> who went through all this already? That would be greate!
|
|
</I>
|
|
There's always the mono-list archives...
|
|
|
|
<A HREF="http://lists.ximian.com/mailman/listinfo/mono-list">http://lists.ximian.com/mailman/listinfo/mono-list</A>
|
|
|
|
><i> Sorry, if some,many, maybe all of these questions sound stupid, but as
|
|
</I>><i> I said I am a beginner concerning this subject and I hope to find some
|
|
</I>><i> one who can get me on the way.
|
|
</I>><i>
|
|
</I>><i> Regards
|
|
</I>><i> Rainer
|
|
</I>
|
|
Feel free to keep asking questions.
|
|
|
|
- Jon
|
|
|
|
|
|
|
|
</PRE>
|
|
<!--endarticle-->
|
|
<HR>
|
|
<P><UL>
|
|
<!--threads-->
|
|
<LI> Previous message: <A HREF="016560.html">[Mono-list] Beginners Questions : How to....
|
|
</A></li>
|
|
<LI> Next message: <A HREF="016563.html">[Mono-list] Help on running ASP.net on Apache
|
|
</A></li>
|
|
<LI> <B>Messages sorted by:</B>
|
|
<a href="date.html#16562">[ date ]</a>
|
|
<a href="thread.html#16562">[ thread ]</a>
|
|
<a href="subject.html#16562">[ subject ]</a>
|
|
<a href="author.html#16562">[ author ]</a>
|
|
</LI>
|
|
</UL>
|
|
</body></html>
|