[Mono-bugs] [Bug 35531][Maj] New - "Hello World" app doesn't run correctly
bugzilla-daemon@rocky.ximian.com
bugzilla-daemon@rocky.ximian.com
12 Dec 2002 20:31:43 -0000
Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.
Changed by lillian@boojiboy.eorbit.net.
http://bugzilla.ximian.com/show_bug.cgi?id=35531
--- shadow/35531 Thu Dec 12 15:31:43 2002
+++ shadow/35531.tmp.21153 Thu Dec 12 15:31:43 2002
@@ -0,0 +1,76 @@
+Bug#: 35531
+Product: Mono/Runtime
+Version: unspecified
+OS:
+OS Details: RH 7.2
+Status: NEW
+Resolution:
+Severity:
+Priority: Major
+Component: misc
+AssignedTo: mono-bugs@ximian.com
+ReportedBy: lillian@boojiboy.eorbit.net
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL:
+Cc:
+Summary: "Hello World" app doesn't run correctly
+
+Please fill in this template when reporting a bug, unless you know
+what you are doing.
+Description of Problem:
+Compiling and running the "Hello World" app from
+http://www.go-mono.org/mono-beginning/x145.html does not produce the
+advertised results.
+
+Program listing:
+
+using System;
+
+class Hello
+{
+public static void Main(String[] args)
+{
+Console.WriteLine("mono:: is alive and well...");
+
+for (int i = 0; i < args.Length; i++)
+Console.WriteLine("Argument {0} = {1}", i, args[i]);
+}
+}
+
+
+Steps to reproduce the problem:
+1. Install all mono components via RedCarpet
+2. Follow the directions at
+http://www.go-mono.org/mono-beginning/x145.html
+
+
+Actual Results:
+
+FIXME:pthread_rwlock_rdlock
+FIXME:pthread_rwlock_unlock
+Could not stat /c (No such file or directory), ignoring drive D:
+fixme:win32:PE_CreateModule Unknown directory 14 ignored
+FIXME:pthread_rwlock_rdlock
+FIXME:pthread_rwlock_unlock
+FIXME:pthread_rwlock_rdlock
+FIXME:pthread_rwlock_unlock
+FIXME:pthread_rwlock_rdlock
+FIXME:pthread_rwlock_unlock
+FIXME:pthread_rwlock_rdlock
+FIXME:pthread_rwlock_unlock
+err:module:fixup_imports Module (file) mscoree.dll needed by
+Y:\Projects\Languages\mono\hello.exe not found
+
+Expected Results:
+mono:: is alive and well...
+(etc.)
+
+How often does this happen?
+Every time
+
+
+Additional Information:
+
+Perhaps someone left in some personal config info when the .rpms were
+made? I have not tried this with mono compiled from source.