Re: [Mono-dev] ..mscorlib.dll was not found compiling mono from sources

2009-04-15 Thread buhochil...@gmail.com
Hi,

Please, someone??, I'm following the official instruction (and other 
sugestions to) to try to compile mono (to later be able to compile MD 
with the debugger addins..)..and no matter what options I use in the 
configuration (--with-doc=no, ---disable-preview ...and others) and 
allways stop with the same error!!??

make[2]: Leaving directory `/media/data/opt/monosvn/mono/msvc'
Making all in docs
make[2]: Entering directory `/media/data/opt/monosvn/mono/docs'
cd .  make -f docs.make topdir=../../mcs convert.exe
make[3]: Entering directory `/media/data/opt/monosvn/mono/docs'
MCS [default] convert.exe
The assembly mscorlib.dll was not found or could not be loaded.
It should have been installed in the 
`/opt/mono/lib/mono/1.0/mscorlib.dll' directory.
make[3]: *** [convert.exe] Error 1

I'm not trying something *fancy*, this is NOT a mono compilation for 
iphone, or sparc64, is standard x86 fedora 10 notebook, please tell me 
that is posible to compile and use mono + MD + debugger addins outside 
OpenSuse ...

Thanks

Mauricio

Peter Alfredsen wrote:
 On Tue, 14 Apr 2009 11:47:36 -0400
 buhochil...@gmail.com buhochil...@gmail.com wrote:

   
 ## DebuggerServer started
 EXCEPTION: Mono.Debugger.TargetException: Unsupported `mono'
 executable: /usr/bin/mono
 

 I hadn't even read this email when I replied in the other thread, but
 that is the exact message we were getting in Gentoo from mono-debugger
 when Mono was compiled with --disable-static.

 /loki_val
 ___
 Mono-devel-list mailing list
 Mono-devel-list@lists.ximian.com
 http://lists.ximian.com/mailman/listinfo/mono-devel-list

   

___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list


Re: [Mono-dev] ..mscorlib.dll was not found compiling mono from sources

2009-04-15 Thread buhochil...@gmail.com
Toshio Kuratomi wrote:
 buhochil...@gmail.com wrote:
   
 Hi,

 Please, someone??, I'm following the official instruction (and other 
 sugestions to) to try to compile mono (to later be able to compile MD 
 with the debugger addins..)..and no matter what options I use in the 
 configuration (--with-doc=no, ---disable-preview ...and others) and 
 allways stop with the same error!!??

 make[2]: Leaving directory `/media/data/opt/monosvn/mono/msvc'
 Making all in docs
 make[2]: Entering directory `/media/data/opt/monosvn/mono/docs'
 cd .  make -f docs.make topdir=../../mcs convert.exe
 make[3]: Entering directory `/media/data/opt/monosvn/mono/docs'
 MCS [default] convert.exe
 The assembly mscorlib.dll was not found or could not be loaded.
 It should have been installed in the 
 `/opt/mono/lib/mono/1.0/mscorlib.dll' directory.
 make[3]: *** [convert.exe] Error 1

 I'm not trying something *fancy*, this is NOT a mono compilation for 
 iphone, or sparc64, is standard x86 fedora 10 notebook, please tell me 
 that is posible to compile and use mono + MD + debugger addins outside 
 OpenSuse ...
 

 Have you taken a look at the Fedora packages?  Fedora-10 has mono-2.2
 and monodebugger
   
argh, as I explain in all my post, the goal is have the monodevelop 
debugger addins, so yes I know about the fedora 10 and koji fedora 11 
packages, but those don't include the monodevelop debugger addins. Also 
as I explain in a later post, is posible to compile just monodevelop 
using the mono core installed by the f11 koji packages, but the 
monodevelop debugger addins don't work and claims about:
## DebuggerServer started
EXCEPTION: Mono.Debugger.TargetException: Unsupported `mono' executable: 
/usr/bin/mono

So, probably the RPM guys seems to be compiling mono core in some way 
that make imposible for the debugger addin to work...

So what are my options?, try to to compile ALL by mysefl to no depend on 
koji things...but here is where the mscorlib problem came in...
 I've just finished building mono-2.4 for Fedora-11 which might have
 additional things that are necessary if you're building from mono's trunk.

   
By the way, this is a question about the mscorlib problem compiling 
mono, I'm pretty tired about the fedora support for mono, so please 
don't tell me to wait until something that is going to come for fedora 
and things that might have, I prefer to try to solve directly the 
compilation things and posible make my own paquages for the Univ.

 http://cvs.fedoraproject.org/viewvc/rpms/mono/

 -Toshio

   
Thanks anyway...

Mauricio



___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list


Re: [Mono-dev] ..mscorlib.dll was not found compiling mono from sources

2009-04-15 Thread Toshio Kuratomi
buhochil...@gmail.com wrote:
 Toshio Kuratomi wrote:

 Have you taken a look at the Fedora packages?  Fedora-10 has mono-2.2
 and monodebugger
   
 argh, as I explain in all my post, the goal is have the monodevelop 
 debugger addins, so yes I know about the fedora 10 and koji fedora 11 
 packages, but those don't include the monodevelop debugger addins. Also 
 as I explain in a later post, is posible to compile just monodevelop 
 using the mono core installed by the f11 koji packages, but the 
 monodevelop debugger addins don't work and claims about:
 ## DebuggerServer started
 EXCEPTION: Mono.Debugger.TargetException: Unsupported `mono' executable: 
 /usr/bin/mono
 
 So, probably the RPM guys seems to be compiling mono core in some way 
 that make imposible for the debugger addin to work...

That's a possibility.  Do you know what configure switch would do that?

 So what are my options?, try to to compile ALL by mysefl to no depend on 
 koji things...but here is where the mscorlib problem came in...

Sure.  So if you have a problem compiling mono itself and the rpm guys
are getting mono itself to compile on the platform you're interested in,
you should take a look at what they're doing.  You can see what sequence
of commands they're using to compike, what configure options they're
giving, and what patches they're applying.  Then you can make sure you
don't apply whatever it is that's causing mono-debugger to malfunction
while finding out how they are able to build.

 I've just finished building mono-2.4 for Fedora-11 which might have
 additional things that are necessary if you're building from mono's trunk.

   
 By the way, this is a question about the mscorlib problem compiling 
 mono, I'm pretty tired about the fedora support for mono, so please 
 don't tell me to wait until something that is going to come for fedora 
 and things that might have, I prefer to try to solve directly the 
 compilation things and posible make my own paquages for the Univ.
 
I'm not doing that at all.  I'm telling you -- if you have a problem
compiling the mono package on Fedora; there's a repeatable recipe for
getting mono to compile on Fedora in existence.  Comparing it to what
you're doing will help you find out what you're missing.

BTW, if you get this to work, the monodevelop packager in Fedora would
likely be interested in a bug report.  If the problem is a configure
switch to the mono build, you can email me and I'll get it in.

-Toshio



signature.asc
Description: OpenPGP digital signature
___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list


Re: [Mono-dev] ..mscorlib.dll was not found compiling mono from sources

2009-04-15 Thread buhochil...@gmail.com
Hi again,

Toshio Kuratomi wrote:
 buhochil...@gmail.com wrote:
   
 Toshio Kuratomi wrote:
 

   
 Have you taken a look at the Fedora packages?  Fedora-10 has mono-2.2
 and monodebugger
   
   
 argh, as I explain in all my post, the goal is have the monodevelop 
 debugger addins, so yes I know about the fedora 10 and koji fedora 11 
 packages, but those don't include the monodevelop debugger addins. Also 
 as I explain in a later post, is posible to compile just monodevelop 
 using the mono core installed by the f11 koji packages, but the 
 monodevelop debugger addins don't work and claims about:
 ## DebuggerServer started
 EXCEPTION: Mono.Debugger.TargetException: Unsupported `mono' executable: 
 /usr/bin/mono

 So, probably the RPM guys seems to be compiling mono core in some way 
 that make imposible for the debugger addin to work...
 

 That's a possibility.  Do you know what configure switch would do that?
   
acording to a post in the list, guys are having simillar problems when 
mono is compiled with --disable-static, do you know if is used when 
the fedora rpm packages are compiled/created?
   
 So what are my options?, try to to compile ALL by mysefl to no depend on 
 koji things...but here is where the mscorlib problem came in...
 

 Sure.  So if you have a problem compiling mono itself and the rpm guys
 are getting mono itself to compile on the platform you're interested in,
 you should take a look at what they're doing.  You can see what sequence
 of commands they're using to compike, what configure options they're
 giving, and what patches they're applying.  Then you can make sure you
 don't apply whatever it is that's causing mono-debugger to malfunction
 while finding out how they are able to build.

   
yeap I'm looking at he link that you send me to check that...
 I've just finished building mono-2.4 for Fedora-11 which might have
 additional things that are necessary if you're building from mono's trunk.

   
   
 By the way, this is a question about the mscorlib problem compiling 
 mono, I'm pretty tired about the fedora support for mono, so please 
 don't tell me to wait until something that is going to come for fedora 
 and things that might have, I prefer to try to solve directly the 
 compilation things and posible make my own paquages for the Univ.

 
 I'm not doing that at all.  I'm telling you -- if you have a problem
 compiling the mono package on Fedora; there's a repeatable recipe for
 getting mono to compile on Fedora in existence.  Comparing it to what
 you're doing will help you find out what you're missing.

   
sorry if I sound to hard, but honestly I'm pretty tired about the poor 
support of fedora for the mono things, I also offer me and my Univ help 
to some of the koji packages guys, but they don't take it...
 BTW, if you get this to work, the monodevelop packager in Fedora would
 likely be interested in a bug report.  If the problem is a configure
 switch to the mono build, you can email me and I'll get it in.
   
surely...
 -Toshio
   
Thanks Toshio

Mauricio


___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list


Re: [Mono-dev] ..mscorlib.dll was not found compiling mono from sources

2009-04-15 Thread Toshio Kuratomi
buhochil...@gmail.com wrote:
 Hi again,
 
 Toshio Kuratomi wrote:
 buhochil...@gmail.com wrote:
   
 Toshio Kuratomi wrote:
 
   
 Have you taken a look at the Fedora packages?  Fedora-10 has mono-2.2
 and monodebugger
   
   
 argh, as I explain in all my post, the goal is have the monodevelop 
 debugger addins, so yes I know about the fedora 10 and koji fedora 11 
 packages, but those don't include the monodevelop debugger addins. Also 
 as I explain in a later post, is posible to compile just monodevelop 
 using the mono core installed by the f11 koji packages, but the 
 monodevelop debugger addins don't work and claims about:
 ## DebuggerServer started
 EXCEPTION: Mono.Debugger.TargetException: Unsupported `mono' executable: 
 /usr/bin/mono

 So, probably the RPM guys seems to be compiling mono core in some way 
 that make imposible for the debugger addin to work...
 
 That's a possibility.  Do you know what configure switch would do that?
   
 acording to a post in the list, guys are having simillar problems when 
 mono is compiled with --disable-static, do you know if is used when 
 the fedora rpm packages are compiled/created?

Yes, that is used.  If that's all that's needed, you should be able to
use anything else in the Fedora SRPM that looks like it will help get
the build working.  Just leaving out that flag from the configure line::

%configure --with-ikvm=yes --with-jit=yes --with-xen_opt=yes \
--with-moonlight=no --with-preview=yes --with-libgdiplus=installed \
#--disable-static


   
 sorry if I sound to hard, but honestly I'm pretty tired about the poor 
 support of fedora for the mono things, I also offer me and my Univ help 
 to some of the koji packages guys, but they don't take it...

Yeah.  Fedora's core competency is really C and Python with
subcommunities that take care of perl, mono, java, php, ocaml, etc.  The
mono subcommunity is small and thus easily affected by the decisions of
just a few people.  That's good when they're making good decisions and
bad when they're making poor ones.

-Toshio



signature.asc
Description: OpenPGP digital signature
___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list


[Mono-dev] ..mscorlib.dll was not found compiling mono from sources

2009-04-14 Thread buhochil...@gmail.com
Hi guys:

I'm desperately trying to compile mono from last svn sources (Revision: 
131666) and I'm getting:
...
Making all in docs
make[2]: Entering directory `/media/data/opt/monosvn/mono/docs'
cd .  make -f docs.make topdir=../../mcs convert.exe
make[3]: Entering directory `/media/data/opt/monosvn/mono/docs'
MCS [default] convert.exe
The assembly mscorlib.dll was not found or could not be loaded.
It should have been installed in the 
`/opt/mono/lib/mono/1.0/mscorlib.dll' directory.
make[3]: *** [convert.exe] Error 1
...

I'm trying desperately to use the MD debugger addin on my Fedora 10, MD 
compilation work using  mono RPM's but then the debugger service claims 
about a invalid mono excutable...now trying to compile also mono is 
claiming this, plase a little help!!!

Thanks

Mauricio



___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list


Re: [Mono-dev] ..mscorlib.dll was not found compiling mono from sources

2009-04-14 Thread Paul Johnson
Hi,

-- 
Paul F. Johnson
Lecturer in Chemistry, Biology and IT
FoundatiON Campus
 buhochil...@gmail.com buhochil...@gmail.com 14/04/09 3:36 PM 
Hi guys:

I'm desperately trying to compile mono from last svn sources (Revision: 
131666) and I'm getting:


Why not use the rpms for mono from rawhide (currently at 2.4RC1 due to problems 
building on PPC/PPC64 with the full 2.4 release)?


I'm trying desperately to use the MD debugger addin on my Fedora 10, MD 
compilation work using  mono RPM's but then the debugger service claims 
about a invalid mono excutable...now trying to compile also mono is 
claiming this, plase a little help!!!


Have you built the 2.0 version of MD? IIRC, you need them for the the likes of 
the MD debugger to work. mono-debugger works fine from rawhide.

TTFN

Paul
___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list


Re: [Mono-dev] ..mscorlib.dll was not found compiling mono from sources

2009-04-14 Thread buhochil...@gmail.com
Paul Johnson wrote:
 Hi,
   
Hi Paul:

(Sorry for the  top-posting don't know way my mail client errase the 
previous messages when the mail is from you Paul...)

I'm trying to build from sources a parallel environment becouse the 
rawhide mono/MD RPM's don't have the MD debugger addins witch are the 
features that I need!!


And yeap I also try to build just MD with the debbuger addins enable 
using the mono RPM's for rawhide (2.4-15.1.RC1.fc11) ..but as I post on 
the MD mailinglist trying to use the debugger addins, I get a :
## DebuggerServer started
EXCEPTION: Mono.Debugger.TargetException: Unsupported `mono' executable: 
/usr/bin/mono


So, currently I don't know what else to do to get this thing to work on 
Fedora 10!!!, compiling just MD work with installed mono RPM's but the 
debugger don't work, compiling also mono from sources also crash (as in 
last post it seems that the problem is not specific to the missing 
mscorlib, compiling mono from sources is making mono runtime to crash 
sometimes...)

When you say Have you built the 2.0 version of MD? IIRC, build MD IIRC?



what can I do??

Thanks

Mauricio

___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list


Re: [Mono-dev] ..mscorlib.dll was not found compiling mono from sources

2009-04-14 Thread Peter Alfredsen
On Tue, 14 Apr 2009 11:47:36 -0400
buhochil...@gmail.com buhochil...@gmail.com wrote:

 ## DebuggerServer started
 EXCEPTION: Mono.Debugger.TargetException: Unsupported `mono'
 executable: /usr/bin/mono

I hadn't even read this email when I replied in the other thread, but
that is the exact message we were getting in Gentoo from mono-debugger
when Mono was compiled with --disable-static.

/loki_val
___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list