Hi!
>Can someone explain this to me, I'm confused: > >1) on linux, the corlib makefile creates > mcs/class/lib/corlib_mcs.dll, but >2) the nunit makefile references mcs/class/lib/corlib.dll > >On my machine, the nunit build is failing because >mcs/class/lib/corlib.dll doesn't exist. > >Is there any reason why we're calling it corlib_mcs.dll ? > >Piers. After creating corlib_mcs.dll, you must rename it to corlib.dll to use this library. corlib_mcs.dll is created, because the library corlib.dll is needed if you want to compile a program or a library. And if youz compile a program, it would be at first deleted and then it would be step by step created. But corlib.dll is needes by mcs, so you can not create it, in the same time. Thats the reason, why the created library have ann other name. But rename corlib_mcs.dll to corlib.dll, then you can use your selfmade corlib. Greatings Freddy BL _________________________________________________________________ Werden Sie Mitglied bei MSN Hotmail, dem gr��ten E-Mail-Service der Welt: http://www.hotmail.com/de _______________________________________________ Mono-list maillist - [EMAIL PROTECTED] http://lists.ximian.com/mailman/listinfo/mono-list
