RE: [Ikvm-developers] Problem with Mono
Brought to you by:
jfrijters
|
From: Mark E. <mar...@bl...> - 2003-09-13 12:48:51
|
Now you say it, don't I just know it!
Cheers for helping an idiot in distress
M
-----Original Message-----
From: Varga Zoltan [mailto:va...@fr...]=20
Sent: 13 September 2003 12:30
To: Mark Easton
Cc: ikv...@li...
Subject: Re: [Ikvm-developers] Problem with Mono
Hi,
The ';' character is a command separator in UNIX. You have to
enclose the classpath with quotes like this:
mono ikvm.exe -cp ".;/../classpath/mscorlib.jar" Hello2
bye
Zoltan
Mark Easton <mar...@bl...> =EDrta:
> I know this is probably me being a dumb ass, but when I
try running the
> following program with Mono on GNU/Linux, I get a
permission denied
> error:
>=20
> //Hello2.java
> public class Hello2
> { =20
> public static void main(String args[]) =20
> { =20
> System.out.println("Hello from Java!");
> cli.System.Console.WriteLine("Hello from .NET!");
> } =20
> }
>=20
> It compiles with the following command:
>=20
> javac Hello2.java -classpath ../classpath/mscorlib.jar
>=20
> But when I try to run it as follows:
>=20
> Mono ikvm.exe -cp .;/../classpath/mscorlib.jar Hello2
>=20
> I get the error message:
>=20
> bash: ../classpath/mscorlib.jar: Permission denied
>=20
>=20
> If anyonw has any suggestions then I would be very grateful
>=20
> TIA
>=20
> Mark=20
> ______________________________________
>=20
> mar...@bl...
>=20
>=20
>=20
> -------------------------------------------------------
> This sf.net email is sponsored by:ThinkGeek
> Welcome to geek heaven.
> http://thinkgeek.com/sf
> _______________________________________________
> Ikvm-developers mailing list
> Ikv...@li...
> https://lists.sourceforge.net/lists/listinfo/ikvm-developers
>=20
|